diff --git a/lib/maintainers.nix b/lib/maintainers.nix index a32ab1bd80d..a725d2e525c 100644 --- a/lib/maintainers.nix +++ b/lib/maintainers.nix @@ -244,6 +244,7 @@ rob = "Rob Vermaas "; robberer = "Longrin Wischnewski "; robbinch = "Robbin C. "; + robgssp = "Rob Glossop "; roconnor = "Russell O'Connor "; roelof = "Roelof Wobben "; romildo = "José Romildo Malaquias "; @@ -262,6 +263,7 @@ simonvandel = "Simon Vandel Sillesen "; sjagoe = "Simon Jagoe "; sjmackenzie = "Stewart Mackenzie "; + sjourdois = "Stéphane ‘kwisatz’ Jourdois "; skeidel = "Sven Keidel "; smironov = "Sergey Mironov "; spacefrogg = "Michael Raitza "; diff --git a/nixos/modules/config/i18n.nix b/nixos/modules/config/i18n.nix index f58e540a6e5..b20fac6ad3e 100644 --- a/nixos/modules/config/i18n.nix +++ b/nixos/modules/config/i18n.nix @@ -74,6 +74,23 @@ in ''; }; + consoleColors = mkOption { + type = types.listOf types.str; + default = []; + example = [ + "002b36" "dc322f" "859900" "b58900" + "268bd2" "d33682" "2aa198" "eee8d5" + "002b36" "cb4b16" "586e75" "657b83" + "839496" "6c71c4" "93a1a1" "fdf6e3" + ]; + description = '' + The 16 colors palette used by the virtual consoles. + Leave empty to use the default colors. + Colors must be in hexadecimal format and listed in + order from color 0 to color 15. + ''; + }; + }; }; diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix index ce9353d58b3..0db7ee916ba 100644 --- a/nixos/modules/module-list.nix +++ b/nixos/modules/module-list.nix @@ -441,6 +441,7 @@ ./system/activation/top-level.nix ./system/boot/coredump.nix ./system/boot/emergency-mode.nix + ./system/boot/initrd-network.nix ./system/boot/kernel.nix ./system/boot/kexec.nix ./system/boot/loader/efi.nix diff --git a/nixos/modules/services/hardware/tlp.nix b/nixos/modules/services/hardware/tlp.nix index 9bd246bfb63..23b6edcefd1 100644 --- a/nixos/modules/services/hardware/tlp.nix +++ b/nixos/modules/services/hardware/tlp.nix @@ -6,7 +6,12 @@ let cfg = config.services.tlp; -tlp = pkgs.tlp.override { kmod = config.system.sbin.modprobe; }; +enableRDW = config.networking.networkmanager.enable; + +tlp = pkgs.tlp.override { + inherit enableRDW; + kmod = config.system.sbin.modprobe; +}; # XXX: We can't use writeTextFile + readFile here because it triggers # TLP build to get the .drv (even on --dry-run). @@ -90,13 +95,15 @@ in environment.etc = [{ source = confFile; target = "default/tlp"; } - ] ++ optional tlp.enableRDW { + ] ++ optional enableRDW { source = "${tlp}/etc/NetworkManager/dispatcher.d/99tlp-rdw-nm"; target = "NetworkManager/dispatcher.d/99tlp-rdw-nm"; }; environment.systemPackages = [ tlp ]; + boot.kernelModules = [ "msr" ]; + }; } diff --git a/nixos/modules/services/mail/postfix.nix b/nixos/modules/services/mail/postfix.nix index d1aaebdfdf2..3a9e62a0205 100644 --- a/nixos/modules/services/mail/postfix.nix +++ b/nixos/modules/services/mail/postfix.nix @@ -11,6 +11,8 @@ let mainCf = '' + compatibility_level = 2 + queue_directory = /var/postfix/queue command_directory = ${pkgs.postfix}/sbin daemon_directory = ${pkgs.postfix}/libexec/postfix @@ -31,10 +33,7 @@ let mynetworks_style = ${cfg.networksStyle} '' else - # Postfix default is subnet, but let's play safe - '' - mynetworks_style = host - '') + "") + optionalString (cfg.hostname != "") '' myhostname = ${cfg.hostname} '' @@ -89,7 +88,7 @@ let masterCf = '' # ========================================================================== # service type private unpriv chroot wakeup maxproc command + args - # (yes) (yes) (yes) (never) (100) + # (yes) (yes) (no) (never) (100) # ========================================================================== smtp inet n - n - - smtpd #submission inet n - n - - smtpd @@ -232,8 +231,7 @@ in default = null; example = ["localdomain"]; description = " - List of domains we agree to relay to. Default is the same as - destination. + List of domains we agree to relay to. Default is empty. "; }; @@ -357,23 +355,20 @@ in } ]; - jobs.postfix = - # I copy _lots_ of shipped configuration filed - # that can be left as is. I am afraid the exact - # will list slightly change in next Postfix - # release, so listing them all one-by-one in an - # accurate way is unlikely to be better. + systemd.services.postfix = { description = "Postfix mail server"; wantedBy = [ "multi-user.target" ]; after = [ "network.target" ]; - daemonType = "fork"; + serviceConfig = { + Type = "forking"; + Restart = "always"; + PIDFile = "/var/postfix/queue/pid/master.pid"; + }; preStart = '' - if ! [ -d /var/spool/postfix ]; then - ${pkgs.coreutils}/bin/mkdir -p /var/spool/mail /var/postfix/conf /var/postfix/queue - fi + ${pkgs.coreutils}/bin/mkdir -p /var/spool/mail /var/postfix/conf /var/postfix/queue ${pkgs.coreutils}/bin/chown -R ${user}:${group} /var/postfix ${pkgs.coreutils}/bin/chown -R ${user}:${setgidGroup} /var/postfix/queue @@ -382,7 +377,7 @@ in ${pkgs.coreutils}/bin/chmod a+rwxt /var/spool/mail ${pkgs.coreutils}/bin/ln -sf /var/spool/mail /var/ - ln -sf "${pkgs.postfix}/etc/postfix/"* /var/postfix/conf + ln -sf ${pkgs.postfix}/etc/postfix/postfix-files /var/postfix/conf ln -sf ${aliasesFile} /var/postfix/conf/aliases ln -sf ${virtualFile} /var/postfix/conf/virtual @@ -391,12 +386,18 @@ in ${pkgs.postfix}/sbin/postalias -c /var/postfix/conf /var/postfix/conf/aliases ${pkgs.postfix}/sbin/postmap -c /var/postfix/conf /var/postfix/conf/virtual + ''; + script = '' ${pkgs.postfix}/sbin/postfix -c /var/postfix/conf start ''; + reload = '' + ${pkgs.postfix}/sbin/postfix -c /var/postfix/conf reload + ''; + preStop = '' - ${pkgs.postfix}/sbin/postfix -c /var/postfix/conf stop + ${pkgs.postfix}/sbin/postfix -c /var/postfix/conf stop ''; }; diff --git a/nixos/modules/services/networking/networkmanager.nix b/nixos/modules/services/networking/networkmanager.nix index 32491401530..19ff73ad1b8 100644 --- a/nixos/modules/services/networking/networkmanager.nix +++ b/nixos/modules/services/networking/networkmanager.nix @@ -14,9 +14,10 @@ let plugins=keyfile [keyfile] - ${optionalString (config.networking.hostName != "") '' - hostname=${config.networking.hostName} - ''} + ${optionalString (config.networking.hostName != "") + ''hostname=${config.networking.hostName}''} + ${optionalString (cfg.unmanaged != []) + ''unmanaged-devices=${lib.concatStringsSep ";" cfg.unmanaged}''} [logging] level=WARN @@ -98,6 +99,16 @@ in { ''; }; + unmanaged = mkOption { + type = types.listOf types.string; + default = []; + description = '' + List of interfaces that will not be managed by NetworkManager. + Interface name can be specified here, but if you need more fidelity + see "Device List Format" in NetworkManager.conf man page. + ''; + }; + # Ugly hack for using the correct gnome3 packageSet basePackages = mkOption { type = types.attrsOf types.path; diff --git a/nixos/modules/services/networking/quassel.nix b/nixos/modules/services/networking/quassel.nix index 15db2d5346b..52c7ac8e689 100644 --- a/nixos/modules/services/networking/quassel.nix +++ b/nixos/modules/services/networking/quassel.nix @@ -23,11 +23,11 @@ in ''; }; - interface = mkOption { - default = "127.0.0.1"; + interfaces = mkOption { + default = [ "127.0.0.1" ]; description = '' - The interface the Quassel daemon will be listening to. If `127.0.0.1', - only clients on the local host can connect to it; if `0.0.0.0', clients + The interfaces the Quassel daemon will be listening to. If `[ 127.0.0.1 ]', + only clients on the local host can connect to it; if `[ 0.0.0.0 ]', clients can access it from any network interface. ''; }; @@ -88,7 +88,7 @@ in serviceConfig = { - ExecStart = "${quassel}/bin/quasselcore --listen=${cfg.interface} --port=${toString cfg.portNumber} --configdir=${cfg.dataDir}"; + ExecStart = "${quassel}/bin/quasselcore --listen=${concatStringsSep '','' cfg.interfaces} --port=${toString cfg.portNumber} --configdir=${cfg.dataDir}"; User = user; PermissionsStartOnly = true; }; diff --git a/nixos/modules/services/networking/tlsdated.nix b/nixos/modules/services/networking/tlsdated.nix index f2d0c9f35c9..ff7d0178a81 100644 --- a/nixos/modules/services/networking/tlsdated.nix +++ b/nixos/modules/services/networking/tlsdated.nix @@ -63,7 +63,7 @@ in }); default = [ { - host = "www.ptb.de"; + host = "encrypted.google.com"; port = 443; proxy = null; } diff --git a/nixos/modules/services/x11/redshift.nix b/nixos/modules/services/x11/redshift.nix index ffae22d2d67..d40373ec2e5 100644 --- a/nixos/modules/services/x11/redshift.nix +++ b/nixos/modules/services/x11/redshift.nix @@ -22,14 +22,16 @@ in { latitude = mkOption { type = types.str; description = '' - Your current latitude. + Your current latitude, between + -90.0 and 90.0. ''; }; longitude = mkOption { type = types.str; description = '' - Your current longitude. + Your current longitude, between + between -180.0 and 180.0. ''; }; @@ -38,14 +40,16 @@ in { type = types.int; default = 5500; description = '' - Colour temperature to use during the day. + Colour temperature to use during the day, between + 1000 and 25000 K. ''; }; night = mkOption { type = types.int; default = 3700; description = '' - Colour temperature to use at night. + Colour temperature to use at night, between + 1000 and 25000 K. ''; }; }; diff --git a/nixos/modules/services/x11/window-managers/clfswm.nix b/nixos/modules/services/x11/window-managers/clfswm.nix new file mode 100644 index 00000000000..9d8eecb56c7 --- /dev/null +++ b/nixos/modules/services/x11/window-managers/clfswm.nix @@ -0,0 +1,31 @@ +{ config, lib, pkgs, ... }: + +with lib; + +let + cfg = config.services.xserver.windowManager.clfswm; +in + +{ + options = { + services.xserver.windowManager.clfswm = { + enable = mkOption { + type = types.bool; + default = false; + example = true; + description = "Enable the clfswm tiling window manager."; + }; + }; + }; + + config = mkIf cfg.enable { + services.xserver.windowManager.session = singleton { + name = "clfswm"; + start = '' + ${pkgs.clfswm}/bin/clfswm & + waitPID=$! + ''; + }; + environment.systemPackages = [ pkgs.clfswm ]; + }; +} diff --git a/nixos/modules/services/x11/window-managers/default.nix b/nixos/modules/services/x11/window-managers/default.nix index 4751de07a15..31f42f5ffb9 100644 --- a/nixos/modules/services/x11/window-managers/default.nix +++ b/nixos/modules/services/x11/window-managers/default.nix @@ -10,6 +10,7 @@ in imports = [ ./afterstep.nix ./bspwm.nix + ./clfswm.nix ./compiz.nix ./fluxbox.nix ./herbstluftwm.nix diff --git a/nixos/modules/system/boot/initrd-network.nix b/nixos/modules/system/boot/initrd-network.nix new file mode 100644 index 00000000000..6c6e2fafad4 --- /dev/null +++ b/nixos/modules/system/boot/initrd-network.nix @@ -0,0 +1,149 @@ +{ config, lib, pkgs, ... }: + +with lib; + +let + cfg = config.boot.initrd.network; + +in +{ + + options = { + + boot.initrd.network.enable = mkOption { + type = types.bool; + default = false; + description = '' + Add network connectivity support to initrd. + + Network options are configured via ip kernel + option, according to the kernel documentation. + ''; + }; + + boot.initrd.network.ssh.enable = mkOption { + type = types.bool; + default = false; + description = '' + Start SSH service during initrd boot. It can be used to debug failing + boot on a remote server, enter pasphrase for an encrypted partition etc. + Service is killed when stage-1 boot is finished. + ''; + }; + + boot.initrd.network.ssh.port = mkOption { + type = types.int; + default = 22; + description = '' + Port on which SSH initrd service should listen. + ''; + }; + + boot.initrd.network.ssh.shell = mkOption { + type = types.str; + default = "/bin/ash"; + description = '' + Login shell of the remote user. Can be used to limit actions user can do. + ''; + }; + + boot.initrd.network.ssh.hostRSAKey = mkOption { + type = types.nullOr types.path; + default = null; + description = '' + RSA SSH private key file in the Dropbear format. + + WARNING: This key is contained insecurely in the global Nix store. Do NOT + use your regular SSH host private keys for this purpose or you'll expose + them to regular users! + ''; + }; + + boot.initrd.network.ssh.hostDSSKey = mkOption { + type = types.nullOr types.path; + default = null; + description = '' + DSS SSH private key file in the Dropbear format. + + WARNING: This key is contained insecurely in the global Nix store. Do NOT + use your regular SSH host private keys for this purpose or you'll expose + them to regular users! + ''; + }; + + boot.initrd.network.ssh.hostECDSAKey = mkOption { + type = types.nullOr types.path; + default = null; + description = '' + ECDSA SSH private key file in the Dropbear format. + + WARNING: This key is contained insecurely in the global Nix store. Do NOT + use your regular SSH host private keys for this purpose or you'll expose + them to regular users! + ''; + }; + + boot.initrd.network.ssh.authorizedKeys = mkOption { + type = types.listOf types.str; + default = config.users.extraUsers.root.openssh.authorizedKeys.keys; + description = '' + Authorized keys for the root user on initrd. + ''; + }; + + }; + + config = mkIf cfg.enable { + + boot.initrd.kernelModules = [ "af_packet" ]; + + boot.initrd.extraUtilsCommands = '' + copy_bin_and_libs ${pkgs.mkinitcpio-nfs-utils}/bin/ipconfig + '' + optionalString cfg.ssh.enable '' + copy_bin_and_libs ${pkgs.dropbear}/bin/dropbear + + cp -pv ${pkgs.glibc}/lib/libnss_files.so.* $out/lib + ''; + + boot.initrd.extraUtilsCommandsTest = optionalString cfg.ssh.enable '' + $out/bin/dropbear -V + ''; + + boot.initrd.postEarlyDeviceCommands = '' + # Search for interface definitions in command line + for o in $(cat /proc/cmdline); do + case $o in + ip=*) + ipconfig $o && hasNetwork=1 + ;; + esac + done + '' + optionalString cfg.ssh.enable '' + if [ -n "$hasNetwork" ]; then + mkdir /dev/pts + mount -t devpts devpts /dev/pts + + mkdir -p /etc + echo 'root:x:0:0:root:/root:${cfg.ssh.shell}' > /etc/passwd + echo '${cfg.ssh.shell}' > /etc/shells + echo 'passwd: files' > /etc/nsswitch.conf + + mkdir -p /var/log + touch /var/log/lastlog + + mkdir -p /etc/dropbear + ${optionalString (cfg.ssh.hostRSAKey != null) "ln -s ${cfg.ssh.hostRSAKey} /etc/dropbear/dropbear_rsa_host_key"} + ${optionalString (cfg.ssh.hostDSSKey != null) "ln -s ${cfg.ssh.hostDSSKey} /etc/dropbear/dropbear_dss_host_key"} + ${optionalString (cfg.ssh.hostECDSAKey != null) "ln -s ${cfg.ssh.hostECDSAKey} /etc/dropbear/dropbear_ecdsa_host_key"} + + mkdir -p /root/.ssh + ${concatStrings (map (key: '' + echo -n ${escapeShellArg key} >> /root/.ssh/authorized_keys + '') cfg.ssh.authorizedKeys)} + + dropbear -s -j -k -E -m -p ${toString cfg.ssh.port} + fi + ''; + + }; +} diff --git a/nixos/modules/system/boot/luksroot.nix b/nixos/modules/system/boot/luksroot.nix index 4a14ff1879c..76370320563 100644 --- a/nixos/modules/system/boot/luksroot.nix +++ b/nixos/modules/system/boot/luksroot.nix @@ -32,9 +32,12 @@ let ''} open_normally() { - cryptsetup luksOpen ${device} ${name} ${optionalString allowDiscards "--allow-discards"} \ + echo luksOpen ${device} ${name} ${optionalString allowDiscards "--allow-discards"} \ ${optionalString (header != null) "--header=${header}"} \ - ${optionalString (keyFile != null) "--key-file=${keyFile} ${optionalString (keyFileSize != null) "--keyfile-size=${toString keyFileSize}"}"} + ${optionalString (keyFile != null) "--key-file=${keyFile} ${optionalString (keyFileSize != null) "--keyfile-size=${toString keyFileSize}"}"} \ + > /.luksopen_args + cryptsetup-askpass + rm /.luksopen_args } ${optionalString (luks.yubikeySupport && (yubikey != null)) '' @@ -418,6 +421,18 @@ in boot.initrd.extraUtilsCommands = '' copy_bin_and_libs ${pkgs.cryptsetup}/bin/cryptsetup + cat > $out/bin/cryptsetup-askpass < $out/bin/openssl-wrap < $out/bin/openssl-wrap <= $GLIB_REQUIRED)' \ + 'PKG_CHECK_MODULES(GIO, gio-2.0 >= $GLIB_REQUIRED gio-unix-2.0)' + autoconf + intltoolize + ''; + + postFixup = '' + wrapProgram $out/bin/audio-recorder \ + --prefix XDG_DATA_DIRS : "$out/share:$XDG_ICON_DIRS:$GSETTINGS_SCHEMAS_PATH" \ + --prefix GST_PLUGIN_SYSTEM_PATH_1_0 ":" "$GST_PLUGIN_SYSTEM_PATH_1_0" + ''; + + meta = with stdenv.lib; { + description = "Audio recorder for GNOME and Unity Desktops"; + longDescription = '' + This program allows you to record your favourite music or audio to a file. + It can record audio from your system soundcard, microphones, browsers and + webcams. Put simply; if it plays out of your loudspeakers you can record it. + This program has a timer that can start, stop or pause recording on certain + conditions such as audio level, file size and clock time. This recorder can + automatically record your Skype calls. It supports several audio (output) + formats such as OGG audio, Flac, MP3 and WAV. + ''; + homepage = https://launchpad.net/~audio-recorder; + license = licenses.gpl3; + platforms = platforms.linux; + maintainers = [ maintainers.msteen ]; + }; +} diff --git a/pkgs/applications/gis/grass/default.nix b/pkgs/applications/gis/grass/default.nix new file mode 100644 index 00000000000..13f9fe6bd77 --- /dev/null +++ b/pkgs/applications/gis/grass/default.nix @@ -0,0 +1,73 @@ +{ stdenv, fetchurl, flex, bison, pkgconfig, zlib, libtiff, libpng, fftw +, cairo, readline, ffmpeg, makeWrapper, wxGTK30, netcdf, blas +, proj, gdal, geos, sqlite, postgresql, mysql, pythonPackages +}: + +stdenv.mkDerivation { + name = "grass-7.0.1"; + src = fetchurl { + url = http://grass.osgeo.org/grass70/source/grass-7.0.1.tar.gz; + sha256 = "0ps0xfsgls1hai8fx8x74ajh3560p1yjql2sg02lpqpx30bdv1q9"; + }; + + buildInputs = [ flex bison zlib proj gdal libtiff libpng fftw sqlite pkgconfig cairo + readline ffmpeg makeWrapper wxGTK30 netcdf geos postgresql mysql.lib blas ] + ++ (with pythonPackages; [ python dateutil wxPython30 numpy sqlite3 ]); + + configureFlags = [ + "--with-proj-share=${proj}/share/proj" + "--without-opengl" + "--with-readline" + "--with-wxwidgets" + "--with-netcdf" + "--with-geos" + "--with-postgres" + "--with-mysql" "--with-mysql-includes=${mysql.lib}/include/mysql" + "--with-blas" + ]; + + /* Ensures that the python script run at build time are actually executable; + * otherwise, patchShebangs ignores them. */ + postConfigure = '' + chmod +x scripts/d.out.file/d.out.file.py \ + scripts/d.to.rast/d.to.rast.py \ + scripts/d.what.rast/d.what.rast.py \ + scripts/d.what.vect/d.what.vect.py \ + scripts/g.extension/g.extension.py \ + scripts/g.extension.all/g.extension.all.py \ + scripts/r.pack/r.pack.py \ + scripts/r.tileset/r.tileset.py \ + scripts/r.unpack/r.unpack.py \ + scripts/v.krige/v.krige.py \ + scripts/v.rast.stats/v.rast.stats.py \ + scripts/v.to.lines/v.to.lines.py \ + scripts/v.what.strds/v.what.strds.py \ + scripts/v.unpack/v.unpack.py \ + scripts/wxpyimgview/*.py \ + gui/wxpython/animation/g.gui.animation.py \ + gui/wxpython/rlisetup/g.gui.rlisetup.py \ + gui/wxpython/vdigit/g.gui.vdigit.py \ + temporal/t.rast.accumulate/t.rast.accumulate.py \ + temporal/t.rast.accdetect/t.rast.accdetect.py \ + temporal/t.select/t.select.py + for d in gui lib scripts temporal tools; do + patchShebangs $d + done + ''; + + postInstall = '' + wrapProgram $out/bin/grass70 \ + --set PYTHONPATH $PYTHONPATH \ + --set GRASS_PYTHON ${pythonPackages.python}/bin/${pythonPackages.python.executable} + ln -s $out/grass-*/lib $out/lib + ''; + + enableParallelBuilding = true; + + meta = { + homepage = http://grass.osgeo.org/; + description = "GIS software suite used for geospatial data management and analysis, image processing, graphics and maps production, spatial modeling, and visualization"; + license = stdenv.lib.licenses.gpl2Plus; + platforms = stdenv.lib.platforms.all; + }; +} diff --git a/pkgs/applications/gis/qgis/default.nix b/pkgs/applications/gis/qgis/default.nix index 8d9771c9134..b771d2552d8 100644 --- a/pkgs/applications/gis/qgis/default.nix +++ b/pkgs/applications/gis/qgis/default.nix @@ -1,11 +1,14 @@ -{ stdenv, fetchurl, gdal, cmake, qt4, flex, bison, proj, geos, xlibsWrapper, sqlite, gsl, - qwt, fcgi, pythonPackages, libspatialindex, libspatialite, qscintilla, postgresql, makeWrapper }: +{ stdenv, fetchurl, gdal, cmake, qt4, flex, bison, proj, geos, xlibsWrapper, sqlite, gsl +, qwt, fcgi, pythonPackages, libspatialindex, libspatialite, qscintilla, postgresql, makeWrapper +, withGrass ? false, grass +}: stdenv.mkDerivation rec { name = "qgis-2.10.1"; buildInputs = [ gdal qt4 flex bison proj geos xlibsWrapper sqlite gsl qwt qscintilla fcgi libspatialindex libspatialite postgresql ] ++ + (stdenv.lib.optional withGrass grass) ++ (with pythonPackages; [ numpy psycopg2 ]) ++ [ pythonPackages.qscintilla ]; nativeBuildInputs = [ cmake makeWrapper ]; @@ -24,6 +27,8 @@ stdenv.mkDerivation rec { sha256 = "79119b54642edaffe3cda513531eb7b81913e013954a49c6d3b21c8b00143307"; }; + cmakeFlags = stdenv.lib.optional withGrass "-DGRASS_PREFIX7=${grass}/${grass.name}"; + postInstall = '' wrapProgram $out/bin/qgis \ --prefix PYTHONPATH : $PYTHONPATH diff --git a/pkgs/applications/misc/dmenu/default.nix b/pkgs/applications/misc/dmenu/default.nix index 1ba3ee5268f..ac1852cd893 100644 --- a/pkgs/applications/misc/dmenu/default.nix +++ b/pkgs/applications/misc/dmenu/default.nix @@ -1,35 +1,28 @@ -{stdenv, fetchurl, libX11, libXinerama, enableXft, libXft, zlib}: - -with stdenv.lib; +{stdenv, fetchurl, libX11, libXinerama, libXft, zlib}: stdenv.mkDerivation rec { - name = "dmenu-4.5"; + name = "dmenu-4.6"; src = fetchurl { url = "http://dl.suckless.org/tools/${name}.tar.gz"; - sha256 = "0l58jpxrr80fmyw5pgw5alm5qry49aw6y049745wl991v2cdcb08"; + sha256 = "1cwnvamqqlgczvd5dv5rsgqbhv8kp0ddjnhmavb3q732i8028yja"; }; - xftPatch = fetchurl { - url = "http://tools.suckless.org/dmenu/patches/${name}-xft.diff"; - sha256 = "efb4095d65e5e86f9dde97294732174409c24f319bdd4824cc22fa1404972b4f"; - }; - - buildInputs = [ libX11 libXinerama ] ++ optionals enableXft [zlib libXft]; - - patches = optional enableXft xftPatch; + buildInputs = [ libX11 libXinerama zlib libXft ]; postPatch = '' sed -ri -e 's!\<(dmenu|stest)\>!'"$out/bin"'/&!g' dmenu_run ''; - preConfigure = [ ''sed -i "s@PREFIX = /usr/local@PREFIX = $out@g" config.mk'' ]; + preConfigure = '' + sed -i "s@PREFIX = /usr/local@PREFIX = $out@g" config.mk + ''; - meta = { - description = "a generic, highly customizable, and efficient menu for the X Window System"; + meta = with stdenv.lib; { + description = "A generic, highly customizable, and efficient menu for the X Window System"; homepage = http://tools.suckless.org/dmenu; - license = stdenv.lib.licenses.mit; - maintainers = with stdenv.lib.maintainers; [viric]; - platforms = with stdenv.lib.platforms; all; + license = licenses.mit; + maintainers = with maintainers; [ viric pSub ]; + platforms = platforms.all; }; } diff --git a/pkgs/applications/misc/grass/default.nix b/pkgs/applications/misc/grass/default.nix deleted file mode 100644 index 5ff14458840..00000000000 --- a/pkgs/applications/misc/grass/default.nix +++ /dev/null @@ -1,190 +0,0 @@ -{ config, libXmu, libXext, libXp, libX11, libXt, libSM, libICE, libXpm - , libXaw, libXrender - , composableDerivation, stdenv, fetchurl - , lib, flex, bison, cairo, fontconfig - , gdal, zlib, ncurses, gdbm, proj, pkgconfig, swig - , blas, liblapack, libjpeg, libpng, mysql, unixODBC, mesa, postgresql, python - , readline, sqlite, tcl, tk, libtiff, freetype, makeWrapper, wxGTK, ffmpeg, fftw - , wxPython, motif, opendwg }@a: - -# You can set gui by exporting GRASS_GUI=.. -# see http://grass.itc.it/gdp/html_grass64/g.gui.html -# defaulting to wxpython because this is used in the manual -let inherit (builtins) getAttr; - inherit (a.composableDerivation) edf wwf; - inherit (a.stdenv.lib) maybeAttr optionalString; - - # wrapper for wwf call - # lib: the lib whose include and lib paths should be passed - # {}@args: additional args being merged before passing everything to wwf - wwfp = lib: {name, ...}@args: - let mbEnable = maybeAttr "enable" {} args; - in wwf (args // { - enable = mbEnable // { - buildInputs = [ lib ] - ++ maybeAttr "buildInputs" [] mbEnable; - configureFlags = [ - "--with-${name}-libs=${lib}/lib" - "--with-${name}-includes=${lib}/include" - ] ++ maybeAttr "configureFlags" [] mbEnable; - }; - }); -in -a.composableDerivation.composableDerivation {} (fix: { - - name = "grass-6.4.0RC6"; - - buildInputs = [ - # gentoos package depends on gmath ? - a.pkgconfig - a.flex a.bison a.libXmu a.libXext a.libXp a.libX11 a.libXt a.libSM a.libICE - a.libXpm a.libXaw a.flex a.bison a.gdbm - a.makeWrapper - ]; - - cfg = { - _64bitSupport = config.grass."64bitSupport" or true; - cursesSupport = config.grass.curses or true; - gdalSupport = config.grass.gdal or true; - pythonSupport = config.grass.python or true; - wxwidgetsSupport = config.grass.wxwidgets or true; - readlineSupport = config.grass.readline or true; - jpegSupport = config.grass.jpeg or true; - tiffSupport = config.grass.tiff or true; - pngSupport = config.grass.png or true; - tcltkSupport = config.grass.tcltk or true; - postgresSupport = config.grass.postgres or true; - mysqlSupport = config.grass.mysql or true; - sqliteSupport = config.grass.sqlite or true; - ffmpegSupport = config.grass.ffmpeg or true; - openglSupport = config.grass.opengl or true; - odbcSupport = config.grass.odbc or false; # fails to find libodbc - why ? - fftwSupport = config.grass.fftw or true; - blasSupport = config.grass.blas or true; - lapackSupport = config.grass.lapack or true; - cairoSupport = config.grass.cairo or true; - motifSupport = config.grass.motif or true; - freetypeSupport = config.grass.freetype or true; - projSupport = config.grass.proj or true; - opendwgSupport = config.grass.dwg or false; - largefileSupport = config.grass.largefile or true; - }; - - # ?? NLS support: no - # ?? GLw support: no - # ?? DWG support: no - flags = { - - python = { - configureFlags = [ "--with-python=${a.python}/bin/python-config" ]; - buildInputs = [a.python a.swig]; - }; - - } - // edf { name = "_64bit"; feat = "64bit"; } - // wwfp a.ncurses { name = "curses"; } - // wwfp a.gdal { name = "gdal"; } - // wwfp a.wxGTK { name = "wxwidgets"; value = "${a.wxGTK}/bin/wx-config"; } - // wwfp a.readline { name = "readline"; } - // wwfp a.libjpeg { name = "jpeg"; } - // wwfp a.libtiff { name = "tiff"; } - // wwfp a.libpng { name = "png"; } - // wwfp a.tk { name = "tcltk"; enable.buildInputs = [ a.tcl ]; } - // wwfp a.postgresql { name = "postgres"; } - // wwf { - name = "mysql"; - enable = { - buildInputs = [ a.mysql.lib ]; - configureFlags = [ - "--with-mysql-libs=${a.mysql.lib}/lib/mysql" - "--with-mysql-includes=${a.mysql.lib}/include/mysql" - ]; - }; - } - // wwfp a.sqlite { name = "sqlite"; } - // wwf { - name = "ffmpeg"; - enable = { - configureFlags = [ - "--with-ffmpeg-libs=${a.ffmpeg}/lib" - "--with-ffmpeg-includes=${a.ffmpeg}/include" - ]; - # is there a nicer way to pass additional include directories? - # this should work: --with-ffmpeg-includes=/usr/include/lib[av|sw]* - # I did not try - preConfigure = '' - for dir in ${a.ffmpeg}/include/*; do - if [ -d $dir ]; then - NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I$dir" - fi - done - ''; - buildInputs = [a.ffmpeg]; - }; - } - // wwfp a.mesa { name = "opengl"; } - // wwfp a.unixODBC { name = "odbc"; } - // wwfp a.fftw { name = "fftw"; } - // wwf { - name = "blas"; - enable.configureFlags = [ "--with-blas-libs=${a.blas}/lib" ]; - } - // wwf { - name = "lapack"; - enable.configureFlags = [ "--with-lapack-libs=${a.liblapack}/lib" ]; - } - // wwfp a.cairo { - name = "cairo"; - enable.buildInputs = [ a.fontconfig a.libXrender ]; - } - // wwfp a.motif { name = "motif"; } - // wwf { - name="freetype"; - enable = { - buildInputs = [ a.freetype ]; - configureFlags = [ - "--with-freetype-libs=${a.freetype}/lib" - "--with-freetype-includes=${a.freetype}/include/freetype2" - ]; - }; - } - // wwfp a.proj { name = "proj"; enable.configureFlags = [ "--with-proj-share=${a.proj}/share"]; } - // wwfp a.opendwg { name = "opendwg"; } - // edf { - name = "largefile"; - }; - /* ? - // wwf { - name = "x"; - enable.buildInputs = []; - }; - */ - - src = a.fetchurl { - url = "http://grass.itc.it/grass64/source/grass-6.4.0RC6.tar.gz"; - sha256 = "043cxa224rd4q1x2mq7sl7ylnxv2vvb4k8laycgcjnp60nzhlmaz"; - }; - - postInstall = '' - e=$(echo $out/bin/grass*) - mv $out/bin/{,.}$(basename $e) - cat >> $e << EOF - #!/bin/sh - export PATH=${a.python}/bin:\$PATH - export GRASS_WISH=\${a.tk}/bin/wish - export GRASS_GUI=\''${GRASS_GUI:-wxpython} - export SHELL=/bin/sh - ${optionalString fix.fixed.cfg.wxwidgetsSupport ''export PYTHONPATH=\$PYTHONPATH\''${PYTHONPATH:+:}:$(toPythonPath ${a.wxPython})''} - exec $out/bin/.$(basename $e) - EOF - chmod +x $e - ''; - - meta = { - description = "free Geographic Information System (GIS) software used for geospatial data management and analysis, image processing, graphics/maps production, spatial modeling, and visualization"; - homepage = http://grass.itc.it/index.php; - license = "GPL"; - broken = true; - }; - -}) diff --git a/pkgs/applications/misc/mediainfo-gui/default.nix b/pkgs/applications/misc/mediainfo-gui/default.nix index dee0f92822a..a7dfac1eb0d 100644 --- a/pkgs/applications/misc/mediainfo-gui/default.nix +++ b/pkgs/applications/misc/mediainfo-gui/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, automake, autoconf, libtool, pkgconfig, libzen, libmediainfo, wxGTK, desktop_file_utils, libSM, imagemagick }: stdenv.mkDerivation rec { - version = "0.7.78"; + version = "0.7.79"; name = "mediainfo-gui-${version}"; src = fetchurl { url = "http://mediaarea.net/download/source/mediainfo/${version}/mediainfo_${version}.tar.xz"; - sha256 = "0458rxla3nhw9rbb2psak8qvxwr0drfhdl82k6wvb3a38xb0qij3"; + sha256 = "0qwb3msw9gfzdymlirpvzah0lcszc2p67jg8k5ca2camymnfcvx3"; }; buildInputs = [ automake autoconf libtool pkgconfig libzen libmediainfo wxGTK desktop_file_utils libSM imagemagick ]; diff --git a/pkgs/applications/misc/mediainfo/default.nix b/pkgs/applications/misc/mediainfo/default.nix index 1bf10e07ee7..560e0ef1433 100644 --- a/pkgs/applications/misc/mediainfo/default.nix +++ b/pkgs/applications/misc/mediainfo/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, automake, autoconf, libtool, pkgconfig, libzen, libmediainfo, zlib }: stdenv.mkDerivation rec { - version = "0.7.78"; + version = "0.7.79"; name = "mediainfo-${version}"; src = fetchurl { url = "http://mediaarea.net/download/source/mediainfo/${version}/mediainfo_${version}.tar.xz"; - sha256 = "0458rxla3nhw9rbb2psak8qvxwr0drfhdl82k6wvb3a38xb0qij3"; + sha256 = "0qwb3msw9gfzdymlirpvzah0lcszc2p67jg8k5ca2camymnfcvx3"; }; buildInputs = [ automake autoconf libtool pkgconfig libzen libmediainfo zlib ]; diff --git a/pkgs/applications/networking/mumble/default.nix b/pkgs/applications/networking/mumble/default.nix index 8660d94a9e0..dac1a9ada3b 100644 --- a/pkgs/applications/networking/mumble/default.nix +++ b/pkgs/applications/networking/mumble/default.nix @@ -20,10 +20,10 @@ let patches = optional jackSupport ./mumble-jack-support.patch; nativeBuildInputs = [ pkgconfig ] - ++ { qt4 = [ qt4 ]; qt5 = [ qt5.base ]; }."qt${toString source.qtVersion}" + ++ { qt4 = [ qt4 ]; qt5 = [ qt5.qtbase ]; }."qt${toString source.qtVersion}" ++ (overrides.nativeBuildInputs or [ ]); buildInputs = [ boost protobuf avahi ] - ++ { qt4 = [ qt4 ]; qt5 = [ qt5.base ]; }."qt${toString source.qtVersion}" + ++ { qt4 = [ qt4 ]; qt5 = [ qt5.qtbase ]; }."qt${toString source.qtVersion}" ++ (overrides.buildInputs or [ ]); configureFlags = [ @@ -66,9 +66,9 @@ let client = source: generic { type = "mumble"; - nativeBuildInputs = optional (source.qtVersion == 5) qt5.tools; + nativeBuildInputs = optional (source.qtVersion == 5) qt5.qttools; buildInputs = [ libopus libsndfile speex ] - ++ optional (source.qtVersion == 5) qt5.svg + ++ optional (source.qtVersion == 5) qt5.qtsvg ++ optional stdenv.isLinux alsaLib ++ optional jackSupport libjack2 ++ optional speechdSupport speechd @@ -116,13 +116,13 @@ let }; gitSource = rec { - version = "1.3.0-git-2015-09-27"; + version = "1.3.0-git-2015-11-08"; qtVersion = 5; src = fetchgit { url = "https://github.com/mumble-voip/mumble"; - rev = "13e494c60beb20748eeb8be126b27e1226d168c8"; - sha256 = "1vihassis5i7hyljbb8qjihjj4y80n5l380x5dl0nwb55j2mylhg"; + rev = "72038f6aa038f5964e2bba5a09d3d391d4680e5f"; + sha256 = "03978b85f7y0bffl8vwkmakjnxxjqapfz3pn0b8zf3b1ppwjy9g4"; }; # TODO: Remove fetchgit as it requires git diff --git a/pkgs/applications/networking/seafile-client/default.nix b/pkgs/applications/networking/seafile-client/default.nix index 63bec355f22..108135cea37 100644 --- a/pkgs/applications/networking/seafile-client/default.nix +++ b/pkgs/applications/networking/seafile-client/default.nix @@ -2,13 +2,13 @@ stdenv.mkDerivation rec { - version = "4.0.6"; + version = "4.4.2"; name = "seafile-client-${version}"; src = fetchurl { url = "https://github.com/haiwen/seafile-client/archive/v${version}.tar.gz"; - sha256 = "0hx8zjmgj4ki2p5fkdyz32fy8db60p6rvi3my9l59j7fslv71k1z"; + sha256 = "0aj39xiayibxp3vcrwi58pn51h9vcsy2z04q8jm17qadmk9dzyw6"; }; buildInputs = [ pkgconfig cmake qt4 seafile-shared makeWrapper ]; diff --git a/pkgs/applications/version-management/git-and-tools/tig/default.nix b/pkgs/applications/version-management/git-and-tools/tig/default.nix index 4c8430ed5c5..362897d0e72 100644 --- a/pkgs/applications/version-management/git-and-tools/tig/default.nix +++ b/pkgs/applications/version-management/git-and-tools/tig/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, ncurses, asciidoc, xmlto, docbook_xsl, docbook_xml_dtd_45 -, readline, makeWrapper, git +, readline, makeWrapper, git, libiconv }: stdenv.mkDerivation rec { @@ -10,7 +10,8 @@ stdenv.mkDerivation rec { sha256 = "0bw5wivswwh7vx897q8xc2cqgkqhdzk8gh6fnav2kf34sngigiah"; }; - buildInputs = [ ncurses asciidoc xmlto docbook_xsl readline git makeWrapper ]; + buildInputs = [ ncurses asciidoc xmlto docbook_xsl readline git makeWrapper ] + ++ stdenv.lib.optionals stdenv.isDarwin [ libiconv ]; preConfigure = '' export XML_CATALOG_FILES='${docbook_xsl}/xml/xsl/docbook/catalog.xml ${docbook_xml_dtd_45}/xml/dtd/docbook/catalog.xml' diff --git a/pkgs/applications/video/popcorntime/default.nix b/pkgs/applications/video/popcorntime/default.nix index 41d8b5a577d..e74c8e9a5a8 100644 --- a/pkgs/applications/video/popcorntime/default.nix +++ b/pkgs/applications/video/popcorntime/default.nix @@ -44,6 +44,7 @@ in license = stdenv.lib.licenses.gpl3; platforms = platforms.linux; maintainers = with maintainers; [ bobvanderlinden ]; + broken = true; # popcorntime.io is dead }; } '' diff --git a/pkgs/applications/virtualization/tini/default.nix b/pkgs/applications/virtualization/tini/default.nix new file mode 100644 index 00000000000..fe016da6e58 --- /dev/null +++ b/pkgs/applications/virtualization/tini/default.nix @@ -0,0 +1,24 @@ +{ stdenv, fetchurl, cmake }: + +stdenv.mkDerivation rec { + version = "0.8.3"; + name = "tini-${version}"; + src = fetchurl { + url = "https://github.com/krallin/tini/archive/v0.8.3.tar.gz"; + sha256 ="1w7rj4crrcyv25idmh4asbp2sxzwyihy5mbpw384bzxjzaxn9xpa"; + }; + NIX_CFLAGS_COMPILE = [ + "-DPR_SET_CHILD_SUBREAPER=36" + "-DPR_GET_CHILD_SUBREAPER=37" + ]; + buildInputs = [ cmake ]; + postInstall = '' + rm $out/bin/tini-static + ''; + meta = with stdenv.lib; { + description = "A tiny but valid init for containers"; + homepage = https://github.com/krallin/tini; + license = licenses.mit; + platforms = platforms.linux; + }; +} diff --git a/pkgs/applications/window-managers/clfswm/default.nix b/pkgs/applications/window-managers/clfswm/default.nix new file mode 100644 index 00000000000..ec900949392 --- /dev/null +++ b/pkgs/applications/window-managers/clfswm/default.nix @@ -0,0 +1,44 @@ +{ stdenv, pkgs, fetchgit, autoconf, sbcl, lispPackages, xdpyinfo, texinfo4 +, makeWrapper , rlwrap, gnused, gnugrep, coreutils, xprop +, extraModulePaths ? [] }: + +stdenv.mkDerivation rec { + name = "clfswm"; + + src = fetchgit { + url = "https://gitlab.common-lisp.net/clfswm/clfswm.git"; + rev = "refs/heads/master"; + sha256 = "1hkm6bn5xww932w34l13bg87m5hsnwnd0i1lka6sw0cq8whndya0"; + }; + + buildInputs = [ + texinfo4 makeWrapper autoconf + sbcl + lispPackages.clx + lispPackages.cl-ppcre + xdpyinfo + ]; + + patches = [ ./require-clx.patch ]; + + # Stripping destroys the generated SBCL image + dontStrip = true; + + installPhase = '' + mkdir -pv $out/bin + make DESTDIR=$out install + + # Paths in the compressed image $out/bin/clfswm are not + # recognized by Nix. Add explicit reference here. + mkdir $out/nix-support + echo ${xdpyinfo} ${lispPackages.clx} ${lispPackages.cl-ppcre} > $out/nix-support/depends + ''; + + meta = with stdenv.lib; { + description = "A(nother) Common Lisp FullScreen Window Manager"; + homepage = https://common-lisp.net/project/clfswm/; + license = licenses.gpl3; + maintainers = with maintainers; [ robgssp ]; + platforms = platforms.linux; + }; +} diff --git a/pkgs/applications/window-managers/clfswm/require-clx.patch b/pkgs/applications/window-managers/clfswm/require-clx.patch new file mode 100644 index 00000000000..ae2234461d2 --- /dev/null +++ b/pkgs/applications/window-managers/clfswm/require-clx.patch @@ -0,0 +1,13 @@ +diff --git a/load.lisp b/load.lisp +index c8c4cf0..8c9ca2e 100644 +--- a/load.lisp ++++ b/load.lisp +@@ -111,6 +111,8 @@ from $XDG_CONFIG_HOME/clfswm/clfswmrc") + ;;;------------------ + (load-info "Requiring CLX") + ++(require 'clx) ++ + ;;; Loading clisp dynamic module. This part needs clisp >= 2.50 + ;;#+(AND CLISP (not CLX)) + ;;(when (fboundp 'require) diff --git a/pkgs/build-support/build-fhs-chrootenv/env.nix b/pkgs/build-support/build-fhs-chrootenv/env.nix index 4c307a77d12..a8293ea803c 100644 --- a/pkgs/build-support/build-fhs-chrootenv/env.nix +++ b/pkgs/build-support/build-fhs-chrootenv/env.nix @@ -54,8 +54,8 @@ let etcProfile = nixpkgs.writeText "profile" '' export PS1='${name}-chrootenv:\u@\h:\w\$ ' - export LOCALE_ARCHIVE='/usr/lib${if isMultiBuild then "64" else ""}/locale/locale-archive' - export LD_LIBRARY_PATH=/run/opengl-driver/lib:/run/opengl-driver-32/lib:/lib:/lib64 + export LOCALE_ARCHIVE='/usr/lib/locale/locale-archive' + export LD_LIBRARY_PATH='/run/opengl-driver/lib:/run/opengl-driver-32/lib:/usr/lib:/usr/lib32' export PATH='/usr/bin:/usr/sbin' ${profile} ''; @@ -129,7 +129,7 @@ let setupLibDirs_multi = '' mkdir -m0755 lib32 mkdir -m0755 lib64 - ln -s lib32 lib + ln -s lib64 lib # copy glibc stuff cp -rsHf ${staticUsrProfileTarget}/lib/32/* lib32/ && chmod u+w -R lib32/ @@ -149,6 +149,9 @@ let # copy gcc libs cp -rsHf ${chosenGcc.cc}/lib/* lib32/ cp -rsHf ${chosenGcc.cc}/lib64/* lib64/ + + # symlink 32-bit ld-linux.so + ln -s ${staticUsrProfileTarget}/lib/32/ld-linux.so.2 lib/ ''; setupLibDirs = if isTargetBuild then setupLibDirs_target diff --git a/pkgs/build-support/nuke-references/builder.sh b/pkgs/build-support/nuke-references/builder.sh index 9e8c464d828..02eac664d43 100644 --- a/pkgs/build-support/nuke-references/builder.sh +++ b/pkgs/build-support/nuke-references/builder.sh @@ -3,11 +3,26 @@ source $stdenv/setup mkdir -p $out/bin cat > $out/bin/nuke-refs < \$i.tmp - if test -x \$i; then chmod +x \$i.tmp; fi - mv \$i.tmp \$i + +excludes="" +while getopts e: o; do + case "\$o" in + e) storeId=\$(echo "\$OPTARG" | sed -n "s|^$NIX_STORE/\\([a-z0-9]\{32\}\\)-.*|\1|p") + if [ -z "\$storeId" ]; then + echo "-e argument must be a Nix store path" + exit 1 + fi + excludes="\$excludes(?!\$storeId)" + ;; + esac +done +shift \$((\$OPTIND-1)) + +for i in "\$@"; do + if test ! -L "\$i" -a -f "\$i"; then + cat "\$i" | $perl/bin/perl -pe "s|$NIX_STORE/\$excludes[a-z0-9]{32}-|$NIX_STORE/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-|g" > "\$i.tmp" + if test -x "\$i"; then chmod +x "\$i.tmp"; fi + mv "\$i.tmp" "\$i" fi done EOF diff --git a/pkgs/build-support/nuke-references/default.nix b/pkgs/build-support/nuke-references/default.nix index d672184553f..8f976ad462c 100644 --- a/pkgs/build-support/nuke-references/default.nix +++ b/pkgs/build-support/nuke-references/default.nix @@ -3,9 +3,10 @@ # path (/nix/store/eeee...). This is useful for getting rid of # dependencies that you know are not actually needed at runtime. -{stdenv}: +{ stdenv, perl }: stdenv.mkDerivation { name = "nuke-references"; builder = ./builder.sh; -} \ No newline at end of file + inherit perl; +} diff --git a/pkgs/development/compilers/fsharp/default.nix b/pkgs/development/compilers/fsharp/default.nix index 11bae06fc74..12df5721cc4 100644 --- a/pkgs/development/compilers/fsharp/default.nix +++ b/pkgs/development/compilers/fsharp/default.nix @@ -4,15 +4,17 @@ stdenv.mkDerivation rec { name = "fsharp-${version}"; - version = "3.1.2.5"; + version = "4.0.0.4"; src = fetchurl { url = "https://github.com/fsharp/fsharp/archive/${version}.tar.gz"; - sha256 = "1j6lnzvhj8fj1csb9am9xcrmmph6v3jyangkq8n1yp3dr6yxqzh1"; + sha256 = "1m9pwr4xjl3ikaf3pzsa4pb3pr533xa0v34y2cy4pjcc6j0f71av"; }; buildInputs = [ mono pkgconfig dotnetbuildhelpers autoconf automake which ]; + configurePhase = '' + sed -i '988d' src/FSharpSource.targets substituteInPlace ./autogen.sh --replace "/usr/bin/env sh" "/bin/sh" ./autogen.sh --prefix $out ''; diff --git a/pkgs/development/compilers/go/1.4.nix b/pkgs/development/compilers/go/1.4.nix index 408759013e8..4f25b2674e7 100644 --- a/pkgs/development/compilers/go/1.4.nix +++ b/pkgs/development/compilers/go/1.4.nix @@ -63,9 +63,15 @@ stdenv.mkDerivation rec { '' + lib.optionalString stdenv.isDarwin '' sed -i 's,"/etc","'"$TMPDIR"'",' src/os/os_test.go sed -i 's,/_go_os_test,'"$TMPDIR"'/_go_os_test,' src/os/path_test.go + sed -i '/TestCgoLookupIP/areturn' src/net/cgo_unix_test.go + sed -i '/TestChdirAndGetwd/areturn' src/os/os_test.go + sed -i '/TestDialDualStackLocalhost/areturn' src/net/dial_test.go sed -i '/TestRead0/areturn' src/os/os_test.go sed -i '/TestSystemRoots/areturn' src/crypto/x509/root_darwin_test.go - sed -i '/TestDialDualStackLocalhost/areturn' src/net/dial_test.go + + # fails when running inside tmux + sed -i '/TestNohup/areturn' src/os/signal/signal_test.go + # remove IP resolving tests, on darwin they can find fe80::1%lo while expecting ::1 sed -i '/TestResolveIPAddr/areturn' src/net/ipraw_test.go diff --git a/pkgs/development/compilers/go/1.5.nix b/pkgs/development/compilers/go/1.5.nix index ccbb50f42d1..ce5c2579b89 100644 --- a/pkgs/development/compilers/go/1.5.nix +++ b/pkgs/development/compilers/go/1.5.nix @@ -74,9 +74,14 @@ stdenv.mkDerivation rec { sed -i 's,strings.Contains(.*sysctl.*,true {,' src/cmd/dist/util.go sed -i 's,"/etc","'"$TMPDIR"'",' src/os/os_test.go sed -i 's,/_go_os_test,'"$TMPDIR"'/_go_os_test,' src/os/path_test.go + sed -i '/TestCgoLookupIP/areturn' src/net/cgo_unix_test.go + sed -i '/TestChdirAndGetwd/areturn' src/os/os_test.go sed -i '/TestRead0/areturn' src/os/os_test.go sed -i '/TestSystemRoots/areturn' src/crypto/x509/root_darwin_test.go + sed -i '/TestGoInstallRebuildsStalePackagesInOtherGOPATH/areturn' src/cmd/go/go_test.go + sed -i '/TestBuildDashIInstallsDependencies/areturn' src/cmd/go/go_test.go + sed -i '/TestDisasmExtld/areturn' src/cmd/objdump/objdump_test.go touch $TMPDIR/group $TMPDIR/hosts $TMPDIR/passwd diff --git a/pkgs/development/compilers/mono/default.nix b/pkgs/development/compilers/mono/default.nix index 306e287fbc2..a7a4d8da4ed 100644 --- a/pkgs/development/compilers/mono/default.nix +++ b/pkgs/development/compilers/mono/default.nix @@ -6,10 +6,10 @@ let in stdenv.mkDerivation rec { name = "mono-${version}"; - version = "4.0.3.20"; + version = "4.0.4.1"; src = fetchurl { url = "http://download.mono-project.com/sources/mono/${name}.tar.bz2"; - sha256 = "1z0k8gv5z3yrkjhi2yjaqj42p55jn5h3q4z890gkcrlvmgihnv4p"; + sha256 = "1ydw9l89apc9p7xr5mdzy0h97g2q6v243g82mxswfc2rrqhfs4gd"; }; buildInputs = diff --git a/pkgs/development/compilers/openjdk/7.nix b/pkgs/development/compilers/openjdk/7.nix index 8acd7f69cbb..97ffbf9f099 100644 --- a/pkgs/development/compilers/openjdk/7.nix +++ b/pkgs/development/compilers/openjdk/7.nix @@ -17,9 +17,9 @@ let else throw "openjdk requires i686-linux or x86_64 linux"; - update = "85"; + update = "91"; - build = "02"; + build = "01"; # On x86 for heap sizes over 700MB disable SEGMEXEC and PAGEEXEC as well. paxflags = if stdenv.isi686 then "msp" else "m"; @@ -33,31 +33,31 @@ let repover = "jdk7u${update}-b${build}"; jdk7 = fetchurl { url = "${baseurl}/archive/${repover}.tar.gz"; - sha256 = "1fs0vphf0z2hi51hzlw3ix80b9byah1mzhy5csh9j5f200q3ykk5"; + sha256 = "08f7cbayyrryim3xbrs12cr12i1mczcikyc9rdlsyih0r4xvll28"; }; langtools = fetchurl { url = "${baseurl}/langtools/archive/${repover}.tar.gz"; - sha256 = "0n2cp0az2fyhaf34fmhiy57mdyp78596z7426alrww0jrv5491az"; + sha256 = "0rmlzrgsacn60blpg1sp30k6p0sgzsml8wb41yc998km1bsnjxnh"; }; hotspot = fetchurl { url = "${baseurl}/hotspot/archive/${repover}.tar.gz"; - sha256 = "1l38wniq69vqlfk2rz8bmwly9wxrvlizf95x3wm2d0m5fsqsxhri"; + sha256 = "1w1n81y9jcvjzssl4049yzfc0gdfnh73ki6wg1d8pg22zlyhrrwv"; }; corba = fetchurl { url = "${baseurl}/corba/archive/${repover}.tar.gz"; - sha256 = "0wys2zs1wvfiggvmqfmmgfamdqm5jln1sflc18w7bfzn4i77yy5j"; + sha256 = "086yr927bxnlgljx7mw2cg6f6aip57hi4qpn1h35n6fsyvb4n67h"; }; jdk = fetchurl { url = "${baseurl}/jdk/archive/${repover}.tar.gz"; - sha256 = "094fdj3vlfgd6v8y0x03l6p5byvrskxcdw62xpp2bdp4z41ag79m"; + sha256 = "14r39ylj3qa63arpqxl0h84baah1kjgnyp3v9d7d4vd0yagpn66b"; }; jaxws = fetchurl { url = "${baseurl}/jaxws/archive/${repover}.tar.gz"; - sha256 = "0bh61mxxxj8pvg6yjs4w53an6zjyrg242b8j0w4mlsjldrrv1wy4"; + sha256 = "1p1739gb5gx9m4sm3i4javfk9lk41wnz92k6gis6sq99dd1bj1l5"; }; jaxp = fetchurl { url = "${baseurl}/jaxp/archive/${repover}.tar.gz"; - sha256 = "054qwx67z6ailrr5gx6zhp3090zc607bak7wlfpqbvvqr1dqqq5x"; + sha256 = "1nl3kmbwqhhymcp25rnmf5mr3dn87lgdxvz9wgng7if6yqxlyakq"; }; openjdk = stdenv.mkDerivation rec { name = "openjdk-7u${update}b${build}"; diff --git a/pkgs/development/compilers/openjdk/8.nix b/pkgs/development/compilers/openjdk/8.nix index 5d53ed7f025..bbbae38f6b8 100644 --- a/pkgs/development/compilers/openjdk/8.nix +++ b/pkgs/development/compilers/openjdk/8.nix @@ -18,42 +18,42 @@ let else throw "openjdk requires i686-linux or x86_64 linux"; - update = "72"; - build = "04"; + update = "76"; + build = "00"; baseurl = "http://hg.openjdk.java.net/jdk8u/jdk8u"; repover = "jdk8u${update}-b${build}"; paxflags = if stdenv.isi686 then "msp" else "m"; jdk8 = fetchurl { url = "${baseurl}/archive/${repover}.tar.gz"; - sha256 = "07akz911xr1x28apxpk4vf9d5d76q3kzayjzdmg5czpd25fq122f"; + sha256 = "1bzwrm18vdd531xxin7pzsc5dx2ybkdgdxz6jp2ki19ka6pmk1l7"; }; langtools = fetchurl { url = "${baseurl}/langtools/archive/${repover}.tar.gz"; - sha256 = "0d6b213phkrl8mcfydiv1lp9xifwb36rpxlkpkjnamzk4dxsvwwc"; + sha256 = "044gyb7hgrahlr78vah9r3wfv6w569ihqzwqplwzr6m0l1s52994"; }; hotspot = fetchurl { url = "${baseurl}/hotspot/archive/${repover}.tar.gz"; - sha256 = "12hzkwy0rhpqkj9imh90x6qi6hdg19mib1vnpb76w27p3yfr7x3j"; + sha256 = "1if70s9wjsvmrdj92ky88ngpmigi9c5gfpkilpydzdibs38f05f8"; }; corba = fetchurl { url = "${baseurl}/corba/archive/${repover}.tar.gz"; - sha256 = "1qxs34wl3pm99ryy9hvxhl8dyrsj5cj21ci9rf94x8agmbxrjlak"; + sha256 = "0fl852x25cjzz3lrhjnhj59qbb4m3ywwc2f9vbj6mqdnpzl7cg83"; }; jdk = fetchurl { url = "${baseurl}/jdk/archive/${repover}.tar.gz"; - sha256 = "0hcf9azgr7p2ry7n117ba5k4q4h15gjh8nx7n8p45h3rr0a0ixh5"; + sha256 = "11ql3p5fsizrn1fiylfkgrw0lgf6snwyich18hggsmd00bhvv3ah"; }; jaxws = fetchurl { url = "${baseurl}/jaxws/archive/${repover}.tar.gz"; - sha256 = "0kymcfk3khaj7j0jpbgcbadkhm82mllm7l7nzrilg4kynf2jrxhr"; + sha256 = "1d2q4bbvlz557caqciwpd5ms9f14bjk8jl5zlfflqnww9b097qy4"; }; jaxp = fetchurl { url = "${baseurl}/jaxp/archive/${repover}.tar.gz"; - sha256 = "1a51qdgam0pmbhaiwvj3p21nlv32q3jw62fjddbjpz0jfx72124p"; + sha256 = "0nrd4c77ggxkyv2271k30afbjjcp0kybc8gcypmhy8by54w4ap0j"; }; nashorn = fetchurl { url = "${baseurl}/nashorn/archive/${repover}.tar.gz"; - sha256 = "1spjlmm0plcg7s9fyrsyf3pljfm5855w3i3yqgp73lgnhn3ihfsd"; + sha256 = "11idvkzk4nqhhw4xq5pl03g4gwnaiq021xxj2yx54rixr59zl0q6"; }; openjdk8 = stdenv.mkDerivation { name = "openjdk-8u${update}b${build}"; diff --git a/pkgs/development/compilers/uhc/default.nix b/pkgs/development/compilers/uhc/default.nix index acfa0f5e3f9..1ed31422d53 100644 --- a/pkgs/development/compilers/uhc/default.nix +++ b/pkgs/development/compilers/uhc/default.nix @@ -6,13 +6,13 @@ in stdenv.mkDerivation rec { # The commits "Fixate/tag v..." are the released versions. # Ignore the "bumped version to ...." commits, they do not # correspond to releases. - version = "1.1.9.1"; + version = "1.1.9.2"; name = "uhc-${version}"; src = fetchgit { url = "https://github.com/UU-ComputerScience/uhc.git"; - rev = "ce93d01486972c994ea2bbbd3d43859911120c39"; - sha256 = "1y670sc6ky74l3msayzqjlkjv1kpv3g35pirsq3q79klzvnpyj2x"; + rev = "292d259113b98c32154a5be336875751caa5edbc"; + sha256 = "1f462xq9ilkp9mnxm8hxhh1cdwps5d0hxysyibxryk32l7hh53cz"; }; postUnpack = "sourceRoot=\${sourceRoot}/EHC"; @@ -51,6 +51,5 @@ in stdenv.mkDerivation rec { # support the -static flag and thus breaks the build. platforms = ["x86_64-linux"]; - broken = true; # http://hydra.cryp.to/build/1344015/log/raw }; } diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml index 8f9bc69518b..6ed8b96d06e 100644 --- a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml +++ b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml @@ -4014,3 +4014,33 @@ dont-distribute-packages: zsh-battery: [ i686-linux, x86_64-linux, x86_64-darwin ] ztail: [ i686-linux, x86_64-linux, x86_64-darwin ] Zwaluw: [ i686-linux, x86_64-linux, x86_64-darwin ] + HulkImport: [ i686-linux, x86_64-linux, x86_64-darwin ] + buffer-builder-aeson: [ i686-linux, x86_64-linux, x86_64-darwin ] + ciphersaber2: [ i686-linux, x86_64-linux, x86_64-darwin ] + gi-atk: [ i686-linux, x86_64-linux, x86_64-darwin ] + gi-cairo: [ i686-linux, x86_64-linux, x86_64-darwin ] + gi-gdk: [ i686-linux, x86_64-linux, x86_64-darwin ] + gi-gdkpixbuf: [ i686-linux, x86_64-linux, x86_64-darwin ] + gi-gio: [ i686-linux, x86_64-linux, x86_64-darwin ] + gi-glib: [ i686-linux, x86_64-linux, x86_64-darwin ] + gi-gobject: [ i686-linux, x86_64-linux, x86_64-darwin ] + gi-gtk: [ i686-linux, x86_64-linux, x86_64-darwin ] + gi-javascriptcore: [ i686-linux, x86_64-linux, x86_64-darwin ] + gi-notify: [ i686-linux, x86_64-linux, x86_64-darwin ] + gi-pango: [ i686-linux, x86_64-linux, x86_64-darwin ] + gi-soup: [ i686-linux, x86_64-linux, x86_64-darwin ] + gi-vte: [ i686-linux, x86_64-linux, x86_64-darwin ] + gi-webkit: [ i686-linux, x86_64-linux, x86_64-darwin ] + haskell-gi-base: [ i686-linux, x86_64-linux, x86_64-darwin ] + haskell-gi: [ i686-linux, x86_64-linux, x86_64-darwin ] + hfmt: [ i686-linux, x86_64-linux, x86_64-darwin ] + keera-hails-mvc-model-protectedmodel: [ i686-linux, x86_64-linux, x86_64-darwin ] + keera-hails-reactive-network: [ i686-linux, x86_64-linux, x86_64-darwin ] + keera-hails-reactive-polling: [ i686-linux, x86_64-linux, x86_64-darwin ] + keera-hails-reactive-wx: [ i686-linux, x86_64-linux, x86_64-darwin ] + keera-hails-reactive-yampa: [ i686-linux, x86_64-linux, x86_64-darwin ] + keera-hails-reactivelenses: [ i686-linux, x86_64-linux, x86_64-darwin ] + keera-hails-reactivevalues: [ i686-linux, x86_64-linux, x86_64-darwin ] + reflex-dom-contrib: [ i686-linux, x86_64-linux, x86_64-darwin ] + versions: [ i686-linux, x86_64-linux, x86_64-darwin ] + zerobin: [ i686-linux, x86_64-linux, x86_64-darwin ] diff --git a/pkgs/development/haskell-modules/configuration-lts-0.0.nix b/pkgs/development/haskell-modules/configuration-lts-0.0.nix index ff4709ce4b0..9553257305f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.0.nix @@ -596,6 +596,7 @@ self: super: { "JuicyPixels" = doDistribute super."JuicyPixels_3_1_7_1"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7"; + "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; "JunkDB" = dontDistribute super."JunkDB"; "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; @@ -1171,6 +1172,7 @@ self: super: { "afv" = dontDistribute super."afv"; "agda-server" = dontDistribute super."agda-server"; "agda-snippets" = dontDistribute super."agda-snippets"; + "agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll"; "agentx" = dontDistribute super."agentx"; "agum" = dontDistribute super."agum"; "aig" = dontDistribute super."aig"; @@ -1765,6 +1767,7 @@ self: super: { "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; + "bson" = doDistribute super."bson_0_3_1"; "bson-generic" = dontDistribute super."bson-generic"; "bson-generics" = dontDistribute super."bson-generics"; "bson-lens" = dontDistribute super."bson-lens"; @@ -2020,6 +2023,7 @@ self: super: { "clafer" = dontDistribute super."clafer"; "claferIG" = dontDistribute super."claferIG"; "claferwiki" = dontDistribute super."claferwiki"; + "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; @@ -2136,6 +2140,7 @@ self: super: { "compdata-automata" = dontDistribute super."compdata-automata"; "compdata-dags" = dontDistribute super."compdata-dags"; "compdata-param" = dontDistribute super."compdata-param"; + "compensated" = doDistribute super."compensated_0_6_1"; "competition" = dontDistribute super."competition"; "compilation" = dontDistribute super."compilation"; "complex-generic" = dontDistribute super."complex-generic"; @@ -2602,6 +2607,7 @@ self: super: { "dicom" = dontDistribute super."dicom"; "dictparser" = dontDistribute super."dictparser"; "diet" = dontDistribute super."diet"; + "diff-gestalt" = dontDistribute super."diff-gestalt"; "diff-parse" = dontDistribute super."diff-parse"; "diff3" = dontDistribute super."diff3"; "diffarray" = dontDistribute super."diffarray"; @@ -2699,6 +2705,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; "download" = dontDistribute super."download"; @@ -3340,6 +3347,7 @@ self: super: { "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph"; "ghc-server" = dontDistribute super."ghc-server"; + "ghc-session" = dontDistribute super."ghc-session"; "ghc-simple" = dontDistribute super."ghc-simple"; "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; @@ -3686,6 +3694,7 @@ self: super: { "hR" = dontDistribute super."hR"; "hRESP" = dontDistribute super."hRESP"; "hS3" = dontDistribute super."hS3"; + "hScraper" = dontDistribute super."hScraper"; "hSimpleDB" = dontDistribute super."hSimpleDB"; "hTalos" = dontDistribute super."hTalos"; "hTensor" = dontDistribute super."hTensor"; @@ -4577,6 +4586,7 @@ self: super: { "hub" = dontDistribute super."hub"; "hubigraph" = dontDistribute super."hubigraph"; "hubris" = dontDistribute super."hubris"; + "huckleberry" = dontDistribute super."huckleberry"; "huffman" = dontDistribute super."huffman"; "hugs2yc" = dontDistribute super."hugs2yc"; "hulk" = dontDistribute super."hulk"; @@ -5092,6 +5102,7 @@ self: super: { "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; + "latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll"; "latex-formulae-image" = dontDistribute super."latex-formulae-image"; "latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc"; "lattices" = dontDistribute super."lattices"; @@ -5767,6 +5778,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = dontDistribute super."nationstates"; + "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; "natural-numbers" = dontDistribute super."natural-numbers"; @@ -6126,6 +6138,7 @@ self: super: { "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; "path" = dontDistribute super."path"; + "path-extra" = dontDistribute super."path-extra"; "path-pieces" = doDistribute super."path-pieces_0_1_4"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; @@ -6241,6 +6254,7 @@ self: super: { "pipes-bgzf" = dontDistribute super."pipes-bgzf"; "pipes-binary" = dontDistribute super."pipes-binary"; "pipes-bytestring" = dontDistribute super."pipes-bytestring"; + "pipes-cacophony" = dontDistribute super."pipes-cacophony"; "pipes-cellular" = dontDistribute super."pipes-cellular"; "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; @@ -7579,6 +7593,7 @@ self: super: { "svm-simple" = dontDistribute super."svm-simple"; "svndump" = dontDistribute super."svndump"; "swagger" = dontDistribute super."swagger"; + "swagger2" = dontDistribute super."swagger2"; "swapper" = dontDistribute super."swapper"; "swearjure" = dontDistribute super."swearjure"; "swf" = dontDistribute super."swf"; @@ -8668,6 +8683,9 @@ self: super: { "yesod-pure" = dontDistribute super."yesod-pure"; "yesod-purescript" = dontDistribute super."yesod-purescript"; "yesod-raml" = dontDistribute super."yesod-raml"; + "yesod-raml-bin" = dontDistribute super."yesod-raml-bin"; + "yesod-raml-docs" = dontDistribute super."yesod-raml-docs"; + "yesod-raml-mock" = dontDistribute super."yesod-raml-mock"; "yesod-recaptcha" = dontDistribute super."yesod-recaptcha"; "yesod-routes" = dontDistribute super."yesod-routes"; "yesod-routes-flow" = dontDistribute super."yesod-routes-flow"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.1.nix b/pkgs/development/haskell-modules/configuration-lts-0.1.nix index c9e3d4d706b..a12b7dc1733 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.1.nix @@ -596,6 +596,7 @@ self: super: { "JuicyPixels" = doDistribute super."JuicyPixels_3_1_7_1"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7"; + "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; "JunkDB" = dontDistribute super."JunkDB"; "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; @@ -1171,6 +1172,7 @@ self: super: { "afv" = dontDistribute super."afv"; "agda-server" = dontDistribute super."agda-server"; "agda-snippets" = dontDistribute super."agda-snippets"; + "agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll"; "agentx" = dontDistribute super."agentx"; "agum" = dontDistribute super."agum"; "aig" = dontDistribute super."aig"; @@ -1765,6 +1767,7 @@ self: super: { "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; + "bson" = doDistribute super."bson_0_3_1"; "bson-generic" = dontDistribute super."bson-generic"; "bson-generics" = dontDistribute super."bson-generics"; "bson-lens" = dontDistribute super."bson-lens"; @@ -2020,6 +2023,7 @@ self: super: { "clafer" = dontDistribute super."clafer"; "claferIG" = dontDistribute super."claferIG"; "claferwiki" = dontDistribute super."claferwiki"; + "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; @@ -2136,6 +2140,7 @@ self: super: { "compdata-automata" = dontDistribute super."compdata-automata"; "compdata-dags" = dontDistribute super."compdata-dags"; "compdata-param" = dontDistribute super."compdata-param"; + "compensated" = doDistribute super."compensated_0_6_1"; "competition" = dontDistribute super."competition"; "compilation" = dontDistribute super."compilation"; "complex-generic" = dontDistribute super."complex-generic"; @@ -2601,6 +2606,7 @@ self: super: { "dicom" = dontDistribute super."dicom"; "dictparser" = dontDistribute super."dictparser"; "diet" = dontDistribute super."diet"; + "diff-gestalt" = dontDistribute super."diff-gestalt"; "diff-parse" = dontDistribute super."diff-parse"; "diff3" = dontDistribute super."diff3"; "diffarray" = dontDistribute super."diffarray"; @@ -2698,6 +2704,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; "download" = dontDistribute super."download"; @@ -3339,6 +3346,7 @@ self: super: { "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph"; "ghc-server" = dontDistribute super."ghc-server"; + "ghc-session" = dontDistribute super."ghc-session"; "ghc-simple" = dontDistribute super."ghc-simple"; "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; @@ -3685,6 +3693,7 @@ self: super: { "hR" = dontDistribute super."hR"; "hRESP" = dontDistribute super."hRESP"; "hS3" = dontDistribute super."hS3"; + "hScraper" = dontDistribute super."hScraper"; "hSimpleDB" = dontDistribute super."hSimpleDB"; "hTalos" = dontDistribute super."hTalos"; "hTensor" = dontDistribute super."hTensor"; @@ -4576,6 +4585,7 @@ self: super: { "hub" = dontDistribute super."hub"; "hubigraph" = dontDistribute super."hubigraph"; "hubris" = dontDistribute super."hubris"; + "huckleberry" = dontDistribute super."huckleberry"; "huffman" = dontDistribute super."huffman"; "hugs2yc" = dontDistribute super."hugs2yc"; "hulk" = dontDistribute super."hulk"; @@ -5091,6 +5101,7 @@ self: super: { "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; + "latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll"; "latex-formulae-image" = dontDistribute super."latex-formulae-image"; "latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc"; "lattices" = dontDistribute super."lattices"; @@ -5766,6 +5777,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = dontDistribute super."nationstates"; + "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; "natural-numbers" = dontDistribute super."natural-numbers"; @@ -6125,6 +6137,7 @@ self: super: { "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; "path" = dontDistribute super."path"; + "path-extra" = dontDistribute super."path-extra"; "path-pieces" = doDistribute super."path-pieces_0_1_4"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; @@ -6240,6 +6253,7 @@ self: super: { "pipes-bgzf" = dontDistribute super."pipes-bgzf"; "pipes-binary" = dontDistribute super."pipes-binary"; "pipes-bytestring" = dontDistribute super."pipes-bytestring"; + "pipes-cacophony" = dontDistribute super."pipes-cacophony"; "pipes-cellular" = dontDistribute super."pipes-cellular"; "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; @@ -7578,6 +7592,7 @@ self: super: { "svm-simple" = dontDistribute super."svm-simple"; "svndump" = dontDistribute super."svndump"; "swagger" = dontDistribute super."swagger"; + "swagger2" = dontDistribute super."swagger2"; "swapper" = dontDistribute super."swapper"; "swearjure" = dontDistribute super."swearjure"; "swf" = dontDistribute super."swf"; @@ -8667,6 +8682,9 @@ self: super: { "yesod-pure" = dontDistribute super."yesod-pure"; "yesod-purescript" = dontDistribute super."yesod-purescript"; "yesod-raml" = dontDistribute super."yesod-raml"; + "yesod-raml-bin" = dontDistribute super."yesod-raml-bin"; + "yesod-raml-docs" = dontDistribute super."yesod-raml-docs"; + "yesod-raml-mock" = dontDistribute super."yesod-raml-mock"; "yesod-recaptcha" = dontDistribute super."yesod-recaptcha"; "yesod-routes" = dontDistribute super."yesod-routes"; "yesod-routes-flow" = dontDistribute super."yesod-routes-flow"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.2.nix b/pkgs/development/haskell-modules/configuration-lts-0.2.nix index 015dc72efa9..8134823e466 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.2.nix @@ -596,6 +596,7 @@ self: super: { "JuicyPixels" = doDistribute super."JuicyPixels_3_1_7_1"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7"; + "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; "JunkDB" = dontDistribute super."JunkDB"; "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; @@ -1171,6 +1172,7 @@ self: super: { "afv" = dontDistribute super."afv"; "agda-server" = dontDistribute super."agda-server"; "agda-snippets" = dontDistribute super."agda-snippets"; + "agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll"; "agentx" = dontDistribute super."agentx"; "agum" = dontDistribute super."agum"; "aig" = dontDistribute super."aig"; @@ -1765,6 +1767,7 @@ self: super: { "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; + "bson" = doDistribute super."bson_0_3_1"; "bson-generic" = dontDistribute super."bson-generic"; "bson-generics" = dontDistribute super."bson-generics"; "bson-lens" = dontDistribute super."bson-lens"; @@ -2020,6 +2023,7 @@ self: super: { "clafer" = dontDistribute super."clafer"; "claferIG" = dontDistribute super."claferIG"; "claferwiki" = dontDistribute super."claferwiki"; + "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; @@ -2136,6 +2140,7 @@ self: super: { "compdata-automata" = dontDistribute super."compdata-automata"; "compdata-dags" = dontDistribute super."compdata-dags"; "compdata-param" = dontDistribute super."compdata-param"; + "compensated" = doDistribute super."compensated_0_6_1"; "competition" = dontDistribute super."competition"; "compilation" = dontDistribute super."compilation"; "complex-generic" = dontDistribute super."complex-generic"; @@ -2601,6 +2606,7 @@ self: super: { "dicom" = dontDistribute super."dicom"; "dictparser" = dontDistribute super."dictparser"; "diet" = dontDistribute super."diet"; + "diff-gestalt" = dontDistribute super."diff-gestalt"; "diff-parse" = dontDistribute super."diff-parse"; "diff3" = dontDistribute super."diff3"; "diffarray" = dontDistribute super."diffarray"; @@ -2698,6 +2704,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; "download" = dontDistribute super."download"; @@ -3339,6 +3346,7 @@ self: super: { "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph"; "ghc-server" = dontDistribute super."ghc-server"; + "ghc-session" = dontDistribute super."ghc-session"; "ghc-simple" = dontDistribute super."ghc-simple"; "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; @@ -3685,6 +3693,7 @@ self: super: { "hR" = dontDistribute super."hR"; "hRESP" = dontDistribute super."hRESP"; "hS3" = dontDistribute super."hS3"; + "hScraper" = dontDistribute super."hScraper"; "hSimpleDB" = dontDistribute super."hSimpleDB"; "hTalos" = dontDistribute super."hTalos"; "hTensor" = dontDistribute super."hTensor"; @@ -4576,6 +4585,7 @@ self: super: { "hub" = dontDistribute super."hub"; "hubigraph" = dontDistribute super."hubigraph"; "hubris" = dontDistribute super."hubris"; + "huckleberry" = dontDistribute super."huckleberry"; "huffman" = dontDistribute super."huffman"; "hugs2yc" = dontDistribute super."hugs2yc"; "hulk" = dontDistribute super."hulk"; @@ -5091,6 +5101,7 @@ self: super: { "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; + "latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll"; "latex-formulae-image" = dontDistribute super."latex-formulae-image"; "latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc"; "lattices" = dontDistribute super."lattices"; @@ -5766,6 +5777,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = dontDistribute super."nationstates"; + "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; "natural-numbers" = dontDistribute super."natural-numbers"; @@ -6125,6 +6137,7 @@ self: super: { "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; "path" = dontDistribute super."path"; + "path-extra" = dontDistribute super."path-extra"; "path-pieces" = doDistribute super."path-pieces_0_1_4"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; @@ -6240,6 +6253,7 @@ self: super: { "pipes-bgzf" = dontDistribute super."pipes-bgzf"; "pipes-binary" = dontDistribute super."pipes-binary"; "pipes-bytestring" = dontDistribute super."pipes-bytestring"; + "pipes-cacophony" = dontDistribute super."pipes-cacophony"; "pipes-cellular" = dontDistribute super."pipes-cellular"; "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; @@ -7578,6 +7592,7 @@ self: super: { "svm-simple" = dontDistribute super."svm-simple"; "svndump" = dontDistribute super."svndump"; "swagger" = dontDistribute super."swagger"; + "swagger2" = dontDistribute super."swagger2"; "swapper" = dontDistribute super."swapper"; "swearjure" = dontDistribute super."swearjure"; "swf" = dontDistribute super."swf"; @@ -8667,6 +8682,9 @@ self: super: { "yesod-pure" = dontDistribute super."yesod-pure"; "yesod-purescript" = dontDistribute super."yesod-purescript"; "yesod-raml" = dontDistribute super."yesod-raml"; + "yesod-raml-bin" = dontDistribute super."yesod-raml-bin"; + "yesod-raml-docs" = dontDistribute super."yesod-raml-docs"; + "yesod-raml-mock" = dontDistribute super."yesod-raml-mock"; "yesod-recaptcha" = dontDistribute super."yesod-recaptcha"; "yesod-routes" = dontDistribute super."yesod-routes"; "yesod-routes-flow" = dontDistribute super."yesod-routes-flow"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.3.nix b/pkgs/development/haskell-modules/configuration-lts-0.3.nix index 251babb2fb7..517f95efbf6 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.3.nix @@ -596,6 +596,7 @@ self: super: { "JuicyPixels" = doDistribute super."JuicyPixels_3_1_7_1"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7"; + "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; "JunkDB" = dontDistribute super."JunkDB"; "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; @@ -1171,6 +1172,7 @@ self: super: { "afv" = dontDistribute super."afv"; "agda-server" = dontDistribute super."agda-server"; "agda-snippets" = dontDistribute super."agda-snippets"; + "agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll"; "agentx" = dontDistribute super."agentx"; "agum" = dontDistribute super."agum"; "aig" = dontDistribute super."aig"; @@ -1765,6 +1767,7 @@ self: super: { "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; + "bson" = doDistribute super."bson_0_3_1"; "bson-generic" = dontDistribute super."bson-generic"; "bson-generics" = dontDistribute super."bson-generics"; "bson-lens" = dontDistribute super."bson-lens"; @@ -2020,6 +2023,7 @@ self: super: { "clafer" = dontDistribute super."clafer"; "claferIG" = dontDistribute super."claferIG"; "claferwiki" = dontDistribute super."claferwiki"; + "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; @@ -2136,6 +2140,7 @@ self: super: { "compdata-automata" = dontDistribute super."compdata-automata"; "compdata-dags" = dontDistribute super."compdata-dags"; "compdata-param" = dontDistribute super."compdata-param"; + "compensated" = doDistribute super."compensated_0_6_1"; "competition" = dontDistribute super."competition"; "compilation" = dontDistribute super."compilation"; "complex-generic" = dontDistribute super."complex-generic"; @@ -2601,6 +2606,7 @@ self: super: { "dicom" = dontDistribute super."dicom"; "dictparser" = dontDistribute super."dictparser"; "diet" = dontDistribute super."diet"; + "diff-gestalt" = dontDistribute super."diff-gestalt"; "diff-parse" = dontDistribute super."diff-parse"; "diff3" = dontDistribute super."diff3"; "diffarray" = dontDistribute super."diffarray"; @@ -2698,6 +2704,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; "download" = dontDistribute super."download"; @@ -3339,6 +3346,7 @@ self: super: { "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph"; "ghc-server" = dontDistribute super."ghc-server"; + "ghc-session" = dontDistribute super."ghc-session"; "ghc-simple" = dontDistribute super."ghc-simple"; "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; @@ -3685,6 +3693,7 @@ self: super: { "hR" = dontDistribute super."hR"; "hRESP" = dontDistribute super."hRESP"; "hS3" = dontDistribute super."hS3"; + "hScraper" = dontDistribute super."hScraper"; "hSimpleDB" = dontDistribute super."hSimpleDB"; "hTalos" = dontDistribute super."hTalos"; "hTensor" = dontDistribute super."hTensor"; @@ -4576,6 +4585,7 @@ self: super: { "hub" = dontDistribute super."hub"; "hubigraph" = dontDistribute super."hubigraph"; "hubris" = dontDistribute super."hubris"; + "huckleberry" = dontDistribute super."huckleberry"; "huffman" = dontDistribute super."huffman"; "hugs2yc" = dontDistribute super."hugs2yc"; "hulk" = dontDistribute super."hulk"; @@ -5091,6 +5101,7 @@ self: super: { "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; + "latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll"; "latex-formulae-image" = dontDistribute super."latex-formulae-image"; "latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc"; "lattices" = dontDistribute super."lattices"; @@ -5766,6 +5777,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = dontDistribute super."nationstates"; + "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; "natural-numbers" = dontDistribute super."natural-numbers"; @@ -6125,6 +6137,7 @@ self: super: { "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; "path" = dontDistribute super."path"; + "path-extra" = dontDistribute super."path-extra"; "path-pieces" = doDistribute super."path-pieces_0_1_4"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; @@ -6240,6 +6253,7 @@ self: super: { "pipes-bgzf" = dontDistribute super."pipes-bgzf"; "pipes-binary" = dontDistribute super."pipes-binary"; "pipes-bytestring" = dontDistribute super."pipes-bytestring"; + "pipes-cacophony" = dontDistribute super."pipes-cacophony"; "pipes-cellular" = dontDistribute super."pipes-cellular"; "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; @@ -7578,6 +7592,7 @@ self: super: { "svm-simple" = dontDistribute super."svm-simple"; "svndump" = dontDistribute super."svndump"; "swagger" = dontDistribute super."swagger"; + "swagger2" = dontDistribute super."swagger2"; "swapper" = dontDistribute super."swapper"; "swearjure" = dontDistribute super."swearjure"; "swf" = dontDistribute super."swf"; @@ -8667,6 +8682,9 @@ self: super: { "yesod-pure" = dontDistribute super."yesod-pure"; "yesod-purescript" = dontDistribute super."yesod-purescript"; "yesod-raml" = dontDistribute super."yesod-raml"; + "yesod-raml-bin" = dontDistribute super."yesod-raml-bin"; + "yesod-raml-docs" = dontDistribute super."yesod-raml-docs"; + "yesod-raml-mock" = dontDistribute super."yesod-raml-mock"; "yesod-recaptcha" = dontDistribute super."yesod-recaptcha"; "yesod-routes" = dontDistribute super."yesod-routes"; "yesod-routes-flow" = dontDistribute super."yesod-routes-flow"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.4.nix b/pkgs/development/haskell-modules/configuration-lts-0.4.nix index ebb6a54e6e2..a3e12afb5b2 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.4.nix @@ -596,6 +596,7 @@ self: super: { "JuicyPixels" = doDistribute super."JuicyPixels_3_1_7_1"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7"; + "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; "JunkDB" = dontDistribute super."JunkDB"; "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; @@ -1171,6 +1172,7 @@ self: super: { "afv" = dontDistribute super."afv"; "agda-server" = dontDistribute super."agda-server"; "agda-snippets" = dontDistribute super."agda-snippets"; + "agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll"; "agentx" = dontDistribute super."agentx"; "agum" = dontDistribute super."agum"; "aig" = dontDistribute super."aig"; @@ -1765,6 +1767,7 @@ self: super: { "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; + "bson" = doDistribute super."bson_0_3_1"; "bson-generic" = dontDistribute super."bson-generic"; "bson-generics" = dontDistribute super."bson-generics"; "bson-lens" = dontDistribute super."bson-lens"; @@ -2020,6 +2023,7 @@ self: super: { "clafer" = dontDistribute super."clafer"; "claferIG" = dontDistribute super."claferIG"; "claferwiki" = dontDistribute super."claferwiki"; + "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; @@ -2136,6 +2140,7 @@ self: super: { "compdata-automata" = dontDistribute super."compdata-automata"; "compdata-dags" = dontDistribute super."compdata-dags"; "compdata-param" = dontDistribute super."compdata-param"; + "compensated" = doDistribute super."compensated_0_6_1"; "competition" = dontDistribute super."competition"; "compilation" = dontDistribute super."compilation"; "complex-generic" = dontDistribute super."complex-generic"; @@ -2600,6 +2605,7 @@ self: super: { "dicom" = dontDistribute super."dicom"; "dictparser" = dontDistribute super."dictparser"; "diet" = dontDistribute super."diet"; + "diff-gestalt" = dontDistribute super."diff-gestalt"; "diff-parse" = dontDistribute super."diff-parse"; "diff3" = dontDistribute super."diff3"; "diffarray" = dontDistribute super."diffarray"; @@ -2697,6 +2703,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; "download" = dontDistribute super."download"; @@ -3338,6 +3345,7 @@ self: super: { "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph"; "ghc-server" = dontDistribute super."ghc-server"; + "ghc-session" = dontDistribute super."ghc-session"; "ghc-simple" = dontDistribute super."ghc-simple"; "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; @@ -3682,6 +3690,7 @@ self: super: { "hR" = dontDistribute super."hR"; "hRESP" = dontDistribute super."hRESP"; "hS3" = dontDistribute super."hS3"; + "hScraper" = dontDistribute super."hScraper"; "hSimpleDB" = dontDistribute super."hSimpleDB"; "hTalos" = dontDistribute super."hTalos"; "hTensor" = dontDistribute super."hTensor"; @@ -4573,6 +4582,7 @@ self: super: { "hub" = dontDistribute super."hub"; "hubigraph" = dontDistribute super."hubigraph"; "hubris" = dontDistribute super."hubris"; + "huckleberry" = dontDistribute super."huckleberry"; "huffman" = dontDistribute super."huffman"; "hugs2yc" = dontDistribute super."hugs2yc"; "hulk" = dontDistribute super."hulk"; @@ -5088,6 +5098,7 @@ self: super: { "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; + "latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll"; "latex-formulae-image" = dontDistribute super."latex-formulae-image"; "latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc"; "lattices" = dontDistribute super."lattices"; @@ -5763,6 +5774,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = dontDistribute super."nationstates"; + "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; "natural-numbers" = dontDistribute super."natural-numbers"; @@ -6122,6 +6134,7 @@ self: super: { "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; "path" = dontDistribute super."path"; + "path-extra" = dontDistribute super."path-extra"; "path-pieces" = doDistribute super."path-pieces_0_1_5"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; @@ -6237,6 +6250,7 @@ self: super: { "pipes-bgzf" = dontDistribute super."pipes-bgzf"; "pipes-binary" = dontDistribute super."pipes-binary"; "pipes-bytestring" = dontDistribute super."pipes-bytestring"; + "pipes-cacophony" = dontDistribute super."pipes-cacophony"; "pipes-cellular" = dontDistribute super."pipes-cellular"; "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; @@ -7573,6 +7587,7 @@ self: super: { "svm-simple" = dontDistribute super."svm-simple"; "svndump" = dontDistribute super."svndump"; "swagger" = dontDistribute super."swagger"; + "swagger2" = dontDistribute super."swagger2"; "swapper" = dontDistribute super."swapper"; "swearjure" = dontDistribute super."swearjure"; "swf" = dontDistribute super."swf"; @@ -8662,6 +8677,9 @@ self: super: { "yesod-pure" = dontDistribute super."yesod-pure"; "yesod-purescript" = dontDistribute super."yesod-purescript"; "yesod-raml" = dontDistribute super."yesod-raml"; + "yesod-raml-bin" = dontDistribute super."yesod-raml-bin"; + "yesod-raml-docs" = dontDistribute super."yesod-raml-docs"; + "yesod-raml-mock" = dontDistribute super."yesod-raml-mock"; "yesod-recaptcha" = dontDistribute super."yesod-recaptcha"; "yesod-routes" = dontDistribute super."yesod-routes"; "yesod-routes-flow" = dontDistribute super."yesod-routes-flow"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.5.nix b/pkgs/development/haskell-modules/configuration-lts-0.5.nix index 1cd799a59ca..ac9e00ddd06 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.5.nix @@ -596,6 +596,7 @@ self: super: { "JuicyPixels" = doDistribute super."JuicyPixels_3_1_7_1"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7"; + "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; "JunkDB" = dontDistribute super."JunkDB"; "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; @@ -1171,6 +1172,7 @@ self: super: { "afv" = dontDistribute super."afv"; "agda-server" = dontDistribute super."agda-server"; "agda-snippets" = dontDistribute super."agda-snippets"; + "agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll"; "agentx" = dontDistribute super."agentx"; "agum" = dontDistribute super."agum"; "aig" = dontDistribute super."aig"; @@ -1765,6 +1767,7 @@ self: super: { "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; + "bson" = doDistribute super."bson_0_3_1"; "bson-generic" = dontDistribute super."bson-generic"; "bson-generics" = dontDistribute super."bson-generics"; "bson-lens" = dontDistribute super."bson-lens"; @@ -2020,6 +2023,7 @@ self: super: { "clafer" = dontDistribute super."clafer"; "claferIG" = dontDistribute super."claferIG"; "claferwiki" = dontDistribute super."claferwiki"; + "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; @@ -2136,6 +2140,7 @@ self: super: { "compdata-automata" = dontDistribute super."compdata-automata"; "compdata-dags" = dontDistribute super."compdata-dags"; "compdata-param" = dontDistribute super."compdata-param"; + "compensated" = doDistribute super."compensated_0_6_1"; "competition" = dontDistribute super."competition"; "compilation" = dontDistribute super."compilation"; "complex-generic" = dontDistribute super."complex-generic"; @@ -2600,6 +2605,7 @@ self: super: { "dicom" = dontDistribute super."dicom"; "dictparser" = dontDistribute super."dictparser"; "diet" = dontDistribute super."diet"; + "diff-gestalt" = dontDistribute super."diff-gestalt"; "diff-parse" = dontDistribute super."diff-parse"; "diff3" = dontDistribute super."diff3"; "diffarray" = dontDistribute super."diffarray"; @@ -2697,6 +2703,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; "download" = dontDistribute super."download"; @@ -3338,6 +3345,7 @@ self: super: { "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph"; "ghc-server" = dontDistribute super."ghc-server"; + "ghc-session" = dontDistribute super."ghc-session"; "ghc-simple" = dontDistribute super."ghc-simple"; "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; @@ -3682,6 +3690,7 @@ self: super: { "hR" = dontDistribute super."hR"; "hRESP" = dontDistribute super."hRESP"; "hS3" = dontDistribute super."hS3"; + "hScraper" = dontDistribute super."hScraper"; "hSimpleDB" = dontDistribute super."hSimpleDB"; "hTalos" = dontDistribute super."hTalos"; "hTensor" = dontDistribute super."hTensor"; @@ -4573,6 +4582,7 @@ self: super: { "hub" = dontDistribute super."hub"; "hubigraph" = dontDistribute super."hubigraph"; "hubris" = dontDistribute super."hubris"; + "huckleberry" = dontDistribute super."huckleberry"; "huffman" = dontDistribute super."huffman"; "hugs2yc" = dontDistribute super."hugs2yc"; "hulk" = dontDistribute super."hulk"; @@ -5088,6 +5098,7 @@ self: super: { "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; + "latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll"; "latex-formulae-image" = dontDistribute super."latex-formulae-image"; "latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc"; "lattices" = dontDistribute super."lattices"; @@ -5763,6 +5774,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = dontDistribute super."nationstates"; + "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; "natural-numbers" = dontDistribute super."natural-numbers"; @@ -6122,6 +6134,7 @@ self: super: { "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; "path" = dontDistribute super."path"; + "path-extra" = dontDistribute super."path-extra"; "path-pieces" = doDistribute super."path-pieces_0_1_5"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; @@ -6237,6 +6250,7 @@ self: super: { "pipes-bgzf" = dontDistribute super."pipes-bgzf"; "pipes-binary" = dontDistribute super."pipes-binary"; "pipes-bytestring" = dontDistribute super."pipes-bytestring"; + "pipes-cacophony" = dontDistribute super."pipes-cacophony"; "pipes-cellular" = dontDistribute super."pipes-cellular"; "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; @@ -7573,6 +7587,7 @@ self: super: { "svm-simple" = dontDistribute super."svm-simple"; "svndump" = dontDistribute super."svndump"; "swagger" = dontDistribute super."swagger"; + "swagger2" = dontDistribute super."swagger2"; "swapper" = dontDistribute super."swapper"; "swearjure" = dontDistribute super."swearjure"; "swf" = dontDistribute super."swf"; @@ -8661,6 +8676,9 @@ self: super: { "yesod-pure" = dontDistribute super."yesod-pure"; "yesod-purescript" = dontDistribute super."yesod-purescript"; "yesod-raml" = dontDistribute super."yesod-raml"; + "yesod-raml-bin" = dontDistribute super."yesod-raml-bin"; + "yesod-raml-docs" = dontDistribute super."yesod-raml-docs"; + "yesod-raml-mock" = dontDistribute super."yesod-raml-mock"; "yesod-recaptcha" = dontDistribute super."yesod-recaptcha"; "yesod-routes" = dontDistribute super."yesod-routes"; "yesod-routes-flow" = dontDistribute super."yesod-routes-flow"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.6.nix b/pkgs/development/haskell-modules/configuration-lts-0.6.nix index 18fe8c45a89..d006c1629f8 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.6.nix @@ -596,6 +596,7 @@ self: super: { "JuicyPixels" = doDistribute super."JuicyPixels_3_1_7_1"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7"; + "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; "JunkDB" = dontDistribute super."JunkDB"; "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; @@ -1170,6 +1171,7 @@ self: super: { "afv" = dontDistribute super."afv"; "agda-server" = dontDistribute super."agda-server"; "agda-snippets" = dontDistribute super."agda-snippets"; + "agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll"; "agentx" = dontDistribute super."agentx"; "agum" = dontDistribute super."agum"; "aig" = dontDistribute super."aig"; @@ -1762,6 +1764,7 @@ self: super: { "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; + "bson" = doDistribute super."bson_0_3_1"; "bson-generic" = dontDistribute super."bson-generic"; "bson-generics" = dontDistribute super."bson-generics"; "bson-lens" = dontDistribute super."bson-lens"; @@ -2017,6 +2020,7 @@ self: super: { "clafer" = dontDistribute super."clafer"; "claferIG" = dontDistribute super."claferIG"; "claferwiki" = dontDistribute super."claferwiki"; + "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; @@ -2133,6 +2137,7 @@ self: super: { "compdata-automata" = dontDistribute super."compdata-automata"; "compdata-dags" = dontDistribute super."compdata-dags"; "compdata-param" = dontDistribute super."compdata-param"; + "compensated" = doDistribute super."compensated_0_6_1"; "competition" = dontDistribute super."competition"; "compilation" = dontDistribute super."compilation"; "complex-generic" = dontDistribute super."complex-generic"; @@ -2597,6 +2602,7 @@ self: super: { "dicom" = dontDistribute super."dicom"; "dictparser" = dontDistribute super."dictparser"; "diet" = dontDistribute super."diet"; + "diff-gestalt" = dontDistribute super."diff-gestalt"; "diff-parse" = dontDistribute super."diff-parse"; "diff3" = dontDistribute super."diff3"; "diffarray" = dontDistribute super."diffarray"; @@ -2694,6 +2700,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; "download" = dontDistribute super."download"; @@ -3335,6 +3342,7 @@ self: super: { "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph"; "ghc-server" = dontDistribute super."ghc-server"; + "ghc-session" = dontDistribute super."ghc-session"; "ghc-simple" = dontDistribute super."ghc-simple"; "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; @@ -3679,6 +3687,7 @@ self: super: { "hR" = dontDistribute super."hR"; "hRESP" = dontDistribute super."hRESP"; "hS3" = dontDistribute super."hS3"; + "hScraper" = dontDistribute super."hScraper"; "hSimpleDB" = dontDistribute super."hSimpleDB"; "hTalos" = dontDistribute super."hTalos"; "hTensor" = dontDistribute super."hTensor"; @@ -4569,6 +4578,7 @@ self: super: { "hub" = dontDistribute super."hub"; "hubigraph" = dontDistribute super."hubigraph"; "hubris" = dontDistribute super."hubris"; + "huckleberry" = dontDistribute super."huckleberry"; "huffman" = dontDistribute super."huffman"; "hugs2yc" = dontDistribute super."hugs2yc"; "hulk" = dontDistribute super."hulk"; @@ -5084,6 +5094,7 @@ self: super: { "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; + "latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll"; "latex-formulae-image" = dontDistribute super."latex-formulae-image"; "latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc"; "lattices" = dontDistribute super."lattices"; @@ -5759,6 +5770,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = dontDistribute super."nationstates"; + "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; "natural-numbers" = dontDistribute super."natural-numbers"; @@ -6117,6 +6129,7 @@ self: super: { "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; "path" = dontDistribute super."path"; + "path-extra" = dontDistribute super."path-extra"; "path-pieces" = doDistribute super."path-pieces_0_1_5"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; @@ -6232,6 +6245,7 @@ self: super: { "pipes-bgzf" = dontDistribute super."pipes-bgzf"; "pipes-binary" = dontDistribute super."pipes-binary"; "pipes-bytestring" = dontDistribute super."pipes-bytestring"; + "pipes-cacophony" = dontDistribute super."pipes-cacophony"; "pipes-cellular" = dontDistribute super."pipes-cellular"; "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; @@ -7567,6 +7581,7 @@ self: super: { "svm-simple" = dontDistribute super."svm-simple"; "svndump" = dontDistribute super."svndump"; "swagger" = dontDistribute super."swagger"; + "swagger2" = dontDistribute super."swagger2"; "swapper" = dontDistribute super."swapper"; "swearjure" = dontDistribute super."swearjure"; "swf" = dontDistribute super."swf"; @@ -8652,6 +8667,9 @@ self: super: { "yesod-pure" = dontDistribute super."yesod-pure"; "yesod-purescript" = dontDistribute super."yesod-purescript"; "yesod-raml" = dontDistribute super."yesod-raml"; + "yesod-raml-bin" = dontDistribute super."yesod-raml-bin"; + "yesod-raml-docs" = dontDistribute super."yesod-raml-docs"; + "yesod-raml-mock" = dontDistribute super."yesod-raml-mock"; "yesod-recaptcha" = dontDistribute super."yesod-recaptcha"; "yesod-routes" = dontDistribute super."yesod-routes"; "yesod-routes-flow" = dontDistribute super."yesod-routes-flow"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.7.nix b/pkgs/development/haskell-modules/configuration-lts-0.7.nix index de2ee9bd08b..8b2d933f756 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.7.nix @@ -596,6 +596,7 @@ self: super: { "JuicyPixels" = doDistribute super."JuicyPixels_3_1_7_1"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7"; + "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; "JunkDB" = dontDistribute super."JunkDB"; "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; @@ -1170,6 +1171,7 @@ self: super: { "afv" = dontDistribute super."afv"; "agda-server" = dontDistribute super."agda-server"; "agda-snippets" = dontDistribute super."agda-snippets"; + "agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll"; "agentx" = dontDistribute super."agentx"; "agum" = dontDistribute super."agum"; "aig" = dontDistribute super."aig"; @@ -1762,6 +1764,7 @@ self: super: { "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; + "bson" = doDistribute super."bson_0_3_1"; "bson-generic" = dontDistribute super."bson-generic"; "bson-generics" = dontDistribute super."bson-generics"; "bson-lens" = dontDistribute super."bson-lens"; @@ -2017,6 +2020,7 @@ self: super: { "clafer" = dontDistribute super."clafer"; "claferIG" = dontDistribute super."claferIG"; "claferwiki" = dontDistribute super."claferwiki"; + "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; @@ -2133,6 +2137,7 @@ self: super: { "compdata-automata" = dontDistribute super."compdata-automata"; "compdata-dags" = dontDistribute super."compdata-dags"; "compdata-param" = dontDistribute super."compdata-param"; + "compensated" = doDistribute super."compensated_0_6_1"; "competition" = dontDistribute super."competition"; "compilation" = dontDistribute super."compilation"; "complex-generic" = dontDistribute super."complex-generic"; @@ -2597,6 +2602,7 @@ self: super: { "dicom" = dontDistribute super."dicom"; "dictparser" = dontDistribute super."dictparser"; "diet" = dontDistribute super."diet"; + "diff-gestalt" = dontDistribute super."diff-gestalt"; "diff-parse" = dontDistribute super."diff-parse"; "diff3" = dontDistribute super."diff3"; "diffarray" = dontDistribute super."diffarray"; @@ -2694,6 +2700,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; "download" = dontDistribute super."download"; @@ -3335,6 +3342,7 @@ self: super: { "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph"; "ghc-server" = dontDistribute super."ghc-server"; + "ghc-session" = dontDistribute super."ghc-session"; "ghc-simple" = dontDistribute super."ghc-simple"; "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; @@ -3679,6 +3687,7 @@ self: super: { "hR" = dontDistribute super."hR"; "hRESP" = dontDistribute super."hRESP"; "hS3" = dontDistribute super."hS3"; + "hScraper" = dontDistribute super."hScraper"; "hSimpleDB" = dontDistribute super."hSimpleDB"; "hTalos" = dontDistribute super."hTalos"; "hTensor" = dontDistribute super."hTensor"; @@ -4569,6 +4578,7 @@ self: super: { "hub" = dontDistribute super."hub"; "hubigraph" = dontDistribute super."hubigraph"; "hubris" = dontDistribute super."hubris"; + "huckleberry" = dontDistribute super."huckleberry"; "huffman" = dontDistribute super."huffman"; "hugs2yc" = dontDistribute super."hugs2yc"; "hulk" = dontDistribute super."hulk"; @@ -5084,6 +5094,7 @@ self: super: { "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; + "latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll"; "latex-formulae-image" = dontDistribute super."latex-formulae-image"; "latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc"; "lattices" = dontDistribute super."lattices"; @@ -5759,6 +5770,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = dontDistribute super."nationstates"; + "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; "natural-numbers" = dontDistribute super."natural-numbers"; @@ -6117,6 +6129,7 @@ self: super: { "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; "path" = dontDistribute super."path"; + "path-extra" = dontDistribute super."path-extra"; "path-pieces" = doDistribute super."path-pieces_0_1_5"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; @@ -6232,6 +6245,7 @@ self: super: { "pipes-bgzf" = dontDistribute super."pipes-bgzf"; "pipes-binary" = dontDistribute super."pipes-binary"; "pipes-bytestring" = dontDistribute super."pipes-bytestring"; + "pipes-cacophony" = dontDistribute super."pipes-cacophony"; "pipes-cellular" = dontDistribute super."pipes-cellular"; "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; @@ -7567,6 +7581,7 @@ self: super: { "svm-simple" = dontDistribute super."svm-simple"; "svndump" = dontDistribute super."svndump"; "swagger" = dontDistribute super."swagger"; + "swagger2" = dontDistribute super."swagger2"; "swapper" = dontDistribute super."swapper"; "swearjure" = dontDistribute super."swearjure"; "swf" = dontDistribute super."swf"; @@ -8652,6 +8667,9 @@ self: super: { "yesod-pure" = dontDistribute super."yesod-pure"; "yesod-purescript" = dontDistribute super."yesod-purescript"; "yesod-raml" = dontDistribute super."yesod-raml"; + "yesod-raml-bin" = dontDistribute super."yesod-raml-bin"; + "yesod-raml-docs" = dontDistribute super."yesod-raml-docs"; + "yesod-raml-mock" = dontDistribute super."yesod-raml-mock"; "yesod-recaptcha" = dontDistribute super."yesod-recaptcha"; "yesod-routes" = dontDistribute super."yesod-routes"; "yesod-routes-flow" = dontDistribute super."yesod-routes-flow"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.0.nix b/pkgs/development/haskell-modules/configuration-lts-1.0.nix index 71c7049d421..fc5935da11c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.0.nix @@ -593,6 +593,7 @@ self: super: { "JuicyPixels" = doDistribute super."JuicyPixels_3_2_1"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7"; + "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; "JunkDB" = dontDistribute super."JunkDB"; "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; @@ -1166,6 +1167,7 @@ self: super: { "afv" = dontDistribute super."afv"; "agda-server" = dontDistribute super."agda-server"; "agda-snippets" = dontDistribute super."agda-snippets"; + "agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll"; "agentx" = dontDistribute super."agentx"; "agum" = dontDistribute super."agum"; "aig" = dontDistribute super."aig"; @@ -1756,6 +1758,7 @@ self: super: { "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; + "bson" = doDistribute super."bson_0_3_1"; "bson-generic" = dontDistribute super."bson-generic"; "bson-generics" = dontDistribute super."bson-generics"; "bson-lens" = dontDistribute super."bson-lens"; @@ -2009,6 +2012,7 @@ self: super: { "clafer" = dontDistribute super."clafer"; "claferIG" = dontDistribute super."claferIG"; "claferwiki" = dontDistribute super."claferwiki"; + "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; @@ -2125,6 +2129,7 @@ self: super: { "compdata-automata" = dontDistribute super."compdata-automata"; "compdata-dags" = dontDistribute super."compdata-dags"; "compdata-param" = dontDistribute super."compdata-param"; + "compensated" = doDistribute super."compensated_0_6_1"; "competition" = dontDistribute super."competition"; "compilation" = dontDistribute super."compilation"; "complex-generic" = dontDistribute super."complex-generic"; @@ -2588,6 +2593,7 @@ self: super: { "dicom" = dontDistribute super."dicom"; "dictparser" = dontDistribute super."dictparser"; "diet" = dontDistribute super."diet"; + "diff-gestalt" = dontDistribute super."diff-gestalt"; "diff-parse" = dontDistribute super."diff-parse"; "diff3" = dontDistribute super."diff3"; "diffarray" = dontDistribute super."diffarray"; @@ -2685,6 +2691,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; "download" = dontDistribute super."download"; @@ -3325,6 +3332,7 @@ self: super: { "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph"; "ghc-server" = dontDistribute super."ghc-server"; + "ghc-session" = dontDistribute super."ghc-session"; "ghc-simple" = dontDistribute super."ghc-simple"; "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; @@ -3668,6 +3676,7 @@ self: super: { "hR" = dontDistribute super."hR"; "hRESP" = dontDistribute super."hRESP"; "hS3" = dontDistribute super."hS3"; + "hScraper" = dontDistribute super."hScraper"; "hSimpleDB" = dontDistribute super."hSimpleDB"; "hTalos" = dontDistribute super."hTalos"; "hTensor" = dontDistribute super."hTensor"; @@ -4557,6 +4566,7 @@ self: super: { "hub" = dontDistribute super."hub"; "hubigraph" = dontDistribute super."hubigraph"; "hubris" = dontDistribute super."hubris"; + "huckleberry" = dontDistribute super."huckleberry"; "huffman" = dontDistribute super."huffman"; "hugs2yc" = dontDistribute super."hugs2yc"; "hulk" = dontDistribute super."hulk"; @@ -5072,6 +5082,7 @@ self: super: { "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; + "latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll"; "latex-formulae-image" = dontDistribute super."latex-formulae-image"; "latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc"; "lattices" = dontDistribute super."lattices"; @@ -5747,6 +5758,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = dontDistribute super."nationstates"; + "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; "natural-numbers" = dontDistribute super."natural-numbers"; @@ -6104,6 +6116,7 @@ self: super: { "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; "path" = dontDistribute super."path"; + "path-extra" = dontDistribute super."path-extra"; "path-pieces" = doDistribute super."path-pieces_0_1_5"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; @@ -6219,6 +6232,7 @@ self: super: { "pipes-bgzf" = dontDistribute super."pipes-bgzf"; "pipes-binary" = dontDistribute super."pipes-binary"; "pipes-bytestring" = dontDistribute super."pipes-bytestring"; + "pipes-cacophony" = dontDistribute super."pipes-cacophony"; "pipes-cellular" = dontDistribute super."pipes-cellular"; "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; @@ -7551,6 +7565,7 @@ self: super: { "svm-simple" = dontDistribute super."svm-simple"; "svndump" = dontDistribute super."svndump"; "swagger" = dontDistribute super."swagger"; + "swagger2" = dontDistribute super."swagger2"; "swapper" = dontDistribute super."swapper"; "swearjure" = dontDistribute super."swearjure"; "swf" = dontDistribute super."swf"; @@ -8635,6 +8650,9 @@ self: super: { "yesod-pure" = dontDistribute super."yesod-pure"; "yesod-purescript" = dontDistribute super."yesod-purescript"; "yesod-raml" = dontDistribute super."yesod-raml"; + "yesod-raml-bin" = dontDistribute super."yesod-raml-bin"; + "yesod-raml-docs" = dontDistribute super."yesod-raml-docs"; + "yesod-raml-mock" = dontDistribute super."yesod-raml-mock"; "yesod-recaptcha" = dontDistribute super."yesod-recaptcha"; "yesod-routes" = dontDistribute super."yesod-routes"; "yesod-routes-flow" = dontDistribute super."yesod-routes-flow"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.1.nix b/pkgs/development/haskell-modules/configuration-lts-1.1.nix index 9897350d78e..1f2e8174e2b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.1.nix @@ -593,6 +593,7 @@ self: super: { "JuicyPixels" = doDistribute super."JuicyPixels_3_2_2"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7"; + "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; "JunkDB" = dontDistribute super."JunkDB"; "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; @@ -1166,6 +1167,7 @@ self: super: { "afv" = dontDistribute super."afv"; "agda-server" = dontDistribute super."agda-server"; "agda-snippets" = dontDistribute super."agda-snippets"; + "agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll"; "agentx" = dontDistribute super."agentx"; "agum" = dontDistribute super."agum"; "aig" = dontDistribute super."aig"; @@ -1755,6 +1757,7 @@ self: super: { "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; + "bson" = doDistribute super."bson_0_3_1"; "bson-generic" = dontDistribute super."bson-generic"; "bson-generics" = dontDistribute super."bson-generics"; "bson-lens" = dontDistribute super."bson-lens"; @@ -2006,6 +2009,7 @@ self: super: { "clafer" = dontDistribute super."clafer"; "claferIG" = dontDistribute super."claferIG"; "claferwiki" = dontDistribute super."claferwiki"; + "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; @@ -2122,6 +2126,7 @@ self: super: { "compdata-automata" = dontDistribute super."compdata-automata"; "compdata-dags" = dontDistribute super."compdata-dags"; "compdata-param" = dontDistribute super."compdata-param"; + "compensated" = doDistribute super."compensated_0_6_1"; "competition" = dontDistribute super."competition"; "compilation" = dontDistribute super."compilation"; "complex-generic" = dontDistribute super."complex-generic"; @@ -2583,6 +2588,7 @@ self: super: { "dicom" = dontDistribute super."dicom"; "dictparser" = dontDistribute super."dictparser"; "diet" = dontDistribute super."diet"; + "diff-gestalt" = dontDistribute super."diff-gestalt"; "diff-parse" = dontDistribute super."diff-parse"; "diff3" = dontDistribute super."diff3"; "diffarray" = dontDistribute super."diffarray"; @@ -2679,6 +2685,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; "download" = dontDistribute super."download"; @@ -3319,6 +3326,7 @@ self: super: { "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph"; "ghc-server" = dontDistribute super."ghc-server"; + "ghc-session" = dontDistribute super."ghc-session"; "ghc-simple" = dontDistribute super."ghc-simple"; "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; @@ -3662,6 +3670,7 @@ self: super: { "hR" = dontDistribute super."hR"; "hRESP" = dontDistribute super."hRESP"; "hS3" = dontDistribute super."hS3"; + "hScraper" = dontDistribute super."hScraper"; "hSimpleDB" = dontDistribute super."hSimpleDB"; "hTalos" = dontDistribute super."hTalos"; "hTensor" = dontDistribute super."hTensor"; @@ -4546,6 +4555,7 @@ self: super: { "hub" = dontDistribute super."hub"; "hubigraph" = dontDistribute super."hubigraph"; "hubris" = dontDistribute super."hubris"; + "huckleberry" = dontDistribute super."huckleberry"; "huffman" = dontDistribute super."huffman"; "hugs2yc" = dontDistribute super."hugs2yc"; "hulk" = dontDistribute super."hulk"; @@ -5060,6 +5070,7 @@ self: super: { "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; + "latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll"; "latex-formulae-image" = dontDistribute super."latex-formulae-image"; "latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc"; "lattices" = dontDistribute super."lattices"; @@ -5734,6 +5745,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = dontDistribute super."nationstates"; + "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; "natural-numbers" = dontDistribute super."natural-numbers"; @@ -6091,6 +6103,7 @@ self: super: { "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; "path" = dontDistribute super."path"; + "path-extra" = dontDistribute super."path-extra"; "path-pieces" = doDistribute super."path-pieces_0_1_5"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; @@ -6206,6 +6219,7 @@ self: super: { "pipes-bgzf" = dontDistribute super."pipes-bgzf"; "pipes-binary" = dontDistribute super."pipes-binary"; "pipes-bytestring" = dontDistribute super."pipes-bytestring"; + "pipes-cacophony" = dontDistribute super."pipes-cacophony"; "pipes-cellular" = dontDistribute super."pipes-cellular"; "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; @@ -7536,6 +7550,7 @@ self: super: { "svm-simple" = dontDistribute super."svm-simple"; "svndump" = dontDistribute super."svndump"; "swagger" = dontDistribute super."swagger"; + "swagger2" = dontDistribute super."swagger2"; "swapper" = dontDistribute super."swapper"; "swearjure" = dontDistribute super."swearjure"; "swf" = dontDistribute super."swf"; @@ -8616,6 +8631,9 @@ self: super: { "yesod-pure" = dontDistribute super."yesod-pure"; "yesod-purescript" = dontDistribute super."yesod-purescript"; "yesod-raml" = dontDistribute super."yesod-raml"; + "yesod-raml-bin" = dontDistribute super."yesod-raml-bin"; + "yesod-raml-docs" = dontDistribute super."yesod-raml-docs"; + "yesod-raml-mock" = dontDistribute super."yesod-raml-mock"; "yesod-recaptcha" = dontDistribute super."yesod-recaptcha"; "yesod-routes" = dontDistribute super."yesod-routes"; "yesod-routes-flow" = dontDistribute super."yesod-routes-flow"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.10.nix b/pkgs/development/haskell-modules/configuration-lts-1.10.nix index 3841e019319..9a79fa1358a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.10.nix @@ -592,6 +592,7 @@ self: super: { "JuicyPixels" = doDistribute super."JuicyPixels_3_2_2"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7"; + "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; "JunkDB" = dontDistribute super."JunkDB"; "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; @@ -1165,6 +1166,7 @@ self: super: { "afv" = dontDistribute super."afv"; "agda-server" = dontDistribute super."agda-server"; "agda-snippets" = dontDistribute super."agda-snippets"; + "agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll"; "agentx" = dontDistribute super."agentx"; "agum" = dontDistribute super."agum"; "aig" = dontDistribute super."aig"; @@ -1753,6 +1755,7 @@ self: super: { "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; + "bson" = doDistribute super."bson_0_3_1"; "bson-generic" = dontDistribute super."bson-generic"; "bson-generics" = dontDistribute super."bson-generics"; "bson-lens" = dontDistribute super."bson-lens"; @@ -2001,6 +2004,7 @@ self: super: { "clafer" = dontDistribute super."clafer"; "claferIG" = dontDistribute super."claferIG"; "claferwiki" = dontDistribute super."claferwiki"; + "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; @@ -2117,6 +2121,7 @@ self: super: { "compdata-automata" = dontDistribute super."compdata-automata"; "compdata-dags" = dontDistribute super."compdata-dags"; "compdata-param" = dontDistribute super."compdata-param"; + "compensated" = doDistribute super."compensated_0_6_1"; "competition" = dontDistribute super."competition"; "compilation" = dontDistribute super."compilation"; "complex-generic" = dontDistribute super."complex-generic"; @@ -2577,6 +2582,7 @@ self: super: { "dicom" = dontDistribute super."dicom"; "dictparser" = dontDistribute super."dictparser"; "diet" = dontDistribute super."diet"; + "diff-gestalt" = dontDistribute super."diff-gestalt"; "diff-parse" = dontDistribute super."diff-parse"; "diff3" = dontDistribute super."diff3"; "diffarray" = dontDistribute super."diffarray"; @@ -2673,6 +2679,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; "download" = dontDistribute super."download"; @@ -3309,6 +3316,7 @@ self: super: { "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph"; "ghc-server" = dontDistribute super."ghc-server"; + "ghc-session" = dontDistribute super."ghc-session"; "ghc-simple" = dontDistribute super."ghc-simple"; "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; @@ -3650,6 +3658,7 @@ self: super: { "hR" = dontDistribute super."hR"; "hRESP" = dontDistribute super."hRESP"; "hS3" = dontDistribute super."hS3"; + "hScraper" = dontDistribute super."hScraper"; "hSimpleDB" = dontDistribute super."hSimpleDB"; "hTalos" = dontDistribute super."hTalos"; "hTensor" = dontDistribute super."hTensor"; @@ -4531,6 +4540,7 @@ self: super: { "hub" = dontDistribute super."hub"; "hubigraph" = dontDistribute super."hubigraph"; "hubris" = dontDistribute super."hubris"; + "huckleberry" = dontDistribute super."huckleberry"; "huffman" = dontDistribute super."huffman"; "hugs2yc" = dontDistribute super."hugs2yc"; "hulk" = dontDistribute super."hulk"; @@ -5038,6 +5048,7 @@ self: super: { "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; + "latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll"; "latex-formulae-image" = dontDistribute super."latex-formulae-image"; "latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc"; "lattices" = dontDistribute super."lattices"; @@ -5710,6 +5721,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = dontDistribute super."nationstates"; + "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; "natural-numbers" = dontDistribute super."natural-numbers"; @@ -6064,6 +6076,7 @@ self: super: { "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; "path" = dontDistribute super."path"; + "path-extra" = dontDistribute super."path-extra"; "path-pieces" = doDistribute super."path-pieces_0_1_5"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; @@ -6179,6 +6192,7 @@ self: super: { "pipes-bgzf" = dontDistribute super."pipes-bgzf"; "pipes-binary" = dontDistribute super."pipes-binary"; "pipes-bytestring" = dontDistribute super."pipes-bytestring"; + "pipes-cacophony" = dontDistribute super."pipes-cacophony"; "pipes-cellular" = dontDistribute super."pipes-cellular"; "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; @@ -7504,6 +7518,7 @@ self: super: { "svm-simple" = dontDistribute super."svm-simple"; "svndump" = dontDistribute super."svndump"; "swagger" = dontDistribute super."swagger"; + "swagger2" = dontDistribute super."swagger2"; "swapper" = dontDistribute super."swapper"; "swearjure" = dontDistribute super."swearjure"; "swf" = dontDistribute super."swf"; @@ -8575,6 +8590,9 @@ self: super: { "yesod-pure" = dontDistribute super."yesod-pure"; "yesod-purescript" = dontDistribute super."yesod-purescript"; "yesod-raml" = dontDistribute super."yesod-raml"; + "yesod-raml-bin" = dontDistribute super."yesod-raml-bin"; + "yesod-raml-docs" = dontDistribute super."yesod-raml-docs"; + "yesod-raml-mock" = dontDistribute super."yesod-raml-mock"; "yesod-recaptcha" = dontDistribute super."yesod-recaptcha"; "yesod-routes" = dontDistribute super."yesod-routes"; "yesod-routes-flow" = dontDistribute super."yesod-routes-flow"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.11.nix b/pkgs/development/haskell-modules/configuration-lts-1.11.nix index b673fa70b77..c1be8c79715 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.11.nix @@ -592,6 +592,7 @@ self: super: { "JuicyPixels" = doDistribute super."JuicyPixels_3_2_3"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7"; + "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; "JunkDB" = dontDistribute super."JunkDB"; "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; @@ -1165,6 +1166,7 @@ self: super: { "afv" = dontDistribute super."afv"; "agda-server" = dontDistribute super."agda-server"; "agda-snippets" = dontDistribute super."agda-snippets"; + "agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll"; "agentx" = dontDistribute super."agentx"; "agum" = dontDistribute super."agum"; "aig" = dontDistribute super."aig"; @@ -1753,6 +1755,7 @@ self: super: { "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; + "bson" = doDistribute super."bson_0_3_1"; "bson-generic" = dontDistribute super."bson-generic"; "bson-generics" = dontDistribute super."bson-generics"; "bson-lens" = dontDistribute super."bson-lens"; @@ -2001,6 +2004,7 @@ self: super: { "clafer" = dontDistribute super."clafer"; "claferIG" = dontDistribute super."claferIG"; "claferwiki" = dontDistribute super."claferwiki"; + "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; @@ -2117,6 +2121,7 @@ self: super: { "compdata-automata" = dontDistribute super."compdata-automata"; "compdata-dags" = dontDistribute super."compdata-dags"; "compdata-param" = dontDistribute super."compdata-param"; + "compensated" = doDistribute super."compensated_0_6_1"; "competition" = dontDistribute super."competition"; "compilation" = dontDistribute super."compilation"; "complex-generic" = dontDistribute super."complex-generic"; @@ -2577,6 +2582,7 @@ self: super: { "dicom" = dontDistribute super."dicom"; "dictparser" = dontDistribute super."dictparser"; "diet" = dontDistribute super."diet"; + "diff-gestalt" = dontDistribute super."diff-gestalt"; "diff-parse" = dontDistribute super."diff-parse"; "diff3" = dontDistribute super."diff3"; "diffarray" = dontDistribute super."diffarray"; @@ -2673,6 +2679,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; "download" = dontDistribute super."download"; @@ -3308,6 +3315,7 @@ self: super: { "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph"; "ghc-server" = dontDistribute super."ghc-server"; + "ghc-session" = dontDistribute super."ghc-session"; "ghc-simple" = dontDistribute super."ghc-simple"; "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; @@ -3649,6 +3657,7 @@ self: super: { "hR" = dontDistribute super."hR"; "hRESP" = dontDistribute super."hRESP"; "hS3" = dontDistribute super."hS3"; + "hScraper" = dontDistribute super."hScraper"; "hSimpleDB" = dontDistribute super."hSimpleDB"; "hTalos" = dontDistribute super."hTalos"; "hTensor" = dontDistribute super."hTensor"; @@ -4530,6 +4539,7 @@ self: super: { "hub" = dontDistribute super."hub"; "hubigraph" = dontDistribute super."hubigraph"; "hubris" = dontDistribute super."hubris"; + "huckleberry" = dontDistribute super."huckleberry"; "huffman" = dontDistribute super."huffman"; "hugs2yc" = dontDistribute super."hugs2yc"; "hulk" = dontDistribute super."hulk"; @@ -5035,6 +5045,7 @@ self: super: { "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; + "latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll"; "latex-formulae-image" = dontDistribute super."latex-formulae-image"; "latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc"; "lattices" = dontDistribute super."lattices"; @@ -5706,6 +5717,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = dontDistribute super."nationstates"; + "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; "natural-numbers" = dontDistribute super."natural-numbers"; @@ -6060,6 +6072,7 @@ self: super: { "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; "path" = dontDistribute super."path"; + "path-extra" = dontDistribute super."path-extra"; "path-pieces" = doDistribute super."path-pieces_0_1_5"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; @@ -6175,6 +6188,7 @@ self: super: { "pipes-bgzf" = dontDistribute super."pipes-bgzf"; "pipes-binary" = dontDistribute super."pipes-binary"; "pipes-bytestring" = dontDistribute super."pipes-bytestring"; + "pipes-cacophony" = dontDistribute super."pipes-cacophony"; "pipes-cellular" = dontDistribute super."pipes-cellular"; "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; @@ -7499,6 +7513,7 @@ self: super: { "svm-simple" = dontDistribute super."svm-simple"; "svndump" = dontDistribute super."svndump"; "swagger" = dontDistribute super."swagger"; + "swagger2" = dontDistribute super."swagger2"; "swapper" = dontDistribute super."swapper"; "swearjure" = dontDistribute super."swearjure"; "swf" = dontDistribute super."swf"; @@ -8570,6 +8585,9 @@ self: super: { "yesod-pure" = dontDistribute super."yesod-pure"; "yesod-purescript" = dontDistribute super."yesod-purescript"; "yesod-raml" = dontDistribute super."yesod-raml"; + "yesod-raml-bin" = dontDistribute super."yesod-raml-bin"; + "yesod-raml-docs" = dontDistribute super."yesod-raml-docs"; + "yesod-raml-mock" = dontDistribute super."yesod-raml-mock"; "yesod-recaptcha" = dontDistribute super."yesod-recaptcha"; "yesod-routes" = dontDistribute super."yesod-routes"; "yesod-routes-flow" = dontDistribute super."yesod-routes-flow"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.12.nix b/pkgs/development/haskell-modules/configuration-lts-1.12.nix index e6b4206838f..19a80a348d7 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.12.nix @@ -592,6 +592,7 @@ self: super: { "JuicyPixels" = doDistribute super."JuicyPixels_3_2_3"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7"; + "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; "JunkDB" = dontDistribute super."JunkDB"; "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; @@ -1165,6 +1166,7 @@ self: super: { "afv" = dontDistribute super."afv"; "agda-server" = dontDistribute super."agda-server"; "agda-snippets" = dontDistribute super."agda-snippets"; + "agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll"; "agentx" = dontDistribute super."agentx"; "agum" = dontDistribute super."agum"; "aig" = dontDistribute super."aig"; @@ -1753,6 +1755,7 @@ self: super: { "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; + "bson" = doDistribute super."bson_0_3_1"; "bson-generic" = dontDistribute super."bson-generic"; "bson-generics" = dontDistribute super."bson-generics"; "bson-lens" = dontDistribute super."bson-lens"; @@ -2001,6 +2004,7 @@ self: super: { "clafer" = dontDistribute super."clafer"; "claferIG" = dontDistribute super."claferIG"; "claferwiki" = dontDistribute super."claferwiki"; + "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; @@ -2117,6 +2121,7 @@ self: super: { "compdata-automata" = dontDistribute super."compdata-automata"; "compdata-dags" = dontDistribute super."compdata-dags"; "compdata-param" = dontDistribute super."compdata-param"; + "compensated" = doDistribute super."compensated_0_6_1"; "competition" = dontDistribute super."competition"; "compilation" = dontDistribute super."compilation"; "complex-generic" = dontDistribute super."complex-generic"; @@ -2577,6 +2582,7 @@ self: super: { "dicom" = dontDistribute super."dicom"; "dictparser" = dontDistribute super."dictparser"; "diet" = dontDistribute super."diet"; + "diff-gestalt" = dontDistribute super."diff-gestalt"; "diff-parse" = dontDistribute super."diff-parse"; "diff3" = dontDistribute super."diff3"; "diffarray" = dontDistribute super."diffarray"; @@ -2673,6 +2679,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; "download" = dontDistribute super."download"; @@ -3308,6 +3315,7 @@ self: super: { "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph"; "ghc-server" = dontDistribute super."ghc-server"; + "ghc-session" = dontDistribute super."ghc-session"; "ghc-simple" = dontDistribute super."ghc-simple"; "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; @@ -3649,6 +3657,7 @@ self: super: { "hR" = dontDistribute super."hR"; "hRESP" = dontDistribute super."hRESP"; "hS3" = dontDistribute super."hS3"; + "hScraper" = dontDistribute super."hScraper"; "hSimpleDB" = dontDistribute super."hSimpleDB"; "hTalos" = dontDistribute super."hTalos"; "hTensor" = dontDistribute super."hTensor"; @@ -4529,6 +4538,7 @@ self: super: { "hub" = dontDistribute super."hub"; "hubigraph" = dontDistribute super."hubigraph"; "hubris" = dontDistribute super."hubris"; + "huckleberry" = dontDistribute super."huckleberry"; "huffman" = dontDistribute super."huffman"; "hugs2yc" = dontDistribute super."hugs2yc"; "hulk" = dontDistribute super."hulk"; @@ -5034,6 +5044,7 @@ self: super: { "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; + "latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll"; "latex-formulae-image" = dontDistribute super."latex-formulae-image"; "latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc"; "lattices" = dontDistribute super."lattices"; @@ -5705,6 +5716,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = dontDistribute super."nationstates"; + "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; "natural-numbers" = dontDistribute super."natural-numbers"; @@ -6059,6 +6071,7 @@ self: super: { "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; "path" = dontDistribute super."path"; + "path-extra" = dontDistribute super."path-extra"; "path-pieces" = doDistribute super."path-pieces_0_1_5"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; @@ -6174,6 +6187,7 @@ self: super: { "pipes-bgzf" = dontDistribute super."pipes-bgzf"; "pipes-binary" = dontDistribute super."pipes-binary"; "pipes-bytestring" = dontDistribute super."pipes-bytestring"; + "pipes-cacophony" = dontDistribute super."pipes-cacophony"; "pipes-cellular" = dontDistribute super."pipes-cellular"; "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; @@ -7497,6 +7511,7 @@ self: super: { "svm-simple" = dontDistribute super."svm-simple"; "svndump" = dontDistribute super."svndump"; "swagger" = dontDistribute super."swagger"; + "swagger2" = dontDistribute super."swagger2"; "swapper" = dontDistribute super."swapper"; "swearjure" = dontDistribute super."swearjure"; "swf" = dontDistribute super."swf"; @@ -8567,6 +8582,9 @@ self: super: { "yesod-pure" = dontDistribute super."yesod-pure"; "yesod-purescript" = dontDistribute super."yesod-purescript"; "yesod-raml" = dontDistribute super."yesod-raml"; + "yesod-raml-bin" = dontDistribute super."yesod-raml-bin"; + "yesod-raml-docs" = dontDistribute super."yesod-raml-docs"; + "yesod-raml-mock" = dontDistribute super."yesod-raml-mock"; "yesod-recaptcha" = dontDistribute super."yesod-recaptcha"; "yesod-routes" = dontDistribute super."yesod-routes"; "yesod-routes-flow" = dontDistribute super."yesod-routes-flow"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.13.nix b/pkgs/development/haskell-modules/configuration-lts-1.13.nix index 381994143e2..75a9ad62979 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.13.nix @@ -592,6 +592,7 @@ self: super: { "JuicyPixels" = doDistribute super."JuicyPixels_3_2_3"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7"; + "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; "JunkDB" = dontDistribute super."JunkDB"; "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; @@ -1165,6 +1166,7 @@ self: super: { "afv" = dontDistribute super."afv"; "agda-server" = dontDistribute super."agda-server"; "agda-snippets" = dontDistribute super."agda-snippets"; + "agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll"; "agentx" = dontDistribute super."agentx"; "agum" = dontDistribute super."agum"; "aig" = dontDistribute super."aig"; @@ -1753,6 +1755,7 @@ self: super: { "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; + "bson" = doDistribute super."bson_0_3_1"; "bson-generic" = dontDistribute super."bson-generic"; "bson-generics" = dontDistribute super."bson-generics"; "bson-lens" = dontDistribute super."bson-lens"; @@ -2001,6 +2004,7 @@ self: super: { "clafer" = dontDistribute super."clafer"; "claferIG" = dontDistribute super."claferIG"; "claferwiki" = dontDistribute super."claferwiki"; + "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; @@ -2117,6 +2121,7 @@ self: super: { "compdata-automata" = dontDistribute super."compdata-automata"; "compdata-dags" = dontDistribute super."compdata-dags"; "compdata-param" = dontDistribute super."compdata-param"; + "compensated" = doDistribute super."compensated_0_6_1"; "competition" = dontDistribute super."competition"; "compilation" = dontDistribute super."compilation"; "complex-generic" = dontDistribute super."complex-generic"; @@ -2576,6 +2581,7 @@ self: super: { "dicom" = dontDistribute super."dicom"; "dictparser" = dontDistribute super."dictparser"; "diet" = dontDistribute super."diet"; + "diff-gestalt" = dontDistribute super."diff-gestalt"; "diff-parse" = dontDistribute super."diff-parse"; "diff3" = dontDistribute super."diff3"; "diffarray" = dontDistribute super."diffarray"; @@ -2672,6 +2678,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; "download" = dontDistribute super."download"; @@ -3307,6 +3314,7 @@ self: super: { "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph"; "ghc-server" = dontDistribute super."ghc-server"; + "ghc-session" = dontDistribute super."ghc-session"; "ghc-simple" = dontDistribute super."ghc-simple"; "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; @@ -3647,6 +3655,7 @@ self: super: { "hR" = dontDistribute super."hR"; "hRESP" = dontDistribute super."hRESP"; "hS3" = dontDistribute super."hS3"; + "hScraper" = dontDistribute super."hScraper"; "hSimpleDB" = dontDistribute super."hSimpleDB"; "hTalos" = dontDistribute super."hTalos"; "hTensor" = dontDistribute super."hTensor"; @@ -4527,6 +4536,7 @@ self: super: { "hub" = dontDistribute super."hub"; "hubigraph" = dontDistribute super."hubigraph"; "hubris" = dontDistribute super."hubris"; + "huckleberry" = dontDistribute super."huckleberry"; "huffman" = dontDistribute super."huffman"; "hugs2yc" = dontDistribute super."hugs2yc"; "hulk" = dontDistribute super."hulk"; @@ -5032,6 +5042,7 @@ self: super: { "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; + "latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll"; "latex-formulae-image" = dontDistribute super."latex-formulae-image"; "latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc"; "lattices" = dontDistribute super."lattices"; @@ -5703,6 +5714,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = dontDistribute super."nationstates"; + "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; "natural-numbers" = dontDistribute super."natural-numbers"; @@ -6057,6 +6069,7 @@ self: super: { "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; "path" = dontDistribute super."path"; + "path-extra" = dontDistribute super."path-extra"; "path-pieces" = doDistribute super."path-pieces_0_1_5"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; @@ -6172,6 +6185,7 @@ self: super: { "pipes-bgzf" = dontDistribute super."pipes-bgzf"; "pipes-binary" = dontDistribute super."pipes-binary"; "pipes-bytestring" = dontDistribute super."pipes-bytestring"; + "pipes-cacophony" = dontDistribute super."pipes-cacophony"; "pipes-cellular" = dontDistribute super."pipes-cellular"; "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; @@ -7495,6 +7509,7 @@ self: super: { "svm-simple" = dontDistribute super."svm-simple"; "svndump" = dontDistribute super."svndump"; "swagger" = dontDistribute super."swagger"; + "swagger2" = dontDistribute super."swagger2"; "swapper" = dontDistribute super."swapper"; "swearjure" = dontDistribute super."swearjure"; "swf" = dontDistribute super."swf"; @@ -8564,6 +8579,9 @@ self: super: { "yesod-pure" = dontDistribute super."yesod-pure"; "yesod-purescript" = dontDistribute super."yesod-purescript"; "yesod-raml" = dontDistribute super."yesod-raml"; + "yesod-raml-bin" = dontDistribute super."yesod-raml-bin"; + "yesod-raml-docs" = dontDistribute super."yesod-raml-docs"; + "yesod-raml-mock" = dontDistribute super."yesod-raml-mock"; "yesod-recaptcha" = dontDistribute super."yesod-recaptcha"; "yesod-routes" = dontDistribute super."yesod-routes"; "yesod-routes-flow" = dontDistribute super."yesod-routes-flow"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.14.nix b/pkgs/development/haskell-modules/configuration-lts-1.14.nix index 2304fdd8490..502eb7ed6d6 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.14.nix @@ -591,6 +591,7 @@ self: super: { "JuicyPixels" = doDistribute super."JuicyPixels_3_2_3"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7"; + "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; "JunkDB" = dontDistribute super."JunkDB"; "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; @@ -1164,6 +1165,7 @@ self: super: { "afv" = dontDistribute super."afv"; "agda-server" = dontDistribute super."agda-server"; "agda-snippets" = dontDistribute super."agda-snippets"; + "agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll"; "agentx" = dontDistribute super."agentx"; "agum" = dontDistribute super."agum"; "aig" = dontDistribute super."aig"; @@ -1751,6 +1753,7 @@ self: super: { "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; + "bson" = doDistribute super."bson_0_3_1"; "bson-generic" = dontDistribute super."bson-generic"; "bson-generics" = dontDistribute super."bson-generics"; "bson-lens" = dontDistribute super."bson-lens"; @@ -1999,6 +2002,7 @@ self: super: { "clafer" = dontDistribute super."clafer"; "claferIG" = dontDistribute super."claferIG"; "claferwiki" = dontDistribute super."claferwiki"; + "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; @@ -2115,6 +2119,7 @@ self: super: { "compdata-automata" = dontDistribute super."compdata-automata"; "compdata-dags" = dontDistribute super."compdata-dags"; "compdata-param" = dontDistribute super."compdata-param"; + "compensated" = doDistribute super."compensated_0_6_1"; "competition" = dontDistribute super."competition"; "compilation" = dontDistribute super."compilation"; "complex-generic" = dontDistribute super."complex-generic"; @@ -2573,6 +2578,7 @@ self: super: { "dicom" = dontDistribute super."dicom"; "dictparser" = dontDistribute super."dictparser"; "diet" = dontDistribute super."diet"; + "diff-gestalt" = dontDistribute super."diff-gestalt"; "diff-parse" = dontDistribute super."diff-parse"; "diff3" = dontDistribute super."diff3"; "diffarray" = dontDistribute super."diffarray"; @@ -2669,6 +2675,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; "download" = dontDistribute super."download"; @@ -3304,6 +3311,7 @@ self: super: { "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph"; "ghc-server" = dontDistribute super."ghc-server"; + "ghc-session" = dontDistribute super."ghc-session"; "ghc-simple" = dontDistribute super."ghc-simple"; "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; @@ -3644,6 +3652,7 @@ self: super: { "hR" = dontDistribute super."hR"; "hRESP" = dontDistribute super."hRESP"; "hS3" = dontDistribute super."hS3"; + "hScraper" = dontDistribute super."hScraper"; "hSimpleDB" = dontDistribute super."hSimpleDB"; "hTalos" = dontDistribute super."hTalos"; "hTensor" = dontDistribute super."hTensor"; @@ -4523,6 +4532,7 @@ self: super: { "hub" = dontDistribute super."hub"; "hubigraph" = dontDistribute super."hubigraph"; "hubris" = dontDistribute super."hubris"; + "huckleberry" = dontDistribute super."huckleberry"; "huffman" = dontDistribute super."huffman"; "hugs2yc" = dontDistribute super."hugs2yc"; "hulk" = dontDistribute super."hulk"; @@ -5027,6 +5037,7 @@ self: super: { "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; + "latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll"; "latex-formulae-image" = dontDistribute super."latex-formulae-image"; "latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc"; "lattices" = dontDistribute super."lattices"; @@ -5696,6 +5707,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = dontDistribute super."nationstates"; + "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; "natural-numbers" = dontDistribute super."natural-numbers"; @@ -6050,6 +6062,7 @@ self: super: { "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; "path" = dontDistribute super."path"; + "path-extra" = dontDistribute super."path-extra"; "path-pieces" = doDistribute super."path-pieces_0_1_5"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; @@ -6165,6 +6178,7 @@ self: super: { "pipes-bgzf" = dontDistribute super."pipes-bgzf"; "pipes-binary" = dontDistribute super."pipes-binary"; "pipes-bytestring" = dontDistribute super."pipes-bytestring"; + "pipes-cacophony" = dontDistribute super."pipes-cacophony"; "pipes-cellular" = dontDistribute super."pipes-cellular"; "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; @@ -7487,6 +7501,7 @@ self: super: { "svm-simple" = dontDistribute super."svm-simple"; "svndump" = dontDistribute super."svndump"; "swagger" = dontDistribute super."swagger"; + "swagger2" = dontDistribute super."swagger2"; "swapper" = dontDistribute super."swapper"; "swearjure" = dontDistribute super."swearjure"; "swf" = dontDistribute super."swf"; @@ -8556,6 +8571,9 @@ self: super: { "yesod-pure" = dontDistribute super."yesod-pure"; "yesod-purescript" = dontDistribute super."yesod-purescript"; "yesod-raml" = dontDistribute super."yesod-raml"; + "yesod-raml-bin" = dontDistribute super."yesod-raml-bin"; + "yesod-raml-docs" = dontDistribute super."yesod-raml-docs"; + "yesod-raml-mock" = dontDistribute super."yesod-raml-mock"; "yesod-recaptcha" = dontDistribute super."yesod-recaptcha"; "yesod-routes" = dontDistribute super."yesod-routes"; "yesod-routes-flow" = dontDistribute super."yesod-routes-flow"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.15.nix b/pkgs/development/haskell-modules/configuration-lts-1.15.nix index 1fbd669eed4..cb6415b47a6 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.15.nix @@ -591,6 +591,7 @@ self: super: { "JuicyPixels" = doDistribute super."JuicyPixels_3_2_3"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7"; + "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; "JunkDB" = dontDistribute super."JunkDB"; "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; @@ -1163,6 +1164,7 @@ self: super: { "afv" = dontDistribute super."afv"; "agda-server" = dontDistribute super."agda-server"; "agda-snippets" = dontDistribute super."agda-snippets"; + "agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll"; "agentx" = dontDistribute super."agentx"; "agum" = dontDistribute super."agum"; "aig" = dontDistribute super."aig"; @@ -1750,6 +1752,7 @@ self: super: { "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; + "bson" = doDistribute super."bson_0_3_1"; "bson-generic" = dontDistribute super."bson-generic"; "bson-generics" = dontDistribute super."bson-generics"; "bson-lens" = dontDistribute super."bson-lens"; @@ -1997,6 +2000,7 @@ self: super: { "clafer" = dontDistribute super."clafer"; "claferIG" = dontDistribute super."claferIG"; "claferwiki" = dontDistribute super."claferwiki"; + "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; @@ -2113,6 +2117,7 @@ self: super: { "compdata-automata" = dontDistribute super."compdata-automata"; "compdata-dags" = dontDistribute super."compdata-dags"; "compdata-param" = dontDistribute super."compdata-param"; + "compensated" = doDistribute super."compensated_0_6_1"; "competition" = dontDistribute super."competition"; "compilation" = dontDistribute super."compilation"; "complex-generic" = dontDistribute super."complex-generic"; @@ -2569,6 +2574,7 @@ self: super: { "dicom" = dontDistribute super."dicom"; "dictparser" = dontDistribute super."dictparser"; "diet" = dontDistribute super."diet"; + "diff-gestalt" = dontDistribute super."diff-gestalt"; "diff-parse" = dontDistribute super."diff-parse"; "diff3" = dontDistribute super."diff3"; "diffarray" = dontDistribute super."diffarray"; @@ -2665,6 +2671,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; "download" = dontDistribute super."download"; @@ -3299,6 +3306,7 @@ self: super: { "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph"; "ghc-server" = dontDistribute super."ghc-server"; + "ghc-session" = dontDistribute super."ghc-session"; "ghc-simple" = dontDistribute super."ghc-simple"; "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; @@ -3639,6 +3647,7 @@ self: super: { "hR" = dontDistribute super."hR"; "hRESP" = dontDistribute super."hRESP"; "hS3" = dontDistribute super."hS3"; + "hScraper" = dontDistribute super."hScraper"; "hSimpleDB" = dontDistribute super."hSimpleDB"; "hTalos" = dontDistribute super."hTalos"; "hTensor" = dontDistribute super."hTensor"; @@ -4518,6 +4527,7 @@ self: super: { "hub" = dontDistribute super."hub"; "hubigraph" = dontDistribute super."hubigraph"; "hubris" = dontDistribute super."hubris"; + "huckleberry" = dontDistribute super."huckleberry"; "huffman" = dontDistribute super."huffman"; "hugs2yc" = dontDistribute super."hugs2yc"; "hulk" = dontDistribute super."hulk"; @@ -5022,6 +5032,7 @@ self: super: { "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; + "latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll"; "latex-formulae-image" = dontDistribute super."latex-formulae-image"; "latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc"; "lattices" = dontDistribute super."lattices"; @@ -5689,6 +5700,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = dontDistribute super."nationstates"; + "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; "natural-numbers" = dontDistribute super."natural-numbers"; @@ -6043,6 +6055,7 @@ self: super: { "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; "path" = dontDistribute super."path"; + "path-extra" = dontDistribute super."path-extra"; "path-pieces" = doDistribute super."path-pieces_0_1_5"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; @@ -6158,6 +6171,7 @@ self: super: { "pipes-bgzf" = dontDistribute super."pipes-bgzf"; "pipes-binary" = dontDistribute super."pipes-binary"; "pipes-bytestring" = dontDistribute super."pipes-bytestring"; + "pipes-cacophony" = dontDistribute super."pipes-cacophony"; "pipes-cellular" = dontDistribute super."pipes-cellular"; "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; @@ -7476,6 +7490,7 @@ self: super: { "svm-simple" = dontDistribute super."svm-simple"; "svndump" = dontDistribute super."svndump"; "swagger" = dontDistribute super."swagger"; + "swagger2" = dontDistribute super."swagger2"; "swapper" = dontDistribute super."swapper"; "swearjure" = dontDistribute super."swearjure"; "swf" = dontDistribute super."swf"; @@ -8544,6 +8559,9 @@ self: super: { "yesod-pure" = dontDistribute super."yesod-pure"; "yesod-purescript" = dontDistribute super."yesod-purescript"; "yesod-raml" = dontDistribute super."yesod-raml"; + "yesod-raml-bin" = dontDistribute super."yesod-raml-bin"; + "yesod-raml-docs" = dontDistribute super."yesod-raml-docs"; + "yesod-raml-mock" = dontDistribute super."yesod-raml-mock"; "yesod-recaptcha" = dontDistribute super."yesod-recaptcha"; "yesod-routes" = dontDistribute super."yesod-routes"; "yesod-routes-flow" = dontDistribute super."yesod-routes-flow"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.2.nix b/pkgs/development/haskell-modules/configuration-lts-1.2.nix index f4a75202f8f..c8386d7125d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.2.nix @@ -593,6 +593,7 @@ self: super: { "JuicyPixels" = doDistribute super."JuicyPixels_3_2_2"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7"; + "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; "JunkDB" = dontDistribute super."JunkDB"; "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; @@ -1166,6 +1167,7 @@ self: super: { "afv" = dontDistribute super."afv"; "agda-server" = dontDistribute super."agda-server"; "agda-snippets" = dontDistribute super."agda-snippets"; + "agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll"; "agentx" = dontDistribute super."agentx"; "agum" = dontDistribute super."agum"; "aig" = dontDistribute super."aig"; @@ -1755,6 +1757,7 @@ self: super: { "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; + "bson" = doDistribute super."bson_0_3_1"; "bson-generic" = dontDistribute super."bson-generic"; "bson-generics" = dontDistribute super."bson-generics"; "bson-lens" = dontDistribute super."bson-lens"; @@ -2005,6 +2008,7 @@ self: super: { "clafer" = dontDistribute super."clafer"; "claferIG" = dontDistribute super."claferIG"; "claferwiki" = dontDistribute super."claferwiki"; + "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; @@ -2121,6 +2125,7 @@ self: super: { "compdata-automata" = dontDistribute super."compdata-automata"; "compdata-dags" = dontDistribute super."compdata-dags"; "compdata-param" = dontDistribute super."compdata-param"; + "compensated" = doDistribute super."compensated_0_6_1"; "competition" = dontDistribute super."competition"; "compilation" = dontDistribute super."compilation"; "complex-generic" = dontDistribute super."complex-generic"; @@ -2581,6 +2586,7 @@ self: super: { "dicom" = dontDistribute super."dicom"; "dictparser" = dontDistribute super."dictparser"; "diet" = dontDistribute super."diet"; + "diff-gestalt" = dontDistribute super."diff-gestalt"; "diff-parse" = dontDistribute super."diff-parse"; "diff3" = dontDistribute super."diff3"; "diffarray" = dontDistribute super."diffarray"; @@ -2677,6 +2683,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; "download" = dontDistribute super."download"; @@ -3317,6 +3324,7 @@ self: super: { "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph"; "ghc-server" = dontDistribute super."ghc-server"; + "ghc-session" = dontDistribute super."ghc-session"; "ghc-simple" = dontDistribute super."ghc-simple"; "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; @@ -3659,6 +3667,7 @@ self: super: { "hR" = dontDistribute super."hR"; "hRESP" = dontDistribute super."hRESP"; "hS3" = dontDistribute super."hS3"; + "hScraper" = dontDistribute super."hScraper"; "hSimpleDB" = dontDistribute super."hSimpleDB"; "hTalos" = dontDistribute super."hTalos"; "hTensor" = dontDistribute super."hTensor"; @@ -4543,6 +4552,7 @@ self: super: { "hub" = dontDistribute super."hub"; "hubigraph" = dontDistribute super."hubigraph"; "hubris" = dontDistribute super."hubris"; + "huckleberry" = dontDistribute super."huckleberry"; "huffman" = dontDistribute super."huffman"; "hugs2yc" = dontDistribute super."hugs2yc"; "hulk" = dontDistribute super."hulk"; @@ -5057,6 +5067,7 @@ self: super: { "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; + "latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll"; "latex-formulae-image" = dontDistribute super."latex-formulae-image"; "latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc"; "lattices" = dontDistribute super."lattices"; @@ -5731,6 +5742,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = dontDistribute super."nationstates"; + "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; "natural-numbers" = dontDistribute super."natural-numbers"; @@ -6087,6 +6099,7 @@ self: super: { "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; "path" = dontDistribute super."path"; + "path-extra" = dontDistribute super."path-extra"; "path-pieces" = doDistribute super."path-pieces_0_1_5"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; @@ -6202,6 +6215,7 @@ self: super: { "pipes-bgzf" = dontDistribute super."pipes-bgzf"; "pipes-binary" = dontDistribute super."pipes-binary"; "pipes-bytestring" = dontDistribute super."pipes-bytestring"; + "pipes-cacophony" = dontDistribute super."pipes-cacophony"; "pipes-cellular" = dontDistribute super."pipes-cellular"; "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; @@ -7530,6 +7544,7 @@ self: super: { "svm-simple" = dontDistribute super."svm-simple"; "svndump" = dontDistribute super."svndump"; "swagger" = dontDistribute super."swagger"; + "swagger2" = dontDistribute super."swagger2"; "swapper" = dontDistribute super."swapper"; "swearjure" = dontDistribute super."swearjure"; "swf" = dontDistribute super."swf"; @@ -8610,6 +8625,9 @@ self: super: { "yesod-pure" = dontDistribute super."yesod-pure"; "yesod-purescript" = dontDistribute super."yesod-purescript"; "yesod-raml" = dontDistribute super."yesod-raml"; + "yesod-raml-bin" = dontDistribute super."yesod-raml-bin"; + "yesod-raml-docs" = dontDistribute super."yesod-raml-docs"; + "yesod-raml-mock" = dontDistribute super."yesod-raml-mock"; "yesod-recaptcha" = dontDistribute super."yesod-recaptcha"; "yesod-routes" = dontDistribute super."yesod-routes"; "yesod-routes-flow" = dontDistribute super."yesod-routes-flow"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.4.nix b/pkgs/development/haskell-modules/configuration-lts-1.4.nix index ec4503f651c..be1f171166a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.4.nix @@ -592,6 +592,7 @@ self: super: { "JuicyPixels" = doDistribute super."JuicyPixels_3_2_2"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7"; + "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; "JunkDB" = dontDistribute super."JunkDB"; "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; @@ -1165,6 +1166,7 @@ self: super: { "afv" = dontDistribute super."afv"; "agda-server" = dontDistribute super."agda-server"; "agda-snippets" = dontDistribute super."agda-snippets"; + "agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll"; "agentx" = dontDistribute super."agentx"; "agum" = dontDistribute super."agum"; "aig" = dontDistribute super."aig"; @@ -1754,6 +1756,7 @@ self: super: { "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; + "bson" = doDistribute super."bson_0_3_1"; "bson-generic" = dontDistribute super."bson-generic"; "bson-generics" = dontDistribute super."bson-generics"; "bson-lens" = dontDistribute super."bson-lens"; @@ -2004,6 +2007,7 @@ self: super: { "clafer" = dontDistribute super."clafer"; "claferIG" = dontDistribute super."claferIG"; "claferwiki" = dontDistribute super."claferwiki"; + "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; @@ -2120,6 +2124,7 @@ self: super: { "compdata-automata" = dontDistribute super."compdata-automata"; "compdata-dags" = dontDistribute super."compdata-dags"; "compdata-param" = dontDistribute super."compdata-param"; + "compensated" = doDistribute super."compensated_0_6_1"; "competition" = dontDistribute super."competition"; "compilation" = dontDistribute super."compilation"; "complex-generic" = dontDistribute super."complex-generic"; @@ -2580,6 +2585,7 @@ self: super: { "dicom" = dontDistribute super."dicom"; "dictparser" = dontDistribute super."dictparser"; "diet" = dontDistribute super."diet"; + "diff-gestalt" = dontDistribute super."diff-gestalt"; "diff-parse" = dontDistribute super."diff-parse"; "diff3" = dontDistribute super."diff3"; "diffarray" = dontDistribute super."diffarray"; @@ -2676,6 +2682,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; "download" = dontDistribute super."download"; @@ -3315,6 +3322,7 @@ self: super: { "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph"; "ghc-server" = dontDistribute super."ghc-server"; + "ghc-session" = dontDistribute super."ghc-session"; "ghc-simple" = dontDistribute super."ghc-simple"; "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; @@ -3657,6 +3665,7 @@ self: super: { "hR" = dontDistribute super."hR"; "hRESP" = dontDistribute super."hRESP"; "hS3" = dontDistribute super."hS3"; + "hScraper" = dontDistribute super."hScraper"; "hSimpleDB" = dontDistribute super."hSimpleDB"; "hTalos" = dontDistribute super."hTalos"; "hTensor" = dontDistribute super."hTensor"; @@ -4540,6 +4549,7 @@ self: super: { "hub" = dontDistribute super."hub"; "hubigraph" = dontDistribute super."hubigraph"; "hubris" = dontDistribute super."hubris"; + "huckleberry" = dontDistribute super."huckleberry"; "huffman" = dontDistribute super."huffman"; "hugs2yc" = dontDistribute super."hugs2yc"; "hulk" = dontDistribute super."hulk"; @@ -5054,6 +5064,7 @@ self: super: { "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; + "latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll"; "latex-formulae-image" = dontDistribute super."latex-formulae-image"; "latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc"; "lattices" = dontDistribute super."lattices"; @@ -5727,6 +5738,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = dontDistribute super."nationstates"; + "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; "natural-numbers" = dontDistribute super."natural-numbers"; @@ -6083,6 +6095,7 @@ self: super: { "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; "path" = dontDistribute super."path"; + "path-extra" = dontDistribute super."path-extra"; "path-pieces" = doDistribute super."path-pieces_0_1_5"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; @@ -6198,6 +6211,7 @@ self: super: { "pipes-bgzf" = dontDistribute super."pipes-bgzf"; "pipes-binary" = dontDistribute super."pipes-binary"; "pipes-bytestring" = dontDistribute super."pipes-bytestring"; + "pipes-cacophony" = dontDistribute super."pipes-cacophony"; "pipes-cellular" = dontDistribute super."pipes-cellular"; "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; @@ -7525,6 +7539,7 @@ self: super: { "svm-simple" = dontDistribute super."svm-simple"; "svndump" = dontDistribute super."svndump"; "swagger" = dontDistribute super."swagger"; + "swagger2" = dontDistribute super."swagger2"; "swapper" = dontDistribute super."swapper"; "swearjure" = dontDistribute super."swearjure"; "swf" = dontDistribute super."swf"; @@ -8604,6 +8619,9 @@ self: super: { "yesod-pure" = dontDistribute super."yesod-pure"; "yesod-purescript" = dontDistribute super."yesod-purescript"; "yesod-raml" = dontDistribute super."yesod-raml"; + "yesod-raml-bin" = dontDistribute super."yesod-raml-bin"; + "yesod-raml-docs" = dontDistribute super."yesod-raml-docs"; + "yesod-raml-mock" = dontDistribute super."yesod-raml-mock"; "yesod-recaptcha" = dontDistribute super."yesod-recaptcha"; "yesod-routes" = dontDistribute super."yesod-routes"; "yesod-routes-flow" = dontDistribute super."yesod-routes-flow"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.5.nix b/pkgs/development/haskell-modules/configuration-lts-1.5.nix index cc9a3fa3590..55a955af3f5 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.5.nix @@ -592,6 +592,7 @@ self: super: { "JuicyPixels" = doDistribute super."JuicyPixels_3_2_2"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7"; + "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; "JunkDB" = dontDistribute super."JunkDB"; "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; @@ -1165,6 +1166,7 @@ self: super: { "afv" = dontDistribute super."afv"; "agda-server" = dontDistribute super."agda-server"; "agda-snippets" = dontDistribute super."agda-snippets"; + "agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll"; "agentx" = dontDistribute super."agentx"; "agum" = dontDistribute super."agum"; "aig" = dontDistribute super."aig"; @@ -1754,6 +1756,7 @@ self: super: { "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; + "bson" = doDistribute super."bson_0_3_1"; "bson-generic" = dontDistribute super."bson-generic"; "bson-generics" = dontDistribute super."bson-generics"; "bson-lens" = dontDistribute super."bson-lens"; @@ -2003,6 +2006,7 @@ self: super: { "clafer" = dontDistribute super."clafer"; "claferIG" = dontDistribute super."claferIG"; "claferwiki" = dontDistribute super."claferwiki"; + "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; @@ -2119,6 +2123,7 @@ self: super: { "compdata-automata" = dontDistribute super."compdata-automata"; "compdata-dags" = dontDistribute super."compdata-dags"; "compdata-param" = dontDistribute super."compdata-param"; + "compensated" = doDistribute super."compensated_0_6_1"; "competition" = dontDistribute super."competition"; "compilation" = dontDistribute super."compilation"; "complex-generic" = dontDistribute super."complex-generic"; @@ -2579,6 +2584,7 @@ self: super: { "dicom" = dontDistribute super."dicom"; "dictparser" = dontDistribute super."dictparser"; "diet" = dontDistribute super."diet"; + "diff-gestalt" = dontDistribute super."diff-gestalt"; "diff-parse" = dontDistribute super."diff-parse"; "diff3" = dontDistribute super."diff3"; "diffarray" = dontDistribute super."diffarray"; @@ -2675,6 +2681,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; "download" = dontDistribute super."download"; @@ -3314,6 +3321,7 @@ self: super: { "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph"; "ghc-server" = dontDistribute super."ghc-server"; + "ghc-session" = dontDistribute super."ghc-session"; "ghc-simple" = dontDistribute super."ghc-simple"; "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; @@ -3656,6 +3664,7 @@ self: super: { "hR" = dontDistribute super."hR"; "hRESP" = dontDistribute super."hRESP"; "hS3" = dontDistribute super."hS3"; + "hScraper" = dontDistribute super."hScraper"; "hSimpleDB" = dontDistribute super."hSimpleDB"; "hTalos" = dontDistribute super."hTalos"; "hTensor" = dontDistribute super."hTensor"; @@ -4539,6 +4548,7 @@ self: super: { "hub" = dontDistribute super."hub"; "hubigraph" = dontDistribute super."hubigraph"; "hubris" = dontDistribute super."hubris"; + "huckleberry" = dontDistribute super."huckleberry"; "huffman" = dontDistribute super."huffman"; "hugs2yc" = dontDistribute super."hugs2yc"; "hulk" = dontDistribute super."hulk"; @@ -5052,6 +5062,7 @@ self: super: { "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; + "latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll"; "latex-formulae-image" = dontDistribute super."latex-formulae-image"; "latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc"; "lattices" = dontDistribute super."lattices"; @@ -5725,6 +5736,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = dontDistribute super."nationstates"; + "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; "natural-numbers" = dontDistribute super."natural-numbers"; @@ -6081,6 +6093,7 @@ self: super: { "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; "path" = dontDistribute super."path"; + "path-extra" = dontDistribute super."path-extra"; "path-pieces" = doDistribute super."path-pieces_0_1_5"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; @@ -6196,6 +6209,7 @@ self: super: { "pipes-bgzf" = dontDistribute super."pipes-bgzf"; "pipes-binary" = dontDistribute super."pipes-binary"; "pipes-bytestring" = dontDistribute super."pipes-bytestring"; + "pipes-cacophony" = dontDistribute super."pipes-cacophony"; "pipes-cellular" = dontDistribute super."pipes-cellular"; "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; @@ -7523,6 +7537,7 @@ self: super: { "svm-simple" = dontDistribute super."svm-simple"; "svndump" = dontDistribute super."svndump"; "swagger" = dontDistribute super."swagger"; + "swagger2" = dontDistribute super."swagger2"; "swapper" = dontDistribute super."swapper"; "swearjure" = dontDistribute super."swearjure"; "swf" = dontDistribute super."swf"; @@ -8600,6 +8615,9 @@ self: super: { "yesod-pure" = dontDistribute super."yesod-pure"; "yesod-purescript" = dontDistribute super."yesod-purescript"; "yesod-raml" = dontDistribute super."yesod-raml"; + "yesod-raml-bin" = dontDistribute super."yesod-raml-bin"; + "yesod-raml-docs" = dontDistribute super."yesod-raml-docs"; + "yesod-raml-mock" = dontDistribute super."yesod-raml-mock"; "yesod-recaptcha" = dontDistribute super."yesod-recaptcha"; "yesod-routes" = dontDistribute super."yesod-routes"; "yesod-routes-flow" = dontDistribute super."yesod-routes-flow"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.7.nix b/pkgs/development/haskell-modules/configuration-lts-1.7.nix index 9cf5b4539cc..fb24e81fcc0 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.7.nix @@ -592,6 +592,7 @@ self: super: { "JuicyPixels" = doDistribute super."JuicyPixels_3_2_2"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7"; + "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; "JunkDB" = dontDistribute super."JunkDB"; "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; @@ -1165,6 +1166,7 @@ self: super: { "afv" = dontDistribute super."afv"; "agda-server" = dontDistribute super."agda-server"; "agda-snippets" = dontDistribute super."agda-snippets"; + "agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll"; "agentx" = dontDistribute super."agentx"; "agum" = dontDistribute super."agum"; "aig" = dontDistribute super."aig"; @@ -1754,6 +1756,7 @@ self: super: { "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; + "bson" = doDistribute super."bson_0_3_1"; "bson-generic" = dontDistribute super."bson-generic"; "bson-generics" = dontDistribute super."bson-generics"; "bson-lens" = dontDistribute super."bson-lens"; @@ -2003,6 +2006,7 @@ self: super: { "clafer" = dontDistribute super."clafer"; "claferIG" = dontDistribute super."claferIG"; "claferwiki" = dontDistribute super."claferwiki"; + "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; @@ -2119,6 +2123,7 @@ self: super: { "compdata-automata" = dontDistribute super."compdata-automata"; "compdata-dags" = dontDistribute super."compdata-dags"; "compdata-param" = dontDistribute super."compdata-param"; + "compensated" = doDistribute super."compensated_0_6_1"; "competition" = dontDistribute super."competition"; "compilation" = dontDistribute super."compilation"; "complex-generic" = dontDistribute super."complex-generic"; @@ -2579,6 +2584,7 @@ self: super: { "dicom" = dontDistribute super."dicom"; "dictparser" = dontDistribute super."dictparser"; "diet" = dontDistribute super."diet"; + "diff-gestalt" = dontDistribute super."diff-gestalt"; "diff-parse" = dontDistribute super."diff-parse"; "diff3" = dontDistribute super."diff3"; "diffarray" = dontDistribute super."diffarray"; @@ -2675,6 +2681,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; "download" = dontDistribute super."download"; @@ -3314,6 +3321,7 @@ self: super: { "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph"; "ghc-server" = dontDistribute super."ghc-server"; + "ghc-session" = dontDistribute super."ghc-session"; "ghc-simple" = dontDistribute super."ghc-simple"; "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; @@ -3656,6 +3664,7 @@ self: super: { "hR" = dontDistribute super."hR"; "hRESP" = dontDistribute super."hRESP"; "hS3" = dontDistribute super."hS3"; + "hScraper" = dontDistribute super."hScraper"; "hSimpleDB" = dontDistribute super."hSimpleDB"; "hTalos" = dontDistribute super."hTalos"; "hTensor" = dontDistribute super."hTensor"; @@ -4539,6 +4548,7 @@ self: super: { "hub" = dontDistribute super."hub"; "hubigraph" = dontDistribute super."hubigraph"; "hubris" = dontDistribute super."hubris"; + "huckleberry" = dontDistribute super."huckleberry"; "huffman" = dontDistribute super."huffman"; "hugs2yc" = dontDistribute super."hugs2yc"; "hulk" = dontDistribute super."hulk"; @@ -5046,6 +5056,7 @@ self: super: { "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; + "latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll"; "latex-formulae-image" = dontDistribute super."latex-formulae-image"; "latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc"; "lattices" = dontDistribute super."lattices"; @@ -5719,6 +5730,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = dontDistribute super."nationstates"; + "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; "natural-numbers" = dontDistribute super."natural-numbers"; @@ -6075,6 +6087,7 @@ self: super: { "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; "path" = dontDistribute super."path"; + "path-extra" = dontDistribute super."path-extra"; "path-pieces" = doDistribute super."path-pieces_0_1_5"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; @@ -6190,6 +6203,7 @@ self: super: { "pipes-bgzf" = dontDistribute super."pipes-bgzf"; "pipes-binary" = dontDistribute super."pipes-binary"; "pipes-bytestring" = dontDistribute super."pipes-bytestring"; + "pipes-cacophony" = dontDistribute super."pipes-cacophony"; "pipes-cellular" = dontDistribute super."pipes-cellular"; "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; @@ -7517,6 +7531,7 @@ self: super: { "svm-simple" = dontDistribute super."svm-simple"; "svndump" = dontDistribute super."svndump"; "swagger" = dontDistribute super."swagger"; + "swagger2" = dontDistribute super."swagger2"; "swapper" = dontDistribute super."swapper"; "swearjure" = dontDistribute super."swearjure"; "swf" = dontDistribute super."swf"; @@ -8594,6 +8609,9 @@ self: super: { "yesod-pure" = dontDistribute super."yesod-pure"; "yesod-purescript" = dontDistribute super."yesod-purescript"; "yesod-raml" = dontDistribute super."yesod-raml"; + "yesod-raml-bin" = dontDistribute super."yesod-raml-bin"; + "yesod-raml-docs" = dontDistribute super."yesod-raml-docs"; + "yesod-raml-mock" = dontDistribute super."yesod-raml-mock"; "yesod-recaptcha" = dontDistribute super."yesod-recaptcha"; "yesod-routes" = dontDistribute super."yesod-routes"; "yesod-routes-flow" = dontDistribute super."yesod-routes-flow"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.8.nix b/pkgs/development/haskell-modules/configuration-lts-1.8.nix index 0fbfe1b84dc..62958eaddd5 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.8.nix @@ -592,6 +592,7 @@ self: super: { "JuicyPixels" = doDistribute super."JuicyPixels_3_2_2"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7"; + "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; "JunkDB" = dontDistribute super."JunkDB"; "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; @@ -1165,6 +1166,7 @@ self: super: { "afv" = dontDistribute super."afv"; "agda-server" = dontDistribute super."agda-server"; "agda-snippets" = dontDistribute super."agda-snippets"; + "agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll"; "agentx" = dontDistribute super."agentx"; "agum" = dontDistribute super."agum"; "aig" = dontDistribute super."aig"; @@ -1754,6 +1756,7 @@ self: super: { "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; + "bson" = doDistribute super."bson_0_3_1"; "bson-generic" = dontDistribute super."bson-generic"; "bson-generics" = dontDistribute super."bson-generics"; "bson-lens" = dontDistribute super."bson-lens"; @@ -2003,6 +2006,7 @@ self: super: { "clafer" = dontDistribute super."clafer"; "claferIG" = dontDistribute super."claferIG"; "claferwiki" = dontDistribute super."claferwiki"; + "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; @@ -2119,6 +2123,7 @@ self: super: { "compdata-automata" = dontDistribute super."compdata-automata"; "compdata-dags" = dontDistribute super."compdata-dags"; "compdata-param" = dontDistribute super."compdata-param"; + "compensated" = doDistribute super."compensated_0_6_1"; "competition" = dontDistribute super."competition"; "compilation" = dontDistribute super."compilation"; "complex-generic" = dontDistribute super."complex-generic"; @@ -2579,6 +2584,7 @@ self: super: { "dicom" = dontDistribute super."dicom"; "dictparser" = dontDistribute super."dictparser"; "diet" = dontDistribute super."diet"; + "diff-gestalt" = dontDistribute super."diff-gestalt"; "diff-parse" = dontDistribute super."diff-parse"; "diff3" = dontDistribute super."diff3"; "diffarray" = dontDistribute super."diffarray"; @@ -2675,6 +2681,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; "download" = dontDistribute super."download"; @@ -3312,6 +3319,7 @@ self: super: { "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph"; "ghc-server" = dontDistribute super."ghc-server"; + "ghc-session" = dontDistribute super."ghc-session"; "ghc-simple" = dontDistribute super."ghc-simple"; "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; @@ -3653,6 +3661,7 @@ self: super: { "hR" = dontDistribute super."hR"; "hRESP" = dontDistribute super."hRESP"; "hS3" = dontDistribute super."hS3"; + "hScraper" = dontDistribute super."hScraper"; "hSimpleDB" = dontDistribute super."hSimpleDB"; "hTalos" = dontDistribute super."hTalos"; "hTensor" = dontDistribute super."hTensor"; @@ -4535,6 +4544,7 @@ self: super: { "hub" = dontDistribute super."hub"; "hubigraph" = dontDistribute super."hubigraph"; "hubris" = dontDistribute super."hubris"; + "huckleberry" = dontDistribute super."huckleberry"; "huffman" = dontDistribute super."huffman"; "hugs2yc" = dontDistribute super."hugs2yc"; "hulk" = dontDistribute super."hulk"; @@ -5042,6 +5052,7 @@ self: super: { "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; + "latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll"; "latex-formulae-image" = dontDistribute super."latex-formulae-image"; "latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc"; "lattices" = dontDistribute super."lattices"; @@ -5714,6 +5725,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = dontDistribute super."nationstates"; + "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; "natural-numbers" = dontDistribute super."natural-numbers"; @@ -6070,6 +6082,7 @@ self: super: { "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; "path" = dontDistribute super."path"; + "path-extra" = dontDistribute super."path-extra"; "path-pieces" = doDistribute super."path-pieces_0_1_5"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; @@ -6185,6 +6198,7 @@ self: super: { "pipes-bgzf" = dontDistribute super."pipes-bgzf"; "pipes-binary" = dontDistribute super."pipes-binary"; "pipes-bytestring" = dontDistribute super."pipes-bytestring"; + "pipes-cacophony" = dontDistribute super."pipes-cacophony"; "pipes-cellular" = dontDistribute super."pipes-cellular"; "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; @@ -7512,6 +7526,7 @@ self: super: { "svm-simple" = dontDistribute super."svm-simple"; "svndump" = dontDistribute super."svndump"; "swagger" = dontDistribute super."swagger"; + "swagger2" = dontDistribute super."swagger2"; "swapper" = dontDistribute super."swapper"; "swearjure" = dontDistribute super."swearjure"; "swf" = dontDistribute super."swf"; @@ -8588,6 +8603,9 @@ self: super: { "yesod-pure" = dontDistribute super."yesod-pure"; "yesod-purescript" = dontDistribute super."yesod-purescript"; "yesod-raml" = dontDistribute super."yesod-raml"; + "yesod-raml-bin" = dontDistribute super."yesod-raml-bin"; + "yesod-raml-docs" = dontDistribute super."yesod-raml-docs"; + "yesod-raml-mock" = dontDistribute super."yesod-raml-mock"; "yesod-recaptcha" = dontDistribute super."yesod-recaptcha"; "yesod-routes" = dontDistribute super."yesod-routes"; "yesod-routes-flow" = dontDistribute super."yesod-routes-flow"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.9.nix b/pkgs/development/haskell-modules/configuration-lts-1.9.nix index 84a1dbef324..34f55432ce2 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.9.nix @@ -592,6 +592,7 @@ self: super: { "JuicyPixels" = doDistribute super."JuicyPixels_3_2_2"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7"; + "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; "JunkDB" = dontDistribute super."JunkDB"; "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; @@ -1165,6 +1166,7 @@ self: super: { "afv" = dontDistribute super."afv"; "agda-server" = dontDistribute super."agda-server"; "agda-snippets" = dontDistribute super."agda-snippets"; + "agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll"; "agentx" = dontDistribute super."agentx"; "agum" = dontDistribute super."agum"; "aig" = dontDistribute super."aig"; @@ -1754,6 +1756,7 @@ self: super: { "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; + "bson" = doDistribute super."bson_0_3_1"; "bson-generic" = dontDistribute super."bson-generic"; "bson-generics" = dontDistribute super."bson-generics"; "bson-lens" = dontDistribute super."bson-lens"; @@ -2003,6 +2006,7 @@ self: super: { "clafer" = dontDistribute super."clafer"; "claferIG" = dontDistribute super."claferIG"; "claferwiki" = dontDistribute super."claferwiki"; + "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; @@ -2119,6 +2123,7 @@ self: super: { "compdata-automata" = dontDistribute super."compdata-automata"; "compdata-dags" = dontDistribute super."compdata-dags"; "compdata-param" = dontDistribute super."compdata-param"; + "compensated" = doDistribute super."compensated_0_6_1"; "competition" = dontDistribute super."competition"; "compilation" = dontDistribute super."compilation"; "complex-generic" = dontDistribute super."complex-generic"; @@ -2579,6 +2584,7 @@ self: super: { "dicom" = dontDistribute super."dicom"; "dictparser" = dontDistribute super."dictparser"; "diet" = dontDistribute super."diet"; + "diff-gestalt" = dontDistribute super."diff-gestalt"; "diff-parse" = dontDistribute super."diff-parse"; "diff3" = dontDistribute super."diff3"; "diffarray" = dontDistribute super."diffarray"; @@ -2675,6 +2681,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; "download" = dontDistribute super."download"; @@ -3311,6 +3318,7 @@ self: super: { "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph"; "ghc-server" = dontDistribute super."ghc-server"; + "ghc-session" = dontDistribute super."ghc-session"; "ghc-simple" = dontDistribute super."ghc-simple"; "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; @@ -3652,6 +3660,7 @@ self: super: { "hR" = dontDistribute super."hR"; "hRESP" = dontDistribute super."hRESP"; "hS3" = dontDistribute super."hS3"; + "hScraper" = dontDistribute super."hScraper"; "hSimpleDB" = dontDistribute super."hSimpleDB"; "hTalos" = dontDistribute super."hTalos"; "hTensor" = dontDistribute super."hTensor"; @@ -4533,6 +4542,7 @@ self: super: { "hub" = dontDistribute super."hub"; "hubigraph" = dontDistribute super."hubigraph"; "hubris" = dontDistribute super."hubris"; + "huckleberry" = dontDistribute super."huckleberry"; "huffman" = dontDistribute super."huffman"; "hugs2yc" = dontDistribute super."hugs2yc"; "hulk" = dontDistribute super."hulk"; @@ -5040,6 +5050,7 @@ self: super: { "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; + "latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll"; "latex-formulae-image" = dontDistribute super."latex-formulae-image"; "latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc"; "lattices" = dontDistribute super."lattices"; @@ -5712,6 +5723,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = dontDistribute super."nationstates"; + "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; "natural-numbers" = dontDistribute super."natural-numbers"; @@ -6067,6 +6079,7 @@ self: super: { "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; "path" = dontDistribute super."path"; + "path-extra" = dontDistribute super."path-extra"; "path-pieces" = doDistribute super."path-pieces_0_1_5"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; @@ -6182,6 +6195,7 @@ self: super: { "pipes-bgzf" = dontDistribute super."pipes-bgzf"; "pipes-binary" = dontDistribute super."pipes-binary"; "pipes-bytestring" = dontDistribute super."pipes-bytestring"; + "pipes-cacophony" = dontDistribute super."pipes-cacophony"; "pipes-cellular" = dontDistribute super."pipes-cellular"; "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; @@ -7509,6 +7523,7 @@ self: super: { "svm-simple" = dontDistribute super."svm-simple"; "svndump" = dontDistribute super."svndump"; "swagger" = dontDistribute super."swagger"; + "swagger2" = dontDistribute super."swagger2"; "swapper" = dontDistribute super."swapper"; "swearjure" = dontDistribute super."swearjure"; "swf" = dontDistribute super."swf"; @@ -8585,6 +8600,9 @@ self: super: { "yesod-pure" = dontDistribute super."yesod-pure"; "yesod-purescript" = dontDistribute super."yesod-purescript"; "yesod-raml" = dontDistribute super."yesod-raml"; + "yesod-raml-bin" = dontDistribute super."yesod-raml-bin"; + "yesod-raml-docs" = dontDistribute super."yesod-raml-docs"; + "yesod-raml-mock" = dontDistribute super."yesod-raml-mock"; "yesod-recaptcha" = dontDistribute super."yesod-recaptcha"; "yesod-routes" = dontDistribute super."yesod-routes"; "yesod-routes-flow" = dontDistribute super."yesod-routes-flow"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.0.nix b/pkgs/development/haskell-modules/configuration-lts-2.0.nix index dedb5ab2093..04ed9f69e25 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.0.nix @@ -586,6 +586,7 @@ self: super: { "JuicyPixels" = doDistribute super."JuicyPixels_3_2_3_1"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7"; + "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; "JunkDB" = dontDistribute super."JunkDB"; "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; @@ -1154,6 +1155,7 @@ self: super: { "afv" = dontDistribute super."afv"; "agda-server" = dontDistribute super."agda-server"; "agda-snippets" = dontDistribute super."agda-snippets"; + "agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll"; "agentx" = dontDistribute super."agentx"; "agum" = dontDistribute super."agum"; "aig" = dontDistribute super."aig"; @@ -1735,6 +1737,7 @@ self: super: { "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; + "bson" = doDistribute super."bson_0_3_1"; "bson-generic" = dontDistribute super."bson-generic"; "bson-generics" = dontDistribute super."bson-generics"; "bson-lens" = dontDistribute super."bson-lens"; @@ -1982,6 +1985,7 @@ self: super: { "clafer" = dontDistribute super."clafer"; "claferIG" = dontDistribute super."claferIG"; "claferwiki" = dontDistribute super."claferwiki"; + "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; @@ -2097,6 +2101,7 @@ self: super: { "compdata-automata" = dontDistribute super."compdata-automata"; "compdata-dags" = dontDistribute super."compdata-dags"; "compdata-param" = dontDistribute super."compdata-param"; + "compensated" = doDistribute super."compensated_0_6_1"; "competition" = dontDistribute super."competition"; "compilation" = dontDistribute super."compilation"; "complex-generic" = dontDistribute super."complex-generic"; @@ -2550,6 +2555,7 @@ self: super: { "dicom" = dontDistribute super."dicom"; "dictparser" = dontDistribute super."dictparser"; "diet" = dontDistribute super."diet"; + "diff-gestalt" = dontDistribute super."diff-gestalt"; "diff-parse" = dontDistribute super."diff-parse"; "diff3" = dontDistribute super."diff3"; "diffarray" = dontDistribute super."diffarray"; @@ -2646,6 +2652,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; "download" = dontDistribute super."download"; @@ -3276,6 +3283,7 @@ self: super: { "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph"; "ghc-server" = dontDistribute super."ghc-server"; + "ghc-session" = dontDistribute super."ghc-session"; "ghc-simple" = dontDistribute super."ghc-simple"; "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; @@ -3612,6 +3620,7 @@ self: super: { "hR" = dontDistribute super."hR"; "hRESP" = dontDistribute super."hRESP"; "hS3" = dontDistribute super."hS3"; + "hScraper" = dontDistribute super."hScraper"; "hSimpleDB" = dontDistribute super."hSimpleDB"; "hTalos" = dontDistribute super."hTalos"; "hTensor" = dontDistribute super."hTensor"; @@ -4486,6 +4495,7 @@ self: super: { "hub" = dontDistribute super."hub"; "hubigraph" = dontDistribute super."hubigraph"; "hubris" = dontDistribute super."hubris"; + "huckleberry" = dontDistribute super."huckleberry"; "huffman" = dontDistribute super."huffman"; "hugs2yc" = dontDistribute super."hugs2yc"; "hulk" = dontDistribute super."hulk"; @@ -4979,6 +4989,7 @@ self: super: { "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; + "latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll"; "latex-formulae-image" = dontDistribute super."latex-formulae-image"; "latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc"; "lattices" = doDistribute super."lattices_1_2_1_1"; @@ -5217,6 +5228,7 @@ self: super: { "luachunk" = dontDistribute super."luachunk"; "luautils" = dontDistribute super."luautils"; "lub" = dontDistribute super."lub"; + "lucid" = doDistribute super."lucid_2_9_2"; "lucid-foundation" = dontDistribute super."lucid-foundation"; "lucid-svg" = doDistribute super."lucid-svg_0_4_0_4"; "lucienne" = dontDistribute super."lucienne"; @@ -5632,6 +5644,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = dontDistribute super."nationstates"; + "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; "natural-numbers" = dontDistribute super."natural-numbers"; @@ -5982,6 +5995,7 @@ self: super: { "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; "path" = dontDistribute super."path"; + "path-extra" = dontDistribute super."path-extra"; "path-pieces" = doDistribute super."path-pieces_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; @@ -6096,6 +6110,7 @@ self: super: { "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-bgzf" = dontDistribute super."pipes-bgzf"; "pipes-binary" = doDistribute super."pipes-binary_0_4_0_4"; + "pipes-cacophony" = dontDistribute super."pipes-cacophony"; "pipes-cellular" = dontDistribute super."pipes-cellular"; "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; @@ -7406,6 +7421,7 @@ self: super: { "svm-simple" = dontDistribute super."svm-simple"; "svndump" = dontDistribute super."svndump"; "swagger" = dontDistribute super."swagger"; + "swagger2" = dontDistribute super."swagger2"; "swapper" = dontDistribute super."swapper"; "swearjure" = dontDistribute super."swearjure"; "swf" = dontDistribute super."swf"; @@ -8465,6 +8481,9 @@ self: super: { "yesod-pure" = dontDistribute super."yesod-pure"; "yesod-purescript" = dontDistribute super."yesod-purescript"; "yesod-raml" = dontDistribute super."yesod-raml"; + "yesod-raml-bin" = dontDistribute super."yesod-raml-bin"; + "yesod-raml-docs" = dontDistribute super."yesod-raml-docs"; + "yesod-raml-mock" = dontDistribute super."yesod-raml-mock"; "yesod-recaptcha" = dontDistribute super."yesod-recaptcha"; "yesod-routes" = dontDistribute super."yesod-routes"; "yesod-routes-flow" = dontDistribute super."yesod-routes-flow"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.1.nix b/pkgs/development/haskell-modules/configuration-lts-2.1.nix index 51111feef90..3c56b4e4fd2 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.1.nix @@ -586,6 +586,7 @@ self: super: { "JuicyPixels" = doDistribute super."JuicyPixels_3_2_3_1"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7"; + "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; "JunkDB" = dontDistribute super."JunkDB"; "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; @@ -1154,6 +1155,7 @@ self: super: { "afv" = dontDistribute super."afv"; "agda-server" = dontDistribute super."agda-server"; "agda-snippets" = dontDistribute super."agda-snippets"; + "agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll"; "agentx" = dontDistribute super."agentx"; "agum" = dontDistribute super."agum"; "aig" = dontDistribute super."aig"; @@ -1735,6 +1737,7 @@ self: super: { "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; + "bson" = doDistribute super."bson_0_3_1"; "bson-generic" = dontDistribute super."bson-generic"; "bson-generics" = dontDistribute super."bson-generics"; "bson-lens" = dontDistribute super."bson-lens"; @@ -1981,6 +1984,7 @@ self: super: { "clafer" = dontDistribute super."clafer"; "claferIG" = dontDistribute super."claferIG"; "claferwiki" = dontDistribute super."claferwiki"; + "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; @@ -2096,6 +2100,7 @@ self: super: { "compdata-automata" = dontDistribute super."compdata-automata"; "compdata-dags" = dontDistribute super."compdata-dags"; "compdata-param" = dontDistribute super."compdata-param"; + "compensated" = doDistribute super."compensated_0_6_1"; "competition" = dontDistribute super."competition"; "compilation" = dontDistribute super."compilation"; "complex-generic" = dontDistribute super."complex-generic"; @@ -2549,6 +2554,7 @@ self: super: { "dicom" = dontDistribute super."dicom"; "dictparser" = dontDistribute super."dictparser"; "diet" = dontDistribute super."diet"; + "diff-gestalt" = dontDistribute super."diff-gestalt"; "diff-parse" = dontDistribute super."diff-parse"; "diff3" = dontDistribute super."diff3"; "diffarray" = dontDistribute super."diffarray"; @@ -2645,6 +2651,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; "download" = dontDistribute super."download"; @@ -3275,6 +3282,7 @@ self: super: { "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph"; "ghc-server" = dontDistribute super."ghc-server"; + "ghc-session" = dontDistribute super."ghc-session"; "ghc-simple" = dontDistribute super."ghc-simple"; "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; @@ -3611,6 +3619,7 @@ self: super: { "hR" = dontDistribute super."hR"; "hRESP" = dontDistribute super."hRESP"; "hS3" = dontDistribute super."hS3"; + "hScraper" = dontDistribute super."hScraper"; "hSimpleDB" = dontDistribute super."hSimpleDB"; "hTalos" = dontDistribute super."hTalos"; "hTensor" = dontDistribute super."hTensor"; @@ -4484,6 +4493,7 @@ self: super: { "hub" = dontDistribute super."hub"; "hubigraph" = dontDistribute super."hubigraph"; "hubris" = dontDistribute super."hubris"; + "huckleberry" = dontDistribute super."huckleberry"; "huffman" = dontDistribute super."huffman"; "hugs2yc" = dontDistribute super."hugs2yc"; "hulk" = dontDistribute super."hulk"; @@ -4977,6 +4987,7 @@ self: super: { "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; + "latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll"; "latex-formulae-image" = dontDistribute super."latex-formulae-image"; "latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc"; "lattices" = doDistribute super."lattices_1_2_1_1"; @@ -5215,6 +5226,7 @@ self: super: { "luachunk" = dontDistribute super."luachunk"; "luautils" = dontDistribute super."luautils"; "lub" = dontDistribute super."lub"; + "lucid" = doDistribute super."lucid_2_9_2"; "lucid-foundation" = dontDistribute super."lucid-foundation"; "lucid-svg" = doDistribute super."lucid-svg_0_4_0_4"; "lucienne" = dontDistribute super."lucienne"; @@ -5630,6 +5642,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = dontDistribute super."nationstates"; + "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; "natural-numbers" = dontDistribute super."natural-numbers"; @@ -5980,6 +5993,7 @@ self: super: { "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; "path" = dontDistribute super."path"; + "path-extra" = dontDistribute super."path-extra"; "path-pieces" = doDistribute super."path-pieces_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; @@ -6094,6 +6108,7 @@ self: super: { "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-bgzf" = dontDistribute super."pipes-bgzf"; "pipes-binary" = doDistribute super."pipes-binary_0_4_0_4"; + "pipes-cacophony" = dontDistribute super."pipes-cacophony"; "pipes-cellular" = dontDistribute super."pipes-cellular"; "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; @@ -7404,6 +7419,7 @@ self: super: { "svm-simple" = dontDistribute super."svm-simple"; "svndump" = dontDistribute super."svndump"; "swagger" = dontDistribute super."swagger"; + "swagger2" = dontDistribute super."swagger2"; "swapper" = dontDistribute super."swapper"; "swearjure" = dontDistribute super."swearjure"; "swf" = dontDistribute super."swf"; @@ -8462,6 +8478,9 @@ self: super: { "yesod-pure" = dontDistribute super."yesod-pure"; "yesod-purescript" = dontDistribute super."yesod-purescript"; "yesod-raml" = dontDistribute super."yesod-raml"; + "yesod-raml-bin" = dontDistribute super."yesod-raml-bin"; + "yesod-raml-docs" = dontDistribute super."yesod-raml-docs"; + "yesod-raml-mock" = dontDistribute super."yesod-raml-mock"; "yesod-recaptcha" = dontDistribute super."yesod-recaptcha"; "yesod-routes" = dontDistribute super."yesod-routes"; "yesod-routes-flow" = dontDistribute super."yesod-routes-flow"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.10.nix b/pkgs/development/haskell-modules/configuration-lts-2.10.nix index ca53aa1a044..d25f94a6bf8 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.10.nix @@ -585,6 +585,7 @@ self: super: { "JuicyPixels" = doDistribute super."JuicyPixels_3_2_4"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7"; + "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; "JunkDB" = dontDistribute super."JunkDB"; "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; @@ -1149,6 +1150,7 @@ self: super: { "afv" = dontDistribute super."afv"; "agda-server" = dontDistribute super."agda-server"; "agda-snippets" = dontDistribute super."agda-snippets"; + "agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll"; "agentx" = dontDistribute super."agentx"; "agum" = dontDistribute super."agum"; "aig" = dontDistribute super."aig"; @@ -1726,6 +1728,7 @@ self: super: { "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; + "bson" = doDistribute super."bson_0_3_1"; "bson-generic" = dontDistribute super."bson-generic"; "bson-generics" = dontDistribute super."bson-generics"; "bson-lens" = dontDistribute super."bson-lens"; @@ -1969,6 +1972,7 @@ self: super: { "clafer" = dontDistribute super."clafer"; "claferIG" = dontDistribute super."claferIG"; "claferwiki" = dontDistribute super."claferwiki"; + "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; @@ -2083,6 +2087,7 @@ self: super: { "compdata-automata" = dontDistribute super."compdata-automata"; "compdata-dags" = dontDistribute super."compdata-dags"; "compdata-param" = dontDistribute super."compdata-param"; + "compensated" = doDistribute super."compensated_0_6_1"; "competition" = dontDistribute super."competition"; "compilation" = dontDistribute super."compilation"; "complex-generic" = dontDistribute super."complex-generic"; @@ -2534,6 +2539,7 @@ self: super: { "dicom" = dontDistribute super."dicom"; "dictparser" = dontDistribute super."dictparser"; "diet" = dontDistribute super."diet"; + "diff-gestalt" = dontDistribute super."diff-gestalt"; "diff-parse" = dontDistribute super."diff-parse"; "diff3" = dontDistribute super."diff3"; "diffarray" = dontDistribute super."diffarray"; @@ -2630,6 +2636,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; "download" = dontDistribute super."download"; @@ -3256,6 +3263,7 @@ self: super: { "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph"; "ghc-server" = dontDistribute super."ghc-server"; + "ghc-session" = dontDistribute super."ghc-session"; "ghc-simple" = dontDistribute super."ghc-simple"; "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; @@ -3588,6 +3596,7 @@ self: super: { "hR" = dontDistribute super."hR"; "hRESP" = dontDistribute super."hRESP"; "hS3" = dontDistribute super."hS3"; + "hScraper" = dontDistribute super."hScraper"; "hSimpleDB" = dontDistribute super."hSimpleDB"; "hTalos" = dontDistribute super."hTalos"; "hTensor" = dontDistribute super."hTensor"; @@ -4456,6 +4465,7 @@ self: super: { "hub" = dontDistribute super."hub"; "hubigraph" = dontDistribute super."hubigraph"; "hubris" = dontDistribute super."hubris"; + "huckleberry" = dontDistribute super."huckleberry"; "huffman" = dontDistribute super."huffman"; "hugs2yc" = dontDistribute super."hugs2yc"; "hulk" = dontDistribute super."hulk"; @@ -4944,6 +4954,7 @@ self: super: { "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; + "latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll"; "latex-formulae-image" = dontDistribute super."latex-formulae-image"; "latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc"; "lattices" = doDistribute super."lattices_1_2_1_1"; @@ -5179,6 +5190,7 @@ self: super: { "luachunk" = dontDistribute super."luachunk"; "luautils" = dontDistribute super."luautils"; "lub" = dontDistribute super."lub"; + "lucid" = doDistribute super."lucid_2_9_2"; "lucid-foundation" = dontDistribute super."lucid-foundation"; "lucid-svg" = doDistribute super."lucid-svg_0_4_0_4"; "lucienne" = dontDistribute super."lucienne"; @@ -5589,6 +5601,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = dontDistribute super."nationstates"; + "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; "natural-numbers" = dontDistribute super."natural-numbers"; @@ -5936,6 +5949,7 @@ self: super: { "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; "path" = dontDistribute super."path"; + "path-extra" = dontDistribute super."path-extra"; "path-pieces" = doDistribute super."path-pieces_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; @@ -6048,6 +6062,7 @@ self: super: { "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-bgzf" = dontDistribute super."pipes-bgzf"; "pipes-binary" = doDistribute super."pipes-binary_0_4_0_4"; + "pipes-cacophony" = dontDistribute super."pipes-cacophony"; "pipes-cellular" = dontDistribute super."pipes-cellular"; "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; @@ -7344,6 +7359,7 @@ self: super: { "svm-simple" = dontDistribute super."svm-simple"; "svndump" = dontDistribute super."svndump"; "swagger" = dontDistribute super."swagger"; + "swagger2" = dontDistribute super."swagger2"; "swapper" = dontDistribute super."swapper"; "swearjure" = dontDistribute super."swearjure"; "swf" = dontDistribute super."swf"; @@ -8395,6 +8411,9 @@ self: super: { "yesod-pure" = dontDistribute super."yesod-pure"; "yesod-purescript" = dontDistribute super."yesod-purescript"; "yesod-raml" = dontDistribute super."yesod-raml"; + "yesod-raml-bin" = dontDistribute super."yesod-raml-bin"; + "yesod-raml-docs" = dontDistribute super."yesod-raml-docs"; + "yesod-raml-mock" = dontDistribute super."yesod-raml-mock"; "yesod-recaptcha" = dontDistribute super."yesod-recaptcha"; "yesod-routes" = dontDistribute super."yesod-routes"; "yesod-routes-flow" = dontDistribute super."yesod-routes-flow"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.11.nix b/pkgs/development/haskell-modules/configuration-lts-2.11.nix index 85c14420c90..60c6c485904 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.11.nix @@ -585,6 +585,7 @@ self: super: { "JuicyPixels" = doDistribute super."JuicyPixels_3_2_5_1"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7"; + "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; "JunkDB" = dontDistribute super."JunkDB"; "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; @@ -1148,6 +1149,7 @@ self: super: { "afv" = dontDistribute super."afv"; "agda-server" = dontDistribute super."agda-server"; "agda-snippets" = dontDistribute super."agda-snippets"; + "agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll"; "agentx" = dontDistribute super."agentx"; "agum" = dontDistribute super."agum"; "aig" = dontDistribute super."aig"; @@ -1725,6 +1727,7 @@ self: super: { "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; + "bson" = doDistribute super."bson_0_3_1"; "bson-generic" = dontDistribute super."bson-generic"; "bson-generics" = dontDistribute super."bson-generics"; "bson-lens" = dontDistribute super."bson-lens"; @@ -1968,6 +1971,7 @@ self: super: { "clafer" = dontDistribute super."clafer"; "claferIG" = dontDistribute super."claferIG"; "claferwiki" = dontDistribute super."claferwiki"; + "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; @@ -2082,6 +2086,7 @@ self: super: { "compdata-automata" = dontDistribute super."compdata-automata"; "compdata-dags" = dontDistribute super."compdata-dags"; "compdata-param" = dontDistribute super."compdata-param"; + "compensated" = doDistribute super."compensated_0_6_1"; "competition" = dontDistribute super."competition"; "compilation" = dontDistribute super."compilation"; "complex-generic" = dontDistribute super."complex-generic"; @@ -2533,6 +2538,7 @@ self: super: { "dicom" = dontDistribute super."dicom"; "dictparser" = dontDistribute super."dictparser"; "diet" = dontDistribute super."diet"; + "diff-gestalt" = dontDistribute super."diff-gestalt"; "diff-parse" = dontDistribute super."diff-parse"; "diff3" = dontDistribute super."diff3"; "diffarray" = dontDistribute super."diffarray"; @@ -2629,6 +2635,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; "download" = dontDistribute super."download"; @@ -3254,6 +3261,7 @@ self: super: { "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph"; "ghc-server" = dontDistribute super."ghc-server"; + "ghc-session" = dontDistribute super."ghc-session"; "ghc-simple" = dontDistribute super."ghc-simple"; "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; @@ -3586,6 +3594,7 @@ self: super: { "hR" = dontDistribute super."hR"; "hRESP" = dontDistribute super."hRESP"; "hS3" = dontDistribute super."hS3"; + "hScraper" = dontDistribute super."hScraper"; "hSimpleDB" = dontDistribute super."hSimpleDB"; "hTalos" = dontDistribute super."hTalos"; "hTensor" = dontDistribute super."hTensor"; @@ -4452,6 +4461,7 @@ self: super: { "hub" = dontDistribute super."hub"; "hubigraph" = dontDistribute super."hubigraph"; "hubris" = dontDistribute super."hubris"; + "huckleberry" = dontDistribute super."huckleberry"; "huffman" = dontDistribute super."huffman"; "hugs2yc" = dontDistribute super."hugs2yc"; "hulk" = dontDistribute super."hulk"; @@ -4939,6 +4949,7 @@ self: super: { "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; + "latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll"; "latex-formulae-image" = dontDistribute super."latex-formulae-image"; "latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc"; "lattices" = doDistribute super."lattices_1_2_1_1"; @@ -5174,6 +5185,7 @@ self: super: { "luachunk" = dontDistribute super."luachunk"; "luautils" = dontDistribute super."luautils"; "lub" = dontDistribute super."lub"; + "lucid" = doDistribute super."lucid_2_9_2"; "lucid-foundation" = dontDistribute super."lucid-foundation"; "lucid-svg" = doDistribute super."lucid-svg_0_4_0_4"; "lucienne" = dontDistribute super."lucienne"; @@ -5583,6 +5595,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = dontDistribute super."nationstates"; + "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; "natural-numbers" = dontDistribute super."natural-numbers"; @@ -5929,6 +5942,7 @@ self: super: { "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; "path" = dontDistribute super."path"; + "path-extra" = dontDistribute super."path-extra"; "path-pieces" = doDistribute super."path-pieces_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; @@ -6041,6 +6055,7 @@ self: super: { "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-bgzf" = dontDistribute super."pipes-bgzf"; "pipes-binary" = doDistribute super."pipes-binary_0_4_0_4"; + "pipes-cacophony" = dontDistribute super."pipes-cacophony"; "pipes-cellular" = dontDistribute super."pipes-cellular"; "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; @@ -7335,6 +7350,7 @@ self: super: { "svm-simple" = dontDistribute super."svm-simple"; "svndump" = dontDistribute super."svndump"; "swagger" = dontDistribute super."swagger"; + "swagger2" = dontDistribute super."swagger2"; "swapper" = dontDistribute super."swapper"; "swearjure" = dontDistribute super."swearjure"; "swf" = dontDistribute super."swf"; @@ -8385,6 +8401,9 @@ self: super: { "yesod-pure" = dontDistribute super."yesod-pure"; "yesod-purescript" = dontDistribute super."yesod-purescript"; "yesod-raml" = dontDistribute super."yesod-raml"; + "yesod-raml-bin" = dontDistribute super."yesod-raml-bin"; + "yesod-raml-docs" = dontDistribute super."yesod-raml-docs"; + "yesod-raml-mock" = dontDistribute super."yesod-raml-mock"; "yesod-recaptcha" = dontDistribute super."yesod-recaptcha"; "yesod-routes" = dontDistribute super."yesod-routes"; "yesod-routes-flow" = dontDistribute super."yesod-routes-flow"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.12.nix b/pkgs/development/haskell-modules/configuration-lts-2.12.nix index 720c897bdf4..fa7662b916a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.12.nix @@ -585,6 +585,7 @@ self: super: { "JuicyPixels" = doDistribute super."JuicyPixels_3_2_5_1"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7"; + "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; "JunkDB" = dontDistribute super."JunkDB"; "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; @@ -1148,6 +1149,7 @@ self: super: { "afv" = dontDistribute super."afv"; "agda-server" = dontDistribute super."agda-server"; "agda-snippets" = dontDistribute super."agda-snippets"; + "agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll"; "agentx" = dontDistribute super."agentx"; "agum" = dontDistribute super."agum"; "aig" = dontDistribute super."aig"; @@ -1725,6 +1727,7 @@ self: super: { "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; + "bson" = doDistribute super."bson_0_3_1"; "bson-generic" = dontDistribute super."bson-generic"; "bson-generics" = dontDistribute super."bson-generics"; "bson-lens" = dontDistribute super."bson-lens"; @@ -1968,6 +1971,7 @@ self: super: { "clafer" = dontDistribute super."clafer"; "claferIG" = dontDistribute super."claferIG"; "claferwiki" = dontDistribute super."claferwiki"; + "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; @@ -2082,6 +2086,7 @@ self: super: { "compdata-automata" = dontDistribute super."compdata-automata"; "compdata-dags" = dontDistribute super."compdata-dags"; "compdata-param" = dontDistribute super."compdata-param"; + "compensated" = doDistribute super."compensated_0_6_1"; "competition" = dontDistribute super."competition"; "compilation" = dontDistribute super."compilation"; "complex-generic" = dontDistribute super."complex-generic"; @@ -2533,6 +2538,7 @@ self: super: { "dicom" = dontDistribute super."dicom"; "dictparser" = dontDistribute super."dictparser"; "diet" = dontDistribute super."diet"; + "diff-gestalt" = dontDistribute super."diff-gestalt"; "diff-parse" = dontDistribute super."diff-parse"; "diff3" = dontDistribute super."diff3"; "diffarray" = dontDistribute super."diffarray"; @@ -2629,6 +2635,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; "download" = dontDistribute super."download"; @@ -3254,6 +3261,7 @@ self: super: { "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph"; "ghc-server" = dontDistribute super."ghc-server"; + "ghc-session" = dontDistribute super."ghc-session"; "ghc-simple" = dontDistribute super."ghc-simple"; "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; @@ -3586,6 +3594,7 @@ self: super: { "hR" = dontDistribute super."hR"; "hRESP" = dontDistribute super."hRESP"; "hS3" = dontDistribute super."hS3"; + "hScraper" = dontDistribute super."hScraper"; "hSimpleDB" = dontDistribute super."hSimpleDB"; "hTalos" = dontDistribute super."hTalos"; "hTensor" = dontDistribute super."hTensor"; @@ -4452,6 +4461,7 @@ self: super: { "hub" = dontDistribute super."hub"; "hubigraph" = dontDistribute super."hubigraph"; "hubris" = dontDistribute super."hubris"; + "huckleberry" = dontDistribute super."huckleberry"; "huffman" = dontDistribute super."huffman"; "hugs2yc" = dontDistribute super."hugs2yc"; "hulk" = dontDistribute super."hulk"; @@ -4939,6 +4949,7 @@ self: super: { "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; + "latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll"; "latex-formulae-image" = dontDistribute super."latex-formulae-image"; "latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc"; "lattices" = doDistribute super."lattices_1_2_1_1"; @@ -5174,6 +5185,7 @@ self: super: { "luachunk" = dontDistribute super."luachunk"; "luautils" = dontDistribute super."luautils"; "lub" = dontDistribute super."lub"; + "lucid" = doDistribute super."lucid_2_9_2"; "lucid-foundation" = dontDistribute super."lucid-foundation"; "lucid-svg" = doDistribute super."lucid-svg_0_4_0_4"; "lucienne" = dontDistribute super."lucienne"; @@ -5583,6 +5595,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = dontDistribute super."nationstates"; + "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; "natural-numbers" = dontDistribute super."natural-numbers"; @@ -5929,6 +5942,7 @@ self: super: { "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; "path" = dontDistribute super."path"; + "path-extra" = dontDistribute super."path-extra"; "path-pieces" = doDistribute super."path-pieces_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; @@ -6041,6 +6055,7 @@ self: super: { "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-bgzf" = dontDistribute super."pipes-bgzf"; "pipes-binary" = doDistribute super."pipes-binary_0_4_0_4"; + "pipes-cacophony" = dontDistribute super."pipes-cacophony"; "pipes-cellular" = dontDistribute super."pipes-cellular"; "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; @@ -7334,6 +7349,7 @@ self: super: { "svm-simple" = dontDistribute super."svm-simple"; "svndump" = dontDistribute super."svndump"; "swagger" = dontDistribute super."swagger"; + "swagger2" = dontDistribute super."swagger2"; "swapper" = dontDistribute super."swapper"; "swearjure" = dontDistribute super."swearjure"; "swf" = dontDistribute super."swf"; @@ -8384,6 +8400,9 @@ self: super: { "yesod-pure" = dontDistribute super."yesod-pure"; "yesod-purescript" = dontDistribute super."yesod-purescript"; "yesod-raml" = dontDistribute super."yesod-raml"; + "yesod-raml-bin" = dontDistribute super."yesod-raml-bin"; + "yesod-raml-docs" = dontDistribute super."yesod-raml-docs"; + "yesod-raml-mock" = dontDistribute super."yesod-raml-mock"; "yesod-recaptcha" = dontDistribute super."yesod-recaptcha"; "yesod-routes" = dontDistribute super."yesod-routes"; "yesod-routes-flow" = dontDistribute super."yesod-routes-flow"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.13.nix b/pkgs/development/haskell-modules/configuration-lts-2.13.nix index c6aeb5c34ce..54bc0ad4514 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.13.nix @@ -585,6 +585,7 @@ self: super: { "JuicyPixels" = doDistribute super."JuicyPixels_3_2_5_2"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7"; + "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; "JunkDB" = dontDistribute super."JunkDB"; "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; @@ -1148,6 +1149,7 @@ self: super: { "afv" = dontDistribute super."afv"; "agda-server" = dontDistribute super."agda-server"; "agda-snippets" = dontDistribute super."agda-snippets"; + "agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll"; "agentx" = dontDistribute super."agentx"; "agum" = dontDistribute super."agum"; "aig" = dontDistribute super."aig"; @@ -1725,6 +1727,7 @@ self: super: { "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; + "bson" = doDistribute super."bson_0_3_1"; "bson-generic" = dontDistribute super."bson-generic"; "bson-generics" = dontDistribute super."bson-generics"; "bson-lens" = dontDistribute super."bson-lens"; @@ -1968,6 +1971,7 @@ self: super: { "clafer" = dontDistribute super."clafer"; "claferIG" = dontDistribute super."claferIG"; "claferwiki" = dontDistribute super."claferwiki"; + "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; @@ -2082,6 +2086,7 @@ self: super: { "compdata-automata" = dontDistribute super."compdata-automata"; "compdata-dags" = dontDistribute super."compdata-dags"; "compdata-param" = dontDistribute super."compdata-param"; + "compensated" = doDistribute super."compensated_0_6_1"; "competition" = dontDistribute super."competition"; "compilation" = dontDistribute super."compilation"; "complex-generic" = dontDistribute super."complex-generic"; @@ -2533,6 +2538,7 @@ self: super: { "dicom" = dontDistribute super."dicom"; "dictparser" = dontDistribute super."dictparser"; "diet" = dontDistribute super."diet"; + "diff-gestalt" = dontDistribute super."diff-gestalt"; "diff-parse" = dontDistribute super."diff-parse"; "diff3" = dontDistribute super."diff3"; "diffarray" = dontDistribute super."diffarray"; @@ -2629,6 +2635,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; "download" = dontDistribute super."download"; @@ -3254,6 +3261,7 @@ self: super: { "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph"; "ghc-server" = dontDistribute super."ghc-server"; + "ghc-session" = dontDistribute super."ghc-session"; "ghc-simple" = dontDistribute super."ghc-simple"; "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; @@ -3585,6 +3593,7 @@ self: super: { "hR" = dontDistribute super."hR"; "hRESP" = dontDistribute super."hRESP"; "hS3" = dontDistribute super."hS3"; + "hScraper" = dontDistribute super."hScraper"; "hSimpleDB" = dontDistribute super."hSimpleDB"; "hTalos" = dontDistribute super."hTalos"; "hTensor" = dontDistribute super."hTensor"; @@ -4451,6 +4460,7 @@ self: super: { "hub" = dontDistribute super."hub"; "hubigraph" = dontDistribute super."hubigraph"; "hubris" = dontDistribute super."hubris"; + "huckleberry" = dontDistribute super."huckleberry"; "huffman" = dontDistribute super."huffman"; "hugs2yc" = dontDistribute super."hugs2yc"; "hulk" = dontDistribute super."hulk"; @@ -4937,6 +4947,7 @@ self: super: { "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; + "latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll"; "latex-formulae-image" = dontDistribute super."latex-formulae-image"; "latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc"; "lattices" = doDistribute super."lattices_1_2_1_1"; @@ -5172,6 +5183,7 @@ self: super: { "luachunk" = dontDistribute super."luachunk"; "luautils" = dontDistribute super."luautils"; "lub" = dontDistribute super."lub"; + "lucid" = doDistribute super."lucid_2_9_2"; "lucid-foundation" = dontDistribute super."lucid-foundation"; "lucid-svg" = doDistribute super."lucid-svg_0_4_0_4"; "lucienne" = dontDistribute super."lucienne"; @@ -5581,6 +5593,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = dontDistribute super."nationstates"; + "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; "natural-numbers" = dontDistribute super."natural-numbers"; @@ -5926,6 +5939,7 @@ self: super: { "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; "path" = dontDistribute super."path"; + "path-extra" = dontDistribute super."path-extra"; "path-pieces" = doDistribute super."path-pieces_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; @@ -6038,6 +6052,7 @@ self: super: { "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-bgzf" = dontDistribute super."pipes-bgzf"; "pipes-binary" = doDistribute super."pipes-binary_0_4_0_4"; + "pipes-cacophony" = dontDistribute super."pipes-cacophony"; "pipes-cellular" = dontDistribute super."pipes-cellular"; "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; @@ -7331,6 +7346,7 @@ self: super: { "svm-simple" = dontDistribute super."svm-simple"; "svndump" = dontDistribute super."svndump"; "swagger" = dontDistribute super."swagger"; + "swagger2" = dontDistribute super."swagger2"; "swapper" = dontDistribute super."swapper"; "swearjure" = dontDistribute super."swearjure"; "swf" = dontDistribute super."swf"; @@ -8381,6 +8397,9 @@ self: super: { "yesod-pure" = dontDistribute super."yesod-pure"; "yesod-purescript" = dontDistribute super."yesod-purescript"; "yesod-raml" = dontDistribute super."yesod-raml"; + "yesod-raml-bin" = dontDistribute super."yesod-raml-bin"; + "yesod-raml-docs" = dontDistribute super."yesod-raml-docs"; + "yesod-raml-mock" = dontDistribute super."yesod-raml-mock"; "yesod-recaptcha" = dontDistribute super."yesod-recaptcha"; "yesod-routes" = dontDistribute super."yesod-routes"; "yesod-routes-flow" = dontDistribute super."yesod-routes-flow"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.14.nix b/pkgs/development/haskell-modules/configuration-lts-2.14.nix index 3fb798ddb8f..64a7ef0c311 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.14.nix @@ -585,6 +585,7 @@ self: super: { "JuicyPixels" = doDistribute super."JuicyPixels_3_2_5_2"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7"; + "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; "JunkDB" = dontDistribute super."JunkDB"; "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; @@ -1148,6 +1149,7 @@ self: super: { "afv" = dontDistribute super."afv"; "agda-server" = dontDistribute super."agda-server"; "agda-snippets" = dontDistribute super."agda-snippets"; + "agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll"; "agentx" = dontDistribute super."agentx"; "agum" = dontDistribute super."agum"; "aig" = dontDistribute super."aig"; @@ -1724,6 +1726,7 @@ self: super: { "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; + "bson" = doDistribute super."bson_0_3_1"; "bson-generic" = dontDistribute super."bson-generic"; "bson-generics" = dontDistribute super."bson-generics"; "bson-lens" = dontDistribute super."bson-lens"; @@ -1967,6 +1970,7 @@ self: super: { "clafer" = dontDistribute super."clafer"; "claferIG" = dontDistribute super."claferIG"; "claferwiki" = dontDistribute super."claferwiki"; + "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; @@ -2081,6 +2085,7 @@ self: super: { "compdata-automata" = dontDistribute super."compdata-automata"; "compdata-dags" = dontDistribute super."compdata-dags"; "compdata-param" = dontDistribute super."compdata-param"; + "compensated" = doDistribute super."compensated_0_6_1"; "competition" = dontDistribute super."competition"; "compilation" = dontDistribute super."compilation"; "complex-generic" = dontDistribute super."complex-generic"; @@ -2532,6 +2537,7 @@ self: super: { "dicom" = dontDistribute super."dicom"; "dictparser" = dontDistribute super."dictparser"; "diet" = dontDistribute super."diet"; + "diff-gestalt" = dontDistribute super."diff-gestalt"; "diff-parse" = dontDistribute super."diff-parse"; "diff3" = dontDistribute super."diff3"; "diffarray" = dontDistribute super."diffarray"; @@ -2628,6 +2634,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; "download" = dontDistribute super."download"; @@ -3252,6 +3259,7 @@ self: super: { "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph"; "ghc-server" = dontDistribute super."ghc-server"; + "ghc-session" = dontDistribute super."ghc-session"; "ghc-simple" = dontDistribute super."ghc-simple"; "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; @@ -3583,6 +3591,7 @@ self: super: { "hR" = dontDistribute super."hR"; "hRESP" = dontDistribute super."hRESP"; "hS3" = dontDistribute super."hS3"; + "hScraper" = dontDistribute super."hScraper"; "hSimpleDB" = dontDistribute super."hSimpleDB"; "hTalos" = dontDistribute super."hTalos"; "hTensor" = dontDistribute super."hTensor"; @@ -4448,6 +4457,7 @@ self: super: { "hub" = dontDistribute super."hub"; "hubigraph" = dontDistribute super."hubigraph"; "hubris" = dontDistribute super."hubris"; + "huckleberry" = dontDistribute super."huckleberry"; "huffman" = dontDistribute super."huffman"; "hugs2yc" = dontDistribute super."hugs2yc"; "hulk" = dontDistribute super."hulk"; @@ -4934,6 +4944,7 @@ self: super: { "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; + "latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll"; "latex-formulae-image" = dontDistribute super."latex-formulae-image"; "latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc"; "lattices" = doDistribute super."lattices_1_2_1_1"; @@ -5169,6 +5180,7 @@ self: super: { "luachunk" = dontDistribute super."luachunk"; "luautils" = dontDistribute super."luautils"; "lub" = dontDistribute super."lub"; + "lucid" = doDistribute super."lucid_2_9_2"; "lucid-foundation" = dontDistribute super."lucid-foundation"; "lucid-svg" = doDistribute super."lucid-svg_0_4_0_4"; "lucienne" = dontDistribute super."lucienne"; @@ -5578,6 +5590,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = dontDistribute super."nationstates"; + "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; "natural-numbers" = dontDistribute super."natural-numbers"; @@ -5923,6 +5936,7 @@ self: super: { "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; "path" = dontDistribute super."path"; + "path-extra" = dontDistribute super."path-extra"; "path-pieces" = doDistribute super."path-pieces_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; @@ -6035,6 +6049,7 @@ self: super: { "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-bgzf" = dontDistribute super."pipes-bgzf"; "pipes-binary" = doDistribute super."pipes-binary_0_4_0_4"; + "pipes-cacophony" = dontDistribute super."pipes-cacophony"; "pipes-cellular" = dontDistribute super."pipes-cellular"; "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; @@ -7326,6 +7341,7 @@ self: super: { "svm-simple" = dontDistribute super."svm-simple"; "svndump" = dontDistribute super."svndump"; "swagger" = dontDistribute super."swagger"; + "swagger2" = dontDistribute super."swagger2"; "swapper" = dontDistribute super."swapper"; "swearjure" = dontDistribute super."swearjure"; "swf" = dontDistribute super."swf"; @@ -8373,6 +8389,9 @@ self: super: { "yesod-pure" = dontDistribute super."yesod-pure"; "yesod-purescript" = dontDistribute super."yesod-purescript"; "yesod-raml" = dontDistribute super."yesod-raml"; + "yesod-raml-bin" = dontDistribute super."yesod-raml-bin"; + "yesod-raml-docs" = dontDistribute super."yesod-raml-docs"; + "yesod-raml-mock" = dontDistribute super."yesod-raml-mock"; "yesod-recaptcha" = dontDistribute super."yesod-recaptcha"; "yesod-routes" = dontDistribute super."yesod-routes"; "yesod-routes-flow" = dontDistribute super."yesod-routes-flow"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.15.nix b/pkgs/development/haskell-modules/configuration-lts-2.15.nix index 557f1d2b761..fe2b59f08a6 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.15.nix @@ -585,6 +585,7 @@ self: super: { "JuicyPixels" = doDistribute super."JuicyPixels_3_2_5_2"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7"; + "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; "JunkDB" = dontDistribute super."JunkDB"; "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; @@ -1148,6 +1149,7 @@ self: super: { "afv" = dontDistribute super."afv"; "agda-server" = dontDistribute super."agda-server"; "agda-snippets" = dontDistribute super."agda-snippets"; + "agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll"; "agentx" = dontDistribute super."agentx"; "agum" = dontDistribute super."agum"; "aig" = dontDistribute super."aig"; @@ -1724,6 +1726,7 @@ self: super: { "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; + "bson" = doDistribute super."bson_0_3_1"; "bson-generic" = dontDistribute super."bson-generic"; "bson-generics" = dontDistribute super."bson-generics"; "bson-lens" = dontDistribute super."bson-lens"; @@ -1967,6 +1970,7 @@ self: super: { "clafer" = dontDistribute super."clafer"; "claferIG" = dontDistribute super."claferIG"; "claferwiki" = dontDistribute super."claferwiki"; + "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; @@ -2081,6 +2085,7 @@ self: super: { "compdata-automata" = dontDistribute super."compdata-automata"; "compdata-dags" = dontDistribute super."compdata-dags"; "compdata-param" = dontDistribute super."compdata-param"; + "compensated" = doDistribute super."compensated_0_6_1"; "competition" = dontDistribute super."competition"; "compilation" = dontDistribute super."compilation"; "complex-generic" = dontDistribute super."complex-generic"; @@ -2532,6 +2537,7 @@ self: super: { "dicom" = dontDistribute super."dicom"; "dictparser" = dontDistribute super."dictparser"; "diet" = dontDistribute super."diet"; + "diff-gestalt" = dontDistribute super."diff-gestalt"; "diff-parse" = dontDistribute super."diff-parse"; "diff3" = dontDistribute super."diff3"; "diffarray" = dontDistribute super."diffarray"; @@ -2628,6 +2634,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; "download" = dontDistribute super."download"; @@ -3251,6 +3258,7 @@ self: super: { "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph"; "ghc-server" = dontDistribute super."ghc-server"; + "ghc-session" = dontDistribute super."ghc-session"; "ghc-simple" = dontDistribute super."ghc-simple"; "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; @@ -3582,6 +3590,7 @@ self: super: { "hR" = dontDistribute super."hR"; "hRESP" = dontDistribute super."hRESP"; "hS3" = dontDistribute super."hS3"; + "hScraper" = dontDistribute super."hScraper"; "hSimpleDB" = dontDistribute super."hSimpleDB"; "hTalos" = dontDistribute super."hTalos"; "hTensor" = dontDistribute super."hTensor"; @@ -4447,6 +4456,7 @@ self: super: { "hub" = dontDistribute super."hub"; "hubigraph" = dontDistribute super."hubigraph"; "hubris" = dontDistribute super."hubris"; + "huckleberry" = dontDistribute super."huckleberry"; "huffman" = dontDistribute super."huffman"; "hugs2yc" = dontDistribute super."hugs2yc"; "hulk" = dontDistribute super."hulk"; @@ -4933,6 +4943,7 @@ self: super: { "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; + "latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll"; "latex-formulae-image" = dontDistribute super."latex-formulae-image"; "latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc"; "lattices" = doDistribute super."lattices_1_2_1_1"; @@ -5168,6 +5179,7 @@ self: super: { "luachunk" = dontDistribute super."luachunk"; "luautils" = dontDistribute super."luautils"; "lub" = dontDistribute super."lub"; + "lucid" = doDistribute super."lucid_2_9_2"; "lucid-foundation" = dontDistribute super."lucid-foundation"; "lucid-svg" = doDistribute super."lucid-svg_0_4_0_4"; "lucienne" = dontDistribute super."lucienne"; @@ -5576,6 +5588,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = dontDistribute super."nationstates"; + "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; "natural-numbers" = dontDistribute super."natural-numbers"; @@ -5919,6 +5932,7 @@ self: super: { "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; "path" = dontDistribute super."path"; + "path-extra" = dontDistribute super."path-extra"; "path-pieces" = doDistribute super."path-pieces_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; @@ -6031,6 +6045,7 @@ self: super: { "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-bgzf" = dontDistribute super."pipes-bgzf"; "pipes-binary" = doDistribute super."pipes-binary_0_4_0_4"; + "pipes-cacophony" = dontDistribute super."pipes-cacophony"; "pipes-cellular" = dontDistribute super."pipes-cellular"; "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; @@ -7321,6 +7336,7 @@ self: super: { "svm-simple" = dontDistribute super."svm-simple"; "svndump" = dontDistribute super."svndump"; "swagger" = dontDistribute super."swagger"; + "swagger2" = dontDistribute super."swagger2"; "swapper" = dontDistribute super."swapper"; "swearjure" = dontDistribute super."swearjure"; "swf" = dontDistribute super."swf"; @@ -8367,6 +8383,9 @@ self: super: { "yesod-pure" = dontDistribute super."yesod-pure"; "yesod-purescript" = dontDistribute super."yesod-purescript"; "yesod-raml" = dontDistribute super."yesod-raml"; + "yesod-raml-bin" = dontDistribute super."yesod-raml-bin"; + "yesod-raml-docs" = dontDistribute super."yesod-raml-docs"; + "yesod-raml-mock" = dontDistribute super."yesod-raml-mock"; "yesod-recaptcha" = dontDistribute super."yesod-recaptcha"; "yesod-routes" = dontDistribute super."yesod-routes"; "yesod-routes-flow" = dontDistribute super."yesod-routes-flow"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.16.nix b/pkgs/development/haskell-modules/configuration-lts-2.16.nix index 4492be2dba0..d1f7a7a7f19 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.16.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.16.nix @@ -583,6 +583,7 @@ self: super: { "JuicyPixels" = doDistribute super."JuicyPixels_3_2_5_2"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7"; + "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; "JunkDB" = dontDistribute super."JunkDB"; "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; @@ -1146,6 +1147,7 @@ self: super: { "afv" = dontDistribute super."afv"; "agda-server" = dontDistribute super."agda-server"; "agda-snippets" = dontDistribute super."agda-snippets"; + "agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll"; "agentx" = dontDistribute super."agentx"; "agum" = dontDistribute super."agum"; "aig" = dontDistribute super."aig"; @@ -1722,6 +1724,7 @@ self: super: { "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; + "bson" = doDistribute super."bson_0_3_1"; "bson-generic" = dontDistribute super."bson-generic"; "bson-generics" = dontDistribute super."bson-generics"; "bson-lens" = dontDistribute super."bson-lens"; @@ -1964,6 +1967,7 @@ self: super: { "clafer" = dontDistribute super."clafer"; "claferIG" = dontDistribute super."claferIG"; "claferwiki" = dontDistribute super."claferwiki"; + "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; @@ -2078,6 +2082,7 @@ self: super: { "compdata-automata" = dontDistribute super."compdata-automata"; "compdata-dags" = dontDistribute super."compdata-dags"; "compdata-param" = dontDistribute super."compdata-param"; + "compensated" = doDistribute super."compensated_0_6_1"; "competition" = dontDistribute super."competition"; "compilation" = dontDistribute super."compilation"; "complex-generic" = dontDistribute super."complex-generic"; @@ -2527,6 +2532,7 @@ self: super: { "dicom" = dontDistribute super."dicom"; "dictparser" = dontDistribute super."dictparser"; "diet" = dontDistribute super."diet"; + "diff-gestalt" = dontDistribute super."diff-gestalt"; "diff-parse" = dontDistribute super."diff-parse"; "diff3" = dontDistribute super."diff3"; "diffarray" = dontDistribute super."diffarray"; @@ -2623,6 +2629,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; "download" = dontDistribute super."download"; @@ -3244,6 +3251,7 @@ self: super: { "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph"; "ghc-server" = dontDistribute super."ghc-server"; + "ghc-session" = dontDistribute super."ghc-session"; "ghc-simple" = dontDistribute super."ghc-simple"; "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; @@ -3574,6 +3582,7 @@ self: super: { "hR" = dontDistribute super."hR"; "hRESP" = dontDistribute super."hRESP"; "hS3" = dontDistribute super."hS3"; + "hScraper" = dontDistribute super."hScraper"; "hSimpleDB" = dontDistribute super."hSimpleDB"; "hTalos" = dontDistribute super."hTalos"; "hTensor" = dontDistribute super."hTensor"; @@ -4438,6 +4447,7 @@ self: super: { "hub" = dontDistribute super."hub"; "hubigraph" = dontDistribute super."hubigraph"; "hubris" = dontDistribute super."hubris"; + "huckleberry" = dontDistribute super."huckleberry"; "huffman" = dontDistribute super."huffman"; "hugs2yc" = dontDistribute super."hugs2yc"; "hulk" = dontDistribute super."hulk"; @@ -4924,6 +4934,7 @@ self: super: { "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; + "latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll"; "latex-formulae-image" = dontDistribute super."latex-formulae-image"; "latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc"; "lattices" = doDistribute super."lattices_1_2_1_1"; @@ -5158,6 +5169,7 @@ self: super: { "luachunk" = dontDistribute super."luachunk"; "luautils" = dontDistribute super."luautils"; "lub" = dontDistribute super."lub"; + "lucid" = doDistribute super."lucid_2_9_2"; "lucid-foundation" = dontDistribute super."lucid-foundation"; "lucid-svg" = doDistribute super."lucid-svg_0_4_0_4"; "lucienne" = dontDistribute super."lucienne"; @@ -5566,6 +5578,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = dontDistribute super."nationstates"; + "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; "natural-numbers" = dontDistribute super."natural-numbers"; @@ -5909,6 +5922,7 @@ self: super: { "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; "path" = dontDistribute super."path"; + "path-extra" = dontDistribute super."path-extra"; "path-pieces" = doDistribute super."path-pieces_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; @@ -6021,6 +6035,7 @@ self: super: { "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-bgzf" = dontDistribute super."pipes-bgzf"; "pipes-binary" = doDistribute super."pipes-binary_0_4_0_4"; + "pipes-cacophony" = dontDistribute super."pipes-cacophony"; "pipes-cellular" = dontDistribute super."pipes-cellular"; "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; @@ -7310,6 +7325,7 @@ self: super: { "svm-simple" = dontDistribute super."svm-simple"; "svndump" = dontDistribute super."svndump"; "swagger" = dontDistribute super."swagger"; + "swagger2" = dontDistribute super."swagger2"; "swapper" = dontDistribute super."swapper"; "swearjure" = dontDistribute super."swearjure"; "swf" = dontDistribute super."swf"; @@ -8356,6 +8372,9 @@ self: super: { "yesod-pure" = dontDistribute super."yesod-pure"; "yesod-purescript" = dontDistribute super."yesod-purescript"; "yesod-raml" = dontDistribute super."yesod-raml"; + "yesod-raml-bin" = dontDistribute super."yesod-raml-bin"; + "yesod-raml-docs" = dontDistribute super."yesod-raml-docs"; + "yesod-raml-mock" = dontDistribute super."yesod-raml-mock"; "yesod-recaptcha" = dontDistribute super."yesod-recaptcha"; "yesod-routes" = dontDistribute super."yesod-routes"; "yesod-routes-flow" = dontDistribute super."yesod-routes-flow"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.17.nix b/pkgs/development/haskell-modules/configuration-lts-2.17.nix index a74e642d49b..67c6700b7e7 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.17.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.17.nix @@ -583,6 +583,7 @@ self: super: { "JuicyPixels" = doDistribute super."JuicyPixels_3_2_5_2"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7"; + "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; "JunkDB" = dontDistribute super."JunkDB"; "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; @@ -1146,6 +1147,7 @@ self: super: { "afv" = dontDistribute super."afv"; "agda-server" = dontDistribute super."agda-server"; "agda-snippets" = dontDistribute super."agda-snippets"; + "agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll"; "agentx" = dontDistribute super."agentx"; "agum" = dontDistribute super."agum"; "aig" = dontDistribute super."aig"; @@ -1719,6 +1721,7 @@ self: super: { "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; + "bson" = doDistribute super."bson_0_3_1"; "bson-generic" = dontDistribute super."bson-generic"; "bson-generics" = dontDistribute super."bson-generics"; "bson-lens" = dontDistribute super."bson-lens"; @@ -1961,6 +1964,7 @@ self: super: { "clafer" = dontDistribute super."clafer"; "claferIG" = dontDistribute super."claferIG"; "claferwiki" = dontDistribute super."claferwiki"; + "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; @@ -2075,6 +2079,7 @@ self: super: { "compdata-automata" = dontDistribute super."compdata-automata"; "compdata-dags" = dontDistribute super."compdata-dags"; "compdata-param" = dontDistribute super."compdata-param"; + "compensated" = doDistribute super."compensated_0_6_1"; "competition" = dontDistribute super."competition"; "compilation" = dontDistribute super."compilation"; "complex-generic" = dontDistribute super."complex-generic"; @@ -2524,6 +2529,7 @@ self: super: { "dicom" = dontDistribute super."dicom"; "dictparser" = dontDistribute super."dictparser"; "diet" = dontDistribute super."diet"; + "diff-gestalt" = dontDistribute super."diff-gestalt"; "diff-parse" = dontDistribute super."diff-parse"; "diff3" = dontDistribute super."diff3"; "diffarray" = dontDistribute super."diffarray"; @@ -2620,6 +2626,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; "download" = dontDistribute super."download"; @@ -3237,6 +3244,7 @@ self: super: { "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph"; "ghc-server" = dontDistribute super."ghc-server"; + "ghc-session" = dontDistribute super."ghc-session"; "ghc-simple" = dontDistribute super."ghc-simple"; "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; @@ -3567,6 +3575,7 @@ self: super: { "hR" = dontDistribute super."hR"; "hRESP" = dontDistribute super."hRESP"; "hS3" = dontDistribute super."hS3"; + "hScraper" = dontDistribute super."hScraper"; "hSimpleDB" = dontDistribute super."hSimpleDB"; "hTalos" = dontDistribute super."hTalos"; "hTensor" = dontDistribute super."hTensor"; @@ -4430,6 +4439,7 @@ self: super: { "hub" = dontDistribute super."hub"; "hubigraph" = dontDistribute super."hubigraph"; "hubris" = dontDistribute super."hubris"; + "huckleberry" = dontDistribute super."huckleberry"; "huffman" = dontDistribute super."huffman"; "hugs2yc" = dontDistribute super."hugs2yc"; "hulk" = dontDistribute super."hulk"; @@ -4916,6 +4926,7 @@ self: super: { "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; + "latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll"; "latex-formulae-image" = dontDistribute super."latex-formulae-image"; "latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc"; "lattices" = doDistribute super."lattices_1_2_1_1"; @@ -5150,6 +5161,7 @@ self: super: { "luachunk" = dontDistribute super."luachunk"; "luautils" = dontDistribute super."luautils"; "lub" = dontDistribute super."lub"; + "lucid" = doDistribute super."lucid_2_9_2"; "lucid-foundation" = dontDistribute super."lucid-foundation"; "lucid-svg" = doDistribute super."lucid-svg_0_4_0_4"; "lucienne" = dontDistribute super."lucienne"; @@ -5558,6 +5570,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = dontDistribute super."nationstates"; + "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; "natural-numbers" = dontDistribute super."natural-numbers"; @@ -5900,6 +5913,7 @@ self: super: { "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; "path" = dontDistribute super."path"; + "path-extra" = dontDistribute super."path-extra"; "path-pieces" = doDistribute super."path-pieces_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; @@ -6012,6 +6026,7 @@ self: super: { "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-bgzf" = dontDistribute super."pipes-bgzf"; "pipes-binary" = doDistribute super."pipes-binary_0_4_0_4"; + "pipes-cacophony" = dontDistribute super."pipes-cacophony"; "pipes-cellular" = dontDistribute super."pipes-cellular"; "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; @@ -7300,6 +7315,7 @@ self: super: { "svm-simple" = dontDistribute super."svm-simple"; "svndump" = dontDistribute super."svndump"; "swagger" = dontDistribute super."swagger"; + "swagger2" = dontDistribute super."swagger2"; "swapper" = dontDistribute super."swapper"; "swearjure" = dontDistribute super."swearjure"; "swf" = dontDistribute super."swf"; @@ -8345,6 +8361,9 @@ self: super: { "yesod-pure" = dontDistribute super."yesod-pure"; "yesod-purescript" = dontDistribute super."yesod-purescript"; "yesod-raml" = dontDistribute super."yesod-raml"; + "yesod-raml-bin" = dontDistribute super."yesod-raml-bin"; + "yesod-raml-docs" = dontDistribute super."yesod-raml-docs"; + "yesod-raml-mock" = dontDistribute super."yesod-raml-mock"; "yesod-recaptcha" = dontDistribute super."yesod-recaptcha"; "yesod-routes" = dontDistribute super."yesod-routes"; "yesod-routes-flow" = dontDistribute super."yesod-routes-flow"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.18.nix b/pkgs/development/haskell-modules/configuration-lts-2.18.nix index 074462294be..ff8f1e82445 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.18.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.18.nix @@ -582,6 +582,7 @@ self: super: { "JuicyPixels" = doDistribute super."JuicyPixels_3_2_5_2"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7"; + "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; "JunkDB" = dontDistribute super."JunkDB"; "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; @@ -1145,6 +1146,7 @@ self: super: { "afv" = dontDistribute super."afv"; "agda-server" = dontDistribute super."agda-server"; "agda-snippets" = dontDistribute super."agda-snippets"; + "agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll"; "agentx" = dontDistribute super."agentx"; "agum" = dontDistribute super."agum"; "aig" = dontDistribute super."aig"; @@ -1717,6 +1719,7 @@ self: super: { "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; + "bson" = doDistribute super."bson_0_3_1"; "bson-generic" = dontDistribute super."bson-generic"; "bson-generics" = dontDistribute super."bson-generics"; "bson-lens" = dontDistribute super."bson-lens"; @@ -1957,6 +1960,7 @@ self: super: { "clafer" = dontDistribute super."clafer"; "claferIG" = dontDistribute super."claferIG"; "claferwiki" = dontDistribute super."claferwiki"; + "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; @@ -2071,6 +2075,7 @@ self: super: { "compdata-automata" = dontDistribute super."compdata-automata"; "compdata-dags" = dontDistribute super."compdata-dags"; "compdata-param" = dontDistribute super."compdata-param"; + "compensated" = doDistribute super."compensated_0_6_1"; "competition" = dontDistribute super."competition"; "compilation" = dontDistribute super."compilation"; "complex-generic" = dontDistribute super."complex-generic"; @@ -2520,6 +2525,7 @@ self: super: { "dicom" = dontDistribute super."dicom"; "dictparser" = dontDistribute super."dictparser"; "diet" = dontDistribute super."diet"; + "diff-gestalt" = dontDistribute super."diff-gestalt"; "diff-parse" = dontDistribute super."diff-parse"; "diff3" = dontDistribute super."diff3"; "diffarray" = dontDistribute super."diffarray"; @@ -2616,6 +2622,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; "download" = dontDistribute super."download"; @@ -3232,6 +3239,7 @@ self: super: { "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph"; "ghc-server" = dontDistribute super."ghc-server"; + "ghc-session" = dontDistribute super."ghc-session"; "ghc-simple" = dontDistribute super."ghc-simple"; "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; @@ -3561,6 +3569,7 @@ self: super: { "hR" = dontDistribute super."hR"; "hRESP" = dontDistribute super."hRESP"; "hS3" = dontDistribute super."hS3"; + "hScraper" = dontDistribute super."hScraper"; "hSimpleDB" = dontDistribute super."hSimpleDB"; "hTalos" = dontDistribute super."hTalos"; "hTensor" = dontDistribute super."hTensor"; @@ -4423,6 +4432,7 @@ self: super: { "hub" = dontDistribute super."hub"; "hubigraph" = dontDistribute super."hubigraph"; "hubris" = dontDistribute super."hubris"; + "huckleberry" = dontDistribute super."huckleberry"; "huffman" = dontDistribute super."huffman"; "hugs2yc" = dontDistribute super."hugs2yc"; "hulk" = dontDistribute super."hulk"; @@ -4909,6 +4919,7 @@ self: super: { "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; + "latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll"; "latex-formulae-image" = dontDistribute super."latex-formulae-image"; "latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc"; "lattices" = doDistribute super."lattices_1_2_1_1"; @@ -5143,6 +5154,7 @@ self: super: { "luachunk" = dontDistribute super."luachunk"; "luautils" = dontDistribute super."luautils"; "lub" = dontDistribute super."lub"; + "lucid" = doDistribute super."lucid_2_9_2"; "lucid-foundation" = dontDistribute super."lucid-foundation"; "lucid-svg" = doDistribute super."lucid-svg_0_4_0_4"; "lucienne" = dontDistribute super."lucienne"; @@ -5551,6 +5563,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = dontDistribute super."nationstates"; + "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; "natural-numbers" = dontDistribute super."natural-numbers"; @@ -5892,6 +5905,7 @@ self: super: { "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; "path" = dontDistribute super."path"; + "path-extra" = dontDistribute super."path-extra"; "path-pieces" = doDistribute super."path-pieces_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; @@ -6004,6 +6018,7 @@ self: super: { "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-bgzf" = dontDistribute super."pipes-bgzf"; "pipes-binary" = doDistribute super."pipes-binary_0_4_0_4"; + "pipes-cacophony" = dontDistribute super."pipes-cacophony"; "pipes-cellular" = dontDistribute super."pipes-cellular"; "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; @@ -7290,6 +7305,7 @@ self: super: { "svm-simple" = dontDistribute super."svm-simple"; "svndump" = dontDistribute super."svndump"; "swagger" = dontDistribute super."swagger"; + "swagger2" = dontDistribute super."swagger2"; "swapper" = dontDistribute super."swapper"; "swearjure" = dontDistribute super."swearjure"; "swf" = dontDistribute super."swf"; @@ -8333,6 +8349,9 @@ self: super: { "yesod-pure" = dontDistribute super."yesod-pure"; "yesod-purescript" = dontDistribute super."yesod-purescript"; "yesod-raml" = dontDistribute super."yesod-raml"; + "yesod-raml-bin" = dontDistribute super."yesod-raml-bin"; + "yesod-raml-docs" = dontDistribute super."yesod-raml-docs"; + "yesod-raml-mock" = dontDistribute super."yesod-raml-mock"; "yesod-recaptcha" = dontDistribute super."yesod-recaptcha"; "yesod-routes" = dontDistribute super."yesod-routes"; "yesod-routes-flow" = dontDistribute super."yesod-routes-flow"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.19.nix b/pkgs/development/haskell-modules/configuration-lts-2.19.nix index dbd1ab0fe5f..c2130cb00f8 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.19.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.19.nix @@ -582,6 +582,7 @@ self: super: { "JuicyPixels" = doDistribute super."JuicyPixels_3_2_5_2"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7"; + "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; "JunkDB" = dontDistribute super."JunkDB"; "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; @@ -1145,6 +1146,7 @@ self: super: { "afv" = dontDistribute super."afv"; "agda-server" = dontDistribute super."agda-server"; "agda-snippets" = dontDistribute super."agda-snippets"; + "agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll"; "agentx" = dontDistribute super."agentx"; "agum" = dontDistribute super."agum"; "aig" = dontDistribute super."aig"; @@ -1717,6 +1719,7 @@ self: super: { "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; + "bson" = doDistribute super."bson_0_3_1"; "bson-generic" = dontDistribute super."bson-generic"; "bson-generics" = dontDistribute super."bson-generics"; "bson-lens" = dontDistribute super."bson-lens"; @@ -1957,6 +1960,7 @@ self: super: { "clafer" = dontDistribute super."clafer"; "claferIG" = dontDistribute super."claferIG"; "claferwiki" = dontDistribute super."claferwiki"; + "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; @@ -2071,6 +2075,7 @@ self: super: { "compdata-automata" = dontDistribute super."compdata-automata"; "compdata-dags" = dontDistribute super."compdata-dags"; "compdata-param" = dontDistribute super."compdata-param"; + "compensated" = doDistribute super."compensated_0_6_1"; "competition" = dontDistribute super."competition"; "compilation" = dontDistribute super."compilation"; "complex-generic" = dontDistribute super."complex-generic"; @@ -2520,6 +2525,7 @@ self: super: { "dicom" = dontDistribute super."dicom"; "dictparser" = dontDistribute super."dictparser"; "diet" = dontDistribute super."diet"; + "diff-gestalt" = dontDistribute super."diff-gestalt"; "diff-parse" = dontDistribute super."diff-parse"; "diff3" = dontDistribute super."diff3"; "diffarray" = dontDistribute super."diffarray"; @@ -2616,6 +2622,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; "download" = dontDistribute super."download"; @@ -3231,6 +3238,7 @@ self: super: { "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph"; "ghc-server" = dontDistribute super."ghc-server"; + "ghc-session" = dontDistribute super."ghc-session"; "ghc-simple" = dontDistribute super."ghc-simple"; "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; @@ -3560,6 +3568,7 @@ self: super: { "hR" = dontDistribute super."hR"; "hRESP" = dontDistribute super."hRESP"; "hS3" = dontDistribute super."hS3"; + "hScraper" = dontDistribute super."hScraper"; "hSimpleDB" = dontDistribute super."hSimpleDB"; "hTalos" = dontDistribute super."hTalos"; "hTensor" = dontDistribute super."hTensor"; @@ -4422,6 +4431,7 @@ self: super: { "hub" = dontDistribute super."hub"; "hubigraph" = dontDistribute super."hubigraph"; "hubris" = dontDistribute super."hubris"; + "huckleberry" = dontDistribute super."huckleberry"; "huffman" = dontDistribute super."huffman"; "hugs2yc" = dontDistribute super."hugs2yc"; "hulk" = dontDistribute super."hulk"; @@ -4908,6 +4918,7 @@ self: super: { "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; + "latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll"; "latex-formulae-image" = dontDistribute super."latex-formulae-image"; "latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc"; "lattices" = doDistribute super."lattices_1_2_1_1"; @@ -5142,6 +5153,7 @@ self: super: { "luachunk" = dontDistribute super."luachunk"; "luautils" = dontDistribute super."luautils"; "lub" = dontDistribute super."lub"; + "lucid" = doDistribute super."lucid_2_9_2"; "lucid-foundation" = dontDistribute super."lucid-foundation"; "lucid-svg" = doDistribute super."lucid-svg_0_4_0_4"; "lucienne" = dontDistribute super."lucienne"; @@ -5548,6 +5560,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = dontDistribute super."nationstates"; + "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; "natural-numbers" = dontDistribute super."natural-numbers"; @@ -5889,6 +5902,7 @@ self: super: { "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; "path" = dontDistribute super."path"; + "path-extra" = dontDistribute super."path-extra"; "path-pieces" = doDistribute super."path-pieces_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; @@ -6001,6 +6015,7 @@ self: super: { "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-bgzf" = dontDistribute super."pipes-bgzf"; "pipes-binary" = doDistribute super."pipes-binary_0_4_0_4"; + "pipes-cacophony" = dontDistribute super."pipes-cacophony"; "pipes-cellular" = dontDistribute super."pipes-cellular"; "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; @@ -7285,6 +7300,7 @@ self: super: { "svm-simple" = dontDistribute super."svm-simple"; "svndump" = dontDistribute super."svndump"; "swagger" = dontDistribute super."swagger"; + "swagger2" = dontDistribute super."swagger2"; "swapper" = dontDistribute super."swapper"; "swearjure" = dontDistribute super."swearjure"; "swf" = dontDistribute super."swf"; @@ -8327,6 +8343,9 @@ self: super: { "yesod-pure" = dontDistribute super."yesod-pure"; "yesod-purescript" = dontDistribute super."yesod-purescript"; "yesod-raml" = dontDistribute super."yesod-raml"; + "yesod-raml-bin" = dontDistribute super."yesod-raml-bin"; + "yesod-raml-docs" = dontDistribute super."yesod-raml-docs"; + "yesod-raml-mock" = dontDistribute super."yesod-raml-mock"; "yesod-recaptcha" = dontDistribute super."yesod-recaptcha"; "yesod-routes" = dontDistribute super."yesod-routes"; "yesod-routes-flow" = dontDistribute super."yesod-routes-flow"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.2.nix b/pkgs/development/haskell-modules/configuration-lts-2.2.nix index 168b47648d5..c0c871b8873 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.2.nix @@ -586,6 +586,7 @@ self: super: { "JuicyPixels" = doDistribute super."JuicyPixels_3_2_3_1"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7"; + "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; "JunkDB" = dontDistribute super."JunkDB"; "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; @@ -1153,6 +1154,7 @@ self: super: { "afv" = dontDistribute super."afv"; "agda-server" = dontDistribute super."agda-server"; "agda-snippets" = dontDistribute super."agda-snippets"; + "agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll"; "agentx" = dontDistribute super."agentx"; "agum" = dontDistribute super."agum"; "aig" = dontDistribute super."aig"; @@ -1734,6 +1736,7 @@ self: super: { "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; + "bson" = doDistribute super."bson_0_3_1"; "bson-generic" = dontDistribute super."bson-generic"; "bson-generics" = dontDistribute super."bson-generics"; "bson-lens" = dontDistribute super."bson-lens"; @@ -1978,6 +1981,7 @@ self: super: { "clafer" = dontDistribute super."clafer"; "claferIG" = dontDistribute super."claferIG"; "claferwiki" = dontDistribute super."claferwiki"; + "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; @@ -2093,6 +2097,7 @@ self: super: { "compdata-automata" = dontDistribute super."compdata-automata"; "compdata-dags" = dontDistribute super."compdata-dags"; "compdata-param" = dontDistribute super."compdata-param"; + "compensated" = doDistribute super."compensated_0_6_1"; "competition" = dontDistribute super."competition"; "compilation" = dontDistribute super."compilation"; "complex-generic" = dontDistribute super."complex-generic"; @@ -2546,6 +2551,7 @@ self: super: { "dicom" = dontDistribute super."dicom"; "dictparser" = dontDistribute super."dictparser"; "diet" = dontDistribute super."diet"; + "diff-gestalt" = dontDistribute super."diff-gestalt"; "diff-parse" = dontDistribute super."diff-parse"; "diff3" = dontDistribute super."diff3"; "diffarray" = dontDistribute super."diffarray"; @@ -2642,6 +2648,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; "download" = dontDistribute super."download"; @@ -3272,6 +3279,7 @@ self: super: { "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph"; "ghc-server" = dontDistribute super."ghc-server"; + "ghc-session" = dontDistribute super."ghc-session"; "ghc-simple" = dontDistribute super."ghc-simple"; "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; @@ -3607,6 +3615,7 @@ self: super: { "hR" = dontDistribute super."hR"; "hRESP" = dontDistribute super."hRESP"; "hS3" = dontDistribute super."hS3"; + "hScraper" = dontDistribute super."hScraper"; "hSimpleDB" = dontDistribute super."hSimpleDB"; "hTalos" = dontDistribute super."hTalos"; "hTensor" = dontDistribute super."hTensor"; @@ -4480,6 +4489,7 @@ self: super: { "hub" = dontDistribute super."hub"; "hubigraph" = dontDistribute super."hubigraph"; "hubris" = dontDistribute super."hubris"; + "huckleberry" = dontDistribute super."huckleberry"; "huffman" = dontDistribute super."huffman"; "hugs2yc" = dontDistribute super."hugs2yc"; "hulk" = dontDistribute super."hulk"; @@ -4973,6 +4983,7 @@ self: super: { "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; + "latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll"; "latex-formulae-image" = dontDistribute super."latex-formulae-image"; "latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc"; "lattices" = doDistribute super."lattices_1_2_1_1"; @@ -5211,6 +5222,7 @@ self: super: { "luachunk" = dontDistribute super."luachunk"; "luautils" = dontDistribute super."luautils"; "lub" = dontDistribute super."lub"; + "lucid" = doDistribute super."lucid_2_9_2"; "lucid-foundation" = dontDistribute super."lucid-foundation"; "lucid-svg" = doDistribute super."lucid-svg_0_4_0_4"; "lucienne" = dontDistribute super."lucienne"; @@ -5626,6 +5638,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = dontDistribute super."nationstates"; + "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; "natural-numbers" = dontDistribute super."natural-numbers"; @@ -5975,6 +5988,7 @@ self: super: { "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; "path" = dontDistribute super."path"; + "path-extra" = dontDistribute super."path-extra"; "path-pieces" = doDistribute super."path-pieces_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; @@ -6089,6 +6103,7 @@ self: super: { "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-bgzf" = dontDistribute super."pipes-bgzf"; "pipes-binary" = doDistribute super."pipes-binary_0_4_0_4"; + "pipes-cacophony" = dontDistribute super."pipes-cacophony"; "pipes-cellular" = dontDistribute super."pipes-cellular"; "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; @@ -7399,6 +7414,7 @@ self: super: { "svm-simple" = dontDistribute super."svm-simple"; "svndump" = dontDistribute super."svndump"; "swagger" = dontDistribute super."swagger"; + "swagger2" = dontDistribute super."swagger2"; "swapper" = dontDistribute super."swapper"; "swearjure" = dontDistribute super."swearjure"; "swf" = dontDistribute super."swf"; @@ -8456,6 +8472,9 @@ self: super: { "yesod-pure" = dontDistribute super."yesod-pure"; "yesod-purescript" = dontDistribute super."yesod-purescript"; "yesod-raml" = dontDistribute super."yesod-raml"; + "yesod-raml-bin" = dontDistribute super."yesod-raml-bin"; + "yesod-raml-docs" = dontDistribute super."yesod-raml-docs"; + "yesod-raml-mock" = dontDistribute super."yesod-raml-mock"; "yesod-recaptcha" = dontDistribute super."yesod-recaptcha"; "yesod-routes" = dontDistribute super."yesod-routes"; "yesod-routes-flow" = dontDistribute super."yesod-routes-flow"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.20.nix b/pkgs/development/haskell-modules/configuration-lts-2.20.nix index b68cc275df3..8bc869c7dae 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.20.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.20.nix @@ -582,6 +582,7 @@ self: super: { "JuicyPixels" = doDistribute super."JuicyPixels_3_2_5_3"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7"; + "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; "JunkDB" = dontDistribute super."JunkDB"; "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; @@ -1145,6 +1146,7 @@ self: super: { "afv" = dontDistribute super."afv"; "agda-server" = dontDistribute super."agda-server"; "agda-snippets" = dontDistribute super."agda-snippets"; + "agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll"; "agentx" = dontDistribute super."agentx"; "agum" = dontDistribute super."agum"; "aig" = dontDistribute super."aig"; @@ -1717,6 +1719,7 @@ self: super: { "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; + "bson" = doDistribute super."bson_0_3_1"; "bson-generic" = dontDistribute super."bson-generic"; "bson-generics" = dontDistribute super."bson-generics"; "bson-lens" = dontDistribute super."bson-lens"; @@ -1957,6 +1960,7 @@ self: super: { "clafer" = dontDistribute super."clafer"; "claferIG" = dontDistribute super."claferIG"; "claferwiki" = dontDistribute super."claferwiki"; + "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; @@ -2070,6 +2074,7 @@ self: super: { "compdata-automata" = dontDistribute super."compdata-automata"; "compdata-dags" = dontDistribute super."compdata-dags"; "compdata-param" = dontDistribute super."compdata-param"; + "compensated" = doDistribute super."compensated_0_6_1"; "competition" = dontDistribute super."competition"; "compilation" = dontDistribute super."compilation"; "complex-generic" = dontDistribute super."complex-generic"; @@ -2518,6 +2523,7 @@ self: super: { "dicom" = dontDistribute super."dicom"; "dictparser" = dontDistribute super."dictparser"; "diet" = dontDistribute super."diet"; + "diff-gestalt" = dontDistribute super."diff-gestalt"; "diff-parse" = dontDistribute super."diff-parse"; "diff3" = dontDistribute super."diff3"; "diffarray" = dontDistribute super."diffarray"; @@ -2614,6 +2620,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; "download" = dontDistribute super."download"; @@ -3228,6 +3235,7 @@ self: super: { "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph"; "ghc-server" = dontDistribute super."ghc-server"; + "ghc-session" = dontDistribute super."ghc-session"; "ghc-simple" = dontDistribute super."ghc-simple"; "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; @@ -3557,6 +3565,7 @@ self: super: { "hR" = dontDistribute super."hR"; "hRESP" = dontDistribute super."hRESP"; "hS3" = dontDistribute super."hS3"; + "hScraper" = dontDistribute super."hScraper"; "hSimpleDB" = dontDistribute super."hSimpleDB"; "hTalos" = dontDistribute super."hTalos"; "hTensor" = dontDistribute super."hTensor"; @@ -4418,6 +4427,7 @@ self: super: { "hub" = dontDistribute super."hub"; "hubigraph" = dontDistribute super."hubigraph"; "hubris" = dontDistribute super."hubris"; + "huckleberry" = dontDistribute super."huckleberry"; "huffman" = dontDistribute super."huffman"; "hugs2yc" = dontDistribute super."hugs2yc"; "hulk" = dontDistribute super."hulk"; @@ -4904,6 +4914,7 @@ self: super: { "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; + "latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll"; "latex-formulae-image" = dontDistribute super."latex-formulae-image"; "latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc"; "lattices" = doDistribute super."lattices_1_2_1_1"; @@ -5138,6 +5149,7 @@ self: super: { "luachunk" = dontDistribute super."luachunk"; "luautils" = dontDistribute super."luautils"; "lub" = dontDistribute super."lub"; + "lucid" = doDistribute super."lucid_2_9_2"; "lucid-foundation" = dontDistribute super."lucid-foundation"; "lucid-svg" = doDistribute super."lucid-svg_0_4_0_4"; "lucienne" = dontDistribute super."lucienne"; @@ -5544,6 +5556,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = dontDistribute super."nationstates"; + "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; "natural-numbers" = dontDistribute super."natural-numbers"; @@ -5885,6 +5898,7 @@ self: super: { "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; "path" = dontDistribute super."path"; + "path-extra" = dontDistribute super."path-extra"; "path-pieces" = doDistribute super."path-pieces_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; @@ -5997,6 +6011,7 @@ self: super: { "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-bgzf" = dontDistribute super."pipes-bgzf"; "pipes-binary" = doDistribute super."pipes-binary_0_4_0_4"; + "pipes-cacophony" = dontDistribute super."pipes-cacophony"; "pipes-cellular" = dontDistribute super."pipes-cellular"; "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; @@ -7279,6 +7294,7 @@ self: super: { "svm-simple" = dontDistribute super."svm-simple"; "svndump" = dontDistribute super."svndump"; "swagger" = dontDistribute super."swagger"; + "swagger2" = dontDistribute super."swagger2"; "swapper" = dontDistribute super."swapper"; "swearjure" = dontDistribute super."swearjure"; "swf" = dontDistribute super."swf"; @@ -8321,6 +8337,9 @@ self: super: { "yesod-pure" = dontDistribute super."yesod-pure"; "yesod-purescript" = dontDistribute super."yesod-purescript"; "yesod-raml" = dontDistribute super."yesod-raml"; + "yesod-raml-bin" = dontDistribute super."yesod-raml-bin"; + "yesod-raml-docs" = dontDistribute super."yesod-raml-docs"; + "yesod-raml-mock" = dontDistribute super."yesod-raml-mock"; "yesod-recaptcha" = dontDistribute super."yesod-recaptcha"; "yesod-routes" = dontDistribute super."yesod-routes"; "yesod-routes-flow" = dontDistribute super."yesod-routes-flow"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.21.nix b/pkgs/development/haskell-modules/configuration-lts-2.21.nix index e808c657e59..dba8206320e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.21.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.21.nix @@ -582,6 +582,7 @@ self: super: { "JuicyPixels" = doDistribute super."JuicyPixels_3_2_5_3"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7"; + "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; "JunkDB" = dontDistribute super."JunkDB"; "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; @@ -1145,6 +1146,7 @@ self: super: { "afv" = dontDistribute super."afv"; "agda-server" = dontDistribute super."agda-server"; "agda-snippets" = dontDistribute super."agda-snippets"; + "agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll"; "agentx" = dontDistribute super."agentx"; "agum" = dontDistribute super."agum"; "aig" = dontDistribute super."aig"; @@ -1717,6 +1719,7 @@ self: super: { "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; + "bson" = doDistribute super."bson_0_3_1"; "bson-generic" = dontDistribute super."bson-generic"; "bson-generics" = dontDistribute super."bson-generics"; "bson-lens" = dontDistribute super."bson-lens"; @@ -1957,6 +1960,7 @@ self: super: { "clafer" = dontDistribute super."clafer"; "claferIG" = dontDistribute super."claferIG"; "claferwiki" = dontDistribute super."claferwiki"; + "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; @@ -2070,6 +2074,7 @@ self: super: { "compdata-automata" = dontDistribute super."compdata-automata"; "compdata-dags" = dontDistribute super."compdata-dags"; "compdata-param" = dontDistribute super."compdata-param"; + "compensated" = doDistribute super."compensated_0_6_1"; "competition" = dontDistribute super."competition"; "compilation" = dontDistribute super."compilation"; "complex-generic" = dontDistribute super."complex-generic"; @@ -2518,6 +2523,7 @@ self: super: { "dicom" = dontDistribute super."dicom"; "dictparser" = dontDistribute super."dictparser"; "diet" = dontDistribute super."diet"; + "diff-gestalt" = dontDistribute super."diff-gestalt"; "diff-parse" = dontDistribute super."diff-parse"; "diff3" = dontDistribute super."diff3"; "diffarray" = dontDistribute super."diffarray"; @@ -2614,6 +2620,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; "download" = dontDistribute super."download"; @@ -3228,6 +3235,7 @@ self: super: { "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph"; "ghc-server" = dontDistribute super."ghc-server"; + "ghc-session" = dontDistribute super."ghc-session"; "ghc-simple" = dontDistribute super."ghc-simple"; "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; @@ -3556,6 +3564,7 @@ self: super: { "hR" = dontDistribute super."hR"; "hRESP" = dontDistribute super."hRESP"; "hS3" = dontDistribute super."hS3"; + "hScraper" = dontDistribute super."hScraper"; "hSimpleDB" = dontDistribute super."hSimpleDB"; "hTalos" = dontDistribute super."hTalos"; "hTensor" = dontDistribute super."hTensor"; @@ -4417,6 +4426,7 @@ self: super: { "hub" = dontDistribute super."hub"; "hubigraph" = dontDistribute super."hubigraph"; "hubris" = dontDistribute super."hubris"; + "huckleberry" = dontDistribute super."huckleberry"; "huffman" = dontDistribute super."huffman"; "hugs2yc" = dontDistribute super."hugs2yc"; "hulk" = dontDistribute super."hulk"; @@ -4902,6 +4912,7 @@ self: super: { "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; + "latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll"; "latex-formulae-image" = dontDistribute super."latex-formulae-image"; "latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc"; "lattices" = doDistribute super."lattices_1_2_1_1"; @@ -5136,6 +5147,7 @@ self: super: { "luachunk" = dontDistribute super."luachunk"; "luautils" = dontDistribute super."luautils"; "lub" = dontDistribute super."lub"; + "lucid" = doDistribute super."lucid_2_9_2"; "lucid-foundation" = dontDistribute super."lucid-foundation"; "lucid-svg" = doDistribute super."lucid-svg_0_4_0_4"; "lucienne" = dontDistribute super."lucienne"; @@ -5542,6 +5554,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = dontDistribute super."nationstates"; + "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; "natural-numbers" = dontDistribute super."natural-numbers"; @@ -5883,6 +5896,7 @@ self: super: { "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; "path" = dontDistribute super."path"; + "path-extra" = dontDistribute super."path-extra"; "path-pieces" = doDistribute super."path-pieces_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; @@ -5989,11 +6003,13 @@ self: super: { "pinboard" = dontDistribute super."pinboard"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; + "pipes" = doDistribute super."pipes_4_1_6"; "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_3"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-bgzf" = dontDistribute super."pipes-bgzf"; "pipes-binary" = doDistribute super."pipes-binary_0_4_0_4"; + "pipes-cacophony" = dontDistribute super."pipes-cacophony"; "pipes-cellular" = dontDistribute super."pipes-cellular"; "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; @@ -7274,6 +7290,7 @@ self: super: { "svm-simple" = dontDistribute super."svm-simple"; "svndump" = dontDistribute super."svndump"; "swagger" = dontDistribute super."swagger"; + "swagger2" = dontDistribute super."swagger2"; "swapper" = dontDistribute super."swapper"; "swearjure" = dontDistribute super."swearjure"; "swf" = dontDistribute super."swf"; @@ -8313,6 +8330,9 @@ self: super: { "yesod-pure" = dontDistribute super."yesod-pure"; "yesod-purescript" = dontDistribute super."yesod-purescript"; "yesod-raml" = dontDistribute super."yesod-raml"; + "yesod-raml-bin" = dontDistribute super."yesod-raml-bin"; + "yesod-raml-docs" = dontDistribute super."yesod-raml-docs"; + "yesod-raml-mock" = dontDistribute super."yesod-raml-mock"; "yesod-recaptcha" = dontDistribute super."yesod-recaptcha"; "yesod-routes" = dontDistribute super."yesod-routes"; "yesod-routes-flow" = dontDistribute super."yesod-routes-flow"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.22.nix b/pkgs/development/haskell-modules/configuration-lts-2.22.nix index 7119316a97d..8d2d2586187 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.22.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.22.nix @@ -582,6 +582,7 @@ self: super: { "JuicyPixels" = doDistribute super."JuicyPixels_3_2_5_3"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7"; + "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; "JunkDB" = dontDistribute super."JunkDB"; "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; @@ -1144,6 +1145,7 @@ self: super: { "afv" = dontDistribute super."afv"; "agda-server" = dontDistribute super."agda-server"; "agda-snippets" = dontDistribute super."agda-snippets"; + "agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll"; "agentx" = dontDistribute super."agentx"; "agum" = dontDistribute super."agum"; "aig" = dontDistribute super."aig"; @@ -1716,6 +1718,7 @@ self: super: { "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; + "bson" = doDistribute super."bson_0_3_1"; "bson-generic" = dontDistribute super."bson-generic"; "bson-generics" = dontDistribute super."bson-generics"; "bson-lens" = dontDistribute super."bson-lens"; @@ -1956,6 +1959,7 @@ self: super: { "clafer" = dontDistribute super."clafer"; "claferIG" = dontDistribute super."claferIG"; "claferwiki" = dontDistribute super."claferwiki"; + "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; @@ -2069,6 +2073,7 @@ self: super: { "compdata-automata" = dontDistribute super."compdata-automata"; "compdata-dags" = dontDistribute super."compdata-dags"; "compdata-param" = dontDistribute super."compdata-param"; + "compensated" = doDistribute super."compensated_0_6_1"; "competition" = dontDistribute super."competition"; "compilation" = dontDistribute super."compilation"; "complex-generic" = dontDistribute super."complex-generic"; @@ -2517,6 +2522,7 @@ self: super: { "dicom" = dontDistribute super."dicom"; "dictparser" = dontDistribute super."dictparser"; "diet" = dontDistribute super."diet"; + "diff-gestalt" = dontDistribute super."diff-gestalt"; "diff-parse" = dontDistribute super."diff-parse"; "diff3" = dontDistribute super."diff3"; "diffarray" = dontDistribute super."diffarray"; @@ -2613,6 +2619,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; "download" = dontDistribute super."download"; @@ -3227,6 +3234,7 @@ self: super: { "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph"; "ghc-server" = dontDistribute super."ghc-server"; + "ghc-session" = dontDistribute super."ghc-session"; "ghc-simple" = dontDistribute super."ghc-simple"; "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; @@ -3555,6 +3563,7 @@ self: super: { "hR" = dontDistribute super."hR"; "hRESP" = dontDistribute super."hRESP"; "hS3" = dontDistribute super."hS3"; + "hScraper" = dontDistribute super."hScraper"; "hSimpleDB" = dontDistribute super."hSimpleDB"; "hTalos" = dontDistribute super."hTalos"; "hTensor" = dontDistribute super."hTensor"; @@ -4415,6 +4424,7 @@ self: super: { "hub" = dontDistribute super."hub"; "hubigraph" = dontDistribute super."hubigraph"; "hubris" = dontDistribute super."hubris"; + "huckleberry" = dontDistribute super."huckleberry"; "huffman" = dontDistribute super."huffman"; "hugs2yc" = dontDistribute super."hugs2yc"; "hulk" = dontDistribute super."hulk"; @@ -4899,6 +4909,7 @@ self: super: { "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; + "latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll"; "latex-formulae-image" = dontDistribute super."latex-formulae-image"; "latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc"; "lattices" = doDistribute super."lattices_1_2_1_1"; @@ -5133,6 +5144,7 @@ self: super: { "luachunk" = dontDistribute super."luachunk"; "luautils" = dontDistribute super."luautils"; "lub" = dontDistribute super."lub"; + "lucid" = doDistribute super."lucid_2_9_2"; "lucid-foundation" = dontDistribute super."lucid-foundation"; "lucid-svg" = doDistribute super."lucid-svg_0_4_0_4"; "lucienne" = dontDistribute super."lucienne"; @@ -5538,6 +5550,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = dontDistribute super."nationstates"; + "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; "natural-numbers" = dontDistribute super."natural-numbers"; @@ -5879,6 +5892,7 @@ self: super: { "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; "path" = dontDistribute super."path"; + "path-extra" = dontDistribute super."path-extra"; "path-pieces" = doDistribute super."path-pieces_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; @@ -5985,11 +5999,13 @@ self: super: { "pinboard" = dontDistribute super."pinboard"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; + "pipes" = doDistribute super."pipes_4_1_6"; "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_3"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-bgzf" = dontDistribute super."pipes-bgzf"; "pipes-binary" = doDistribute super."pipes-binary_0_4_0_4"; + "pipes-cacophony" = dontDistribute super."pipes-cacophony"; "pipes-cellular" = dontDistribute super."pipes-cellular"; "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; @@ -7270,6 +7286,7 @@ self: super: { "svm-simple" = dontDistribute super."svm-simple"; "svndump" = dontDistribute super."svndump"; "swagger" = dontDistribute super."swagger"; + "swagger2" = dontDistribute super."swagger2"; "swapper" = dontDistribute super."swapper"; "swearjure" = dontDistribute super."swearjure"; "swf" = dontDistribute super."swf"; @@ -8309,6 +8326,9 @@ self: super: { "yesod-pure" = dontDistribute super."yesod-pure"; "yesod-purescript" = dontDistribute super."yesod-purescript"; "yesod-raml" = dontDistribute super."yesod-raml"; + "yesod-raml-bin" = dontDistribute super."yesod-raml-bin"; + "yesod-raml-docs" = dontDistribute super."yesod-raml-docs"; + "yesod-raml-mock" = dontDistribute super."yesod-raml-mock"; "yesod-recaptcha" = dontDistribute super."yesod-recaptcha"; "yesod-routes" = dontDistribute super."yesod-routes"; "yesod-routes-flow" = dontDistribute super."yesod-routes-flow"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.3.nix b/pkgs/development/haskell-modules/configuration-lts-2.3.nix index 1acaf4b81e6..9b3a7affe7f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.3.nix @@ -586,6 +586,7 @@ self: super: { "JuicyPixels" = doDistribute super."JuicyPixels_3_2_3_1"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7"; + "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; "JunkDB" = dontDistribute super."JunkDB"; "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; @@ -1153,6 +1154,7 @@ self: super: { "afv" = dontDistribute super."afv"; "agda-server" = dontDistribute super."agda-server"; "agda-snippets" = dontDistribute super."agda-snippets"; + "agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll"; "agentx" = dontDistribute super."agentx"; "agum" = dontDistribute super."agum"; "aig" = dontDistribute super."aig"; @@ -1734,6 +1736,7 @@ self: super: { "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; + "bson" = doDistribute super."bson_0_3_1"; "bson-generic" = dontDistribute super."bson-generic"; "bson-generics" = dontDistribute super."bson-generics"; "bson-lens" = dontDistribute super."bson-lens"; @@ -1978,6 +1981,7 @@ self: super: { "clafer" = dontDistribute super."clafer"; "claferIG" = dontDistribute super."claferIG"; "claferwiki" = dontDistribute super."claferwiki"; + "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; @@ -2093,6 +2097,7 @@ self: super: { "compdata-automata" = dontDistribute super."compdata-automata"; "compdata-dags" = dontDistribute super."compdata-dags"; "compdata-param" = dontDistribute super."compdata-param"; + "compensated" = doDistribute super."compensated_0_6_1"; "competition" = dontDistribute super."competition"; "compilation" = dontDistribute super."compilation"; "complex-generic" = dontDistribute super."complex-generic"; @@ -2546,6 +2551,7 @@ self: super: { "dicom" = dontDistribute super."dicom"; "dictparser" = dontDistribute super."dictparser"; "diet" = dontDistribute super."diet"; + "diff-gestalt" = dontDistribute super."diff-gestalt"; "diff-parse" = dontDistribute super."diff-parse"; "diff3" = dontDistribute super."diff3"; "diffarray" = dontDistribute super."diffarray"; @@ -2642,6 +2648,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; "download" = dontDistribute super."download"; @@ -3271,6 +3278,7 @@ self: super: { "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph"; "ghc-server" = dontDistribute super."ghc-server"; + "ghc-session" = dontDistribute super."ghc-session"; "ghc-simple" = dontDistribute super."ghc-simple"; "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; @@ -3606,6 +3614,7 @@ self: super: { "hR" = dontDistribute super."hR"; "hRESP" = dontDistribute super."hRESP"; "hS3" = dontDistribute super."hS3"; + "hScraper" = dontDistribute super."hScraper"; "hSimpleDB" = dontDistribute super."hSimpleDB"; "hTalos" = dontDistribute super."hTalos"; "hTensor" = dontDistribute super."hTensor"; @@ -4479,6 +4488,7 @@ self: super: { "hub" = dontDistribute super."hub"; "hubigraph" = dontDistribute super."hubigraph"; "hubris" = dontDistribute super."hubris"; + "huckleberry" = dontDistribute super."huckleberry"; "huffman" = dontDistribute super."huffman"; "hugs2yc" = dontDistribute super."hugs2yc"; "hulk" = dontDistribute super."hulk"; @@ -4971,6 +4981,7 @@ self: super: { "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; + "latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll"; "latex-formulae-image" = dontDistribute super."latex-formulae-image"; "latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc"; "lattices" = doDistribute super."lattices_1_2_1_1"; @@ -5209,6 +5220,7 @@ self: super: { "luachunk" = dontDistribute super."luachunk"; "luautils" = dontDistribute super."luautils"; "lub" = dontDistribute super."lub"; + "lucid" = doDistribute super."lucid_2_9_2"; "lucid-foundation" = dontDistribute super."lucid-foundation"; "lucid-svg" = doDistribute super."lucid-svg_0_4_0_4"; "lucienne" = dontDistribute super."lucienne"; @@ -5624,6 +5636,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = dontDistribute super."nationstates"; + "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; "natural-numbers" = dontDistribute super."natural-numbers"; @@ -5973,6 +5986,7 @@ self: super: { "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; "path" = dontDistribute super."path"; + "path-extra" = dontDistribute super."path-extra"; "path-pieces" = doDistribute super."path-pieces_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; @@ -6087,6 +6101,7 @@ self: super: { "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-bgzf" = dontDistribute super."pipes-bgzf"; "pipes-binary" = doDistribute super."pipes-binary_0_4_0_4"; + "pipes-cacophony" = dontDistribute super."pipes-cacophony"; "pipes-cellular" = dontDistribute super."pipes-cellular"; "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; @@ -7396,6 +7411,7 @@ self: super: { "svm-simple" = dontDistribute super."svm-simple"; "svndump" = dontDistribute super."svndump"; "swagger" = dontDistribute super."swagger"; + "swagger2" = dontDistribute super."swagger2"; "swapper" = dontDistribute super."swapper"; "swearjure" = dontDistribute super."swearjure"; "swf" = dontDistribute super."swf"; @@ -8453,6 +8469,9 @@ self: super: { "yesod-pure" = dontDistribute super."yesod-pure"; "yesod-purescript" = dontDistribute super."yesod-purescript"; "yesod-raml" = dontDistribute super."yesod-raml"; + "yesod-raml-bin" = dontDistribute super."yesod-raml-bin"; + "yesod-raml-docs" = dontDistribute super."yesod-raml-docs"; + "yesod-raml-mock" = dontDistribute super."yesod-raml-mock"; "yesod-recaptcha" = dontDistribute super."yesod-recaptcha"; "yesod-routes" = dontDistribute super."yesod-routes"; "yesod-routes-flow" = dontDistribute super."yesod-routes-flow"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.4.nix b/pkgs/development/haskell-modules/configuration-lts-2.4.nix index 3c24db4a00c..4de304cd607 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.4.nix @@ -586,6 +586,7 @@ self: super: { "JuicyPixels" = doDistribute super."JuicyPixels_3_2_3_1"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7"; + "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; "JunkDB" = dontDistribute super."JunkDB"; "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; @@ -1153,6 +1154,7 @@ self: super: { "afv" = dontDistribute super."afv"; "agda-server" = dontDistribute super."agda-server"; "agda-snippets" = dontDistribute super."agda-snippets"; + "agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll"; "agentx" = dontDistribute super."agentx"; "agum" = dontDistribute super."agum"; "aig" = dontDistribute super."aig"; @@ -1733,6 +1735,7 @@ self: super: { "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; + "bson" = doDistribute super."bson_0_3_1"; "bson-generic" = dontDistribute super."bson-generic"; "bson-generics" = dontDistribute super."bson-generics"; "bson-lens" = dontDistribute super."bson-lens"; @@ -1977,6 +1980,7 @@ self: super: { "clafer" = dontDistribute super."clafer"; "claferIG" = dontDistribute super."claferIG"; "claferwiki" = dontDistribute super."claferwiki"; + "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; @@ -2092,6 +2096,7 @@ self: super: { "compdata-automata" = dontDistribute super."compdata-automata"; "compdata-dags" = dontDistribute super."compdata-dags"; "compdata-param" = dontDistribute super."compdata-param"; + "compensated" = doDistribute super."compensated_0_6_1"; "competition" = dontDistribute super."competition"; "compilation" = dontDistribute super."compilation"; "complex-generic" = dontDistribute super."complex-generic"; @@ -2545,6 +2550,7 @@ self: super: { "dicom" = dontDistribute super."dicom"; "dictparser" = dontDistribute super."dictparser"; "diet" = dontDistribute super."diet"; + "diff-gestalt" = dontDistribute super."diff-gestalt"; "diff-parse" = dontDistribute super."diff-parse"; "diff3" = dontDistribute super."diff3"; "diffarray" = dontDistribute super."diffarray"; @@ -2641,6 +2647,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; "download" = dontDistribute super."download"; @@ -3270,6 +3277,7 @@ self: super: { "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph"; "ghc-server" = dontDistribute super."ghc-server"; + "ghc-session" = dontDistribute super."ghc-session"; "ghc-simple" = dontDistribute super."ghc-simple"; "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; @@ -3605,6 +3613,7 @@ self: super: { "hR" = dontDistribute super."hR"; "hRESP" = dontDistribute super."hRESP"; "hS3" = dontDistribute super."hS3"; + "hScraper" = dontDistribute super."hScraper"; "hSimpleDB" = dontDistribute super."hSimpleDB"; "hTalos" = dontDistribute super."hTalos"; "hTensor" = dontDistribute super."hTensor"; @@ -4478,6 +4487,7 @@ self: super: { "hub" = dontDistribute super."hub"; "hubigraph" = dontDistribute super."hubigraph"; "hubris" = dontDistribute super."hubris"; + "huckleberry" = dontDistribute super."huckleberry"; "huffman" = dontDistribute super."huffman"; "hugs2yc" = dontDistribute super."hugs2yc"; "hulk" = dontDistribute super."hulk"; @@ -4970,6 +4980,7 @@ self: super: { "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; + "latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll"; "latex-formulae-image" = dontDistribute super."latex-formulae-image"; "latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc"; "lattices" = doDistribute super."lattices_1_2_1_1"; @@ -5208,6 +5219,7 @@ self: super: { "luachunk" = dontDistribute super."luachunk"; "luautils" = dontDistribute super."luautils"; "lub" = dontDistribute super."lub"; + "lucid" = doDistribute super."lucid_2_9_2"; "lucid-foundation" = dontDistribute super."lucid-foundation"; "lucid-svg" = doDistribute super."lucid-svg_0_4_0_4"; "lucienne" = dontDistribute super."lucienne"; @@ -5622,6 +5634,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = dontDistribute super."nationstates"; + "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; "natural-numbers" = dontDistribute super."natural-numbers"; @@ -5970,6 +5983,7 @@ self: super: { "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; "path" = dontDistribute super."path"; + "path-extra" = dontDistribute super."path-extra"; "path-pieces" = doDistribute super."path-pieces_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; @@ -6083,6 +6097,7 @@ self: super: { "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-bgzf" = dontDistribute super."pipes-bgzf"; "pipes-binary" = doDistribute super."pipes-binary_0_4_0_4"; + "pipes-cacophony" = dontDistribute super."pipes-cacophony"; "pipes-cellular" = dontDistribute super."pipes-cellular"; "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; @@ -7391,6 +7406,7 @@ self: super: { "svm-simple" = dontDistribute super."svm-simple"; "svndump" = dontDistribute super."svndump"; "swagger" = dontDistribute super."swagger"; + "swagger2" = dontDistribute super."swagger2"; "swapper" = dontDistribute super."swapper"; "swearjure" = dontDistribute super."swearjure"; "swf" = dontDistribute super."swf"; @@ -8448,6 +8464,9 @@ self: super: { "yesod-pure" = dontDistribute super."yesod-pure"; "yesod-purescript" = dontDistribute super."yesod-purescript"; "yesod-raml" = dontDistribute super."yesod-raml"; + "yesod-raml-bin" = dontDistribute super."yesod-raml-bin"; + "yesod-raml-docs" = dontDistribute super."yesod-raml-docs"; + "yesod-raml-mock" = dontDistribute super."yesod-raml-mock"; "yesod-recaptcha" = dontDistribute super."yesod-recaptcha"; "yesod-routes" = dontDistribute super."yesod-routes"; "yesod-routes-flow" = dontDistribute super."yesod-routes-flow"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.5.nix b/pkgs/development/haskell-modules/configuration-lts-2.5.nix index b81c72d40a0..45a803ad630 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.5.nix @@ -586,6 +586,7 @@ self: super: { "JuicyPixels" = doDistribute super."JuicyPixels_3_2_4"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7"; + "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; "JunkDB" = dontDistribute super."JunkDB"; "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; @@ -1153,6 +1154,7 @@ self: super: { "afv" = dontDistribute super."afv"; "agda-server" = dontDistribute super."agda-server"; "agda-snippets" = dontDistribute super."agda-snippets"; + "agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll"; "agentx" = dontDistribute super."agentx"; "agum" = dontDistribute super."agum"; "aig" = dontDistribute super."aig"; @@ -1733,6 +1735,7 @@ self: super: { "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; + "bson" = doDistribute super."bson_0_3_1"; "bson-generic" = dontDistribute super."bson-generic"; "bson-generics" = dontDistribute super."bson-generics"; "bson-lens" = dontDistribute super."bson-lens"; @@ -1977,6 +1980,7 @@ self: super: { "clafer" = dontDistribute super."clafer"; "claferIG" = dontDistribute super."claferIG"; "claferwiki" = dontDistribute super."claferwiki"; + "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; @@ -2092,6 +2096,7 @@ self: super: { "compdata-automata" = dontDistribute super."compdata-automata"; "compdata-dags" = dontDistribute super."compdata-dags"; "compdata-param" = dontDistribute super."compdata-param"; + "compensated" = doDistribute super."compensated_0_6_1"; "competition" = dontDistribute super."competition"; "compilation" = dontDistribute super."compilation"; "complex-generic" = dontDistribute super."complex-generic"; @@ -2544,6 +2549,7 @@ self: super: { "dicom" = dontDistribute super."dicom"; "dictparser" = dontDistribute super."dictparser"; "diet" = dontDistribute super."diet"; + "diff-gestalt" = dontDistribute super."diff-gestalt"; "diff-parse" = dontDistribute super."diff-parse"; "diff3" = dontDistribute super."diff3"; "diffarray" = dontDistribute super."diffarray"; @@ -2640,6 +2646,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; "download" = dontDistribute super."download"; @@ -3269,6 +3276,7 @@ self: super: { "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph"; "ghc-server" = dontDistribute super."ghc-server"; + "ghc-session" = dontDistribute super."ghc-session"; "ghc-simple" = dontDistribute super."ghc-simple"; "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; @@ -3604,6 +3612,7 @@ self: super: { "hR" = dontDistribute super."hR"; "hRESP" = dontDistribute super."hRESP"; "hS3" = dontDistribute super."hS3"; + "hScraper" = dontDistribute super."hScraper"; "hSimpleDB" = dontDistribute super."hSimpleDB"; "hTalos" = dontDistribute super."hTalos"; "hTensor" = dontDistribute super."hTensor"; @@ -4477,6 +4486,7 @@ self: super: { "hub" = dontDistribute super."hub"; "hubigraph" = dontDistribute super."hubigraph"; "hubris" = dontDistribute super."hubris"; + "huckleberry" = dontDistribute super."huckleberry"; "huffman" = dontDistribute super."huffman"; "hugs2yc" = dontDistribute super."hugs2yc"; "hulk" = dontDistribute super."hulk"; @@ -4969,6 +4979,7 @@ self: super: { "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; + "latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll"; "latex-formulae-image" = dontDistribute super."latex-formulae-image"; "latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc"; "lattices" = doDistribute super."lattices_1_2_1_1"; @@ -5206,6 +5217,7 @@ self: super: { "luachunk" = dontDistribute super."luachunk"; "luautils" = dontDistribute super."luautils"; "lub" = dontDistribute super."lub"; + "lucid" = doDistribute super."lucid_2_9_2"; "lucid-foundation" = dontDistribute super."lucid-foundation"; "lucid-svg" = doDistribute super."lucid-svg_0_4_0_4"; "lucienne" = dontDistribute super."lucienne"; @@ -5620,6 +5632,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = dontDistribute super."nationstates"; + "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; "natural-numbers" = dontDistribute super."natural-numbers"; @@ -5968,6 +5981,7 @@ self: super: { "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; "path" = dontDistribute super."path"; + "path-extra" = dontDistribute super."path-extra"; "path-pieces" = doDistribute super."path-pieces_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; @@ -6081,6 +6095,7 @@ self: super: { "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-bgzf" = dontDistribute super."pipes-bgzf"; "pipes-binary" = doDistribute super."pipes-binary_0_4_0_4"; + "pipes-cacophony" = dontDistribute super."pipes-cacophony"; "pipes-cellular" = dontDistribute super."pipes-cellular"; "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; @@ -7388,6 +7403,7 @@ self: super: { "svm-simple" = dontDistribute super."svm-simple"; "svndump" = dontDistribute super."svndump"; "swagger" = dontDistribute super."swagger"; + "swagger2" = dontDistribute super."swagger2"; "swapper" = dontDistribute super."swapper"; "swearjure" = dontDistribute super."swearjure"; "swf" = dontDistribute super."swf"; @@ -8445,6 +8461,9 @@ self: super: { "yesod-pure" = dontDistribute super."yesod-pure"; "yesod-purescript" = dontDistribute super."yesod-purescript"; "yesod-raml" = dontDistribute super."yesod-raml"; + "yesod-raml-bin" = dontDistribute super."yesod-raml-bin"; + "yesod-raml-docs" = dontDistribute super."yesod-raml-docs"; + "yesod-raml-mock" = dontDistribute super."yesod-raml-mock"; "yesod-recaptcha" = dontDistribute super."yesod-recaptcha"; "yesod-routes" = dontDistribute super."yesod-routes"; "yesod-routes-flow" = dontDistribute super."yesod-routes-flow"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.6.nix b/pkgs/development/haskell-modules/configuration-lts-2.6.nix index 4bddd28f2df..f1a40360db2 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.6.nix @@ -586,6 +586,7 @@ self: super: { "JuicyPixels" = doDistribute super."JuicyPixels_3_2_4"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7"; + "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; "JunkDB" = dontDistribute super."JunkDB"; "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; @@ -1151,6 +1152,7 @@ self: super: { "afv" = dontDistribute super."afv"; "agda-server" = dontDistribute super."agda-server"; "agda-snippets" = dontDistribute super."agda-snippets"; + "agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll"; "agentx" = dontDistribute super."agentx"; "agum" = dontDistribute super."agum"; "aig" = dontDistribute super."aig"; @@ -1730,6 +1732,7 @@ self: super: { "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; + "bson" = doDistribute super."bson_0_3_1"; "bson-generic" = dontDistribute super."bson-generic"; "bson-generics" = dontDistribute super."bson-generics"; "bson-lens" = dontDistribute super."bson-lens"; @@ -1974,6 +1977,7 @@ self: super: { "clafer" = dontDistribute super."clafer"; "claferIG" = dontDistribute super."claferIG"; "claferwiki" = dontDistribute super."claferwiki"; + "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; @@ -2089,6 +2093,7 @@ self: super: { "compdata-automata" = dontDistribute super."compdata-automata"; "compdata-dags" = dontDistribute super."compdata-dags"; "compdata-param" = dontDistribute super."compdata-param"; + "compensated" = doDistribute super."compensated_0_6_1"; "competition" = dontDistribute super."competition"; "compilation" = dontDistribute super."compilation"; "complex-generic" = dontDistribute super."complex-generic"; @@ -2541,6 +2546,7 @@ self: super: { "dicom" = dontDistribute super."dicom"; "dictparser" = dontDistribute super."dictparser"; "diet" = dontDistribute super."diet"; + "diff-gestalt" = dontDistribute super."diff-gestalt"; "diff-parse" = dontDistribute super."diff-parse"; "diff3" = dontDistribute super."diff3"; "diffarray" = dontDistribute super."diffarray"; @@ -2637,6 +2643,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; "download" = dontDistribute super."download"; @@ -3266,6 +3273,7 @@ self: super: { "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph"; "ghc-server" = dontDistribute super."ghc-server"; + "ghc-session" = dontDistribute super."ghc-session"; "ghc-simple" = dontDistribute super."ghc-simple"; "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; @@ -3599,6 +3607,7 @@ self: super: { "hR" = dontDistribute super."hR"; "hRESP" = dontDistribute super."hRESP"; "hS3" = dontDistribute super."hS3"; + "hScraper" = dontDistribute super."hScraper"; "hSimpleDB" = dontDistribute super."hSimpleDB"; "hTalos" = dontDistribute super."hTalos"; "hTensor" = dontDistribute super."hTensor"; @@ -4472,6 +4481,7 @@ self: super: { "hub" = dontDistribute super."hub"; "hubigraph" = dontDistribute super."hubigraph"; "hubris" = dontDistribute super."hubris"; + "huckleberry" = dontDistribute super."huckleberry"; "huffman" = dontDistribute super."huffman"; "hugs2yc" = dontDistribute super."hugs2yc"; "hulk" = dontDistribute super."hulk"; @@ -4964,6 +4974,7 @@ self: super: { "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; + "latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll"; "latex-formulae-image" = dontDistribute super."latex-formulae-image"; "latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc"; "lattices" = doDistribute super."lattices_1_2_1_1"; @@ -5201,6 +5212,7 @@ self: super: { "luachunk" = dontDistribute super."luachunk"; "luautils" = dontDistribute super."luautils"; "lub" = dontDistribute super."lub"; + "lucid" = doDistribute super."lucid_2_9_2"; "lucid-foundation" = dontDistribute super."lucid-foundation"; "lucid-svg" = doDistribute super."lucid-svg_0_4_0_4"; "lucienne" = dontDistribute super."lucienne"; @@ -5614,6 +5626,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = dontDistribute super."nationstates"; + "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; "natural-numbers" = dontDistribute super."natural-numbers"; @@ -5962,6 +5975,7 @@ self: super: { "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; "path" = dontDistribute super."path"; + "path-extra" = dontDistribute super."path-extra"; "path-pieces" = doDistribute super."path-pieces_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; @@ -6075,6 +6089,7 @@ self: super: { "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-bgzf" = dontDistribute super."pipes-bgzf"; "pipes-binary" = doDistribute super."pipes-binary_0_4_0_4"; + "pipes-cacophony" = dontDistribute super."pipes-cacophony"; "pipes-cellular" = dontDistribute super."pipes-cellular"; "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; @@ -7382,6 +7397,7 @@ self: super: { "svm-simple" = dontDistribute super."svm-simple"; "svndump" = dontDistribute super."svndump"; "swagger" = dontDistribute super."swagger"; + "swagger2" = dontDistribute super."swagger2"; "swapper" = dontDistribute super."swapper"; "swearjure" = dontDistribute super."swearjure"; "swf" = dontDistribute super."swf"; @@ -8436,6 +8452,9 @@ self: super: { "yesod-pure" = dontDistribute super."yesod-pure"; "yesod-purescript" = dontDistribute super."yesod-purescript"; "yesod-raml" = dontDistribute super."yesod-raml"; + "yesod-raml-bin" = dontDistribute super."yesod-raml-bin"; + "yesod-raml-docs" = dontDistribute super."yesod-raml-docs"; + "yesod-raml-mock" = dontDistribute super."yesod-raml-mock"; "yesod-recaptcha" = dontDistribute super."yesod-recaptcha"; "yesod-routes" = dontDistribute super."yesod-routes"; "yesod-routes-flow" = dontDistribute super."yesod-routes-flow"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.7.nix b/pkgs/development/haskell-modules/configuration-lts-2.7.nix index e1c7722174a..6db6aec53d3 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.7.nix @@ -585,6 +585,7 @@ self: super: { "JuicyPixels" = doDistribute super."JuicyPixels_3_2_4"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7"; + "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; "JunkDB" = dontDistribute super."JunkDB"; "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; @@ -1150,6 +1151,7 @@ self: super: { "afv" = dontDistribute super."afv"; "agda-server" = dontDistribute super."agda-server"; "agda-snippets" = dontDistribute super."agda-snippets"; + "agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll"; "agentx" = dontDistribute super."agentx"; "agum" = dontDistribute super."agum"; "aig" = dontDistribute super."aig"; @@ -1729,6 +1731,7 @@ self: super: { "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; + "bson" = doDistribute super."bson_0_3_1"; "bson-generic" = dontDistribute super."bson-generic"; "bson-generics" = dontDistribute super."bson-generics"; "bson-lens" = dontDistribute super."bson-lens"; @@ -1973,6 +1976,7 @@ self: super: { "clafer" = dontDistribute super."clafer"; "claferIG" = dontDistribute super."claferIG"; "claferwiki" = dontDistribute super."claferwiki"; + "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; @@ -2088,6 +2092,7 @@ self: super: { "compdata-automata" = dontDistribute super."compdata-automata"; "compdata-dags" = dontDistribute super."compdata-dags"; "compdata-param" = dontDistribute super."compdata-param"; + "compensated" = doDistribute super."compensated_0_6_1"; "competition" = dontDistribute super."competition"; "compilation" = dontDistribute super."compilation"; "complex-generic" = dontDistribute super."complex-generic"; @@ -2540,6 +2545,7 @@ self: super: { "dicom" = dontDistribute super."dicom"; "dictparser" = dontDistribute super."dictparser"; "diet" = dontDistribute super."diet"; + "diff-gestalt" = dontDistribute super."diff-gestalt"; "diff-parse" = dontDistribute super."diff-parse"; "diff3" = dontDistribute super."diff3"; "diffarray" = dontDistribute super."diffarray"; @@ -2636,6 +2642,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; "download" = dontDistribute super."download"; @@ -3265,6 +3272,7 @@ self: super: { "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph"; "ghc-server" = dontDistribute super."ghc-server"; + "ghc-session" = dontDistribute super."ghc-session"; "ghc-simple" = dontDistribute super."ghc-simple"; "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; @@ -3598,6 +3606,7 @@ self: super: { "hR" = dontDistribute super."hR"; "hRESP" = dontDistribute super."hRESP"; "hS3" = dontDistribute super."hS3"; + "hScraper" = dontDistribute super."hScraper"; "hSimpleDB" = dontDistribute super."hSimpleDB"; "hTalos" = dontDistribute super."hTalos"; "hTensor" = dontDistribute super."hTensor"; @@ -4471,6 +4480,7 @@ self: super: { "hub" = dontDistribute super."hub"; "hubigraph" = dontDistribute super."hubigraph"; "hubris" = dontDistribute super."hubris"; + "huckleberry" = dontDistribute super."huckleberry"; "huffman" = dontDistribute super."huffman"; "hugs2yc" = dontDistribute super."hugs2yc"; "hulk" = dontDistribute super."hulk"; @@ -4963,6 +4973,7 @@ self: super: { "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; + "latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll"; "latex-formulae-image" = dontDistribute super."latex-formulae-image"; "latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc"; "lattices" = doDistribute super."lattices_1_2_1_1"; @@ -5200,6 +5211,7 @@ self: super: { "luachunk" = dontDistribute super."luachunk"; "luautils" = dontDistribute super."luautils"; "lub" = dontDistribute super."lub"; + "lucid" = doDistribute super."lucid_2_9_2"; "lucid-foundation" = dontDistribute super."lucid-foundation"; "lucid-svg" = doDistribute super."lucid-svg_0_4_0_4"; "lucienne" = dontDistribute super."lucienne"; @@ -5614,6 +5626,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = dontDistribute super."nationstates"; + "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; "natural-numbers" = dontDistribute super."natural-numbers"; @@ -5961,6 +5974,7 @@ self: super: { "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; "path" = dontDistribute super."path"; + "path-extra" = dontDistribute super."path-extra"; "path-pieces" = doDistribute super."path-pieces_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; @@ -6074,6 +6088,7 @@ self: super: { "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-bgzf" = dontDistribute super."pipes-bgzf"; "pipes-binary" = doDistribute super."pipes-binary_0_4_0_4"; + "pipes-cacophony" = dontDistribute super."pipes-cacophony"; "pipes-cellular" = dontDistribute super."pipes-cellular"; "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; @@ -7381,6 +7396,7 @@ self: super: { "svm-simple" = dontDistribute super."svm-simple"; "svndump" = dontDistribute super."svndump"; "swagger" = dontDistribute super."swagger"; + "swagger2" = dontDistribute super."swagger2"; "swapper" = dontDistribute super."swapper"; "swearjure" = dontDistribute super."swearjure"; "swf" = dontDistribute super."swf"; @@ -8435,6 +8451,9 @@ self: super: { "yesod-pure" = dontDistribute super."yesod-pure"; "yesod-purescript" = dontDistribute super."yesod-purescript"; "yesod-raml" = dontDistribute super."yesod-raml"; + "yesod-raml-bin" = dontDistribute super."yesod-raml-bin"; + "yesod-raml-docs" = dontDistribute super."yesod-raml-docs"; + "yesod-raml-mock" = dontDistribute super."yesod-raml-mock"; "yesod-recaptcha" = dontDistribute super."yesod-recaptcha"; "yesod-routes" = dontDistribute super."yesod-routes"; "yesod-routes-flow" = dontDistribute super."yesod-routes-flow"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.8.nix b/pkgs/development/haskell-modules/configuration-lts-2.8.nix index aa789e5e581..8e131b4ca50 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.8.nix @@ -585,6 +585,7 @@ self: super: { "JuicyPixels" = doDistribute super."JuicyPixels_3_2_4"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7"; + "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; "JunkDB" = dontDistribute super."JunkDB"; "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; @@ -1149,6 +1150,7 @@ self: super: { "afv" = dontDistribute super."afv"; "agda-server" = dontDistribute super."agda-server"; "agda-snippets" = dontDistribute super."agda-snippets"; + "agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll"; "agentx" = dontDistribute super."agentx"; "agum" = dontDistribute super."agum"; "aig" = dontDistribute super."aig"; @@ -1728,6 +1730,7 @@ self: super: { "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; + "bson" = doDistribute super."bson_0_3_1"; "bson-generic" = dontDistribute super."bson-generic"; "bson-generics" = dontDistribute super."bson-generics"; "bson-lens" = dontDistribute super."bson-lens"; @@ -1972,6 +1975,7 @@ self: super: { "clafer" = dontDistribute super."clafer"; "claferIG" = dontDistribute super."claferIG"; "claferwiki" = dontDistribute super."claferwiki"; + "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; @@ -2087,6 +2091,7 @@ self: super: { "compdata-automata" = dontDistribute super."compdata-automata"; "compdata-dags" = dontDistribute super."compdata-dags"; "compdata-param" = dontDistribute super."compdata-param"; + "compensated" = doDistribute super."compensated_0_6_1"; "competition" = dontDistribute super."competition"; "compilation" = dontDistribute super."compilation"; "complex-generic" = dontDistribute super."complex-generic"; @@ -2539,6 +2544,7 @@ self: super: { "dicom" = dontDistribute super."dicom"; "dictparser" = dontDistribute super."dictparser"; "diet" = dontDistribute super."diet"; + "diff-gestalt" = dontDistribute super."diff-gestalt"; "diff-parse" = dontDistribute super."diff-parse"; "diff3" = dontDistribute super."diff3"; "diffarray" = dontDistribute super."diffarray"; @@ -2635,6 +2641,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; "download" = dontDistribute super."download"; @@ -3263,6 +3270,7 @@ self: super: { "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph"; "ghc-server" = dontDistribute super."ghc-server"; + "ghc-session" = dontDistribute super."ghc-session"; "ghc-simple" = dontDistribute super."ghc-simple"; "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; @@ -3596,6 +3604,7 @@ self: super: { "hR" = dontDistribute super."hR"; "hRESP" = dontDistribute super."hRESP"; "hS3" = dontDistribute super."hS3"; + "hScraper" = dontDistribute super."hScraper"; "hSimpleDB" = dontDistribute super."hSimpleDB"; "hTalos" = dontDistribute super."hTalos"; "hTensor" = dontDistribute super."hTensor"; @@ -4468,6 +4477,7 @@ self: super: { "hub" = dontDistribute super."hub"; "hubigraph" = dontDistribute super."hubigraph"; "hubris" = dontDistribute super."hubris"; + "huckleberry" = dontDistribute super."huckleberry"; "huffman" = dontDistribute super."huffman"; "hugs2yc" = dontDistribute super."hugs2yc"; "hulk" = dontDistribute super."hulk"; @@ -4959,6 +4969,7 @@ self: super: { "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; + "latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll"; "latex-formulae-image" = dontDistribute super."latex-formulae-image"; "latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc"; "lattices" = doDistribute super."lattices_1_2_1_1"; @@ -5196,6 +5207,7 @@ self: super: { "luachunk" = dontDistribute super."luachunk"; "luautils" = dontDistribute super."luautils"; "lub" = dontDistribute super."lub"; + "lucid" = doDistribute super."lucid_2_9_2"; "lucid-foundation" = dontDistribute super."lucid-foundation"; "lucid-svg" = doDistribute super."lucid-svg_0_4_0_4"; "lucienne" = dontDistribute super."lucienne"; @@ -5610,6 +5622,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = dontDistribute super."nationstates"; + "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; "natural-numbers" = dontDistribute super."natural-numbers"; @@ -5957,6 +5970,7 @@ self: super: { "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; "path" = dontDistribute super."path"; + "path-extra" = dontDistribute super."path-extra"; "path-pieces" = doDistribute super."path-pieces_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; @@ -6070,6 +6084,7 @@ self: super: { "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-bgzf" = dontDistribute super."pipes-bgzf"; "pipes-binary" = doDistribute super."pipes-binary_0_4_0_4"; + "pipes-cacophony" = dontDistribute super."pipes-cacophony"; "pipes-cellular" = dontDistribute super."pipes-cellular"; "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; @@ -7373,6 +7388,7 @@ self: super: { "svm-simple" = dontDistribute super."svm-simple"; "svndump" = dontDistribute super."svndump"; "swagger" = dontDistribute super."swagger"; + "swagger2" = dontDistribute super."swagger2"; "swapper" = dontDistribute super."swapper"; "swearjure" = dontDistribute super."swearjure"; "swf" = dontDistribute super."swf"; @@ -8427,6 +8443,9 @@ self: super: { "yesod-pure" = dontDistribute super."yesod-pure"; "yesod-purescript" = dontDistribute super."yesod-purescript"; "yesod-raml" = dontDistribute super."yesod-raml"; + "yesod-raml-bin" = dontDistribute super."yesod-raml-bin"; + "yesod-raml-docs" = dontDistribute super."yesod-raml-docs"; + "yesod-raml-mock" = dontDistribute super."yesod-raml-mock"; "yesod-recaptcha" = dontDistribute super."yesod-recaptcha"; "yesod-routes" = dontDistribute super."yesod-routes"; "yesod-routes-flow" = dontDistribute super."yesod-routes-flow"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.9.nix b/pkgs/development/haskell-modules/configuration-lts-2.9.nix index bc0a2c1e3e5..d7609a9fb85 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.9.nix @@ -585,6 +585,7 @@ self: super: { "JuicyPixels" = doDistribute super."JuicyPixels_3_2_4"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7"; + "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; "JunkDB" = dontDistribute super."JunkDB"; "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; @@ -1149,6 +1150,7 @@ self: super: { "afv" = dontDistribute super."afv"; "agda-server" = dontDistribute super."agda-server"; "agda-snippets" = dontDistribute super."agda-snippets"; + "agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll"; "agentx" = dontDistribute super."agentx"; "agum" = dontDistribute super."agum"; "aig" = dontDistribute super."aig"; @@ -1726,6 +1728,7 @@ self: super: { "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; + "bson" = doDistribute super."bson_0_3_1"; "bson-generic" = dontDistribute super."bson-generic"; "bson-generics" = dontDistribute super."bson-generics"; "bson-lens" = dontDistribute super."bson-lens"; @@ -1969,6 +1972,7 @@ self: super: { "clafer" = dontDistribute super."clafer"; "claferIG" = dontDistribute super."claferIG"; "claferwiki" = dontDistribute super."claferwiki"; + "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; @@ -2084,6 +2088,7 @@ self: super: { "compdata-automata" = dontDistribute super."compdata-automata"; "compdata-dags" = dontDistribute super."compdata-dags"; "compdata-param" = dontDistribute super."compdata-param"; + "compensated" = doDistribute super."compensated_0_6_1"; "competition" = dontDistribute super."competition"; "compilation" = dontDistribute super."compilation"; "complex-generic" = dontDistribute super."complex-generic"; @@ -2536,6 +2541,7 @@ self: super: { "dicom" = dontDistribute super."dicom"; "dictparser" = dontDistribute super."dictparser"; "diet" = dontDistribute super."diet"; + "diff-gestalt" = dontDistribute super."diff-gestalt"; "diff-parse" = dontDistribute super."diff-parse"; "diff3" = dontDistribute super."diff3"; "diffarray" = dontDistribute super."diffarray"; @@ -2632,6 +2638,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; "download" = dontDistribute super."download"; @@ -3258,6 +3265,7 @@ self: super: { "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph"; "ghc-server" = dontDistribute super."ghc-server"; + "ghc-session" = dontDistribute super."ghc-session"; "ghc-simple" = dontDistribute super."ghc-simple"; "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; @@ -3590,6 +3598,7 @@ self: super: { "hR" = dontDistribute super."hR"; "hRESP" = dontDistribute super."hRESP"; "hS3" = dontDistribute super."hS3"; + "hScraper" = dontDistribute super."hScraper"; "hSimpleDB" = dontDistribute super."hSimpleDB"; "hTalos" = dontDistribute super."hTalos"; "hTensor" = dontDistribute super."hTensor"; @@ -4460,6 +4469,7 @@ self: super: { "hub" = dontDistribute super."hub"; "hubigraph" = dontDistribute super."hubigraph"; "hubris" = dontDistribute super."hubris"; + "huckleberry" = dontDistribute super."huckleberry"; "huffman" = dontDistribute super."huffman"; "hugs2yc" = dontDistribute super."hugs2yc"; "hulk" = dontDistribute super."hulk"; @@ -4951,6 +4961,7 @@ self: super: { "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; + "latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll"; "latex-formulae-image" = dontDistribute super."latex-formulae-image"; "latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc"; "lattices" = doDistribute super."lattices_1_2_1_1"; @@ -5187,6 +5198,7 @@ self: super: { "luachunk" = dontDistribute super."luachunk"; "luautils" = dontDistribute super."luautils"; "lub" = dontDistribute super."lub"; + "lucid" = doDistribute super."lucid_2_9_2"; "lucid-foundation" = dontDistribute super."lucid-foundation"; "lucid-svg" = doDistribute super."lucid-svg_0_4_0_4"; "lucienne" = dontDistribute super."lucienne"; @@ -5600,6 +5612,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = dontDistribute super."nationstates"; + "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; "natural-numbers" = dontDistribute super."natural-numbers"; @@ -5947,6 +5960,7 @@ self: super: { "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; "path" = dontDistribute super."path"; + "path-extra" = dontDistribute super."path-extra"; "path-pieces" = doDistribute super."path-pieces_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; @@ -6059,6 +6073,7 @@ self: super: { "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-bgzf" = dontDistribute super."pipes-bgzf"; "pipes-binary" = doDistribute super."pipes-binary_0_4_0_4"; + "pipes-cacophony" = dontDistribute super."pipes-cacophony"; "pipes-cellular" = dontDistribute super."pipes-cellular"; "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; @@ -7359,6 +7374,7 @@ self: super: { "svm-simple" = dontDistribute super."svm-simple"; "svndump" = dontDistribute super."svndump"; "swagger" = dontDistribute super."swagger"; + "swagger2" = dontDistribute super."swagger2"; "swapper" = dontDistribute super."swapper"; "swearjure" = dontDistribute super."swearjure"; "swf" = dontDistribute super."swf"; @@ -8410,6 +8426,9 @@ self: super: { "yesod-pure" = dontDistribute super."yesod-pure"; "yesod-purescript" = dontDistribute super."yesod-purescript"; "yesod-raml" = dontDistribute super."yesod-raml"; + "yesod-raml-bin" = dontDistribute super."yesod-raml-bin"; + "yesod-raml-docs" = dontDistribute super."yesod-raml-docs"; + "yesod-raml-mock" = dontDistribute super."yesod-raml-mock"; "yesod-recaptcha" = dontDistribute super."yesod-recaptcha"; "yesod-routes" = dontDistribute super."yesod-routes"; "yesod-routes-flow" = dontDistribute super."yesod-routes-flow"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.0.nix b/pkgs/development/haskell-modules/configuration-lts-3.0.nix index 2f3c1110ab7..1a781371a45 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.0.nix @@ -568,6 +568,7 @@ self: super: { "JuicyPixels" = doDistribute super."JuicyPixels_3_2_5_3"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; "JuicyPixels-repa" = dontDistribute super."JuicyPixels-repa"; + "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; "JunkDB" = dontDistribute super."JunkDB"; "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; @@ -1118,6 +1119,7 @@ self: super: { "afv" = dontDistribute super."afv"; "agda-server" = dontDistribute super."agda-server"; "agda-snippets" = dontDistribute super."agda-snippets"; + "agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll"; "agum" = dontDistribute super."agum"; "aig" = dontDistribute super."aig"; "air" = dontDistribute super."air"; @@ -1656,6 +1658,7 @@ self: super: { "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; + "bson" = doDistribute super."bson_0_3_1"; "bson-generic" = dontDistribute super."bson-generic"; "bson-generics" = dontDistribute super."bson-generics"; "bson-lens" = dontDistribute super."bson-lens"; @@ -1886,6 +1889,7 @@ self: super: { "clafer" = dontDistribute super."clafer"; "claferIG" = dontDistribute super."claferIG"; "claferwiki" = dontDistribute super."claferwiki"; + "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; "clash" = dontDistribute super."clash"; "clash-ghc" = doDistribute super."clash-ghc_0_5_11"; @@ -2429,6 +2433,7 @@ self: super: { "dicom" = dontDistribute super."dicom"; "dictparser" = dontDistribute super."dictparser"; "diet" = dontDistribute super."diet"; + "diff-gestalt" = dontDistribute super."diff-gestalt"; "diff-parse" = dontDistribute super."diff-parse"; "diffarray" = dontDistribute super."diffarray"; "diffcabal" = dontDistribute super."diffcabal"; @@ -2519,6 +2524,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; "download" = dontDistribute super."download"; @@ -3113,6 +3119,7 @@ self: super: { "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph"; "ghc-server" = dontDistribute super."ghc-server"; + "ghc-session" = dontDistribute super."ghc-session"; "ghc-simple" = dontDistribute super."ghc-simple"; "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; @@ -3435,6 +3442,7 @@ self: super: { "hR" = dontDistribute super."hR"; "hRESP" = dontDistribute super."hRESP"; "hS3" = dontDistribute super."hS3"; + "hScraper" = dontDistribute super."hScraper"; "hSimpleDB" = dontDistribute super."hSimpleDB"; "hTalos" = dontDistribute super."hTalos"; "hTensor" = dontDistribute super."hTensor"; @@ -4271,6 +4279,7 @@ self: super: { "hub" = dontDistribute super."hub"; "hubigraph" = dontDistribute super."hubigraph"; "hubris" = dontDistribute super."hubris"; + "huckleberry" = dontDistribute super."huckleberry"; "huffman" = dontDistribute super."huffman"; "hugs2yc" = dontDistribute super."hugs2yc"; "hulk" = dontDistribute super."hulk"; @@ -4724,6 +4733,7 @@ self: super: { "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; + "latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll"; "latex-formulae-image" = dontDistribute super."latex-formulae-image"; "latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc"; "lattices" = doDistribute super."lattices_1_3"; @@ -4947,6 +4957,7 @@ self: super: { "luachunk" = dontDistribute super."luachunk"; "luautils" = dontDistribute super."luautils"; "lub" = dontDistribute super."lub"; + "lucid" = doDistribute super."lucid_2_9_2"; "lucid-foundation" = dontDistribute super."lucid-foundation"; "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; @@ -5022,6 +5033,7 @@ self: super: { "markov" = dontDistribute super."markov"; "markov-chain" = dontDistribute super."markov-chain"; "markov-processes" = dontDistribute super."markov-processes"; + "markup" = doDistribute super."markup_1_1_0"; "markup-preview" = dontDistribute super."markup-preview"; "marmalade-upload" = dontDistribute super."marmalade-upload"; "marquise" = dontDistribute super."marquise"; @@ -5330,6 +5342,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = doDistribute super."nationstates_0_2_0_0"; + "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; "natural-numbers" = dontDistribute super."natural-numbers"; @@ -5661,6 +5674,7 @@ self: super: { "patch-combinators" = dontDistribute super."patch-combinators"; "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; + "path-extra" = dontDistribute super."path-extra"; "path-pieces" = doDistribute super."path-pieces_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; @@ -5763,9 +5777,11 @@ self: super: { "pinboard" = dontDistribute super."pinboard"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; + "pipes" = doDistribute super."pipes_4_1_6"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-binary" = doDistribute super."pipes-binary_0_4_0_4"; + "pipes-cacophony" = dontDistribute super."pipes-cacophony"; "pipes-cellular" = dontDistribute super."pipes-cellular"; "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; @@ -7006,6 +7022,7 @@ self: super: { "svm-light-utils" = dontDistribute super."svm-light-utils"; "svm-simple" = dontDistribute super."svm-simple"; "svndump" = dontDistribute super."svndump"; + "swagger2" = dontDistribute super."swagger2"; "swapper" = dontDistribute super."swapper"; "swearjure" = dontDistribute super."swearjure"; "swf" = dontDistribute super."swf"; @@ -7551,6 +7568,7 @@ self: super: { "urldecode" = dontDistribute super."urldecode"; "urldisp-happstack" = dontDistribute super."urldisp-happstack"; "urlencoded" = dontDistribute super."urlencoded"; + "urlpath" = doDistribute super."urlpath_2_1_0"; "urn" = dontDistribute super."urn"; "urxml" = dontDistribute super."urxml"; "usb" = dontDistribute super."usb"; @@ -7675,6 +7693,7 @@ self: super: { "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_3_0"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; + "wai-cors" = doDistribute super."wai-cors_0_2_3"; "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; @@ -7997,6 +8016,9 @@ self: super: { "yesod-pure" = dontDistribute super."yesod-pure"; "yesod-purescript" = dontDistribute super."yesod-purescript"; "yesod-raml" = dontDistribute super."yesod-raml"; + "yesod-raml-bin" = dontDistribute super."yesod-raml-bin"; + "yesod-raml-docs" = dontDistribute super."yesod-raml-docs"; + "yesod-raml-mock" = dontDistribute super."yesod-raml-mock"; "yesod-recaptcha" = dontDistribute super."yesod-recaptcha"; "yesod-routes" = dontDistribute super."yesod-routes"; "yesod-routes-flow" = dontDistribute super."yesod-routes-flow"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.1.nix b/pkgs/development/haskell-modules/configuration-lts-3.1.nix index deed5854903..40e3108bb7e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.1.nix @@ -568,6 +568,7 @@ self: super: { "JuicyPixels" = doDistribute super."JuicyPixels_3_2_5_3"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; "JuicyPixels-repa" = dontDistribute super."JuicyPixels-repa"; + "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; "JunkDB" = dontDistribute super."JunkDB"; "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; @@ -1116,6 +1117,7 @@ self: super: { "afv" = dontDistribute super."afv"; "agda-server" = dontDistribute super."agda-server"; "agda-snippets" = dontDistribute super."agda-snippets"; + "agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll"; "agum" = dontDistribute super."agum"; "aig" = dontDistribute super."aig"; "air" = dontDistribute super."air"; @@ -1653,6 +1655,7 @@ self: super: { "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; + "bson" = doDistribute super."bson_0_3_1"; "bson-generic" = dontDistribute super."bson-generic"; "bson-generics" = dontDistribute super."bson-generics"; "bson-lens" = dontDistribute super."bson-lens"; @@ -1883,6 +1886,7 @@ self: super: { "clafer" = dontDistribute super."clafer"; "claferIG" = dontDistribute super."claferIG"; "claferwiki" = dontDistribute super."claferwiki"; + "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; "clash" = dontDistribute super."clash"; "clash-ghc" = doDistribute super."clash-ghc_0_5_11"; @@ -2426,6 +2430,7 @@ self: super: { "dicom" = dontDistribute super."dicom"; "dictparser" = dontDistribute super."dictparser"; "diet" = dontDistribute super."diet"; + "diff-gestalt" = dontDistribute super."diff-gestalt"; "diff-parse" = dontDistribute super."diff-parse"; "diffarray" = dontDistribute super."diffarray"; "diffcabal" = dontDistribute super."diffcabal"; @@ -2516,6 +2521,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; "download" = dontDistribute super."download"; @@ -3107,6 +3113,7 @@ self: super: { "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph"; "ghc-server" = dontDistribute super."ghc-server"; + "ghc-session" = dontDistribute super."ghc-session"; "ghc-simple" = dontDistribute super."ghc-simple"; "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; @@ -3429,6 +3436,7 @@ self: super: { "hR" = dontDistribute super."hR"; "hRESP" = dontDistribute super."hRESP"; "hS3" = dontDistribute super."hS3"; + "hScraper" = dontDistribute super."hScraper"; "hSimpleDB" = dontDistribute super."hSimpleDB"; "hTalos" = dontDistribute super."hTalos"; "hTensor" = dontDistribute super."hTensor"; @@ -4264,6 +4272,7 @@ self: super: { "hub" = dontDistribute super."hub"; "hubigraph" = dontDistribute super."hubigraph"; "hubris" = dontDistribute super."hubris"; + "huckleberry" = dontDistribute super."huckleberry"; "huffman" = dontDistribute super."huffman"; "hugs2yc" = dontDistribute super."hugs2yc"; "hulk" = dontDistribute super."hulk"; @@ -4717,6 +4726,7 @@ self: super: { "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; + "latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll"; "latex-formulae-image" = dontDistribute super."latex-formulae-image"; "latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc"; "lattices" = doDistribute super."lattices_1_3"; @@ -4940,6 +4950,7 @@ self: super: { "luachunk" = dontDistribute super."luachunk"; "luautils" = dontDistribute super."luautils"; "lub" = dontDistribute super."lub"; + "lucid" = doDistribute super."lucid_2_9_2"; "lucid-foundation" = dontDistribute super."lucid-foundation"; "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; @@ -5014,6 +5025,7 @@ self: super: { "markov" = dontDistribute super."markov"; "markov-chain" = dontDistribute super."markov-chain"; "markov-processes" = dontDistribute super."markov-processes"; + "markup" = doDistribute super."markup_1_1_0"; "markup-preview" = dontDistribute super."markup-preview"; "marmalade-upload" = dontDistribute super."marmalade-upload"; "marquise" = dontDistribute super."marquise"; @@ -5321,6 +5333,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = doDistribute super."nationstates_0_2_0_0"; + "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; "natural-numbers" = dontDistribute super."natural-numbers"; @@ -5652,6 +5665,7 @@ self: super: { "patch-combinators" = dontDistribute super."patch-combinators"; "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; + "path-extra" = dontDistribute super."path-extra"; "path-pieces" = doDistribute super."path-pieces_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; @@ -5753,9 +5767,11 @@ self: super: { "pinboard" = dontDistribute super."pinboard"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; + "pipes" = doDistribute super."pipes_4_1_6"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-binary" = doDistribute super."pipes-binary_0_4_0_4"; + "pipes-cacophony" = dontDistribute super."pipes-cacophony"; "pipes-cellular" = dontDistribute super."pipes-cellular"; "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; @@ -6995,6 +7011,7 @@ self: super: { "svm-light-utils" = dontDistribute super."svm-light-utils"; "svm-simple" = dontDistribute super."svm-simple"; "svndump" = dontDistribute super."svndump"; + "swagger2" = dontDistribute super."swagger2"; "swapper" = dontDistribute super."swapper"; "swearjure" = dontDistribute super."swearjure"; "swf" = dontDistribute super."swf"; @@ -7540,6 +7557,7 @@ self: super: { "urldecode" = dontDistribute super."urldecode"; "urldisp-happstack" = dontDistribute super."urldisp-happstack"; "urlencoded" = dontDistribute super."urlencoded"; + "urlpath" = doDistribute super."urlpath_2_1_0"; "urn" = dontDistribute super."urn"; "urxml" = dontDistribute super."urxml"; "usb" = dontDistribute super."usb"; @@ -7663,6 +7681,7 @@ self: super: { "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_3_0"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; + "wai-cors" = doDistribute super."wai-cors_0_2_3"; "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; @@ -7985,6 +8004,9 @@ self: super: { "yesod-pure" = dontDistribute super."yesod-pure"; "yesod-purescript" = dontDistribute super."yesod-purescript"; "yesod-raml" = dontDistribute super."yesod-raml"; + "yesod-raml-bin" = dontDistribute super."yesod-raml-bin"; + "yesod-raml-docs" = dontDistribute super."yesod-raml-docs"; + "yesod-raml-mock" = dontDistribute super."yesod-raml-mock"; "yesod-recaptcha" = dontDistribute super."yesod-recaptcha"; "yesod-routes" = dontDistribute super."yesod-routes"; "yesod-routes-flow" = dontDistribute super."yesod-routes-flow"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.10.nix b/pkgs/development/haskell-modules/configuration-lts-3.10.nix index f6b9faad4b8..4c6371538f1 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.10.nix @@ -561,6 +561,7 @@ self: super: { "JuicyPixels" = doDistribute super."JuicyPixels_3_2_6_1"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; "JuicyPixels-repa" = dontDistribute super."JuicyPixels-repa"; + "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; "JunkDB" = dontDistribute super."JunkDB"; "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; @@ -1104,6 +1105,7 @@ self: super: { "afv" = dontDistribute super."afv"; "agda-server" = dontDistribute super."agda-server"; "agda-snippets" = dontDistribute super."agda-snippets"; + "agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll"; "agum" = dontDistribute super."agum"; "aig" = dontDistribute super."aig"; "air" = dontDistribute super."air"; @@ -1628,6 +1630,7 @@ self: super: { "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; + "bson" = doDistribute super."bson_0_3_1"; "bson-generic" = dontDistribute super."bson-generic"; "bson-generics" = dontDistribute super."bson-generics"; "bson-lens" = dontDistribute super."bson-lens"; @@ -1853,6 +1856,7 @@ self: super: { "clafer" = dontDistribute super."clafer"; "claferIG" = dontDistribute super."claferIG"; "claferwiki" = dontDistribute super."claferwiki"; + "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; "clash" = dontDistribute super."clash"; "clash-ghc" = doDistribute super."clash-ghc_0_5_15"; @@ -2379,6 +2383,7 @@ self: super: { "dicom" = dontDistribute super."dicom"; "dictparser" = dontDistribute super."dictparser"; "diet" = dontDistribute super."diet"; + "diff-gestalt" = dontDistribute super."diff-gestalt"; "diff-parse" = dontDistribute super."diff-parse"; "diffarray" = dontDistribute super."diffarray"; "diffcabal" = dontDistribute super."diffcabal"; @@ -2464,6 +2469,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; "download" = dontDistribute super."download"; @@ -3039,6 +3045,7 @@ self: super: { "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph"; "ghc-server" = dontDistribute super."ghc-server"; + "ghc-session" = dontDistribute super."ghc-session"; "ghc-simple" = dontDistribute super."ghc-simple"; "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; @@ -3358,6 +3365,7 @@ self: super: { "hR" = dontDistribute super."hR"; "hRESP" = dontDistribute super."hRESP"; "hS3" = dontDistribute super."hS3"; + "hScraper" = dontDistribute super."hScraper"; "hSimpleDB" = dontDistribute super."hSimpleDB"; "hTalos" = dontDistribute super."hTalos"; "hTensor" = dontDistribute super."hTensor"; @@ -4180,6 +4188,7 @@ self: super: { "hub" = dontDistribute super."hub"; "hubigraph" = dontDistribute super."hubigraph"; "hubris" = dontDistribute super."hubris"; + "huckleberry" = dontDistribute super."huckleberry"; "huffman" = dontDistribute super."huffman"; "hugs2yc" = dontDistribute super."hugs2yc"; "hulk" = dontDistribute super."hulk"; @@ -4623,6 +4632,7 @@ self: super: { "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; + "latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll"; "latex-formulae-image" = dontDistribute super."latex-formulae-image"; "latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc"; "lattices" = doDistribute super."lattices_1_3"; @@ -4842,6 +4852,7 @@ self: super: { "luachunk" = dontDistribute super."luachunk"; "luautils" = dontDistribute super."luautils"; "lub" = dontDistribute super."lub"; + "lucid" = doDistribute super."lucid_2_9_2"; "lucid-foundation" = dontDistribute super."lucid-foundation"; "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; @@ -4913,6 +4924,7 @@ self: super: { "markov" = dontDistribute super."markov"; "markov-chain" = dontDistribute super."markov-chain"; "markov-processes" = dontDistribute super."markov-processes"; + "markup" = doDistribute super."markup_1_1_0"; "markup-preview" = dontDistribute super."markup-preview"; "marmalade-upload" = dontDistribute super."marmalade-upload"; "marquise" = dontDistribute super."marquise"; @@ -5088,6 +5100,7 @@ self: super: { "monads-fd" = dontDistribute super."monads-fd"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; + "mongoDB" = doDistribute super."mongoDB_2_0_8"; "mongodb-queue" = dontDistribute super."mongodb-queue"; "mongrel2-handler" = dontDistribute super."mongrel2-handler"; "monitor" = dontDistribute super."monitor"; @@ -5214,6 +5227,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = doDistribute super."nationstates_0_2_0_3"; + "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; "natural-numbers" = dontDistribute super."natural-numbers"; @@ -5538,6 +5552,7 @@ self: super: { "patch-combinators" = dontDistribute super."patch-combinators"; "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; + "path-extra" = dontDistribute super."path-extra"; "path-pieces" = doDistribute super."path-pieces_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; @@ -5638,8 +5653,10 @@ self: super: { "pinboard" = dontDistribute super."pinboard"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; + "pipes" = doDistribute super."pipes_4_1_6"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; + "pipes-cacophony" = dontDistribute super."pipes-cacophony"; "pipes-cellular" = dontDistribute super."pipes-cellular"; "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; @@ -6840,6 +6857,7 @@ self: super: { "svm-light-utils" = dontDistribute super."svm-light-utils"; "svm-simple" = dontDistribute super."svm-simple"; "svndump" = dontDistribute super."svndump"; + "swagger2" = dontDistribute super."swagger2"; "swapper" = dontDistribute super."swapper"; "swearjure" = dontDistribute super."swearjure"; "swf" = dontDistribute super."swf"; @@ -7201,6 +7219,7 @@ self: super: { "turing-music" = dontDistribute super."turing-music"; "turkish-deasciifier" = dontDistribute super."turkish-deasciifier"; "turni" = dontDistribute super."turni"; + "turtle" = doDistribute super."turtle_1_2_2"; "tweak" = dontDistribute super."tweak"; "twentefp" = dontDistribute super."twentefp"; "twentefp-eventloop-graphics" = dontDistribute super."twentefp-eventloop-graphics"; @@ -7374,6 +7393,7 @@ self: super: { "urldecode" = dontDistribute super."urldecode"; "urldisp-happstack" = dontDistribute super."urldisp-happstack"; "urlencoded" = dontDistribute super."urlencoded"; + "urlpath" = doDistribute super."urlpath_2_1_0"; "urn" = dontDistribute super."urn"; "urxml" = dontDistribute super."urxml"; "usb" = dontDistribute super."usb"; @@ -7493,6 +7513,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; + "wai-cors" = doDistribute super."wai-cors_0_2_3"; "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; @@ -7794,6 +7815,9 @@ self: super: { "yesod-pure" = dontDistribute super."yesod-pure"; "yesod-purescript" = dontDistribute super."yesod-purescript"; "yesod-raml" = dontDistribute super."yesod-raml"; + "yesod-raml-bin" = dontDistribute super."yesod-raml-bin"; + "yesod-raml-docs" = dontDistribute super."yesod-raml-docs"; + "yesod-raml-mock" = dontDistribute super."yesod-raml-mock"; "yesod-recaptcha" = dontDistribute super."yesod-recaptcha"; "yesod-routes" = dontDistribute super."yesod-routes"; "yesod-routes-flow" = dontDistribute super."yesod-routes-flow"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.11.nix b/pkgs/development/haskell-modules/configuration-lts-3.11.nix index 86ead241479..20f538e28fe 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.11.nix @@ -561,6 +561,7 @@ self: super: { "JuicyPixels" = doDistribute super."JuicyPixels_3_2_6_1"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; "JuicyPixels-repa" = dontDistribute super."JuicyPixels-repa"; + "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; "JunkDB" = dontDistribute super."JunkDB"; "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; @@ -1104,6 +1105,7 @@ self: super: { "afv" = dontDistribute super."afv"; "agda-server" = dontDistribute super."agda-server"; "agda-snippets" = dontDistribute super."agda-snippets"; + "agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll"; "agum" = dontDistribute super."agum"; "aig" = dontDistribute super."aig"; "air" = dontDistribute super."air"; @@ -1626,6 +1628,7 @@ self: super: { "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; + "bson" = doDistribute super."bson_0_3_1"; "bson-generic" = dontDistribute super."bson-generic"; "bson-generics" = dontDistribute super."bson-generics"; "bson-lens" = dontDistribute super."bson-lens"; @@ -1850,6 +1853,7 @@ self: super: { "clafer" = dontDistribute super."clafer"; "claferIG" = dontDistribute super."claferIG"; "claferwiki" = dontDistribute super."claferwiki"; + "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; "clash" = dontDistribute super."clash"; "clash-ghc" = doDistribute super."clash-ghc_0_5_15"; @@ -2375,6 +2379,7 @@ self: super: { "dicom" = dontDistribute super."dicom"; "dictparser" = dontDistribute super."dictparser"; "diet" = dontDistribute super."diet"; + "diff-gestalt" = dontDistribute super."diff-gestalt"; "diff-parse" = dontDistribute super."diff-parse"; "diffarray" = dontDistribute super."diffarray"; "diffcabal" = dontDistribute super."diffcabal"; @@ -2460,6 +2465,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; "download" = dontDistribute super."download"; @@ -3034,6 +3040,7 @@ self: super: { "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph"; "ghc-server" = dontDistribute super."ghc-server"; + "ghc-session" = dontDistribute super."ghc-session"; "ghc-simple" = dontDistribute super."ghc-simple"; "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; @@ -3352,6 +3359,7 @@ self: super: { "hR" = dontDistribute super."hR"; "hRESP" = dontDistribute super."hRESP"; "hS3" = dontDistribute super."hS3"; + "hScraper" = dontDistribute super."hScraper"; "hSimpleDB" = dontDistribute super."hSimpleDB"; "hTalos" = dontDistribute super."hTalos"; "hTensor" = dontDistribute super."hTensor"; @@ -4172,6 +4180,7 @@ self: super: { "hub" = dontDistribute super."hub"; "hubigraph" = dontDistribute super."hubigraph"; "hubris" = dontDistribute super."hubris"; + "huckleberry" = dontDistribute super."huckleberry"; "huffman" = dontDistribute super."huffman"; "hugs2yc" = dontDistribute super."hugs2yc"; "hulk" = dontDistribute super."hulk"; @@ -4615,6 +4624,7 @@ self: super: { "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; + "latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll"; "latex-formulae-image" = dontDistribute super."latex-formulae-image"; "latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc"; "lattices" = doDistribute super."lattices_1_3"; @@ -4834,6 +4844,7 @@ self: super: { "luachunk" = dontDistribute super."luachunk"; "luautils" = dontDistribute super."luautils"; "lub" = dontDistribute super."lub"; + "lucid" = doDistribute super."lucid_2_9_2"; "lucid-foundation" = dontDistribute super."lucid-foundation"; "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; @@ -4905,6 +4916,7 @@ self: super: { "markov" = dontDistribute super."markov"; "markov-chain" = dontDistribute super."markov-chain"; "markov-processes" = dontDistribute super."markov-processes"; + "markup" = doDistribute super."markup_1_1_0"; "markup-preview" = dontDistribute super."markup-preview"; "marmalade-upload" = dontDistribute super."marmalade-upload"; "marquise" = dontDistribute super."marquise"; @@ -5080,6 +5092,7 @@ self: super: { "monads-fd" = dontDistribute super."monads-fd"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; + "mongoDB" = doDistribute super."mongoDB_2_0_8"; "mongodb-queue" = dontDistribute super."mongodb-queue"; "mongrel2-handler" = dontDistribute super."mongrel2-handler"; "monitor" = dontDistribute super."monitor"; @@ -5206,6 +5219,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = doDistribute super."nationstates_0_2_0_3"; + "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; "natural-numbers" = dontDistribute super."natural-numbers"; @@ -5531,6 +5545,7 @@ self: super: { "patch-combinators" = dontDistribute super."patch-combinators"; "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; + "path-extra" = dontDistribute super."path-extra"; "path-pieces" = doDistribute super."path-pieces_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; @@ -5628,8 +5643,10 @@ self: super: { "pinboard" = dontDistribute super."pinboard"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; + "pipes" = doDistribute super."pipes_4_1_6"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; + "pipes-cacophony" = dontDistribute super."pipes-cacophony"; "pipes-cellular" = dontDistribute super."pipes-cellular"; "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; @@ -6828,6 +6845,7 @@ self: super: { "svm-light-utils" = dontDistribute super."svm-light-utils"; "svm-simple" = dontDistribute super."svm-simple"; "svndump" = dontDistribute super."svndump"; + "swagger2" = dontDistribute super."swagger2"; "swapper" = dontDistribute super."swapper"; "swearjure" = dontDistribute super."swearjure"; "swf" = dontDistribute super."swf"; @@ -7188,6 +7206,7 @@ self: super: { "turing-music" = dontDistribute super."turing-music"; "turkish-deasciifier" = dontDistribute super."turkish-deasciifier"; "turni" = dontDistribute super."turni"; + "turtle" = doDistribute super."turtle_1_2_2"; "tweak" = dontDistribute super."tweak"; "twentefp" = dontDistribute super."twentefp"; "twentefp-eventloop-graphics" = dontDistribute super."twentefp-eventloop-graphics"; @@ -7361,6 +7380,7 @@ self: super: { "urldecode" = dontDistribute super."urldecode"; "urldisp-happstack" = dontDistribute super."urldisp-happstack"; "urlencoded" = dontDistribute super."urlencoded"; + "urlpath" = doDistribute super."urlpath_2_1_0"; "urn" = dontDistribute super."urn"; "urxml" = dontDistribute super."urxml"; "usb" = dontDistribute super."usb"; @@ -7480,6 +7500,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; + "wai-cors" = doDistribute super."wai-cors_0_2_3"; "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; @@ -7780,6 +7801,9 @@ self: super: { "yesod-pure" = dontDistribute super."yesod-pure"; "yesod-purescript" = dontDistribute super."yesod-purescript"; "yesod-raml" = dontDistribute super."yesod-raml"; + "yesod-raml-bin" = dontDistribute super."yesod-raml-bin"; + "yesod-raml-docs" = dontDistribute super."yesod-raml-docs"; + "yesod-raml-mock" = dontDistribute super."yesod-raml-mock"; "yesod-recaptcha" = dontDistribute super."yesod-recaptcha"; "yesod-routes" = dontDistribute super."yesod-routes"; "yesod-routes-flow" = dontDistribute super."yesod-routes-flow"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.12.nix b/pkgs/development/haskell-modules/configuration-lts-3.12.nix index a06ee12ae66..2a91b049abd 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.12.nix @@ -559,6 +559,7 @@ self: super: { "JsonGrammar" = dontDistribute super."JsonGrammar"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; "JuicyPixels-repa" = dontDistribute super."JuicyPixels-repa"; + "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; "JunkDB" = dontDistribute super."JunkDB"; "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; @@ -1102,6 +1103,7 @@ self: super: { "afv" = dontDistribute super."afv"; "agda-server" = dontDistribute super."agda-server"; "agda-snippets" = dontDistribute super."agda-snippets"; + "agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll"; "agum" = dontDistribute super."agum"; "aig" = dontDistribute super."aig"; "air" = dontDistribute super."air"; @@ -1624,6 +1626,7 @@ self: super: { "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; + "bson" = doDistribute super."bson_0_3_1"; "bson-generic" = dontDistribute super."bson-generic"; "bson-generics" = dontDistribute super."bson-generics"; "bson-lens" = dontDistribute super."bson-lens"; @@ -1847,6 +1850,7 @@ self: super: { "clafer" = dontDistribute super."clafer"; "claferIG" = dontDistribute super."claferIG"; "claferwiki" = dontDistribute super."claferwiki"; + "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; "clash" = dontDistribute super."clash"; "clash-ghc" = doDistribute super."clash-ghc_0_5_15"; @@ -2369,6 +2373,7 @@ self: super: { "dicom" = dontDistribute super."dicom"; "dictparser" = dontDistribute super."dictparser"; "diet" = dontDistribute super."diet"; + "diff-gestalt" = dontDistribute super."diff-gestalt"; "diff-parse" = dontDistribute super."diff-parse"; "diffarray" = dontDistribute super."diffarray"; "diffcabal" = dontDistribute super."diffcabal"; @@ -2454,6 +2459,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; "download" = dontDistribute super."download"; @@ -3027,6 +3033,7 @@ self: super: { "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph"; "ghc-server" = dontDistribute super."ghc-server"; + "ghc-session" = dontDistribute super."ghc-session"; "ghc-simple" = dontDistribute super."ghc-simple"; "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; @@ -3344,6 +3351,7 @@ self: super: { "hR" = dontDistribute super."hR"; "hRESP" = dontDistribute super."hRESP"; "hS3" = dontDistribute super."hS3"; + "hScraper" = dontDistribute super."hScraper"; "hSimpleDB" = dontDistribute super."hSimpleDB"; "hTalos" = dontDistribute super."hTalos"; "hTensor" = dontDistribute super."hTensor"; @@ -4163,6 +4171,7 @@ self: super: { "hub" = dontDistribute super."hub"; "hubigraph" = dontDistribute super."hubigraph"; "hubris" = dontDistribute super."hubris"; + "huckleberry" = dontDistribute super."huckleberry"; "huffman" = dontDistribute super."huffman"; "hugs2yc" = dontDistribute super."hugs2yc"; "hulk" = dontDistribute super."hulk"; @@ -4606,6 +4615,7 @@ self: super: { "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; + "latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll"; "latex-formulae-image" = dontDistribute super."latex-formulae-image"; "latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc"; "lattices" = doDistribute super."lattices_1_3"; @@ -4825,6 +4835,7 @@ self: super: { "luachunk" = dontDistribute super."luachunk"; "luautils" = dontDistribute super."luautils"; "lub" = dontDistribute super."lub"; + "lucid" = doDistribute super."lucid_2_9_2"; "lucid-foundation" = dontDistribute super."lucid-foundation"; "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; @@ -4896,6 +4907,7 @@ self: super: { "markov" = dontDistribute super."markov"; "markov-chain" = dontDistribute super."markov-chain"; "markov-processes" = dontDistribute super."markov-processes"; + "markup" = doDistribute super."markup_1_1_0"; "markup-preview" = dontDistribute super."markup-preview"; "marmalade-upload" = dontDistribute super."marmalade-upload"; "marquise" = dontDistribute super."marquise"; @@ -5070,6 +5082,7 @@ self: super: { "monads-fd" = dontDistribute super."monads-fd"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; + "mongoDB" = doDistribute super."mongoDB_2_0_8"; "mongodb-queue" = dontDistribute super."mongodb-queue"; "mongrel2-handler" = dontDistribute super."mongrel2-handler"; "monitor" = dontDistribute super."monitor"; @@ -5196,6 +5209,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = doDistribute super."nationstates_0_2_0_3"; + "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; "natural-numbers" = dontDistribute super."natural-numbers"; @@ -5521,6 +5535,7 @@ self: super: { "patch-combinators" = dontDistribute super."patch-combinators"; "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; + "path-extra" = dontDistribute super."path-extra"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; "pathtype" = dontDistribute super."pathtype"; @@ -5617,8 +5632,10 @@ self: super: { "pinboard" = dontDistribute super."pinboard"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; + "pipes" = doDistribute super."pipes_4_1_6"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; + "pipes-cacophony" = dontDistribute super."pipes-cacophony"; "pipes-cellular" = dontDistribute super."pipes-cellular"; "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; @@ -6817,6 +6834,7 @@ self: super: { "svm-light-utils" = dontDistribute super."svm-light-utils"; "svm-simple" = dontDistribute super."svm-simple"; "svndump" = dontDistribute super."svndump"; + "swagger2" = dontDistribute super."swagger2"; "swapper" = dontDistribute super."swapper"; "swearjure" = dontDistribute super."swearjure"; "swf" = dontDistribute super."swf"; @@ -7174,6 +7192,7 @@ self: super: { "turing-music" = dontDistribute super."turing-music"; "turkish-deasciifier" = dontDistribute super."turkish-deasciifier"; "turni" = dontDistribute super."turni"; + "turtle" = doDistribute super."turtle_1_2_2"; "tweak" = dontDistribute super."tweak"; "twentefp" = dontDistribute super."twentefp"; "twentefp-eventloop-graphics" = dontDistribute super."twentefp-eventloop-graphics"; @@ -7346,6 +7365,7 @@ self: super: { "urldecode" = dontDistribute super."urldecode"; "urldisp-happstack" = dontDistribute super."urldisp-happstack"; "urlencoded" = dontDistribute super."urlencoded"; + "urlpath" = doDistribute super."urlpath_2_1_0"; "urn" = dontDistribute super."urn"; "urxml" = dontDistribute super."urxml"; "usb" = dontDistribute super."usb"; @@ -7465,6 +7485,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; + "wai-cors" = doDistribute super."wai-cors_0_2_3"; "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; @@ -7765,6 +7786,9 @@ self: super: { "yesod-pure" = dontDistribute super."yesod-pure"; "yesod-purescript" = dontDistribute super."yesod-purescript"; "yesod-raml" = dontDistribute super."yesod-raml"; + "yesod-raml-bin" = dontDistribute super."yesod-raml-bin"; + "yesod-raml-docs" = dontDistribute super."yesod-raml-docs"; + "yesod-raml-mock" = dontDistribute super."yesod-raml-mock"; "yesod-recaptcha" = dontDistribute super."yesod-recaptcha"; "yesod-routes" = dontDistribute super."yesod-routes"; "yesod-routes-flow" = dontDistribute super."yesod-routes-flow"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.13.nix b/pkgs/development/haskell-modules/configuration-lts-3.13.nix new file mode 100644 index 00000000000..0577a3ec7fc --- /dev/null +++ b/pkgs/development/haskell-modules/configuration-lts-3.13.nix @@ -0,0 +1,7864 @@ +{ pkgs }: + +with import ./lib.nix { inherit pkgs; }; + +self: super: { + + # core libraries provided by the compiler + Cabal = null; + array = null; + base = null; + bin-package-db = null; + binary = null; + bytestring = null; + containers = null; + deepseq = null; + directory = null; + filepath = null; + ghc-prim = null; + hoopl = null; + hpc = null; + integer-gmp = null; + pretty = null; + process = null; + rts = null; + template-haskell = null; + time = null; + transformers = null; + unix = null; + + # lts-3.13 packages + "3d-graphics-examples" = dontDistribute super."3d-graphics-examples"; + "3dmodels" = dontDistribute super."3dmodels"; + "4Blocks" = dontDistribute super."4Blocks"; + "AAI" = dontDistribute super."AAI"; + "ABList" = dontDistribute super."ABList"; + "AC-Angle" = dontDistribute super."AC-Angle"; + "AC-Boolean" = dontDistribute super."AC-Boolean"; + "AC-BuildPlatform" = dontDistribute super."AC-BuildPlatform"; + "AC-Colour" = dontDistribute super."AC-Colour"; + "AC-EasyRaster-GTK" = dontDistribute super."AC-EasyRaster-GTK"; + "AC-HalfInteger" = dontDistribute super."AC-HalfInteger"; + "AC-MiniTest" = dontDistribute super."AC-MiniTest"; + "AC-PPM" = dontDistribute super."AC-PPM"; + "AC-Random" = dontDistribute super."AC-Random"; + "AC-Terminal" = dontDistribute super."AC-Terminal"; + "AC-VanillaArray" = dontDistribute super."AC-VanillaArray"; + "AC-Vector-Fancy" = dontDistribute super."AC-Vector-Fancy"; + "ACME" = dontDistribute super."ACME"; + "ADPfusion" = dontDistribute super."ADPfusion"; + "AERN-Basics" = dontDistribute super."AERN-Basics"; + "AERN-Net" = dontDistribute super."AERN-Net"; + "AERN-Real" = dontDistribute super."AERN-Real"; + "AERN-Real-Double" = dontDistribute super."AERN-Real-Double"; + "AERN-Real-Interval" = dontDistribute super."AERN-Real-Interval"; + "AERN-RnToRm" = dontDistribute super."AERN-RnToRm"; + "AERN-RnToRm-Plot" = dontDistribute super."AERN-RnToRm-Plot"; + "AES" = dontDistribute super."AES"; + "AGI" = dontDistribute super."AGI"; + "ALUT" = dontDistribute super."ALUT"; + "AMI" = dontDistribute super."AMI"; + "ANum" = dontDistribute super."ANum"; + "ASN1" = dontDistribute super."ASN1"; + "AVar" = dontDistribute super."AVar"; + "AWin32Console" = dontDistribute super."AWin32Console"; + "AbortT-monadstf" = dontDistribute super."AbortT-monadstf"; + "AbortT-mtl" = dontDistribute super."AbortT-mtl"; + "AbortT-transformers" = dontDistribute super."AbortT-transformers"; + "ActionKid" = dontDistribute super."ActionKid"; + "Adaptive" = dontDistribute super."Adaptive"; + "Adaptive-Blaisorblade" = dontDistribute super."Adaptive-Blaisorblade"; + "Advgame" = dontDistribute super."Advgame"; + "AesonBson" = dontDistribute super."AesonBson"; + "Agata" = dontDistribute super."Agata"; + "Agda-executable" = dontDistribute super."Agda-executable"; + "AhoCorasick" = dontDistribute super."AhoCorasick"; + "AlgorithmW" = dontDistribute super."AlgorithmW"; + "AlignmentAlgorithms" = dontDistribute super."AlignmentAlgorithms"; + "Allure" = dontDistribute super."Allure"; + "AndroidViewHierarchyImporter" = dontDistribute super."AndroidViewHierarchyImporter"; + "Animas" = dontDistribute super."Animas"; + "Annotations" = dontDistribute super."Annotations"; + "Ansi2Html" = dontDistribute super."Ansi2Html"; + "ApplePush" = dontDistribute super."ApplePush"; + "AppleScript" = dontDistribute super."AppleScript"; + "ApproxFun-hs" = dontDistribute super."ApproxFun-hs"; + "ArrayRef" = dontDistribute super."ArrayRef"; + "ArrowVHDL" = dontDistribute super."ArrowVHDL"; + "AspectAG" = dontDistribute super."AspectAG"; + "AttoBencode" = dontDistribute super."AttoBencode"; + "AttoJson" = dontDistribute super."AttoJson"; + "Attrac" = dontDistribute super."Attrac"; + "Aurochs" = dontDistribute super."Aurochs"; + "AutoForms" = dontDistribute super."AutoForms"; + "AvlTree" = dontDistribute super."AvlTree"; + "BASIC" = dontDistribute super."BASIC"; + "BCMtools" = dontDistribute super."BCMtools"; + "BNFC" = dontDistribute super."BNFC"; + "BNFC-meta" = dontDistribute super."BNFC-meta"; + "Baggins" = dontDistribute super."Baggins"; + "Bang" = dontDistribute super."Bang"; + "Barracuda" = dontDistribute super."Barracuda"; + "Befunge93" = dontDistribute super."Befunge93"; + "BenchmarkHistory" = dontDistribute super."BenchmarkHistory"; + "BerkeleyDB" = dontDistribute super."BerkeleyDB"; + "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; + "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BigPixel" = dontDistribute super."BigPixel"; + "Binpack" = dontDistribute super."Binpack"; + "Biobase" = dontDistribute super."Biobase"; + "BiobaseBlast" = dontDistribute super."BiobaseBlast"; + "BiobaseDotP" = dontDistribute super."BiobaseDotP"; + "BiobaseFR3D" = dontDistribute super."BiobaseFR3D"; + "BiobaseFasta" = dontDistribute super."BiobaseFasta"; + "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; + "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; + "BiobaseTurner" = dontDistribute super."BiobaseTurner"; + "BiobaseTypes" = dontDistribute super."BiobaseTypes"; + "BiobaseVienna" = dontDistribute super."BiobaseVienna"; + "BiobaseXNA" = dontDistribute super."BiobaseXNA"; + "BirdPP" = dontDistribute super."BirdPP"; + "BitSyntax" = dontDistribute super."BitSyntax"; + "Bitly" = dontDistribute super."Bitly"; + "Blobs" = dontDistribute super."Blobs"; + "BluePrintCSS" = dontDistribute super."BluePrintCSS"; + "Blueprint" = dontDistribute super."Blueprint"; + "Bookshelf" = dontDistribute super."Bookshelf"; + "Bravo" = dontDistribute super."Bravo"; + "BufferedSocket" = dontDistribute super."BufferedSocket"; + "Buster" = dontDistribute super."Buster"; + "CBOR" = dontDistribute super."CBOR"; + "CC-delcont" = dontDistribute super."CC-delcont"; + "CC-delcont-alt" = dontDistribute super."CC-delcont-alt"; + "CC-delcont-cxe" = dontDistribute super."CC-delcont-cxe"; + "CC-delcont-exc" = dontDistribute super."CC-delcont-exc"; + "CC-delcont-ref" = dontDistribute super."CC-delcont-ref"; + "CC-delcont-ref-tf" = dontDistribute super."CC-delcont-ref-tf"; + "CCA" = dontDistribute super."CCA"; + "CHXHtml" = dontDistribute super."CHXHtml"; + "CLASE" = dontDistribute super."CLASE"; + "CLI" = dontDistribute super."CLI"; + "CMCompare" = dontDistribute super."CMCompare"; + "CMQ" = dontDistribute super."CMQ"; + "COrdering" = dontDistribute super."COrdering"; + "CPBrainfuck" = dontDistribute super."CPBrainfuck"; + "CPL" = dontDistribute super."CPL"; + "CSPM-CoreLanguage" = dontDistribute super."CSPM-CoreLanguage"; + "CSPM-FiringRules" = dontDistribute super."CSPM-FiringRules"; + "CSPM-Frontend" = dontDistribute super."CSPM-Frontend"; + "CSPM-Interpreter" = dontDistribute super."CSPM-Interpreter"; + "CSPM-ToProlog" = dontDistribute super."CSPM-ToProlog"; + "CSPM-cspm" = dontDistribute super."CSPM-cspm"; + "CTRex" = dontDistribute super."CTRex"; + "CV" = dontDistribute super."CV"; + "CabalSearch" = dontDistribute super."CabalSearch"; + "Capabilities" = dontDistribute super."Capabilities"; + "Cardinality" = dontDistribute super."Cardinality"; + "CarneadesDSL" = dontDistribute super."CarneadesDSL"; + "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung"; + "Cartesian" = dontDistribute super."Cartesian"; + "Cascade" = dontDistribute super."Cascade"; + "Catana" = dontDistribute super."Catana"; + "Chart-gtk" = dontDistribute super."Chart-gtk"; + "Chart-simple" = dontDistribute super."Chart-simple"; + "CheatSheet" = dontDistribute super."CheatSheet"; + "Checked" = dontDistribute super."Checked"; + "Chitra" = dontDistribute super."Chitra"; + "ChristmasTree" = dontDistribute super."ChristmasTree"; + "CirruParser" = dontDistribute super."CirruParser"; + "ClassLaws" = dontDistribute super."ClassLaws"; + "ClassyPrelude" = dontDistribute super."ClassyPrelude"; + "Clean" = dontDistribute super."Clean"; + "Clipboard" = dontDistribute super."Clipboard"; + "ClustalParser" = dontDistribute super."ClustalParser"; + "Coadjute" = dontDistribute super."Coadjute"; + "Codec-Compression-LZF" = dontDistribute super."Codec-Compression-LZF"; + "Codec-Image-DevIL" = dontDistribute super."Codec-Image-DevIL"; + "Combinatorrent" = dontDistribute super."Combinatorrent"; + "Command" = dontDistribute super."Command"; + "Commando" = dontDistribute super."Commando"; + "ComonadSheet" = dontDistribute super."ComonadSheet"; + "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; + "Concurrential" = dontDistribute super."Concurrential"; + "Condor" = dontDistribute super."Condor"; + "ConfigFileTH" = dontDistribute super."ConfigFileTH"; + "Configger" = dontDistribute super."Configger"; + "Configurable" = dontDistribute super."Configurable"; + "ConsStream" = dontDistribute super."ConsStream"; + "Conscript" = dontDistribute super."Conscript"; + "ConstraintKinds" = dontDistribute super."ConstraintKinds"; + "Consumer" = dontDistribute super."Consumer"; + "ContArrow" = dontDistribute super."ContArrow"; + "ContextAlgebra" = dontDistribute super."ContextAlgebra"; + "Contract" = dontDistribute super."Contract"; + "Control-Engine" = dontDistribute super."Control-Engine"; + "Control-Monad-MultiPass" = dontDistribute super."Control-Monad-MultiPass"; + "Control-Monad-ST2" = dontDistribute super."Control-Monad-ST2"; + "CoreDump" = dontDistribute super."CoreDump"; + "CoreErlang" = dontDistribute super."CoreErlang"; + "CoreFoundation" = dontDistribute super."CoreFoundation"; + "Coroutine" = dontDistribute super."Coroutine"; + "CouchDB" = dontDistribute super."CouchDB"; + "Craft3e" = dontDistribute super."Craft3e"; + "Crypto" = dontDistribute super."Crypto"; + "CurryDB" = dontDistribute super."CurryDB"; + "DAG-Tournament" = dontDistribute super."DAG-Tournament"; + "DAV" = doDistribute super."DAV_1_0_7"; + "DBlimited" = dontDistribute super."DBlimited"; + "DBus" = dontDistribute super."DBus"; + "DCFL" = dontDistribute super."DCFL"; + "DMuCheck" = dontDistribute super."DMuCheck"; + "DOM" = dontDistribute super."DOM"; + "DP" = dontDistribute super."DP"; + "DPM" = dontDistribute super."DPM"; + "DSA" = dontDistribute super."DSA"; + "DSH" = dontDistribute super."DSH"; + "DSTM" = dontDistribute super."DSTM"; + "DTC" = dontDistribute super."DTC"; + "Dangerous" = dontDistribute super."Dangerous"; + "Dao" = dontDistribute super."Dao"; + "DarcsHelpers" = dontDistribute super."DarcsHelpers"; + "Data-Hash-Consistent" = dontDistribute super."Data-Hash-Consistent"; + "Data-Rope" = dontDistribute super."Data-Rope"; + "DataTreeView" = dontDistribute super."DataTreeView"; + "Deadpan-DDP" = dontDistribute super."Deadpan-DDP"; + "DebugTraceHelpers" = dontDistribute super."DebugTraceHelpers"; + "DecisionTree" = dontDistribute super."DecisionTree"; + "DeepArrow" = dontDistribute super."DeepArrow"; + "DefendTheKing" = dontDistribute super."DefendTheKing"; + "DescriptiveKeys" = dontDistribute super."DescriptiveKeys"; + "Dflow" = dontDistribute super."Dflow"; + "DifferenceLogic" = dontDistribute super."DifferenceLogic"; + "DifferentialEvolution" = dontDistribute super."DifferentialEvolution"; + "Digit" = dontDistribute super."Digit"; + "DigitalOcean" = dontDistribute super."DigitalOcean"; + "DimensionalHash" = dontDistribute super."DimensionalHash"; + "DirectSound" = dontDistribute super."DirectSound"; + "DisTract" = dontDistribute super."DisTract"; + "DiscussionSupportSystem" = dontDistribute super."DiscussionSupportSystem"; + "Dish" = dontDistribute super."Dish"; + "Dist" = dontDistribute super."Dist"; + "DistanceTransform" = dontDistribute super."DistanceTransform"; + "DistanceUnits" = dontDistribute super."DistanceUnits"; + "DnaProteinAlignment" = dontDistribute super."DnaProteinAlignment"; + "DocTest" = dontDistribute super."DocTest"; + "Docs" = dontDistribute super."Docs"; + "DrHylo" = dontDistribute super."DrHylo"; + "DrIFT" = dontDistribute super."DrIFT"; + "DrIFT-cabalized" = dontDistribute super."DrIFT-cabalized"; + "Dung" = dontDistribute super."Dung"; + "Dust" = dontDistribute super."Dust"; + "Dust-crypto" = dontDistribute super."Dust-crypto"; + "Dust-tools" = dontDistribute super."Dust-tools"; + "Dust-tools-pcap" = dontDistribute super."Dust-tools-pcap"; + "DynamicTimeWarp" = dontDistribute super."DynamicTimeWarp"; + "DysFRP" = dontDistribute super."DysFRP"; + "DysFRP-Cairo" = dontDistribute super."DysFRP-Cairo"; + "DysFRP-Craftwerk" = dontDistribute super."DysFRP-Craftwerk"; + "EEConfig" = dontDistribute super."EEConfig"; + "Earley" = doDistribute super."Earley_0_9_0"; + "Ebnf2ps" = dontDistribute super."Ebnf2ps"; + "EdisonAPI" = dontDistribute super."EdisonAPI"; + "EdisonCore" = dontDistribute super."EdisonCore"; + "EditTimeReport" = dontDistribute super."EditTimeReport"; + "EitherT" = dontDistribute super."EitherT"; + "Elm" = dontDistribute super."Elm"; + "Emping" = dontDistribute super."Emping"; + "Encode" = dontDistribute super."Encode"; + "EntrezHTTP" = dontDistribute super."EntrezHTTP"; + "EnumContainers" = dontDistribute super."EnumContainers"; + "EnumMap" = dontDistribute super."EnumMap"; + "Eq" = dontDistribute super."Eq"; + "EqualitySolver" = dontDistribute super."EqualitySolver"; + "EsounD" = dontDistribute super."EsounD"; + "EstProgress" = dontDistribute super."EstProgress"; + "EtaMOO" = dontDistribute super."EtaMOO"; + "Etage" = dontDistribute super."Etage"; + "Etage-Graph" = dontDistribute super."Etage-Graph"; + "Eternal10Seconds" = dontDistribute super."Eternal10Seconds"; + "Etherbunny" = dontDistribute super."Etherbunny"; + "EuroIT" = dontDistribute super."EuroIT"; + "Euterpea" = dontDistribute super."Euterpea"; + "EventSocket" = dontDistribute super."EventSocket"; + "Extra" = dontDistribute super."Extra"; + "FComp" = dontDistribute super."FComp"; + "FM-SBLEX" = dontDistribute super."FM-SBLEX"; + "FModExRaw" = dontDistribute super."FModExRaw"; + "FPretty" = dontDistribute super."FPretty"; + "FTGL" = dontDistribute super."FTGL"; + "FTGL-bytestring" = dontDistribute super."FTGL-bytestring"; + "FTPLine" = dontDistribute super."FTPLine"; + "Facts" = dontDistribute super."Facts"; + "FailureT" = dontDistribute super."FailureT"; + "FastxPipe" = dontDistribute super."FastxPipe"; + "FermatsLastMargin" = dontDistribute super."FermatsLastMargin"; + "FerryCore" = dontDistribute super."FerryCore"; + "Feval" = dontDistribute super."Feval"; + "FieldTrip" = dontDistribute super."FieldTrip"; + "FileManip" = dontDistribute super."FileManip"; + "FileManipCompat" = dontDistribute super."FileManipCompat"; + "FilePather" = dontDistribute super."FilePather"; + "FileSystem" = dontDistribute super."FileSystem"; + "Finance-Quote-Yahoo" = dontDistribute super."Finance-Quote-Yahoo"; + "Finance-Treasury" = dontDistribute super."Finance-Treasury"; + "FindBin" = dontDistribute super."FindBin"; + "FiniteMap" = dontDistribute super."FiniteMap"; + "FirstOrderTheory" = dontDistribute super."FirstOrderTheory"; + "FixedPoint-simple" = dontDistribute super."FixedPoint-simple"; + "Flippi" = dontDistribute super."Flippi"; + "Focus" = dontDistribute super."Focus"; + "Folly" = dontDistribute super."Folly"; + "ForSyDe" = dontDistribute super."ForSyDe"; + "ForkableT" = dontDistribute super."ForkableT"; + "FormalGrammars" = dontDistribute super."FormalGrammars"; + "Foster" = dontDistribute super."Foster"; + "FpMLv53" = dontDistribute super."FpMLv53"; + "Fractaler" = dontDistribute super."Fractaler"; + "Frames" = dontDistribute super."Frames"; + "Frank" = dontDistribute super."Frank"; + "FreeTypeGL" = dontDistribute super."FreeTypeGL"; + "FunGEn" = dontDistribute super."FunGEn"; + "Fungi" = dontDistribute super."Fungi"; + "GA" = dontDistribute super."GA"; + "GGg" = dontDistribute super."GGg"; + "GHood" = dontDistribute super."GHood"; + "GLFW" = dontDistribute super."GLFW"; + "GLFW-OGL" = dontDistribute super."GLFW-OGL"; + "GLFW-b" = dontDistribute super."GLFW-b"; + "GLFW-b-demo" = dontDistribute super."GLFW-b-demo"; + "GLFW-task" = dontDistribute super."GLFW-task"; + "GLHUI" = dontDistribute super."GLHUI"; + "GLM" = dontDistribute super."GLM"; + "GLMatrix" = dontDistribute super."GLMatrix"; + "GLURaw" = dontDistribute super."GLURaw"; + "GLUT" = dontDistribute super."GLUT"; + "GLUtil" = dontDistribute super."GLUtil"; + "GPX" = dontDistribute super."GPX"; + "GPipe" = dontDistribute super."GPipe"; + "GPipe-Collada" = dontDistribute super."GPipe-Collada"; + "GPipe-Examples" = dontDistribute super."GPipe-Examples"; + "GPipe-GLFW" = dontDistribute super."GPipe-GLFW"; + "GPipe-TextureLoad" = dontDistribute super."GPipe-TextureLoad"; + "GTALib" = dontDistribute super."GTALib"; + "Gamgine" = dontDistribute super."Gamgine"; + "Ganymede" = dontDistribute super."Ganymede"; + "GaussQuadIntegration" = dontDistribute super."GaussQuadIntegration"; + "GeBoP" = dontDistribute super."GeBoP"; + "GenI" = dontDistribute super."GenI"; + "GenSmsPdu" = dontDistribute super."GenSmsPdu"; + "Genbank" = dontDistribute super."Genbank"; + "GeneralTicTacToe" = dontDistribute super."GeneralTicTacToe"; + "GenussFold" = dontDistribute super."GenussFold"; + "GeoIp" = dontDistribute super."GeoIp"; + "GeocoderOpenCage" = dontDistribute super."GeocoderOpenCage"; + "Geodetic" = dontDistribute super."Geodetic"; + "GeomPredicates" = dontDistribute super."GeomPredicates"; + "GeomPredicates-SSE" = dontDistribute super."GeomPredicates-SSE"; + "GiST" = dontDistribute super."GiST"; + "GiveYouAHead" = dontDistribute super."GiveYouAHead"; + "GlomeTrace" = dontDistribute super."GlomeTrace"; + "GlomeVec" = dontDistribute super."GlomeVec"; + "GlomeView" = dontDistribute super."GlomeView"; + "GoogleChart" = dontDistribute super."GoogleChart"; + "GoogleDirections" = dontDistribute super."GoogleDirections"; + "GoogleSB" = dontDistribute super."GoogleSB"; + "GoogleSuggest" = dontDistribute super."GoogleSuggest"; + "GoogleTranslate" = dontDistribute super."GoogleTranslate"; + "GotoT-transformers" = dontDistribute super."GotoT-transformers"; + "GrammarProducts" = dontDistribute super."GrammarProducts"; + "Graph500" = dontDistribute super."Graph500"; + "GraphHammer" = dontDistribute super."GraphHammer"; + "GraphHammer-examples" = dontDistribute super."GraphHammer-examples"; + "Graphalyze" = dontDistribute super."Graphalyze"; + "Grempa" = dontDistribute super."Grempa"; + "GroteTrap" = dontDistribute super."GroteTrap"; + "Grow" = dontDistribute super."Grow"; + "GrowlNotify" = dontDistribute super."GrowlNotify"; + "Gtk2hsGenerics" = dontDistribute super."Gtk2hsGenerics"; + "GtkGLTV" = dontDistribute super."GtkGLTV"; + "GtkTV" = dontDistribute super."GtkTV"; + "GuiHaskell" = dontDistribute super."GuiHaskell"; + "GuiTV" = dontDistribute super."GuiTV"; + "H" = dontDistribute super."H"; + "HARM" = dontDistribute super."HARM"; + "HAppS-Data" = dontDistribute super."HAppS-Data"; + "HAppS-IxSet" = dontDistribute super."HAppS-IxSet"; + "HAppS-Server" = dontDistribute super."HAppS-Server"; + "HAppS-State" = dontDistribute super."HAppS-State"; + "HAppS-Util" = dontDistribute super."HAppS-Util"; + "HAppSHelpers" = dontDistribute super."HAppSHelpers"; + "HCL" = dontDistribute super."HCL"; + "HCard" = dontDistribute super."HCard"; + "HDBC" = dontDistribute super."HDBC"; + "HDBC-mysql" = dontDistribute super."HDBC-mysql"; + "HDBC-odbc" = dontDistribute super."HDBC-odbc"; + "HDBC-postgresql" = dontDistribute super."HDBC-postgresql"; + "HDBC-postgresql-hstore" = dontDistribute super."HDBC-postgresql-hstore"; + "HDBC-session" = dontDistribute super."HDBC-session"; + "HDBC-sqlite3" = dontDistribute super."HDBC-sqlite3"; + "HDRUtils" = dontDistribute super."HDRUtils"; + "HERA" = dontDistribute super."HERA"; + "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; + "HFuse" = dontDistribute super."HFuse"; + "HGL" = dontDistribute super."HGL"; + "HGamer3D" = dontDistribute super."HGamer3D"; + "HGamer3D-API" = dontDistribute super."HGamer3D-API"; + "HGamer3D-Audio" = dontDistribute super."HGamer3D-Audio"; + "HGamer3D-Bullet-Binding" = dontDistribute super."HGamer3D-Bullet-Binding"; + "HGamer3D-CAudio-Binding" = dontDistribute super."HGamer3D-CAudio-Binding"; + "HGamer3D-CEGUI-Binding" = dontDistribute super."HGamer3D-CEGUI-Binding"; + "HGamer3D-Common" = dontDistribute super."HGamer3D-Common"; + "HGamer3D-Data" = dontDistribute super."HGamer3D-Data"; + "HGamer3D-Enet-Binding" = dontDistribute super."HGamer3D-Enet-Binding"; + "HGamer3D-GUI" = dontDistribute super."HGamer3D-GUI"; + "HGamer3D-Graphics3D" = dontDistribute super."HGamer3D-Graphics3D"; + "HGamer3D-InputSystem" = dontDistribute super."HGamer3D-InputSystem"; + "HGamer3D-Network" = dontDistribute super."HGamer3D-Network"; + "HGamer3D-OIS-Binding" = dontDistribute super."HGamer3D-OIS-Binding"; + "HGamer3D-Ogre-Binding" = dontDistribute super."HGamer3D-Ogre-Binding"; + "HGamer3D-SDL2-Binding" = dontDistribute super."HGamer3D-SDL2-Binding"; + "HGamer3D-SFML-Binding" = dontDistribute super."HGamer3D-SFML-Binding"; + "HGamer3D-WinEvent" = dontDistribute super."HGamer3D-WinEvent"; + "HGamer3D-Wire" = dontDistribute super."HGamer3D-Wire"; + "HGraphStorage" = dontDistribute super."HGraphStorage"; + "HHDL" = dontDistribute super."HHDL"; + "HJScript" = dontDistribute super."HJScript"; + "HJVM" = dontDistribute super."HJVM"; + "HJavaScript" = dontDistribute super."HJavaScript"; + "HLearn-algebra" = dontDistribute super."HLearn-algebra"; + "HLearn-approximation" = dontDistribute super."HLearn-approximation"; + "HLearn-classification" = dontDistribute super."HLearn-classification"; + "HLearn-datastructures" = dontDistribute super."HLearn-datastructures"; + "HLearn-distributions" = dontDistribute super."HLearn-distributions"; + "HListPP" = dontDistribute super."HListPP"; + "HLogger" = dontDistribute super."HLogger"; + "HMM" = dontDistribute super."HMM"; + "HMap" = dontDistribute super."HMap"; + "HNM" = dontDistribute super."HNM"; + "HODE" = dontDistribute super."HODE"; + "HOpenCV" = dontDistribute super."HOpenCV"; + "HPDF" = dontDistribute super."HPDF"; + "HPath" = dontDistribute super."HPath"; + "HPi" = dontDistribute super."HPi"; + "HPlot" = dontDistribute super."HPlot"; + "HPong" = dontDistribute super."HPong"; + "HROOT" = dontDistribute super."HROOT"; + "HROOT-core" = dontDistribute super."HROOT-core"; + "HROOT-graf" = dontDistribute super."HROOT-graf"; + "HROOT-hist" = dontDistribute super."HROOT-hist"; + "HROOT-io" = dontDistribute super."HROOT-io"; + "HROOT-math" = dontDistribute super."HROOT-math"; + "HRay" = dontDistribute super."HRay"; + "HSFFIG" = dontDistribute super."HSFFIG"; + "HSGEP" = dontDistribute super."HSGEP"; + "HSH" = dontDistribute super."HSH"; + "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSlippyMap" = dontDistribute super."HSlippyMap"; + "HSmarty" = dontDistribute super."HSmarty"; + "HSoundFile" = dontDistribute super."HSoundFile"; + "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers"; + "HSvm" = dontDistribute super."HSvm"; + "HTTP-Simple" = dontDistribute super."HTTP-Simple"; + "HTab" = dontDistribute super."HTab"; + "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit-Diff" = dontDistribute super."HUnit-Diff"; + "HUnit-Plus" = dontDistribute super."HUnit-Plus"; + "HUnit-approx" = dontDistribute super."HUnit-approx"; + "HXMPP" = dontDistribute super."HXMPP"; + "HXQ" = dontDistribute super."HXQ"; + "HaLeX" = dontDistribute super."HaLeX"; + "HaMinitel" = dontDistribute super."HaMinitel"; + "HaPy" = dontDistribute super."HaPy"; + "HaRe" = dontDistribute super."HaRe"; + "HaTeX-meta" = dontDistribute super."HaTeX-meta"; + "HaTeX-qq" = dontDistribute super."HaTeX-qq"; + "HaVSA" = dontDistribute super."HaVSA"; + "Hach" = dontDistribute super."Hach"; + "HackMail" = dontDistribute super."HackMail"; + "Haggressive" = dontDistribute super."Haggressive"; + "HandlerSocketClient" = dontDistribute super."HandlerSocketClient"; + "Hangman" = dontDistribute super."Hangman"; + "HarmTrace" = dontDistribute super."HarmTrace"; + "HarmTrace-Base" = dontDistribute super."HarmTrace-Base"; + "HasGP" = dontDistribute super."HasGP"; + "Haschoo" = dontDistribute super."Haschoo"; + "Hashell" = dontDistribute super."Hashell"; + "HaskRel" = dontDistribute super."HaskRel"; + "HaskellForMaths" = dontDistribute super."HaskellForMaths"; + "HaskellLM" = dontDistribute super."HaskellLM"; + "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellNet-SSL" = dontDistribute super."HaskellNet-SSL"; + "HaskellTorrent" = dontDistribute super."HaskellTorrent"; + "HaskellTutorials" = dontDistribute super."HaskellTutorials"; + "Haskelloids" = dontDistribute super."Haskelloids"; + "Hawk" = dontDistribute super."Hawk"; + "Hayoo" = dontDistribute super."Hayoo"; + "Hclip" = dontDistribute super."Hclip"; + "Hedi" = dontDistribute super."Hedi"; + "HerbiePlugin" = dontDistribute super."HerbiePlugin"; + "Hermes" = dontDistribute super."Hermes"; + "Hieroglyph" = dontDistribute super."Hieroglyph"; + "HiggsSet" = dontDistribute super."HiggsSet"; + "Hipmunk" = dontDistribute super."Hipmunk"; + "HipmunkPlayground" = dontDistribute super."HipmunkPlayground"; + "Hish" = dontDistribute super."Hish"; + "Histogram" = dontDistribute super."Histogram"; + "Hmpf" = dontDistribute super."Hmpf"; + "Hoed" = dontDistribute super."Hoed"; + "HoleyMonoid" = dontDistribute super."HoleyMonoid"; + "Holumbus-Distribution" = dontDistribute super."Holumbus-Distribution"; + "Holumbus-MapReduce" = dontDistribute super."Holumbus-MapReduce"; + "Holumbus-Searchengine" = dontDistribute super."Holumbus-Searchengine"; + "Holumbus-Storage" = dontDistribute super."Holumbus-Storage"; + "Homology" = dontDistribute super."Homology"; + "HongoDB" = dontDistribute super."HongoDB"; + "HostAndPort" = dontDistribute super."HostAndPort"; + "Hricket" = dontDistribute super."Hricket"; + "Hs2lib" = dontDistribute super."Hs2lib"; + "HsASA" = dontDistribute super."HsASA"; + "HsHaruPDF" = dontDistribute super."HsHaruPDF"; + "HsHyperEstraier" = dontDistribute super."HsHyperEstraier"; + "HsJudy" = dontDistribute super."HsJudy"; + "HsOpenSSL-x509-system" = dontDistribute super."HsOpenSSL-x509-system"; + "HsParrot" = dontDistribute super."HsParrot"; + "HsPerl5" = dontDistribute super."HsPerl5"; + "HsSVN" = dontDistribute super."HsSVN"; + "HsSyck" = dontDistribute super."HsSyck"; + "HsTools" = dontDistribute super."HsTools"; + "Hsed" = dontDistribute super."Hsed"; + "Hsmtlib" = dontDistribute super."Hsmtlib"; + "HueAPI" = dontDistribute super."HueAPI"; + "HulkImport" = dontDistribute super."HulkImport"; + "Hungarian-Munkres" = dontDistribute super."Hungarian-Munkres"; + "IDynamic" = dontDistribute super."IDynamic"; + "IFS" = dontDistribute super."IFS"; + "INblobs" = dontDistribute super."INblobs"; + "IOR" = dontDistribute super."IOR"; + "IORefCAS" = dontDistribute super."IORefCAS"; + "IcoGrid" = dontDistribute super."IcoGrid"; + "Imlib" = dontDistribute super."Imlib"; + "ImperativeHaskell" = dontDistribute super."ImperativeHaskell"; + "IndentParser" = dontDistribute super."IndentParser"; + "IndexedList" = dontDistribute super."IndexedList"; + "InfixApplicative" = dontDistribute super."InfixApplicative"; + "Interpolation" = dontDistribute super."Interpolation"; + "Interpolation-maxs" = dontDistribute super."Interpolation-maxs"; + "IntervalMap" = dontDistribute super."IntervalMap"; + "Irc" = dontDistribute super."Irc"; + "IrrHaskell" = dontDistribute super."IrrHaskell"; + "IsNull" = dontDistribute super."IsNull"; + "JSON-Combinator" = dontDistribute super."JSON-Combinator"; + "JSON-Combinator-Examples" = dontDistribute super."JSON-Combinator-Examples"; + "JSONb" = dontDistribute super."JSONb"; + "JYU-Utils" = dontDistribute super."JYU-Utils"; + "JackMiniMix" = dontDistribute super."JackMiniMix"; + "Javasf" = dontDistribute super."Javasf"; + "Javav" = dontDistribute super."Javav"; + "JsContracts" = dontDistribute super."JsContracts"; + "JsonGrammar" = dontDistribute super."JsonGrammar"; + "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JuicyPixels-repa" = dontDistribute super."JuicyPixels-repa"; + "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; + "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; + "JunkDB" = dontDistribute super."JunkDB"; + "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; + "JunkDB-driver-hashtables" = dontDistribute super."JunkDB-driver-hashtables"; + "JustParse" = dontDistribute super."JustParse"; + "KMP" = dontDistribute super."KMP"; + "KSP" = dontDistribute super."KSP"; + "Kalman" = dontDistribute super."Kalman"; + "KdTree" = dontDistribute super."KdTree"; + "Ketchup" = dontDistribute super."Ketchup"; + "KiCS" = dontDistribute super."KiCS"; + "KiCS-debugger" = dontDistribute super."KiCS-debugger"; + "KiCS-prophecy" = dontDistribute super."KiCS-prophecy"; + "Kleislify" = dontDistribute super."Kleislify"; + "Konf" = dontDistribute super."Konf"; + "KyotoCabinet" = dontDistribute super."KyotoCabinet"; + "L-seed" = dontDistribute super."L-seed"; + "LDAP" = dontDistribute super."LDAP"; + "LRU" = dontDistribute super."LRU"; + "LTree" = dontDistribute super."LTree"; + "LambdaCalculator" = dontDistribute super."LambdaCalculator"; + "LambdaHack" = dontDistribute super."LambdaHack"; + "LambdaINet" = dontDistribute super."LambdaINet"; + "LambdaNet" = dontDistribute super."LambdaNet"; + "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; + "LambdaShell" = dontDistribute super."LambdaShell"; + "Lambdaya" = dontDistribute super."Lambdaya"; + "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; + "Lastik" = dontDistribute super."Lastik"; + "Lattices" = dontDistribute super."Lattices"; + "LazyVault" = dontDistribute super."LazyVault"; + "Level0" = dontDistribute super."Level0"; + "LibClang" = dontDistribute super."LibClang"; + "LibZip" = dontDistribute super."LibZip"; + "Limit" = dontDistribute super."Limit"; + "LinearSplit" = dontDistribute super."LinearSplit"; + "LinkChecker" = dontDistribute super."LinkChecker"; + "ListTree" = dontDistribute super."ListTree"; + "ListWriter" = dontDistribute super."ListWriter"; + "ListZipper" = dontDistribute super."ListZipper"; + "Logic" = dontDistribute super."Logic"; + "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees"; + "LogicGrowsOnTrees-MPI" = dontDistribute super."LogicGrowsOnTrees-MPI"; + "LogicGrowsOnTrees-network" = dontDistribute super."LogicGrowsOnTrees-network"; + "LogicGrowsOnTrees-processes" = dontDistribute super."LogicGrowsOnTrees-processes"; + "LslPlus" = dontDistribute super."LslPlus"; + "Lucu" = dontDistribute super."Lucu"; + "MC-Fold-DP" = dontDistribute super."MC-Fold-DP"; + "MFlow" = dontDistribute super."MFlow"; + "MHask" = dontDistribute super."MHask"; + "MSQueue" = dontDistribute super."MSQueue"; + "MTGBuilder" = dontDistribute super."MTGBuilder"; + "MagicHaskeller" = dontDistribute super."MagicHaskeller"; + "MailchimpSimple" = dontDistribute super."MailchimpSimple"; + "MaybeT" = dontDistribute super."MaybeT"; + "MaybeT-monads-tf" = dontDistribute super."MaybeT-monads-tf"; + "MaybeT-transformers" = dontDistribute super."MaybeT-transformers"; + "MazesOfMonad" = dontDistribute super."MazesOfMonad"; + "MeanShift" = dontDistribute super."MeanShift"; + "Measure" = dontDistribute super."Measure"; + "MetaHDBC" = dontDistribute super."MetaHDBC"; + "MetaObject" = dontDistribute super."MetaObject"; + "Metrics" = dontDistribute super."Metrics"; + "Mhailist" = dontDistribute super."Mhailist"; + "Michelangelo" = dontDistribute super."Michelangelo"; + "MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator"; + "MiniAgda" = dontDistribute super."MiniAgda"; + "MissingK" = dontDistribute super."MissingK"; + "MissingM" = dontDistribute super."MissingM"; + "MissingPy" = dontDistribute super."MissingPy"; + "Modulo" = dontDistribute super."Modulo"; + "Moe" = dontDistribute super."Moe"; + "MoeDict" = dontDistribute super."MoeDict"; + "MonadCatchIO-mtl" = dontDistribute super."MonadCatchIO-mtl"; + "MonadCatchIO-mtl-foreign" = dontDistribute super."MonadCatchIO-mtl-foreign"; + "MonadCatchIO-transformers-foreign" = dontDistribute super."MonadCatchIO-transformers-foreign"; + "MonadCompose" = dontDistribute super."MonadCompose"; + "MonadLab" = dontDistribute super."MonadLab"; + "MonadRandomLazy" = dontDistribute super."MonadRandomLazy"; + "MonadStack" = dontDistribute super."MonadStack"; + "Monadius" = dontDistribute super."Monadius"; + "Monaris" = dontDistribute super."Monaris"; + "Monatron" = dontDistribute super."Monatron"; + "Monatron-IO" = dontDistribute super."Monatron-IO"; + "Monocle" = dontDistribute super."Monocle"; + "MorseCode" = dontDistribute super."MorseCode"; + "MuCheck" = dontDistribute super."MuCheck"; + "MuCheck-HUnit" = dontDistribute super."MuCheck-HUnit"; + "MuCheck-Hspec" = dontDistribute super."MuCheck-Hspec"; + "MuCheck-QuickCheck" = dontDistribute super."MuCheck-QuickCheck"; + "MuCheck-SmallCheck" = dontDistribute super."MuCheck-SmallCheck"; + "Munkres" = dontDistribute super."Munkres"; + "Munkres-simple" = dontDistribute super."Munkres-simple"; + "MusicBrainz" = dontDistribute super."MusicBrainz"; + "MusicBrainz-libdiscid" = dontDistribute super."MusicBrainz-libdiscid"; + "MyPrimes" = dontDistribute super."MyPrimes"; + "NGrams" = dontDistribute super."NGrams"; + "NTRU" = dontDistribute super."NTRU"; + "NXT" = dontDistribute super."NXT"; + "NXTDSL" = dontDistribute super."NXTDSL"; + "NanoProlog" = dontDistribute super."NanoProlog"; + "NaturalLanguageAlphabets" = dontDistribute super."NaturalLanguageAlphabets"; + "NaturalSort" = dontDistribute super."NaturalSort"; + "NearContextAlgebra" = dontDistribute super."NearContextAlgebra"; + "Neks" = dontDistribute super."Neks"; + "NestedFunctor" = dontDistribute super."NestedFunctor"; + "NestedSampling" = dontDistribute super."NestedSampling"; + "NetSNMP" = dontDistribute super."NetSNMP"; + "NewBinary" = dontDistribute super."NewBinary"; + "Ninjas" = dontDistribute super."Ninjas"; + "NoSlow" = dontDistribute super."NoSlow"; + "NoTrace" = dontDistribute super."NoTrace"; + "Noise" = dontDistribute super."Noise"; + "Nomyx" = dontDistribute super."Nomyx"; + "Nomyx-Core" = dontDistribute super."Nomyx-Core"; + "Nomyx-Language" = dontDistribute super."Nomyx-Language"; + "Nomyx-Rules" = dontDistribute super."Nomyx-Rules"; + "Nomyx-Web" = dontDistribute super."Nomyx-Web"; + "NonEmpty" = dontDistribute super."NonEmpty"; + "NonEmptyList" = dontDistribute super."NonEmptyList"; + "NumLazyByteString" = dontDistribute super."NumLazyByteString"; + "NumberSieves" = dontDistribute super."NumberSieves"; + "Numbers" = dontDistribute super."Numbers"; + "Nussinov78" = dontDistribute super."Nussinov78"; + "Nutri" = dontDistribute super."Nutri"; + "OGL" = dontDistribute super."OGL"; + "OSM" = dontDistribute super."OSM"; + "OTP" = dontDistribute super."OTP"; + "Object" = dontDistribute super."Object"; + "ObjectIO" = dontDistribute super."ObjectIO"; + "ObjectName" = dontDistribute super."ObjectName"; + "Obsidian" = dontDistribute super."Obsidian"; + "OddWord" = dontDistribute super."OddWord"; + "Omega" = dontDistribute super."Omega"; + "OpenAFP" = dontDistribute super."OpenAFP"; + "OpenAFP-Utils" = dontDistribute super."OpenAFP-Utils"; + "OpenAL" = dontDistribute super."OpenAL"; + "OpenCL" = dontDistribute super."OpenCL"; + "OpenCLRaw" = dontDistribute super."OpenCLRaw"; + "OpenCLWrappers" = dontDistribute super."OpenCLWrappers"; + "OpenGL" = dontDistribute super."OpenGL"; + "OpenGLCheck" = dontDistribute super."OpenGLCheck"; + "OpenGLRaw" = dontDistribute super."OpenGLRaw"; + "OpenGLRaw21" = dontDistribute super."OpenGLRaw21"; + "OpenSCAD" = dontDistribute super."OpenSCAD"; + "OpenVG" = dontDistribute super."OpenVG"; + "OpenVGRaw" = dontDistribute super."OpenVGRaw"; + "Operads" = dontDistribute super."Operads"; + "OptDir" = dontDistribute super."OptDir"; + "OrPatterns" = dontDistribute super."OrPatterns"; + "OrchestrateDB" = dontDistribute super."OrchestrateDB"; + "OrderedBits" = dontDistribute super."OrderedBits"; + "Ordinals" = dontDistribute super."Ordinals"; + "PArrows" = dontDistribute super."PArrows"; + "PBKDF2" = dontDistribute super."PBKDF2"; + "PCLT" = dontDistribute super."PCLT"; + "PCLT-DB" = dontDistribute super."PCLT-DB"; + "PDBtools" = dontDistribute super."PDBtools"; + "PTQ" = dontDistribute super."PTQ"; + "PageIO" = dontDistribute super."PageIO"; + "Paillier" = dontDistribute super."Paillier"; + "PandocAgda" = dontDistribute super."PandocAgda"; + "Paraiso" = dontDistribute super."Paraiso"; + "Parry" = dontDistribute super."Parry"; + "ParsecTools" = dontDistribute super."ParsecTools"; + "ParserFunction" = dontDistribute super."ParserFunction"; + "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; + "PasswordGenerator" = dontDistribute super."PasswordGenerator"; + "PastePipe" = dontDistribute super."PastePipe"; + "Pathfinder" = dontDistribute super."Pathfinder"; + "Peano" = dontDistribute super."Peano"; + "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; + "PerfectHash" = dontDistribute super."PerfectHash"; + "PermuteEffects" = dontDistribute super."PermuteEffects"; + "Phsu" = dontDistribute super."Phsu"; + "Pipe" = dontDistribute super."Pipe"; + "Piso" = dontDistribute super."Piso"; + "PlayHangmanGame" = dontDistribute super."PlayHangmanGame"; + "PlayingCards" = dontDistribute super."PlayingCards"; + "Plot-ho-matic" = dontDistribute super."Plot-ho-matic"; + "PlslTools" = dontDistribute super."PlslTools"; + "Plural" = dontDistribute super."Plural"; + "Pollutocracy" = dontDistribute super."Pollutocracy"; + "PortFusion" = dontDistribute super."PortFusion"; + "PortMidi" = dontDistribute super."PortMidi"; + "PostgreSQL" = dontDistribute super."PostgreSQL"; + "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "Printf-TH" = dontDistribute super."Printf-TH"; + "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; + "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; + "PropLogic" = dontDistribute super."PropLogic"; + "Proper" = dontDistribute super."Proper"; + "ProxN" = dontDistribute super."ProxN"; + "Pugs" = dontDistribute super."Pugs"; + "Pup-Events" = dontDistribute super."Pup-Events"; + "Pup-Events-Client" = dontDistribute super."Pup-Events-Client"; + "Pup-Events-Demo" = dontDistribute super."Pup-Events-Demo"; + "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; + "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; + "QIO" = dontDistribute super."QIO"; + "QuadEdge" = dontDistribute super."QuadEdge"; + "QuadTree" = dontDistribute super."QuadTree"; + "QuickAnnotate" = dontDistribute super."QuickAnnotate"; + "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; + "Quickson" = dontDistribute super."Quickson"; + "R-pandoc" = dontDistribute super."R-pandoc"; + "RANSAC" = dontDistribute super."RANSAC"; + "RBTree" = dontDistribute super."RBTree"; + "RESTng" = dontDistribute super."RESTng"; + "RFC1751" = dontDistribute super."RFC1751"; + "RJson" = dontDistribute super."RJson"; + "RMP" = dontDistribute super."RMP"; + "RNAFold" = dontDistribute super."RNAFold"; + "RNAFoldProgs" = dontDistribute super."RNAFoldProgs"; + "RNAdesign" = dontDistribute super."RNAdesign"; + "RNAdraw" = dontDistribute super."RNAdraw"; + "RNAlien" = dontDistribute super."RNAlien"; + "RNAwolf" = dontDistribute super."RNAwolf"; + "RSA" = doDistribute super."RSA_2_1_0_3"; + "Raincat" = dontDistribute super."Raincat"; + "Random123" = dontDistribute super."Random123"; + "RandomDotOrg" = dontDistribute super."RandomDotOrg"; + "Randometer" = dontDistribute super."Randometer"; + "Range" = dontDistribute super."Range"; + "Ranged-sets" = dontDistribute super."Ranged-sets"; + "Ranka" = dontDistribute super."Ranka"; + "Rasenschach" = dontDistribute super."Rasenschach"; + "Redmine" = dontDistribute super."Redmine"; + "Ref" = dontDistribute super."Ref"; + "Referees" = dontDistribute super."Referees"; + "RepLib" = dontDistribute super."RepLib"; + "ReplicateEffects" = dontDistribute super."ReplicateEffects"; + "ReviewBoard" = dontDistribute super."ReviewBoard"; + "RichConditional" = dontDistribute super."RichConditional"; + "RollingDirectory" = dontDistribute super."RollingDirectory"; + "RoyalMonad" = dontDistribute super."RoyalMonad"; + "RxHaskell" = dontDistribute super."RxHaskell"; + "SBench" = dontDistribute super."SBench"; + "SConfig" = dontDistribute super."SConfig"; + "SDL" = dontDistribute super."SDL"; + "SDL-gfx" = dontDistribute super."SDL-gfx"; + "SDL-image" = dontDistribute super."SDL-image"; + "SDL-mixer" = dontDistribute super."SDL-mixer"; + "SDL-mpeg" = dontDistribute super."SDL-mpeg"; + "SDL-ttf" = dontDistribute super."SDL-ttf"; + "SDL2-ttf" = dontDistribute super."SDL2-ttf"; + "SFML" = dontDistribute super."SFML"; + "SFML-control" = dontDistribute super."SFML-control"; + "SFont" = dontDistribute super."SFont"; + "SG" = dontDistribute super."SG"; + "SGdemo" = dontDistribute super."SGdemo"; + "SHA2" = dontDistribute super."SHA2"; + "SMTPClient" = dontDistribute super."SMTPClient"; + "SNet" = dontDistribute super."SNet"; + "SQLDeps" = dontDistribute super."SQLDeps"; + "STL" = dontDistribute super."STL"; + "SVG2Q" = dontDistribute super."SVG2Q"; + "SVGPath" = dontDistribute super."SVGPath"; + "SWMMoutGetMB" = dontDistribute super."SWMMoutGetMB"; + "SableCC2Hs" = dontDistribute super."SableCC2Hs"; + "Safe" = dontDistribute super."Safe"; + "Salsa" = dontDistribute super."Salsa"; + "Saturnin" = dontDistribute super."Saturnin"; + "SciFlow" = dontDistribute super."SciFlow"; + "ScratchFs" = dontDistribute super."ScratchFs"; + "Scurry" = dontDistribute super."Scurry"; + "SegmentTree" = dontDistribute super."SegmentTree"; + "Semantique" = dontDistribute super."Semantique"; + "Semigroup" = dontDistribute super."Semigroup"; + "SeqAlign" = dontDistribute super."SeqAlign"; + "SessionLogger" = dontDistribute super."SessionLogger"; + "ShellCheck" = dontDistribute super."ShellCheck"; + "Shellac" = dontDistribute super."Shellac"; + "Shellac-compatline" = dontDistribute super."Shellac-compatline"; + "Shellac-editline" = dontDistribute super."Shellac-editline"; + "Shellac-haskeline" = dontDistribute super."Shellac-haskeline"; + "Shellac-readline" = dontDistribute super."Shellac-readline"; + "ShowF" = dontDistribute super."ShowF"; + "Shrub" = dontDistribute super."Shrub"; + "Shu-thing" = dontDistribute super."Shu-thing"; + "SimpleAES" = dontDistribute super."SimpleAES"; + "SimpleEA" = dontDistribute super."SimpleEA"; + "SimpleGL" = dontDistribute super."SimpleGL"; + "SimpleH" = dontDistribute super."SimpleH"; + "SimpleLog" = dontDistribute super."SimpleLog"; + "SizeCompare" = dontDistribute super."SizeCompare"; + "Slides" = dontDistribute super."Slides"; + "Smooth" = dontDistribute super."Smooth"; + "SmtLib" = dontDistribute super."SmtLib"; + "Snusmumrik" = dontDistribute super."Snusmumrik"; + "SoOSiM" = dontDistribute super."SoOSiM"; + "SoccerFun" = dontDistribute super."SoccerFun"; + "SoccerFunGL" = dontDistribute super."SoccerFunGL"; + "Sonnex" = dontDistribute super."Sonnex"; + "SourceGraph" = dontDistribute super."SourceGraph"; + "Southpaw" = dontDistribute super."Southpaw"; + "SpaceInvaders" = dontDistribute super."SpaceInvaders"; + "SpacePrivateers" = dontDistribute super."SpacePrivateers"; + "SpinCounter" = dontDistribute super."SpinCounter"; + "Spock" = doDistribute super."Spock_0_8_1_0"; + "Spock-auth" = dontDistribute super."Spock-auth"; + "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_1"; + "SpreadsheetML" = dontDistribute super."SpreadsheetML"; + "Sprig" = dontDistribute super."Sprig"; + "Stasis" = dontDistribute super."Stasis"; + "StateVar-transformer" = dontDistribute super."StateVar-transformer"; + "StatisticalMethods" = dontDistribute super."StatisticalMethods"; + "Stomp" = dontDistribute super."Stomp"; + "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib"; + "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell"; + "Strafunski-StrategyLib" = dontDistribute super."Strafunski-StrategyLib"; + "StrappedTemplates" = dontDistribute super."StrappedTemplates"; + "StrategyLib" = dontDistribute super."StrategyLib"; + "StrictBench" = dontDistribute super."StrictBench"; + "SuffixStructures" = dontDistribute super."SuffixStructures"; + "SybWidget" = dontDistribute super."SybWidget"; + "SyntaxMacros" = dontDistribute super."SyntaxMacros"; + "Sysmon" = dontDistribute super."Sysmon"; + "TBC" = dontDistribute super."TBC"; + "TBit" = dontDistribute super."TBit"; + "THEff" = dontDistribute super."THEff"; + "TTTAS" = dontDistribute super."TTTAS"; + "TV" = dontDistribute super."TV"; + "TYB" = dontDistribute super."TYB"; + "TableAlgebra" = dontDistribute super."TableAlgebra"; + "Tables" = dontDistribute super."Tables"; + "Tablify" = dontDistribute super."Tablify"; + "Tainted" = dontDistribute super."Tainted"; + "Takusen" = dontDistribute super."Takusen"; + "Tape" = dontDistribute super."Tape"; + "Taxonomy" = dontDistribute super."Taxonomy"; + "TaxonomyTools" = dontDistribute super."TaxonomyTools"; + "TeaHS" = dontDistribute super."TeaHS"; + "Tensor" = dontDistribute super."Tensor"; + "TernaryTrees" = dontDistribute super."TernaryTrees"; + "TestExplode" = dontDistribute super."TestExplode"; + "Theora" = dontDistribute super."Theora"; + "Thingie" = dontDistribute super."Thingie"; + "ThreadObjects" = dontDistribute super."ThreadObjects"; + "Thrift" = dontDistribute super."Thrift"; + "Tic-Tac-Toe" = dontDistribute super."Tic-Tac-Toe"; + "TicTacToe" = dontDistribute super."TicTacToe"; + "TigerHash" = dontDistribute super."TigerHash"; + "TimePiece" = dontDistribute super."TimePiece"; + "TinyLaunchbury" = dontDistribute super."TinyLaunchbury"; + "TinyURL" = dontDistribute super."TinyURL"; + "Titim" = dontDistribute super."Titim"; + "Top" = dontDistribute super."Top"; + "Tournament" = dontDistribute super."Tournament"; + "TraceUtils" = dontDistribute super."TraceUtils"; + "TransformersStepByStep" = dontDistribute super."TransformersStepByStep"; + "Transhare" = dontDistribute super."Transhare"; + "TreeCounter" = dontDistribute super."TreeCounter"; + "TreeStructures" = dontDistribute super."TreeStructures"; + "TreeT" = dontDistribute super."TreeT"; + "Treiber" = dontDistribute super."Treiber"; + "TrendGraph" = dontDistribute super."TrendGraph"; + "TrieMap" = dontDistribute super."TrieMap"; + "Twofish" = dontDistribute super."Twofish"; + "TypeClass" = dontDistribute super."TypeClass"; + "TypeCompose" = dontDistribute super."TypeCompose"; + "TypeIlluminator" = dontDistribute super."TypeIlluminator"; + "TypeNat" = dontDistribute super."TypeNat"; + "TypingTester" = dontDistribute super."TypingTester"; + "UISF" = dontDistribute super."UISF"; + "UMM" = dontDistribute super."UMM"; + "URLT" = dontDistribute super."URLT"; + "URLb" = dontDistribute super."URLb"; + "UTFTConverter" = dontDistribute super."UTFTConverter"; + "Unique" = dontDistribute super."Unique"; + "Unixutils-shadow" = dontDistribute super."Unixutils-shadow"; + "Updater" = dontDistribute super."Updater"; + "UrlDisp" = dontDistribute super."UrlDisp"; + "Useful" = dontDistribute super."Useful"; + "UtilityTM" = dontDistribute super."UtilityTM"; + "VKHS" = dontDistribute super."VKHS"; + "Validation" = dontDistribute super."Validation"; + "Vec" = dontDistribute super."Vec"; + "Vec-Boolean" = dontDistribute super."Vec-Boolean"; + "Vec-OpenGLRaw" = dontDistribute super."Vec-OpenGLRaw"; + "Vec-Transform" = dontDistribute super."Vec-Transform"; + "VecN" = dontDistribute super."VecN"; + "ViennaRNA-bindings" = dontDistribute super."ViennaRNA-bindings"; + "ViennaRNAParser" = dontDistribute super."ViennaRNAParser"; + "WAVE" = dontDistribute super."WAVE"; + "WL500gPControl" = dontDistribute super."WL500gPControl"; + "WL500gPLib" = dontDistribute super."WL500gPLib"; + "WMSigner" = dontDistribute super."WMSigner"; + "WURFL" = dontDistribute super."WURFL"; + "WXDiffCtrl" = dontDistribute super."WXDiffCtrl"; + "WashNGo" = dontDistribute super."WashNGo"; + "WaveFront" = dontDistribute super."WaveFront"; + "Weather" = dontDistribute super."Weather"; + "WebBits" = dontDistribute super."WebBits"; + "WebBits-Html" = dontDistribute super."WebBits-Html"; + "WebBits-multiplate" = dontDistribute super."WebBits-multiplate"; + "WebCont" = dontDistribute super."WebCont"; + "WeberLogic" = dontDistribute super."WeberLogic"; + "Webrexp" = dontDistribute super."Webrexp"; + "Wheb" = dontDistribute super."Wheb"; + "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; + "Win32-errors" = dontDistribute super."Win32-errors"; + "Win32-extras" = dontDistribute super."Win32-extras"; + "Win32-junction-point" = dontDistribute super."Win32-junction-point"; + "Win32-security" = dontDistribute super."Win32-security"; + "Win32-services" = dontDistribute super."Win32-services"; + "Win32-services-wrapper" = dontDistribute super."Win32-services-wrapper"; + "Wired" = dontDistribute super."Wired"; + "WordNet" = dontDistribute super."WordNet"; + "WordNet-ghc74" = dontDistribute super."WordNet-ghc74"; + "Wordlint" = dontDistribute super."Wordlint"; + "WxGeneric" = dontDistribute super."WxGeneric"; + "X11-extras" = dontDistribute super."X11-extras"; + "X11-rm" = dontDistribute super."X11-rm"; + "X11-xdamage" = dontDistribute super."X11-xdamage"; + "X11-xfixes" = dontDistribute super."X11-xfixes"; + "X11-xft" = dontDistribute super."X11-xft"; + "X11-xshape" = dontDistribute super."X11-xshape"; + "XAttr" = dontDistribute super."XAttr"; + "XInput" = dontDistribute super."XInput"; + "XMMS" = dontDistribute super."XMMS"; + "XMPP" = dontDistribute super."XMPP"; + "XSaiga" = dontDistribute super."XSaiga"; + "Xauth" = dontDistribute super."Xauth"; + "Xec" = dontDistribute super."Xec"; + "XmlHtmlWriter" = dontDistribute super."XmlHtmlWriter"; + "Xorshift128Plus" = dontDistribute super."Xorshift128Plus"; + "YACPong" = dontDistribute super."YACPong"; + "YFrob" = dontDistribute super."YFrob"; + "Yablog" = dontDistribute super."Yablog"; + "YamlReference" = dontDistribute super."YamlReference"; + "Yampa-core" = dontDistribute super."Yampa-core"; + "Yocto" = dontDistribute super."Yocto"; + "Yogurt" = dontDistribute super."Yogurt"; + "Yogurt-Standalone" = dontDistribute super."Yogurt-Standalone"; + "ZEBEDDE" = dontDistribute super."ZEBEDDE"; + "ZFS" = dontDistribute super."ZFS"; + "ZMachine" = dontDistribute super."ZMachine"; + "ZipFold" = dontDistribute super."ZipFold"; + "ZipperAG" = dontDistribute super."ZipperAG"; + "Zora" = dontDistribute super."Zora"; + "Zwaluw" = dontDistribute super."Zwaluw"; + "a50" = dontDistribute super."a50"; + "abacate" = dontDistribute super."abacate"; + "abc-puzzle" = dontDistribute super."abc-puzzle"; + "abcBridge" = dontDistribute super."abcBridge"; + "abcnotation" = dontDistribute super."abcnotation"; + "abeson" = dontDistribute super."abeson"; + "abstract-deque-tests" = dontDistribute super."abstract-deque-tests"; + "abstract-par-accelerate" = dontDistribute super."abstract-par-accelerate"; + "abt" = dontDistribute super."abt"; + "ac-machine" = dontDistribute super."ac-machine"; + "ac-machine-conduit" = dontDistribute super."ac-machine-conduit"; + "accelerate-arithmetic" = dontDistribute super."accelerate-arithmetic"; + "accelerate-cublas" = dontDistribute super."accelerate-cublas"; + "accelerate-cuda" = dontDistribute super."accelerate-cuda"; + "accelerate-cufft" = dontDistribute super."accelerate-cufft"; + "accelerate-examples" = dontDistribute super."accelerate-examples"; + "accelerate-fft" = dontDistribute super."accelerate-fft"; + "accelerate-fftw" = dontDistribute super."accelerate-fftw"; + "accelerate-fourier" = dontDistribute super."accelerate-fourier"; + "accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark"; + "accelerate-io" = dontDistribute super."accelerate-io"; + "accelerate-random" = dontDistribute super."accelerate-random"; + "accelerate-utility" = dontDistribute super."accelerate-utility"; + "accentuateus" = dontDistribute super."accentuateus"; + "access-time" = dontDistribute super."access-time"; + "acid-state" = doDistribute super."acid-state_0_12_4"; + "acid-state-dist" = dontDistribute super."acid-state-dist"; + "acid-state-tls" = dontDistribute super."acid-state-tls"; + "acl2" = dontDistribute super."acl2"; + "acme-all-monad" = dontDistribute super."acme-all-monad"; + "acme-box" = dontDistribute super."acme-box"; + "acme-cadre" = dontDistribute super."acme-cadre"; + "acme-cofunctor" = dontDistribute super."acme-cofunctor"; + "acme-colosson" = dontDistribute super."acme-colosson"; + "acme-comonad" = dontDistribute super."acme-comonad"; + "acme-cutegirl" = dontDistribute super."acme-cutegirl"; + "acme-dont" = dontDistribute super."acme-dont"; + "acme-flipping-tables" = dontDistribute super."acme-flipping-tables"; + "acme-grawlix" = dontDistribute super."acme-grawlix"; + "acme-hq9plus" = dontDistribute super."acme-hq9plus"; + "acme-http" = dontDistribute super."acme-http"; + "acme-inator" = dontDistribute super."acme-inator"; + "acme-io" = dontDistribute super."acme-io"; + "acme-lolcat" = dontDistribute super."acme-lolcat"; + "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; + "acme-memorandom" = dontDistribute super."acme-memorandom"; + "acme-microwave" = dontDistribute super."acme-microwave"; + "acme-miscorder" = dontDistribute super."acme-miscorder"; + "acme-missiles" = dontDistribute super."acme-missiles"; + "acme-now" = dontDistribute super."acme-now"; + "acme-numbersystem" = dontDistribute super."acme-numbersystem"; + "acme-omitted" = dontDistribute super."acme-omitted"; + "acme-one" = dontDistribute super."acme-one"; + "acme-operators" = dontDistribute super."acme-operators"; + "acme-php" = dontDistribute super."acme-php"; + "acme-pointful-numbers" = dontDistribute super."acme-pointful-numbers"; + "acme-realworld" = dontDistribute super."acme-realworld"; + "acme-safe" = dontDistribute super."acme-safe"; + "acme-schoenfinkel" = dontDistribute super."acme-schoenfinkel"; + "acme-strfry" = dontDistribute super."acme-strfry"; + "acme-stringly-typed" = dontDistribute super."acme-stringly-typed"; + "acme-strtok" = dontDistribute super."acme-strtok"; + "acme-timemachine" = dontDistribute super."acme-timemachine"; + "acme-year" = dontDistribute super."acme-year"; + "acme-zero" = dontDistribute super."acme-zero"; + "activehs" = dontDistribute super."activehs"; + "activehs-base" = dontDistribute super."activehs-base"; + "activitystreams-aeson" = dontDistribute super."activitystreams-aeson"; + "actor" = dontDistribute super."actor"; + "adaptive-containers" = dontDistribute super."adaptive-containers"; + "adaptive-tuple" = dontDistribute super."adaptive-tuple"; + "adb" = dontDistribute super."adb"; + "adblock2privoxy" = dontDistribute super."adblock2privoxy"; + "addLicenseInfo" = dontDistribute super."addLicenseInfo"; + "adhoc-network" = dontDistribute super."adhoc-network"; + "adict" = dontDistribute super."adict"; + "adobe-swatch-exchange" = dontDistribute super."adobe-swatch-exchange"; + "adp-multi" = dontDistribute super."adp-multi"; + "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; + "aeson" = doDistribute super."aeson_0_8_0_2"; + "aeson-applicative" = dontDistribute super."aeson-applicative"; + "aeson-bson" = dontDistribute super."aeson-bson"; + "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-diff" = dontDistribute super."aeson-diff"; + "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-lens" = dontDistribute super."aeson-lens"; + "aeson-native" = dontDistribute super."aeson-native"; + "aeson-schema" = doDistribute super."aeson-schema_0_3_0_7"; + "aeson-serialize" = dontDistribute super."aeson-serialize"; + "aeson-smart" = dontDistribute super."aeson-smart"; + "aeson-streams" = dontDistribute super."aeson-streams"; + "aeson-t" = dontDistribute super."aeson-t"; + "aeson-toolkit" = dontDistribute super."aeson-toolkit"; + "aeson-value-parser" = dontDistribute super."aeson-value-parser"; + "aeson-yak" = dontDistribute super."aeson-yak"; + "affine-invariant-ensemble-mcmc" = dontDistribute super."affine-invariant-ensemble-mcmc"; + "afis" = dontDistribute super."afis"; + "afv" = dontDistribute super."afv"; + "agda-server" = dontDistribute super."agda-server"; + "agda-snippets" = dontDistribute super."agda-snippets"; + "agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll"; + "agum" = dontDistribute super."agum"; + "aig" = dontDistribute super."aig"; + "air" = dontDistribute super."air"; + "air-extra" = dontDistribute super."air-extra"; + "air-spec" = dontDistribute super."air-spec"; + "air-th" = dontDistribute super."air-th"; + "airbrake" = dontDistribute super."airbrake"; + "airship" = dontDistribute super."airship"; + "aivika" = dontDistribute super."aivika"; + "aivika-experiment" = dontDistribute super."aivika-experiment"; + "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; + "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; + "aivika-experiment-diagrams" = dontDistribute super."aivika-experiment-diagrams"; + "aivika-transformers" = dontDistribute super."aivika-transformers"; + "ajhc" = dontDistribute super."ajhc"; + "al" = dontDistribute super."al"; + "alea" = dontDistribute super."alea"; + "alex-meta" = dontDistribute super."alex-meta"; + "alfred" = dontDistribute super."alfred"; + "algebra" = dontDistribute super."algebra"; + "algebra-dag" = dontDistribute super."algebra-dag"; + "algebra-sql" = dontDistribute super."algebra-sql"; + "algebraic" = dontDistribute super."algebraic"; + "algebraic-classes" = dontDistribute super."algebraic-classes"; + "align" = dontDistribute super."align"; + "align-text" = dontDistribute super."align-text"; + "aligned-foreignptr" = dontDistribute super."aligned-foreignptr"; + "allocated-processor" = dontDistribute super."allocated-processor"; + "alloy" = dontDistribute super."alloy"; + "alloy-proxy-fd" = dontDistribute super."alloy-proxy-fd"; + "almost-fix" = dontDistribute super."almost-fix"; + "alms" = dontDistribute super."alms"; + "alpha" = dontDistribute super."alpha"; + "alpino-tools" = dontDistribute super."alpino-tools"; + "alsa" = dontDistribute super."alsa"; + "alsa-core" = dontDistribute super."alsa-core"; + "alsa-gui" = dontDistribute super."alsa-gui"; + "alsa-midi" = dontDistribute super."alsa-midi"; + "alsa-mixer" = dontDistribute super."alsa-mixer"; + "alsa-pcm" = dontDistribute super."alsa-pcm"; + "alsa-pcm-tests" = dontDistribute super."alsa-pcm-tests"; + "alsa-seq" = dontDistribute super."alsa-seq"; + "alsa-seq-tests" = dontDistribute super."alsa-seq-tests"; + "altcomposition" = dontDistribute super."altcomposition"; + "alternative-io" = dontDistribute super."alternative-io"; + "altfloat" = dontDistribute super."altfloat"; + "alure" = dontDistribute super."alure"; + "amazon-emailer" = dontDistribute super."amazon-emailer"; + "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; + "amazon-products" = dontDistribute super."amazon-products"; + "amazonka" = doDistribute super."amazonka_0_3_6"; + "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; + "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; + "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; + "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_6"; + "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_6"; + "amazonka-cloudsearch" = doDistribute super."amazonka-cloudsearch_0_3_6"; + "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_6"; + "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_6"; + "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_6"; + "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_6"; + "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; + "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; + "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; + "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_0_3_6"; + "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_0_3_6"; + "amazonka-config" = doDistribute super."amazonka-config_0_3_6"; + "amazonka-core" = doDistribute super."amazonka-core_0_3_6"; + "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; + "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; + "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-ds" = dontDistribute super."amazonka-ds"; + "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; + "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; + "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_6_1"; + "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_6"; + "amazonka-efs" = dontDistribute super."amazonka-efs"; + "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_6"; + "amazonka-elasticbeanstalk" = doDistribute super."amazonka-elasticbeanstalk_0_3_6"; + "amazonka-elasticsearch" = dontDistribute super."amazonka-elasticsearch"; + "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_6"; + "amazonka-elb" = doDistribute super."amazonka-elb_0_3_6"; + "amazonka-emr" = doDistribute super."amazonka-emr_0_3_6"; + "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_6"; + "amazonka-iam" = doDistribute super."amazonka-iam_0_3_6"; + "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_6"; + "amazonka-inspector" = dontDistribute super."amazonka-inspector"; + "amazonka-iot" = dontDistribute super."amazonka-iot"; + "amazonka-iot-dataplane" = dontDistribute super."amazonka-iot-dataplane"; + "amazonka-kinesis" = doDistribute super."amazonka-kinesis_0_3_6"; + "amazonka-kinesis-firehose" = dontDistribute super."amazonka-kinesis-firehose"; + "amazonka-kms" = doDistribute super."amazonka-kms_0_3_6"; + "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_6"; + "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-ml" = doDistribute super."amazonka-ml_0_3_6"; + "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_6"; + "amazonka-rds" = doDistribute super."amazonka-rds_0_3_6"; + "amazonka-redshift" = doDistribute super."amazonka-redshift_0_3_6"; + "amazonka-route53" = doDistribute super."amazonka-route53_0_3_6_1"; + "amazonka-route53-domains" = doDistribute super."amazonka-route53-domains_0_3_6"; + "amazonka-s3" = doDistribute super."amazonka-s3_0_3_6"; + "amazonka-sdb" = doDistribute super."amazonka-sdb_0_3_6"; + "amazonka-ses" = doDistribute super."amazonka-ses_0_3_6"; + "amazonka-sns" = doDistribute super."amazonka-sns_0_3_6"; + "amazonka-sqs" = doDistribute super."amazonka-sqs_0_3_6"; + "amazonka-ssm" = doDistribute super."amazonka-ssm_0_3_6"; + "amazonka-storagegateway" = doDistribute super."amazonka-storagegateway_0_3_6"; + "amazonka-sts" = doDistribute super."amazonka-sts_0_3_6"; + "amazonka-support" = doDistribute super."amazonka-support_0_3_6"; + "amazonka-swf" = doDistribute super."amazonka-swf_0_3_6"; + "amazonka-test" = dontDistribute super."amazonka-test"; + "amazonka-waf" = dontDistribute super."amazonka-waf"; + "amazonka-workspaces" = doDistribute super."amazonka-workspaces_0_3_6"; + "ampersand" = dontDistribute super."ampersand"; + "amqp-conduit" = dontDistribute super."amqp-conduit"; + "amrun" = dontDistribute super."amrun"; + "analyze-client" = dontDistribute super."analyze-client"; + "anansi" = dontDistribute super."anansi"; + "anansi-hscolour" = dontDistribute super."anansi-hscolour"; + "anansi-pandoc" = dontDistribute super."anansi-pandoc"; + "anatomy" = dontDistribute super."anatomy"; + "android" = dontDistribute super."android"; + "android-lint-summary" = dontDistribute super."android-lint-summary"; + "animalcase" = dontDistribute super."animalcase"; + "annotated-wl-pprint" = doDistribute super."annotated-wl-pprint_0_6_0"; + "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; + "ansi-pretty" = dontDistribute super."ansi-pretty"; + "ansigraph" = dontDistribute super."ansigraph"; + "antagonist" = dontDistribute super."antagonist"; + "antfarm" = dontDistribute super."antfarm"; + "anticiv" = dontDistribute super."anticiv"; + "antigate" = dontDistribute super."antigate"; + "antimirov" = dontDistribute super."antimirov"; + "antiquoter" = dontDistribute super."antiquoter"; + "antisplice" = dontDistribute super."antisplice"; + "antlrc" = dontDistribute super."antlrc"; + "anydbm" = dontDistribute super."anydbm"; + "aosd" = dontDistribute super."aosd"; + "ap-reflect" = dontDistribute super."ap-reflect"; + "apache-md5" = dontDistribute super."apache-md5"; + "apelsin" = dontDistribute super."apelsin"; + "api-builder" = dontDistribute super."api-builder"; + "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; + "api-tools" = dontDistribute super."api-tools"; + "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-purescript" = dontDistribute super."apiary-purescript"; + "apis" = dontDistribute super."apis"; + "apotiki" = dontDistribute super."apotiki"; + "app-lens" = dontDistribute super."app-lens"; + "app-settings" = dontDistribute super."app-settings"; + "appc" = dontDistribute super."appc"; + "applicative-extras" = dontDistribute super."applicative-extras"; + "applicative-fail" = dontDistribute super."applicative-fail"; + "applicative-numbers" = dontDistribute super."applicative-numbers"; + "applicative-parsec" = dontDistribute super."applicative-parsec"; + "apportionment" = dontDistribute super."apportionment"; + "approx-rand-test" = dontDistribute super."approx-rand-test"; + "approximate-equality" = dontDistribute super."approximate-equality"; + "ar-timestamp-wiper" = dontDistribute super."ar-timestamp-wiper"; + "arb-fft" = dontDistribute super."arb-fft"; + "arbb-vm" = dontDistribute super."arbb-vm"; + "archive" = dontDistribute super."archive"; + "archiver" = dontDistribute super."archiver"; + "archlinux" = dontDistribute super."archlinux"; + "archlinux-web" = dontDistribute super."archlinux-web"; + "archnews" = dontDistribute super."archnews"; + "arff" = dontDistribute super."arff"; + "argon" = dontDistribute super."argon"; + "argparser" = dontDistribute super."argparser"; + "arguedit" = dontDistribute super."arguedit"; + "ariadne" = dontDistribute super."ariadne"; + "arion" = dontDistribute super."arion"; + "arith-encode" = dontDistribute super."arith-encode"; + "arithmatic" = dontDistribute super."arithmatic"; + "arithmetic" = dontDistribute super."arithmetic"; + "arithmoi" = dontDistribute super."arithmoi"; + "armada" = dontDistribute super."armada"; + "arpa" = dontDistribute super."arpa"; + "array-forth" = dontDistribute super."array-forth"; + "array-memoize" = dontDistribute super."array-memoize"; + "array-primops" = dontDistribute super."array-primops"; + "array-utils" = dontDistribute super."array-utils"; + "arrow-improve" = dontDistribute super."arrow-improve"; + "arrowapply-utils" = dontDistribute super."arrowapply-utils"; + "arrowp" = dontDistribute super."arrowp"; + "artery" = dontDistribute super."artery"; + "arx" = dontDistribute super."arx"; + "arxiv" = dontDistribute super."arxiv"; + "ascetic" = dontDistribute super."ascetic"; + "ascii" = dontDistribute super."ascii"; + "ascii-progress" = dontDistribute super."ascii-progress"; + "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; + "ascii85-conduit" = dontDistribute super."ascii85-conduit"; + "asic" = dontDistribute super."asic"; + "asil" = dontDistribute super."asil"; + "asn1-data" = dontDistribute super."asn1-data"; + "asn1dump" = dontDistribute super."asn1dump"; + "assembler" = dontDistribute super."assembler"; + "assert" = dontDistribute super."assert"; + "assert-failure" = dontDistribute super."assert-failure"; + "assertions" = dontDistribute super."assertions"; + "assimp" = dontDistribute super."assimp"; + "astar" = dontDistribute super."astar"; + "astrds" = dontDistribute super."astrds"; + "astview" = dontDistribute super."astview"; + "astview-utils" = dontDistribute super."astview-utils"; + "async-extras" = dontDistribute super."async-extras"; + "async-manager" = dontDistribute super."async-manager"; + "async-pool" = dontDistribute super."async-pool"; + "asynchronous-exceptions" = dontDistribute super."asynchronous-exceptions"; + "aterm" = dontDistribute super."aterm"; + "aterm-utils" = dontDistribute super."aterm-utils"; + "atl" = dontDistribute super."atl"; + "atlassian-connect-core" = dontDistribute super."atlassian-connect-core"; + "atlassian-connect-descriptor" = dontDistribute super."atlassian-connect-descriptor"; + "atmos" = dontDistribute super."atmos"; + "atmos-dimensional" = dontDistribute super."atmos-dimensional"; + "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atom" = dontDistribute super."atom"; + "atom-basic" = dontDistribute super."atom-basic"; + "atom-conduit" = dontDistribute super."atom-conduit"; + "atom-msp430" = dontDistribute super."atom-msp430"; + "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign"; + "atomic-primops-vector" = dontDistribute super."atomic-primops-vector"; + "atomic-write" = dontDistribute super."atomic-write"; + "atomo" = dontDistribute super."atomo"; + "attempt" = dontDistribute super."attempt"; + "atto-lisp" = dontDistribute super."atto-lisp"; + "attoparsec" = doDistribute super."attoparsec_0_12_1_6"; + "attoparsec-arff" = dontDistribute super."attoparsec-arff"; + "attoparsec-binary" = dontDistribute super."attoparsec-binary"; + "attoparsec-conduit" = dontDistribute super."attoparsec-conduit"; + "attoparsec-csv" = dontDistribute super."attoparsec-csv"; + "attoparsec-iteratee" = dontDistribute super."attoparsec-iteratee"; + "attoparsec-parsec" = dontDistribute super."attoparsec-parsec"; + "attoparsec-text" = dontDistribute super."attoparsec-text"; + "attoparsec-text-enumerator" = dontDistribute super."attoparsec-text-enumerator"; + "attosplit" = dontDistribute super."attosplit"; + "atuin" = dontDistribute super."atuin"; + "audacity" = dontDistribute super."audacity"; + "audiovisual" = dontDistribute super."audiovisual"; + "augeas" = dontDistribute super."augeas"; + "augur" = dontDistribute super."augur"; + "aur" = dontDistribute super."aur"; + "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; + "authenticate-ldap" = dontDistribute super."authenticate-ldap"; + "authinfo-hs" = dontDistribute super."authinfo-hs"; + "authoring" = dontDistribute super."authoring"; + "autonix-deps" = dontDistribute super."autonix-deps"; + "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5"; + "autoproc" = dontDistribute super."autoproc"; + "avahi" = dontDistribute super."avahi"; + "avatar-generator" = dontDistribute super."avatar-generator"; + "average" = dontDistribute super."average"; + "avers" = dontDistribute super."avers"; + "avl-static" = dontDistribute super."avl-static"; + "avr-shake" = dontDistribute super."avr-shake"; + "awesomium" = dontDistribute super."awesomium"; + "awesomium-glut" = dontDistribute super."awesomium-glut"; + "awesomium-raw" = dontDistribute super."awesomium-raw"; + "aws" = doDistribute super."aws_0_12_1"; + "aws-cloudfront-signer" = dontDistribute super."aws-cloudfront-signer"; + "aws-configuration-tools" = dontDistribute super."aws-configuration-tools"; + "aws-dynamodb-conduit" = dontDistribute super."aws-dynamodb-conduit"; + "aws-dynamodb-streams" = dontDistribute super."aws-dynamodb-streams"; + "aws-ec2" = dontDistribute super."aws-ec2"; + "aws-elastic-transcoder" = dontDistribute super."aws-elastic-transcoder"; + "aws-general" = dontDistribute super."aws-general"; + "aws-kinesis" = dontDistribute super."aws-kinesis"; + "aws-kinesis-client" = dontDistribute super."aws-kinesis-client"; + "aws-kinesis-reshard" = dontDistribute super."aws-kinesis-reshard"; + "aws-lambda" = dontDistribute super."aws-lambda"; + "aws-performance-tests" = dontDistribute super."aws-performance-tests"; + "aws-route53" = dontDistribute super."aws-route53"; + "aws-sdk" = dontDistribute super."aws-sdk"; + "aws-sdk-text-converter" = dontDistribute super."aws-sdk-text-converter"; + "aws-sdk-xml-unordered" = dontDistribute super."aws-sdk-xml-unordered"; + "aws-sign4" = dontDistribute super."aws-sign4"; + "aws-sns" = dontDistribute super."aws-sns"; + "azure-acs" = dontDistribute super."azure-acs"; + "azure-service-api" = dontDistribute super."azure-service-api"; + "azure-servicebus" = dontDistribute super."azure-servicebus"; + "azurify" = dontDistribute super."azurify"; + "b-tree" = dontDistribute super."b-tree"; + "babylon" = dontDistribute super."babylon"; + "backdropper" = dontDistribute super."backdropper"; + "backtracking-exceptions" = dontDistribute super."backtracking-exceptions"; + "backward-state" = dontDistribute super."backward-state"; + "bacteria" = dontDistribute super."bacteria"; + "bag" = dontDistribute super."bag"; + "bamboo" = dontDistribute super."bamboo"; + "bamboo-launcher" = dontDistribute super."bamboo-launcher"; + "bamboo-plugin-highlight" = dontDistribute super."bamboo-plugin-highlight"; + "bamboo-plugin-photo" = dontDistribute super."bamboo-plugin-photo"; + "bamboo-theme-blueprint" = dontDistribute super."bamboo-theme-blueprint"; + "bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5"; + "bamse" = dontDistribute super."bamse"; + "bamstats" = dontDistribute super."bamstats"; + "banwords" = dontDistribute super."banwords"; + "barchart" = dontDistribute super."barchart"; + "barcodes-code128" = dontDistribute super."barcodes-code128"; + "barecheck" = dontDistribute super."barecheck"; + "barley" = dontDistribute super."barley"; + "barrie" = dontDistribute super."barrie"; + "barrier" = dontDistribute super."barrier"; + "barrier-monad" = dontDistribute super."barrier-monad"; + "base-generics" = dontDistribute super."base-generics"; + "base-io-access" = dontDistribute super."base-io-access"; + "base-noprelude" = dontDistribute super."base-noprelude"; + "base32-bytestring" = dontDistribute super."base32-bytestring"; + "base58-bytestring" = dontDistribute super."base58-bytestring"; + "base58address" = dontDistribute super."base58address"; + "base64-conduit" = dontDistribute super."base64-conduit"; + "base91" = dontDistribute super."base91"; + "basex-client" = dontDistribute super."basex-client"; + "bash" = dontDistribute super."bash"; + "basic-lens" = dontDistribute super."basic-lens"; + "basic-sop" = dontDistribute super."basic-sop"; + "baskell" = dontDistribute super."baskell"; + "battlenet" = dontDistribute super."battlenet"; + "battlenet-yesod" = dontDistribute super."battlenet-yesod"; + "battleships" = dontDistribute super."battleships"; + "bayes-stack" = dontDistribute super."bayes-stack"; + "bbdb" = dontDistribute super."bbdb"; + "bcrypt" = doDistribute super."bcrypt_0_0_6"; + "bdd" = dontDistribute super."bdd"; + "bdelta" = dontDistribute super."bdelta"; + "bdo" = dontDistribute super."bdo"; + "beamable" = dontDistribute super."beamable"; + "beautifHOL" = dontDistribute super."beautifHOL"; + "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; + "bein" = dontDistribute super."bein"; + "benchmark-function" = dontDistribute super."benchmark-function"; + "benchpress" = dontDistribute super."benchpress"; + "bencoding" = dontDistribute super."bencoding"; + "berkeleydb" = dontDistribute super."berkeleydb"; + "berp" = dontDistribute super."berp"; + "bert" = dontDistribute super."bert"; + "besout" = dontDistribute super."besout"; + "bet" = dontDistribute super."bet"; + "betacode" = dontDistribute super."betacode"; + "between" = dontDistribute super."between"; + "bf-cata" = dontDistribute super."bf-cata"; + "bff" = dontDistribute super."bff"; + "bff-mono" = dontDistribute super."bff-mono"; + "bgmax" = dontDistribute super."bgmax"; + "bgzf" = dontDistribute super."bgzf"; + "bibtex" = dontDistribute super."bibtex"; + "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; + "bidispec" = dontDistribute super."bidispec"; + "bidispec-extras" = dontDistribute super."bidispec-extras"; + "billboard-parser" = dontDistribute super."billboard-parser"; + "billeksah-forms" = dontDistribute super."billeksah-forms"; + "billeksah-main" = dontDistribute super."billeksah-main"; + "billeksah-main-static" = dontDistribute super."billeksah-main-static"; + "billeksah-pane" = dontDistribute super."billeksah-pane"; + "billeksah-services" = dontDistribute super."billeksah-services"; + "bimap" = dontDistribute super."bimap"; + "bimap-server" = dontDistribute super."bimap-server"; + "bimaps" = dontDistribute super."bimaps"; + "binary-bits" = dontDistribute super."binary-bits"; + "binary-communicator" = dontDistribute super."binary-communicator"; + "binary-derive" = dontDistribute super."binary-derive"; + "binary-enum" = dontDistribute super."binary-enum"; + "binary-file" = dontDistribute super."binary-file"; + "binary-generic" = dontDistribute super."binary-generic"; + "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; + "binary-literal-qq" = dontDistribute super."binary-literal-qq"; + "binary-protocol" = dontDistribute super."binary-protocol"; + "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq"; + "binary-shared" = dontDistribute super."binary-shared"; + "binary-state" = dontDistribute super."binary-state"; + "binary-store" = dontDistribute super."binary-store"; + "binary-streams" = dontDistribute super."binary-streams"; + "binary-strict" = dontDistribute super."binary-strict"; + "binary-typed" = dontDistribute super."binary-typed"; + "binarydefer" = dontDistribute super."binarydefer"; + "bind-marshal" = dontDistribute super."bind-marshal"; + "binding-core" = dontDistribute super."binding-core"; + "binding-gtk" = dontDistribute super."binding-gtk"; + "binding-wx" = dontDistribute super."binding-wx"; + "bindings" = dontDistribute super."bindings"; + "bindings-EsounD" = dontDistribute super."bindings-EsounD"; + "bindings-GLFW" = dontDistribute super."bindings-GLFW"; + "bindings-K8055" = dontDistribute super."bindings-K8055"; + "bindings-apr" = dontDistribute super."bindings-apr"; + "bindings-apr-util" = dontDistribute super."bindings-apr-util"; + "bindings-audiofile" = dontDistribute super."bindings-audiofile"; + "bindings-bfd" = dontDistribute super."bindings-bfd"; + "bindings-cctools" = dontDistribute super."bindings-cctools"; + "bindings-codec2" = dontDistribute super."bindings-codec2"; + "bindings-common" = dontDistribute super."bindings-common"; + "bindings-dc1394" = dontDistribute super."bindings-dc1394"; + "bindings-directfb" = dontDistribute super."bindings-directfb"; + "bindings-eskit" = dontDistribute super."bindings-eskit"; + "bindings-fann" = dontDistribute super."bindings-fann"; + "bindings-fluidsynth" = dontDistribute super."bindings-fluidsynth"; + "bindings-friso" = dontDistribute super."bindings-friso"; + "bindings-glib" = dontDistribute super."bindings-glib"; + "bindings-gobject" = dontDistribute super."bindings-gobject"; + "bindings-gpgme" = dontDistribute super."bindings-gpgme"; + "bindings-gsl" = dontDistribute super."bindings-gsl"; + "bindings-gts" = dontDistribute super."bindings-gts"; + "bindings-hamlib" = dontDistribute super."bindings-hamlib"; + "bindings-hdf5" = dontDistribute super."bindings-hdf5"; + "bindings-levmar" = dontDistribute super."bindings-levmar"; + "bindings-libcddb" = dontDistribute super."bindings-libcddb"; + "bindings-libffi" = dontDistribute super."bindings-libffi"; + "bindings-libftdi" = dontDistribute super."bindings-libftdi"; + "bindings-librrd" = dontDistribute super."bindings-librrd"; + "bindings-libstemmer" = dontDistribute super."bindings-libstemmer"; + "bindings-libusb" = dontDistribute super."bindings-libusb"; + "bindings-libv4l2" = dontDistribute super."bindings-libv4l2"; + "bindings-libzip" = dontDistribute super."bindings-libzip"; + "bindings-linux-videodev2" = dontDistribute super."bindings-linux-videodev2"; + "bindings-lxc" = dontDistribute super."bindings-lxc"; + "bindings-mmap" = dontDistribute super."bindings-mmap"; + "bindings-mpdecimal" = dontDistribute super."bindings-mpdecimal"; + "bindings-nettle" = dontDistribute super."bindings-nettle"; + "bindings-parport" = dontDistribute super."bindings-parport"; + "bindings-portaudio" = dontDistribute super."bindings-portaudio"; + "bindings-posix" = dontDistribute super."bindings-posix"; + "bindings-potrace" = dontDistribute super."bindings-potrace"; + "bindings-ppdev" = dontDistribute super."bindings-ppdev"; + "bindings-saga-cmd" = dontDistribute super."bindings-saga-cmd"; + "bindings-sane" = dontDistribute super."bindings-sane"; + "bindings-sc3" = dontDistribute super."bindings-sc3"; + "bindings-sipc" = dontDistribute super."bindings-sipc"; + "bindings-sophia" = dontDistribute super."bindings-sophia"; + "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; + "bindings-svm" = dontDistribute super."bindings-svm"; + "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-yices" = dontDistribute super."bindings-yices"; + "bindynamic" = dontDistribute super."bindynamic"; + "binembed" = dontDistribute super."binembed"; + "binembed-example" = dontDistribute super."binembed-example"; + "bio" = dontDistribute super."bio"; + "biophd" = dontDistribute super."biophd"; + "biosff" = dontDistribute super."biosff"; + "biostockholm" = dontDistribute super."biostockholm"; + "bird" = dontDistribute super."bird"; + "bit-array" = dontDistribute super."bit-array"; + "bit-vector" = dontDistribute super."bit-vector"; + "bitarray" = dontDistribute super."bitarray"; + "bitcoin-rpc" = dontDistribute super."bitcoin-rpc"; + "bitly-cli" = dontDistribute super."bitly-cli"; + "bitmap" = dontDistribute super."bitmap"; + "bitmap-opengl" = dontDistribute super."bitmap-opengl"; + "bitmaps" = dontDistribute super."bitmaps"; + "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-conduit" = dontDistribute super."bits-conduit"; + "bits-extras" = dontDistribute super."bits-extras"; + "bitset" = dontDistribute super."bitset"; + "bitspeak" = dontDistribute super."bitspeak"; + "bitstream" = dontDistribute super."bitstream"; + "bitstring" = dontDistribute super."bitstring"; + "bittorrent" = dontDistribute super."bittorrent"; + "bitvec" = dontDistribute super."bitvec"; + "bitx-bitcoin" = dontDistribute super."bitx-bitcoin"; + "bk-tree" = dontDistribute super."bk-tree"; + "bkr" = dontDistribute super."bkr"; + "bktrees" = dontDistribute super."bktrees"; + "bla" = dontDistribute super."bla"; + "black-jewel" = dontDistribute super."black-jewel"; + "blacktip" = dontDistribute super."blacktip"; + "blakesum" = dontDistribute super."blakesum"; + "blakesum-demo" = dontDistribute super."blakesum-demo"; + "blank-canvas" = dontDistribute super."blank-canvas"; + "blas" = dontDistribute super."blas"; + "blas-hs" = dontDistribute super."blas-hs"; + "blaze" = dontDistribute super."blaze"; + "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; + "blaze-from-html" = dontDistribute super."blaze-from-html"; + "blaze-html-contrib" = dontDistribute super."blaze-html-contrib"; + "blaze-html-hexpat" = dontDistribute super."blaze-html-hexpat"; + "blaze-html-truncate" = dontDistribute super."blaze-html-truncate"; + "blaze-json" = dontDistribute super."blaze-json"; + "blaze-shields" = dontDistribute super."blaze-shields"; + "blaze-textual-native" = dontDistribute super."blaze-textual-native"; + "blazeMarker" = dontDistribute super."blazeMarker"; + "blink1" = dontDistribute super."blink1"; + "blip" = dontDistribute super."blip"; + "bliplib" = dontDistribute super."bliplib"; + "blocking-transactions" = dontDistribute super."blocking-transactions"; + "blogination" = dontDistribute super."blogination"; + "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; + "bloxorz" = dontDistribute super."bloxorz"; + "blubber" = dontDistribute super."blubber"; + "blubber-server" = dontDistribute super."blubber-server"; + "bluetile" = dontDistribute super."bluetile"; + "bluetileutils" = dontDistribute super."bluetileutils"; + "blunt" = dontDistribute super."blunt"; + "board-games" = dontDistribute super."board-games"; + "bogre-banana" = dontDistribute super."bogre-banana"; + "boolean-list" = dontDistribute super."boolean-list"; + "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; + "boolexpr" = dontDistribute super."boolexpr"; + "bools" = dontDistribute super."bools"; + "boolsimplifier" = dontDistribute super."boolsimplifier"; + "boomange" = dontDistribute super."boomange"; + "boomerang" = dontDistribute super."boomerang"; + "boomslang" = dontDistribute super."boomslang"; + "borel" = dontDistribute super."borel"; + "bot" = dontDistribute super."bot"; + "both" = dontDistribute super."both"; + "botpp" = dontDistribute super."botpp"; + "bound-gen" = dontDistribute super."bound-gen"; + "bounded-tchan" = dontDistribute super."bounded-tchan"; + "boundingboxes" = dontDistribute super."boundingboxes"; + "bpann" = dontDistribute super."bpann"; + "brainfuck-monad" = dontDistribute super."brainfuck-monad"; + "brainfuck-tut" = dontDistribute super."brainfuck-tut"; + "break" = dontDistribute super."break"; + "breakout" = dontDistribute super."breakout"; + "breve" = dontDistribute super."breve"; + "brians-brain" = dontDistribute super."brians-brain"; + "brick" = dontDistribute super."brick"; + "brillig" = dontDistribute super."brillig"; + "broccoli" = dontDistribute super."broccoli"; + "broker-haskell" = dontDistribute super."broker-haskell"; + "bsd-sysctl" = dontDistribute super."bsd-sysctl"; + "bson-generic" = dontDistribute super."bson-generic"; + "bson-generics" = dontDistribute super."bson-generics"; + "bson-lens" = dontDistribute super."bson-lens"; + "bson-mapping" = dontDistribute super."bson-mapping"; + "bspack" = dontDistribute super."bspack"; + "bsparse" = dontDistribute super."bsparse"; + "btree-concurrent" = dontDistribute super."btree-concurrent"; + "buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson"; + "bugzilla" = dontDistribute super."bugzilla"; + "buildable" = dontDistribute super."buildable"; + "buildbox" = dontDistribute super."buildbox"; + "buildbox-tools" = dontDistribute super."buildbox-tools"; + "buildwrapper" = dontDistribute super."buildwrapper"; + "bullet" = dontDistribute super."bullet"; + "burst-detection" = dontDistribute super."burst-detection"; + "bus-pirate" = dontDistribute super."bus-pirate"; + "buster" = dontDistribute super."buster"; + "buster-gtk" = dontDistribute super."buster-gtk"; + "buster-network" = dontDistribute super."buster-network"; + "bustle" = dontDistribute super."bustle"; + "bv" = dontDistribute super."bv"; + "byline" = dontDistribute super."byline"; + "bytable" = dontDistribute super."bytable"; + "byteset" = dontDistribute super."byteset"; + "bytestring-arbitrary" = dontDistribute super."bytestring-arbitrary"; + "bytestring-class" = dontDistribute super."bytestring-class"; + "bytestring-csv" = dontDistribute super."bytestring-csv"; + "bytestring-delta" = dontDistribute super."bytestring-delta"; + "bytestring-from" = dontDistribute super."bytestring-from"; + "bytestring-nums" = dontDistribute super."bytestring-nums"; + "bytestring-plain" = dontDistribute super."bytestring-plain"; + "bytestring-rematch" = dontDistribute super."bytestring-rematch"; + "bytestring-short" = dontDistribute super."bytestring-short"; + "bytestring-show" = dontDistribute super."bytestring-show"; + "bytestringparser" = dontDistribute super."bytestringparser"; + "bytestringparser-temporary" = dontDistribute super."bytestringparser-temporary"; + "bytestringreadp" = dontDistribute super."bytestringreadp"; + "c-dsl" = dontDistribute super."c-dsl"; + "c-io" = dontDistribute super."c-io"; + "c-storable-deriving" = dontDistribute super."c-storable-deriving"; + "c0check" = dontDistribute super."c0check"; + "c0parser" = dontDistribute super."c0parser"; + "c10k" = dontDistribute super."c10k"; + "c2hs" = doDistribute super."c2hs_0_25_2"; + "c2hsc" = dontDistribute super."c2hsc"; + "cab" = dontDistribute super."cab"; + "cabal-audit" = dontDistribute super."cabal-audit"; + "cabal-bounds" = dontDistribute super."cabal-bounds"; + "cabal-cargs" = dontDistribute super."cabal-cargs"; + "cabal-constraints" = dontDistribute super."cabal-constraints"; + "cabal-db" = dontDistribute super."cabal-db"; + "cabal-debian" = doDistribute super."cabal-debian_4_30_2"; + "cabal-dependency-licenses" = dontDistribute super."cabal-dependency-licenses"; + "cabal-dev" = dontDistribute super."cabal-dev"; + "cabal-dir" = dontDistribute super."cabal-dir"; + "cabal-ghc-dynflags" = dontDistribute super."cabal-ghc-dynflags"; + "cabal-ghci" = dontDistribute super."cabal-ghci"; + "cabal-graphdeps" = dontDistribute super."cabal-graphdeps"; + "cabal-helper" = dontDistribute super."cabal-helper"; + "cabal-install-bundle" = dontDistribute super."cabal-install-bundle"; + "cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72"; + "cabal-install-ghc74" = dontDistribute super."cabal-install-ghc74"; + "cabal-lenses" = dontDistribute super."cabal-lenses"; + "cabal-macosx" = dontDistribute super."cabal-macosx"; + "cabal-meta" = dontDistribute super."cabal-meta"; + "cabal-mon" = dontDistribute super."cabal-mon"; + "cabal-nirvana" = dontDistribute super."cabal-nirvana"; + "cabal-progdeps" = dontDistribute super."cabal-progdeps"; + "cabal-query" = dontDistribute super."cabal-query"; + "cabal-scripts" = dontDistribute super."cabal-scripts"; + "cabal-setup" = dontDistribute super."cabal-setup"; + "cabal-sign" = dontDistribute super."cabal-sign"; + "cabal-sort" = dontDistribute super."cabal-sort"; + "cabal-test" = dontDistribute super."cabal-test"; + "cabal-test-bin" = dontDistribute super."cabal-test-bin"; + "cabal-test-compat" = dontDistribute super."cabal-test-compat"; + "cabal-test-quickcheck" = dontDistribute super."cabal-test-quickcheck"; + "cabal-uninstall" = dontDistribute super."cabal-uninstall"; + "cabal-upload" = dontDistribute super."cabal-upload"; + "cabal2arch" = dontDistribute super."cabal2arch"; + "cabal2doap" = dontDistribute super."cabal2doap"; + "cabal2ebuild" = dontDistribute super."cabal2ebuild"; + "cabal2ghci" = dontDistribute super."cabal2ghci"; + "cabal2nix" = dontDistribute super."cabal2nix"; + "cabal2spec" = dontDistribute super."cabal2spec"; + "cabalQuery" = dontDistribute super."cabalQuery"; + "cabalg" = dontDistribute super."cabalg"; + "cabalgraph" = dontDistribute super."cabalgraph"; + "cabalmdvrpm" = dontDistribute super."cabalmdvrpm"; + "cabalrpmdeps" = dontDistribute super."cabalrpmdeps"; + "cabalvchk" = dontDistribute super."cabalvchk"; + "cabin" = dontDistribute super."cabin"; + "cabocha" = dontDistribute super."cabocha"; + "cached-io" = dontDistribute super."cached-io"; + "cached-traversable" = dontDistribute super."cached-traversable"; + "cacophony" = dontDistribute super."cacophony"; + "caf" = dontDistribute super."caf"; + "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; + "caffegraph" = dontDistribute super."caffegraph"; + "cairo-appbase" = dontDistribute super."cairo-appbase"; + "cake" = dontDistribute super."cake"; + "cake3" = dontDistribute super."cake3"; + "cakyrespa" = dontDistribute super."cakyrespa"; + "cal3d" = dontDistribute super."cal3d"; + "cal3d-examples" = dontDistribute super."cal3d-examples"; + "cal3d-opengl" = dontDistribute super."cal3d-opengl"; + "calc" = dontDistribute super."calc"; + "calculator" = dontDistribute super."calculator"; + "caldims" = dontDistribute super."caldims"; + "caledon" = dontDistribute super."caledon"; + "call" = dontDistribute super."call"; + "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camh" = dontDistribute super."camh"; + "campfire" = dontDistribute super."campfire"; + "canonical-filepath" = dontDistribute super."canonical-filepath"; + "canteven-config" = dontDistribute super."canteven-config"; + "canteven-log" = dontDistribute super."canteven-log"; + "cantor" = dontDistribute super."cantor"; + "cao" = dontDistribute super."cao"; + "cap" = dontDistribute super."cap"; + "capped-list" = dontDistribute super."capped-list"; + "capri" = dontDistribute super."capri"; + "car-pool" = dontDistribute super."car-pool"; + "caramia" = dontDistribute super."caramia"; + "carboncopy" = dontDistribute super."carboncopy"; + "carettah" = dontDistribute super."carettah"; + "carray" = dontDistribute super."carray"; + "casadi-bindings" = dontDistribute super."casadi-bindings"; + "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; + "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; + "casadi-bindings-internal" = dontDistribute super."casadi-bindings-internal"; + "casadi-bindings-ipopt-interface" = dontDistribute super."casadi-bindings-ipopt-interface"; + "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; + "cascading" = dontDistribute super."cascading"; + "case-conversion" = dontDistribute super."case-conversion"; + "cased" = dontDistribute super."cased"; + "cash" = dontDistribute super."cash"; + "casing" = dontDistribute super."casing"; + "cassandra-cql" = dontDistribute super."cassandra-cql"; + "cassandra-thrift" = dontDistribute super."cassandra-thrift"; + "cassava-conduit" = dontDistribute super."cassava-conduit"; + "cassava-streams" = dontDistribute super."cassava-streams"; + "cassette" = dontDistribute super."cassette"; + "cassy" = dontDistribute super."cassy"; + "castle" = dontDistribute super."castle"; + "casui" = dontDistribute super."casui"; + "catamorphism" = dontDistribute super."catamorphism"; + "catch-fd" = dontDistribute super."catch-fd"; + "categorical-algebra" = dontDistribute super."categorical-algebra"; + "categories" = dontDistribute super."categories"; + "category-extras" = dontDistribute super."category-extras"; + "cblrepo" = dontDistribute super."cblrepo"; + "cci" = dontDistribute super."cci"; + "ccnx" = dontDistribute super."ccnx"; + "cctools-workqueue" = dontDistribute super."cctools-workqueue"; + "cedict" = dontDistribute super."cedict"; + "cef" = dontDistribute super."cef"; + "ceilometer-common" = dontDistribute super."ceilometer-common"; + "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cereal-derive" = dontDistribute super."cereal-derive"; + "cereal-enumerator" = dontDistribute super."cereal-enumerator"; + "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-text" = dontDistribute super."cereal-text"; + "certificate" = dontDistribute super."certificate"; + "cf" = dontDistribute super."cf"; + "cfipu" = dontDistribute super."cfipu"; + "cflp" = dontDistribute super."cflp"; + "cfopu" = dontDistribute super."cfopu"; + "cg" = dontDistribute super."cg"; + "cgen" = dontDistribute super."cgen"; + "cgi-undecidable" = dontDistribute super."cgi-undecidable"; + "cgi-utils" = dontDistribute super."cgi-utils"; + "cgrep" = dontDistribute super."cgrep"; + "chain-codes" = dontDistribute super."chain-codes"; + "chalk" = dontDistribute super."chalk"; + "chalkboard" = dontDistribute super."chalkboard"; + "chalkboard-viewer" = dontDistribute super."chalkboard-viewer"; + "chalmers-lava2000" = dontDistribute super."chalmers-lava2000"; + "chan-split" = dontDistribute super."chan-split"; + "change-monger" = dontDistribute super."change-monger"; + "charade" = dontDistribute super."charade"; + "charsetdetect" = dontDistribute super."charsetdetect"; + "charsetdetect-ae" = dontDistribute super."charsetdetect-ae"; + "chart-histogram" = dontDistribute super."chart-histogram"; + "chaselev-deque" = dontDistribute super."chaselev-deque"; + "chatter" = dontDistribute super."chatter"; + "chatty" = dontDistribute super."chatty"; + "chatty-text" = dontDistribute super."chatty-text"; + "chatty-utils" = dontDistribute super."chatty-utils"; + "cheapskate" = dontDistribute super."cheapskate"; + "check-pvp" = dontDistribute super."check-pvp"; + "checked" = dontDistribute super."checked"; + "chell-hunit" = dontDistribute super."chell-hunit"; + "chesshs" = dontDistribute super."chesshs"; + "chevalier-common" = dontDistribute super."chevalier-common"; + "chp" = dontDistribute super."chp"; + "chp-mtl" = dontDistribute super."chp-mtl"; + "chp-plus" = dontDistribute super."chp-plus"; + "chp-spec" = dontDistribute super."chp-spec"; + "chp-transformers" = dontDistribute super."chp-transformers"; + "chronograph" = dontDistribute super."chronograph"; + "chu2" = dontDistribute super."chu2"; + "chuchu" = dontDistribute super."chuchu"; + "chunks" = dontDistribute super."chunks"; + "chunky" = dontDistribute super."chunky"; + "church-list" = dontDistribute super."church-list"; + "cil" = dontDistribute super."cil"; + "cinvoke" = dontDistribute super."cinvoke"; + "cio" = dontDistribute super."cio"; + "cipher-rc5" = dontDistribute super."cipher-rc5"; + "ciphersaber2" = dontDistribute super."ciphersaber2"; + "circ" = dontDistribute super."circ"; + "cirru-parser" = dontDistribute super."cirru-parser"; + "citation-resolve" = dontDistribute super."citation-resolve"; + "citeproc-hs" = dontDistribute super."citeproc-hs"; + "citeproc-hs-pandoc-filter" = dontDistribute super."citeproc-hs-pandoc-filter"; + "cityhash" = dontDistribute super."cityhash"; + "cjk" = dontDistribute super."cjk"; + "clac" = dontDistribute super."clac"; + "clafer" = dontDistribute super."clafer"; + "claferIG" = dontDistribute super."claferIG"; + "claferwiki" = dontDistribute super."claferwiki"; + "clang-pure" = dontDistribute super."clang-pure"; + "clanki" = dontDistribute super."clanki"; + "clash" = dontDistribute super."clash"; + "clash-ghc" = doDistribute super."clash-ghc_0_5_15"; + "clash-lib" = doDistribute super."clash-lib_0_5_13"; + "clash-prelude" = doDistribute super."clash-prelude_0_9_3"; + "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck"; + "clash-systemverilog" = doDistribute super."clash-systemverilog_0_5_10"; + "clash-verilog" = doDistribute super."clash-verilog_0_5_10"; + "clash-vhdl" = doDistribute super."clash-vhdl_0_5_12"; + "classify" = dontDistribute super."classify"; + "classy-parallel" = dontDistribute super."classy-parallel"; + "clckwrks" = dontDistribute super."clckwrks"; + "clckwrks-cli" = dontDistribute super."clckwrks-cli"; + "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com"; + "clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs"; + "clckwrks-plugin-ircbot" = dontDistribute super."clckwrks-plugin-ircbot"; + "clckwrks-plugin-media" = dontDistribute super."clckwrks-plugin-media"; + "clckwrks-plugin-page" = dontDistribute super."clckwrks-plugin-page"; + "clckwrks-theme-bootstrap" = dontDistribute super."clckwrks-theme-bootstrap"; + "clckwrks-theme-clckwrks" = dontDistribute super."clckwrks-theme-clckwrks"; + "clckwrks-theme-geo-bootstrap" = dontDistribute super."clckwrks-theme-geo-bootstrap"; + "cld2" = dontDistribute super."cld2"; + "clean-home" = dontDistribute super."clean-home"; + "clean-unions" = dontDistribute super."clean-unions"; + "cless" = dontDistribute super."cless"; + "clevercss" = dontDistribute super."clevercss"; + "cli" = dontDistribute super."cli"; + "click-clack" = dontDistribute super."click-clack"; + "clifford" = dontDistribute super."clifford"; + "clippard" = dontDistribute super."clippard"; + "clipper" = dontDistribute super."clipper"; + "clippings" = dontDistribute super."clippings"; + "clist" = dontDistribute super."clist"; + "clocked" = dontDistribute super."clocked"; + "clogparse" = dontDistribute super."clogparse"; + "clone-all" = dontDistribute super."clone-all"; + "closure" = dontDistribute super."closure"; + "cloud-haskell" = dontDistribute super."cloud-haskell"; + "cloudfront-signer" = dontDistribute super."cloudfront-signer"; + "cloudyfs" = dontDistribute super."cloudyfs"; + "cltw" = dontDistribute super."cltw"; + "clua" = dontDistribute super."clua"; + "cluss" = dontDistribute super."cluss"; + "clustertools" = dontDistribute super."clustertools"; + "clutterhs" = dontDistribute super."clutterhs"; + "cmaes" = dontDistribute super."cmaes"; + "cmath" = dontDistribute super."cmath"; + "cmathml3" = dontDistribute super."cmathml3"; + "cmd-item" = dontDistribute super."cmd-item"; + "cmdargs-browser" = dontDistribute super."cmdargs-browser"; + "cmdlib" = dontDistribute super."cmdlib"; + "cmdtheline" = dontDistribute super."cmdtheline"; + "cml" = dontDistribute super."cml"; + "cmonad" = dontDistribute super."cmonad"; + "cmu" = dontDistribute super."cmu"; + "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; + "cndict" = dontDistribute super."cndict"; + "codec" = dontDistribute super."codec"; + "codec-libevent" = dontDistribute super."codec-libevent"; + "codec-mbox" = dontDistribute super."codec-mbox"; + "codecov-haskell" = dontDistribute super."codecov-haskell"; + "codemonitor" = dontDistribute super."codemonitor"; + "codepad" = dontDistribute super."codepad"; + "codex" = doDistribute super."codex_0_3_0_10"; + "codo-notation" = dontDistribute super."codo-notation"; + "cofunctor" = dontDistribute super."cofunctor"; + "cognimeta-utils" = dontDistribute super."cognimeta-utils"; + "coinbase-exchange" = dontDistribute super."coinbase-exchange"; + "colada" = dontDistribute super."colada"; + "colchis" = dontDistribute super."colchis"; + "collada-output" = dontDistribute super."collada-output"; + "collada-types" = dontDistribute super."collada-types"; + "collapse-util" = dontDistribute super."collapse-util"; + "collection-json" = dontDistribute super."collection-json"; + "collections" = dontDistribute super."collections"; + "collections-api" = dontDistribute super."collections-api"; + "collections-base-instances" = dontDistribute super."collections-base-instances"; + "colock" = dontDistribute super."colock"; + "colorize-haskell" = dontDistribute super."colorize-haskell"; + "colors" = dontDistribute super."colors"; + "coltrane" = dontDistribute super."coltrane"; + "com" = dontDistribute super."com"; + "combinat" = dontDistribute super."combinat"; + "combinat-diagrams" = dontDistribute super."combinat-diagrams"; + "combinator-interactive" = dontDistribute super."combinator-interactive"; + "combinatorial-problems" = dontDistribute super."combinatorial-problems"; + "combinatorics" = dontDistribute super."combinatorics"; + "combobuffer" = dontDistribute super."combobuffer"; + "comfort-graph" = dontDistribute super."comfort-graph"; + "command" = dontDistribute super."command"; + "command-qq" = dontDistribute super."command-qq"; + "commodities" = dontDistribute super."commodities"; + "commsec" = dontDistribute super."commsec"; + "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; + "commutative" = dontDistribute super."commutative"; + "comonad-extras" = dontDistribute super."comonad-extras"; + "comonad-random" = dontDistribute super."comonad-random"; + "compact-map" = dontDistribute super."compact-map"; + "compact-socket" = dontDistribute super."compact-socket"; + "compact-string" = dontDistribute super."compact-string"; + "compact-string-fix" = dontDistribute super."compact-string-fix"; + "compactmap" = dontDistribute super."compactmap"; + "compare-type" = dontDistribute super."compare-type"; + "compdata-automata" = dontDistribute super."compdata-automata"; + "compdata-dags" = dontDistribute super."compdata-dags"; + "compdata-param" = dontDistribute super."compdata-param"; + "compensated" = dontDistribute super."compensated"; + "competition" = dontDistribute super."competition"; + "compilation" = dontDistribute super."compilation"; + "complex-generic" = dontDistribute super."complex-generic"; + "complex-integrate" = dontDistribute super."complex-integrate"; + "complexity" = dontDistribute super."complexity"; + "compose-ltr" = dontDistribute super."compose-ltr"; + "compose-trans" = dontDistribute super."compose-trans"; + "composition-extra" = doDistribute super."composition-extra_1_1_0"; + "composition-tree" = dontDistribute super."composition-tree"; + "compression" = dontDistribute super."compression"; + "compstrat" = dontDistribute super."compstrat"; + "comptrans" = dontDistribute super."comptrans"; + "computational-algebra" = dontDistribute super."computational-algebra"; + "computations" = dontDistribute super."computations"; + "conceit" = dontDistribute super."conceit"; + "concorde" = dontDistribute super."concorde"; + "concraft" = dontDistribute super."concraft"; + "concraft-hr" = dontDistribute super."concraft-hr"; + "concraft-pl" = dontDistribute super."concraft-pl"; + "concrete-relaxng-parser" = dontDistribute super."concrete-relaxng-parser"; + "concrete-typerep" = dontDistribute super."concrete-typerep"; + "concurrent-barrier" = dontDistribute super."concurrent-barrier"; + "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-output" = dontDistribute super."concurrent-output"; + "concurrent-sa" = dontDistribute super."concurrent-sa"; + "concurrent-split" = dontDistribute super."concurrent-split"; + "concurrent-state" = dontDistribute super."concurrent-state"; + "concurrent-utilities" = dontDistribute super."concurrent-utilities"; + "concurrentoutput" = dontDistribute super."concurrentoutput"; + "condor" = dontDistribute super."condor"; + "condorcet" = dontDistribute super."condorcet"; + "conductive-base" = dontDistribute super."conductive-base"; + "conductive-clock" = dontDistribute super."conductive-clock"; + "conductive-hsc3" = dontDistribute super."conductive-hsc3"; + "conductive-song" = dontDistribute super."conductive-song"; + "conduit-audio" = dontDistribute super."conduit-audio"; + "conduit-audio-lame" = dontDistribute super."conduit-audio-lame"; + "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate"; + "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile"; + "conduit-connection" = dontDistribute super."conduit-connection"; + "conduit-iconv" = dontDistribute super."conduit-iconv"; + "conduit-network-stream" = dontDistribute super."conduit-network-stream"; + "conduit-parse" = dontDistribute super."conduit-parse"; + "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; + "conf" = dontDistribute super."conf"; + "config-select" = dontDistribute super."config-select"; + "config-value" = dontDistribute super."config-value"; + "configifier" = dontDistribute super."configifier"; + "configuration" = dontDistribute super."configuration"; + "configuration-tools" = dontDistribute super."configuration-tools"; + "confsolve" = dontDistribute super."confsolve"; + "congruence-relation" = dontDistribute super."congruence-relation"; + "conjugateGradient" = dontDistribute super."conjugateGradient"; + "conjure" = dontDistribute super."conjure"; + "conlogger" = dontDistribute super."conlogger"; + "connection-pool" = dontDistribute super."connection-pool"; + "consistent" = dontDistribute super."consistent"; + "console-program" = dontDistribute super."console-program"; + "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; + "constrained-categories" = dontDistribute super."constrained-categories"; + "constrained-normal" = dontDistribute super."constrained-normal"; + "constructible" = dontDistribute super."constructible"; + "constructive-algebra" = dontDistribute super."constructive-algebra"; + "consumers" = dontDistribute super."consumers"; + "container-classes" = dontDistribute super."container-classes"; + "containers-benchmark" = dontDistribute super."containers-benchmark"; + "containers-deepseq" = dontDistribute super."containers-deepseq"; + "context-free-grammar" = dontDistribute super."context-free-grammar"; + "context-stack" = dontDistribute super."context-stack"; + "continue" = dontDistribute super."continue"; + "continued-fractions" = dontDistribute super."continued-fractions"; + "continuum" = dontDistribute super."continuum"; + "continuum-client" = dontDistribute super."continuum-client"; + "control-event" = dontDistribute super."control-event"; + "control-monad-attempt" = dontDistribute super."control-monad-attempt"; + "control-monad-exception" = dontDistribute super."control-monad-exception"; + "control-monad-exception-monadsfd" = dontDistribute super."control-monad-exception-monadsfd"; + "control-monad-exception-monadstf" = dontDistribute super."control-monad-exception-monadstf"; + "control-monad-exception-mtl" = dontDistribute super."control-monad-exception-mtl"; + "control-monad-failure" = dontDistribute super."control-monad-failure"; + "control-monad-failure-mtl" = dontDistribute super."control-monad-failure-mtl"; + "control-monad-omega" = dontDistribute super."control-monad-omega"; + "control-monad-queue" = dontDistribute super."control-monad-queue"; + "control-timeout" = dontDistribute super."control-timeout"; + "contstuff" = dontDistribute super."contstuff"; + "contstuff-monads-tf" = dontDistribute super."contstuff-monads-tf"; + "contstuff-transformers" = dontDistribute super."contstuff-transformers"; + "converge" = dontDistribute super."converge"; + "conversion" = dontDistribute super."conversion"; + "conversion-bytestring" = dontDistribute super."conversion-bytestring"; + "conversion-case-insensitive" = dontDistribute super."conversion-case-insensitive"; + "conversion-text" = dontDistribute super."conversion-text"; + "convert" = dontDistribute super."convert"; + "convertible-ascii" = dontDistribute super."convertible-ascii"; + "convertible-text" = dontDistribute super."convertible-text"; + "cookbook" = dontDistribute super."cookbook"; + "coordinate" = dontDistribute super."coordinate"; + "copilot" = dontDistribute super."copilot"; + "copilot-c99" = dontDistribute super."copilot-c99"; + "copilot-cbmc" = dontDistribute super."copilot-cbmc"; + "copilot-core" = dontDistribute super."copilot-core"; + "copilot-language" = dontDistribute super."copilot-language"; + "copilot-libraries" = dontDistribute super."copilot-libraries"; + "copilot-sbv" = dontDistribute super."copilot-sbv"; + "copilot-theorem" = dontDistribute super."copilot-theorem"; + "copr" = dontDistribute super."copr"; + "core" = dontDistribute super."core"; + "core-haskell" = dontDistribute super."core-haskell"; + "corebot-bliki" = dontDistribute super."corebot-bliki"; + "coroutine-enumerator" = dontDistribute super."coroutine-enumerator"; + "coroutine-iteratee" = dontDistribute super."coroutine-iteratee"; + "coroutine-object" = dontDistribute super."coroutine-object"; + "couch-hs" = dontDistribute super."couch-hs"; + "couch-simple" = dontDistribute super."couch-simple"; + "couchdb-conduit" = dontDistribute super."couchdb-conduit"; + "couchdb-enumerator" = dontDistribute super."couchdb-enumerator"; + "count" = dontDistribute super."count"; + "countable" = dontDistribute super."countable"; + "counter" = dontDistribute super."counter"; + "court" = dontDistribute super."court"; + "coverage" = dontDistribute super."coverage"; + "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplusplus-th" = dontDistribute super."cplusplus-th"; + "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; + "cpsa" = dontDistribute super."cpsa"; + "cpuid" = dontDistribute super."cpuid"; + "cpuperf" = dontDistribute super."cpuperf"; + "cpython" = dontDistribute super."cpython"; + "cqrs" = dontDistribute super."cqrs"; + "cqrs-core" = dontDistribute super."cqrs-core"; + "cqrs-example" = dontDistribute super."cqrs-example"; + "cqrs-memory" = dontDistribute super."cqrs-memory"; + "cqrs-postgresql" = dontDistribute super."cqrs-postgresql"; + "cqrs-sqlite3" = dontDistribute super."cqrs-sqlite3"; + "cqrs-test" = dontDistribute super."cqrs-test"; + "cqrs-testkit" = dontDistribute super."cqrs-testkit"; + "cqrs-types" = dontDistribute super."cqrs-types"; + "cr" = dontDistribute super."cr"; + "crack" = dontDistribute super."crack"; + "craftwerk" = dontDistribute super."craftwerk"; + "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; + "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "crc16" = dontDistribute super."crc16"; + "crc16-table" = dontDistribute super."crc16-table"; + "creatur" = dontDistribute super."creatur"; + "crf-chain1" = dontDistribute super."crf-chain1"; + "crf-chain1-constrained" = dontDistribute super."crf-chain1-constrained"; + "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; + "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; + "critbit" = dontDistribute super."critbit"; + "criterion-plus" = dontDistribute super."criterion-plus"; + "criterion-to-html" = dontDistribute super."criterion-to-html"; + "crockford" = dontDistribute super."crockford"; + "crocodile" = dontDistribute super."crocodile"; + "cron" = doDistribute super."cron_0_3_0"; + "cron-compat" = dontDistribute super."cron-compat"; + "cruncher-types" = dontDistribute super."cruncher-types"; + "crunghc" = dontDistribute super."crunghc"; + "crypto-cipher-benchmarks" = dontDistribute super."crypto-cipher-benchmarks"; + "crypto-classical" = dontDistribute super."crypto-classical"; + "crypto-conduit" = dontDistribute super."crypto-conduit"; + "crypto-enigma" = dontDistribute super."crypto-enigma"; + "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; + "crypto-random-effect" = dontDistribute super."crypto-random-effect"; + "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptonite" = doDistribute super."cryptonite_0_6"; + "cryptsy-api" = dontDistribute super."cryptsy-api"; + "crystalfontz" = dontDistribute super."crystalfontz"; + "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; + "csound-catalog" = dontDistribute super."csound-catalog"; + "csound-expression" = dontDistribute super."csound-expression"; + "csound-expression-dynamic" = dontDistribute super."csound-expression-dynamic"; + "csound-expression-opcodes" = dontDistribute super."csound-expression-opcodes"; + "csound-expression-typed" = dontDistribute super."csound-expression-typed"; + "csound-sampler" = dontDistribute super."csound-sampler"; + "csp" = dontDistribute super."csp"; + "cspmchecker" = dontDistribute super."cspmchecker"; + "css" = dontDistribute super."css"; + "css-syntax" = dontDistribute super."css-syntax"; + "csv-enumerator" = dontDistribute super."csv-enumerator"; + "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-to-qif" = dontDistribute super."csv-to-qif"; + "ctemplate" = dontDistribute super."ctemplate"; + "ctkl" = dontDistribute super."ctkl"; + "ctpl" = dontDistribute super."ctpl"; + "ctrie" = dontDistribute super."ctrie"; + "cube" = dontDistribute super."cube"; + "cubical" = dontDistribute super."cubical"; + "cubicbezier" = dontDistribute super."cubicbezier"; + "cubicspline" = doDistribute super."cubicspline_0_1_1"; + "cublas" = dontDistribute super."cublas"; + "cuboid" = dontDistribute super."cuboid"; + "cuda" = dontDistribute super."cuda"; + "cudd" = dontDistribute super."cudd"; + "cufft" = dontDistribute super."cufft"; + "curl-aeson" = dontDistribute super."curl-aeson"; + "curlhs" = dontDistribute super."curlhs"; + "currency" = dontDistribute super."currency"; + "current-locale" = dontDistribute super."current-locale"; + "curry-base" = dontDistribute super."curry-base"; + "curry-frontend" = dontDistribute super."curry-frontend"; + "cursedcsv" = dontDistribute super."cursedcsv"; + "curve25519" = dontDistribute super."curve25519"; + "curves" = dontDistribute super."curves"; + "custom-prelude" = dontDistribute super."custom-prelude"; + "cv-combinators" = dontDistribute super."cv-combinators"; + "cyclotomic" = dontDistribute super."cyclotomic"; + "cypher" = dontDistribute super."cypher"; + "d-bus" = dontDistribute super."d-bus"; + "d3js" = dontDistribute super."d3js"; + "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; + "daemons" = dontDistribute super."daemons"; + "dag" = dontDistribute super."dag"; + "damnpacket" = dontDistribute super."damnpacket"; + "dao" = dontDistribute super."dao"; + "dapi" = dontDistribute super."dapi"; + "darcs" = dontDistribute super."darcs"; + "darcs-benchmark" = dontDistribute super."darcs-benchmark"; + "darcs-beta" = dontDistribute super."darcs-beta"; + "darcs-buildpackage" = dontDistribute super."darcs-buildpackage"; + "darcs-cabalized" = dontDistribute super."darcs-cabalized"; + "darcs-fastconvert" = dontDistribute super."darcs-fastconvert"; + "darcs-graph" = dontDistribute super."darcs-graph"; + "darcs-monitor" = dontDistribute super."darcs-monitor"; + "darcs-scripts" = dontDistribute super."darcs-scripts"; + "darcs2dot" = dontDistribute super."darcs2dot"; + "darcsden" = dontDistribute super."darcsden"; + "darcswatch" = dontDistribute super."darcswatch"; + "darkplaces-demo" = dontDistribute super."darkplaces-demo"; + "darkplaces-rcon" = dontDistribute super."darkplaces-rcon"; + "darkplaces-rcon-util" = dontDistribute super."darkplaces-rcon-util"; + "darkplaces-text" = dontDistribute super."darkplaces-text"; + "dash-haskell" = dontDistribute super."dash-haskell"; + "data-accessor-monadLib" = dontDistribute super."data-accessor-monadLib"; + "data-accessor-monads-fd" = dontDistribute super."data-accessor-monads-fd"; + "data-accessor-monads-tf" = dontDistribute super."data-accessor-monads-tf"; + "data-accessor-template" = dontDistribute super."data-accessor-template"; + "data-accessor-transformers" = dontDistribute super."data-accessor-transformers"; + "data-aviary" = dontDistribute super."data-aviary"; + "data-bword" = dontDistribute super."data-bword"; + "data-carousel" = dontDistribute super."data-carousel"; + "data-category" = dontDistribute super."data-category"; + "data-cell" = dontDistribute super."data-cell"; + "data-checked" = dontDistribute super."data-checked"; + "data-clist" = dontDistribute super."data-clist"; + "data-concurrent-queue" = dontDistribute super."data-concurrent-queue"; + "data-cycle" = dontDistribute super."data-cycle"; + "data-default-generics" = dontDistribute super."data-default-generics"; + "data-dispersal" = dontDistribute super."data-dispersal"; + "data-dword" = dontDistribute super."data-dword"; + "data-easy" = dontDistribute super."data-easy"; + "data-endian" = dontDistribute super."data-endian"; + "data-extra" = dontDistribute super."data-extra"; + "data-filepath" = dontDistribute super."data-filepath"; + "data-fin" = dontDistribute super."data-fin"; + "data-fin-simple" = dontDistribute super."data-fin-simple"; + "data-fix" = dontDistribute super."data-fix"; + "data-fix-cse" = dontDistribute super."data-fix-cse"; + "data-flags" = dontDistribute super."data-flags"; + "data-flagset" = dontDistribute super."data-flagset"; + "data-fresh" = dontDistribute super."data-fresh"; + "data-interval" = dontDistribute super."data-interval"; + "data-ivar" = dontDistribute super."data-ivar"; + "data-kiln" = dontDistribute super."data-kiln"; + "data-layout" = dontDistribute super."data-layout"; + "data-lens" = dontDistribute super."data-lens"; + "data-lens-fd" = dontDistribute super."data-lens-fd"; + "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-template" = dontDistribute super."data-lens-template"; + "data-list-sequences" = dontDistribute super."data-list-sequences"; + "data-map-multikey" = dontDistribute super."data-map-multikey"; + "data-named" = dontDistribute super."data-named"; + "data-nat" = dontDistribute super."data-nat"; + "data-object" = dontDistribute super."data-object"; + "data-object-json" = dontDistribute super."data-object-json"; + "data-object-yaml" = dontDistribute super."data-object-yaml"; + "data-or" = dontDistribute super."data-or"; + "data-partition" = dontDistribute super."data-partition"; + "data-pprint" = dontDistribute super."data-pprint"; + "data-quotientref" = dontDistribute super."data-quotientref"; + "data-r-tree" = dontDistribute super."data-r-tree"; + "data-ref" = dontDistribute super."data-ref"; + "data-reify-cse" = dontDistribute super."data-reify-cse"; + "data-repr" = dontDistribute super."data-repr"; + "data-rev" = dontDistribute super."data-rev"; + "data-rope" = dontDistribute super."data-rope"; + "data-rtuple" = dontDistribute super."data-rtuple"; + "data-size" = dontDistribute super."data-size"; + "data-spacepart" = dontDistribute super."data-spacepart"; + "data-store" = dontDistribute super."data-store"; + "data-stringmap" = dontDistribute super."data-stringmap"; + "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-tensor" = dontDistribute super."data-tensor"; + "data-textual" = dontDistribute super."data-textual"; + "data-timeout" = dontDistribute super."data-timeout"; + "data-transform" = dontDistribute super."data-transform"; + "data-treify" = dontDistribute super."data-treify"; + "data-type" = dontDistribute super."data-type"; + "data-util" = dontDistribute super."data-util"; + "data-variant" = dontDistribute super."data-variant"; + "database-migrate" = dontDistribute super."database-migrate"; + "database-study" = dontDistribute super."database-study"; + "dataenc" = dontDistribute super."dataenc"; + "dataflow" = dontDistribute super."dataflow"; + "datalog" = dontDistribute super."datalog"; + "datapacker" = dontDistribute super."datapacker"; + "dataurl" = dontDistribute super."dataurl"; + "date-cache" = dontDistribute super."date-cache"; + "dates" = dontDistribute super."dates"; + "datetime" = dontDistribute super."datetime"; + "datetime-sb" = dontDistribute super."datetime-sb"; + "dawg" = dontDistribute super."dawg"; + "dbcleaner" = dontDistribute super."dbcleaner"; + "dbf" = dontDistribute super."dbf"; + "dbjava" = dontDistribute super."dbjava"; + "dbmigrations" = dontDistribute super."dbmigrations"; + "dbus-client" = dontDistribute super."dbus-client"; + "dbus-core" = dontDistribute super."dbus-core"; + "dbus-qq" = dontDistribute super."dbus-qq"; + "dbus-th" = dontDistribute super."dbus-th"; + "dclabel" = dontDistribute super."dclabel"; + "dclabel-eci11" = dontDistribute super."dclabel-eci11"; + "ddc-base" = dontDistribute super."ddc-base"; + "ddc-build" = dontDistribute super."ddc-build"; + "ddc-code" = dontDistribute super."ddc-code"; + "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-eval" = dontDistribute super."ddc-core-eval"; + "ddc-core-flow" = dontDistribute super."ddc-core-flow"; + "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; + "ddc-core-salt" = dontDistribute super."ddc-core-salt"; + "ddc-core-simpl" = dontDistribute super."ddc-core-simpl"; + "ddc-core-tetra" = dontDistribute super."ddc-core-tetra"; + "ddc-driver" = dontDistribute super."ddc-driver"; + "ddc-interface" = dontDistribute super."ddc-interface"; + "ddc-source-tetra" = dontDistribute super."ddc-source-tetra"; + "ddc-tools" = dontDistribute super."ddc-tools"; + "ddc-war" = dontDistribute super."ddc-war"; + "ddci-core" = dontDistribute super."ddci-core"; + "dead-code-detection" = dontDistribute super."dead-code-detection"; + "dead-simple-json" = dontDistribute super."dead-simple-json"; + "debian" = doDistribute super."debian_3_87_2"; + "debian-binary" = dontDistribute super."debian-binary"; + "debian-build" = dontDistribute super."debian-build"; + "debug-diff" = dontDistribute super."debug-diff"; + "decepticons" = dontDistribute super."decepticons"; + "declarative" = dontDistribute super."declarative"; + "decode-utf8" = dontDistribute super."decode-utf8"; + "decoder-conduit" = dontDistribute super."decoder-conduit"; + "dedukti" = dontDistribute super."dedukti"; + "deepcontrol" = dontDistribute super."deepcontrol"; + "deeplearning-hs" = dontDistribute super."deeplearning-hs"; + "deepseq-bounded" = dontDistribute super."deepseq-bounded"; + "deepseq-magic" = dontDistribute super."deepseq-magic"; + "deepseq-th" = dontDistribute super."deepseq-th"; + "deepzoom" = dontDistribute super."deepzoom"; + "defargs" = dontDistribute super."defargs"; + "definitive-base" = dontDistribute super."definitive-base"; + "definitive-filesystem" = dontDistribute super."definitive-filesystem"; + "definitive-graphics" = dontDistribute super."definitive-graphics"; + "definitive-parser" = dontDistribute super."definitive-parser"; + "definitive-reactive" = dontDistribute super."definitive-reactive"; + "definitive-sound" = dontDistribute super."definitive-sound"; + "deiko-config" = dontDistribute super."deiko-config"; + "dejafu" = dontDistribute super."dejafu"; + "deka" = dontDistribute super."deka"; + "deka-tests" = dontDistribute super."deka-tests"; + "delaunay" = dontDistribute super."delaunay"; + "delicious" = dontDistribute super."delicious"; + "delimited-text" = dontDistribute super."delimited-text"; + "delta" = dontDistribute super."delta"; + "delta-h" = dontDistribute super."delta-h"; + "demarcate" = dontDistribute super."demarcate"; + "denominate" = dontDistribute super."denominate"; + "depends" = dontDistribute super."depends"; + "dephd" = dontDistribute super."dephd"; + "dequeue" = dontDistribute super."dequeue"; + "derangement" = dontDistribute super."derangement"; + "derivation-trees" = dontDistribute super."derivation-trees"; + "derive-IG" = dontDistribute super."derive-IG"; + "derive-enumerable" = dontDistribute super."derive-enumerable"; + "derive-gadt" = dontDistribute super."derive-gadt"; + "derive-topdown" = dontDistribute super."derive-topdown"; + "derive-trie" = dontDistribute super."derive-trie"; + "deriving-compat" = dontDistribute super."deriving-compat"; + "derp" = dontDistribute super."derp"; + "derp-lib" = dontDistribute super."derp-lib"; + "descrilo" = dontDistribute super."descrilo"; + "despair" = dontDistribute super."despair"; + "deterministic-game-engine" = dontDistribute super."deterministic-game-engine"; + "detrospector" = dontDistribute super."detrospector"; + "deunicode" = dontDistribute super."deunicode"; + "devil" = dontDistribute super."devil"; + "dewdrop" = dontDistribute super."dewdrop"; + "dfrac" = dontDistribute super."dfrac"; + "dfsbuild" = dontDistribute super."dfsbuild"; + "dgim" = dontDistribute super."dgim"; + "dgs" = dontDistribute super."dgs"; + "dia-base" = dontDistribute super."dia-base"; + "dia-functions" = dontDistribute super."dia-functions"; + "diagrams-canvas" = dontDistribute super."diagrams-canvas"; + "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; + "diagrams-gtk" = dontDistribute super."diagrams-gtk"; + "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; + "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; + "diagrams-pdf" = dontDistribute super."diagrams-pdf"; + "diagrams-pgf" = dontDistribute super."diagrams-pgf"; + "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; + "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; + "dicom" = dontDistribute super."dicom"; + "dictparser" = dontDistribute super."dictparser"; + "diet" = dontDistribute super."diet"; + "diff-gestalt" = dontDistribute super."diff-gestalt"; + "diff-parse" = dontDistribute super."diff-parse"; + "diffarray" = dontDistribute super."diffarray"; + "diffcabal" = dontDistribute super."diffcabal"; + "diffdump" = dontDistribute super."diffdump"; + "digamma" = dontDistribute super."digamma"; + "digest-pure" = dontDistribute super."digest-pure"; + "digestive-bootstrap" = dontDistribute super."digestive-bootstrap"; + "digestive-foundation-lucid" = dontDistribute super."digestive-foundation-lucid"; + "digestive-functors-blaze" = dontDistribute super."digestive-functors-blaze"; + "digestive-functors-happstack" = dontDistribute super."digestive-functors-happstack"; + "digestive-functors-heist" = dontDistribute super."digestive-functors-heist"; + "digestive-functors-hsp" = dontDistribute super."digestive-functors-hsp"; + "digestive-functors-scotty" = dontDistribute super."digestive-functors-scotty"; + "digestive-functors-snap" = dontDistribute super."digestive-functors-snap"; + "digit" = dontDistribute super."digit"; + "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; + "dimensional" = doDistribute super."dimensional_0_13_0_2"; + "dimensional-tf" = dontDistribute super."dimensional-tf"; + "dingo-core" = dontDistribute super."dingo-core"; + "dingo-example" = dontDistribute super."dingo-example"; + "dingo-widgets" = dontDistribute super."dingo-widgets"; + "diophantine" = dontDistribute super."diophantine"; + "diplomacy" = dontDistribute super."diplomacy"; + "diplomacy-server" = dontDistribute super."diplomacy-server"; + "direct-binary-files" = dontDistribute super."direct-binary-files"; + "direct-daemonize" = dontDistribute super."direct-daemonize"; + "direct-fastcgi" = dontDistribute super."direct-fastcgi"; + "direct-http" = dontDistribute super."direct-http"; + "direct-murmur-hash" = dontDistribute super."direct-murmur-hash"; + "direct-plugins" = dontDistribute super."direct-plugins"; + "directed-cubical" = dontDistribute super."directed-cubical"; + "directory-layout" = dontDistribute super."directory-layout"; + "dirfiles" = dontDistribute super."dirfiles"; + "dirstream" = dontDistribute super."dirstream"; + "disassembler" = dontDistribute super."disassembler"; + "discordian-calendar" = dontDistribute super."discordian-calendar"; + "discount" = dontDistribute super."discount"; + "discrete-space-map" = dontDistribute super."discrete-space-map"; + "discrimination" = dontDistribute super."discrimination"; + "disjoint-set" = dontDistribute super."disjoint-set"; + "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; + "dist-upload" = dontDistribute super."dist-upload"; + "distributed-process" = dontDistribute super."distributed-process"; + "distributed-process-async" = dontDistribute super."distributed-process-async"; + "distributed-process-azure" = dontDistribute super."distributed-process-azure"; + "distributed-process-client-server" = dontDistribute super."distributed-process-client-server"; + "distributed-process-execution" = dontDistribute super."distributed-process-execution"; + "distributed-process-extras" = dontDistribute super."distributed-process-extras"; + "distributed-process-monad-control" = dontDistribute super."distributed-process-monad-control"; + "distributed-process-p2p" = dontDistribute super."distributed-process-p2p"; + "distributed-process-platform" = dontDistribute super."distributed-process-platform"; + "distributed-process-registry" = dontDistribute super."distributed-process-registry"; + "distributed-process-simplelocalnet" = dontDistribute super."distributed-process-simplelocalnet"; + "distributed-process-supervisor" = dontDistribute super."distributed-process-supervisor"; + "distributed-process-task" = dontDistribute super."distributed-process-task"; + "distributed-process-tests" = dontDistribute super."distributed-process-tests"; + "distributed-process-zookeeper" = dontDistribute super."distributed-process-zookeeper"; + "distributed-static" = dontDistribute super."distributed-static"; + "distribution" = dontDistribute super."distribution"; + "distribution-plot" = dontDistribute super."distribution-plot"; + "diversity" = dontDistribute super."diversity"; + "dixi" = dontDistribute super."dixi"; + "djinn" = dontDistribute super."djinn"; + "djinn-th" = dontDistribute super."djinn-th"; + "dnscache" = dontDistribute super."dnscache"; + "dnsrbl" = dontDistribute super."dnsrbl"; + "dnssd" = dontDistribute super."dnssd"; + "doc-review" = dontDistribute super."doc-review"; + "doccheck" = dontDistribute super."doccheck"; + "docidx" = dontDistribute super."docidx"; + "docker" = dontDistribute super."docker"; + "dockercook" = dontDistribute super."dockercook"; + "docopt" = dontDistribute super."docopt"; + "doctest-discover" = dontDistribute super."doctest-discover"; + "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; + "doctest-prop" = dontDistribute super."doctest-prop"; + "dom-lt" = dontDistribute super."dom-lt"; + "dom-selector" = dontDistribute super."dom-selector"; + "domain-auth" = dontDistribute super."domain-auth"; + "dominion" = dontDistribute super."dominion"; + "domplate" = dontDistribute super."domplate"; + "dot2graphml" = dontDistribute super."dot2graphml"; + "dotenv" = dontDistribute super."dotenv"; + "dotfs" = dontDistribute super."dotfs"; + "dotgen" = dontDistribute super."dotgen"; + "double-metaphone" = dontDistribute super."double-metaphone"; + "dove" = dontDistribute super."dove"; + "dow" = dontDistribute super."dow"; + "download" = dontDistribute super."download"; + "download-curl" = dontDistribute super."download-curl"; + "download-media-content" = dontDistribute super."download-media-content"; + "dozenal" = dontDistribute super."dozenal"; + "dozens" = dontDistribute super."dozens"; + "dph-base" = dontDistribute super."dph-base"; + "dph-examples" = dontDistribute super."dph-examples"; + "dph-lifted-base" = dontDistribute super."dph-lifted-base"; + "dph-lifted-copy" = dontDistribute super."dph-lifted-copy"; + "dph-lifted-vseg" = dontDistribute super."dph-lifted-vseg"; + "dph-par" = dontDistribute super."dph-par"; + "dph-prim-interface" = dontDistribute super."dph-prim-interface"; + "dph-prim-par" = dontDistribute super."dph-prim-par"; + "dph-prim-seq" = dontDistribute super."dph-prim-seq"; + "dph-seq" = dontDistribute super."dph-seq"; + "dpkg" = dontDistribute super."dpkg"; + "drClickOn" = dontDistribute super."drClickOn"; + "draw-poker" = dontDistribute super."draw-poker"; + "drawille" = dontDistribute super."drawille"; + "drifter" = dontDistribute super."drifter"; + "drifter-postgresql" = dontDistribute super."drifter-postgresql"; + "dropbox-sdk" = dontDistribute super."dropbox-sdk"; + "dropsolve" = dontDistribute super."dropsolve"; + "ds-kanren" = dontDistribute super."ds-kanren"; + "dsh-sql" = dontDistribute super."dsh-sql"; + "dsmc" = dontDistribute super."dsmc"; + "dsmc-tools" = dontDistribute super."dsmc-tools"; + "dson" = dontDistribute super."dson"; + "dson-parsec" = dontDistribute super."dson-parsec"; + "dsp" = dontDistribute super."dsp"; + "dstring" = dontDistribute super."dstring"; + "dtab" = dontDistribute super."dtab"; + "dtd" = dontDistribute super."dtd"; + "dtd-text" = dontDistribute super."dtd-text"; + "dtd-types" = dontDistribute super."dtd-types"; + "dtrace" = dontDistribute super."dtrace"; + "dtw" = dontDistribute super."dtw"; + "dump" = dontDistribute super."dump"; + "duplo" = dontDistribute super."duplo"; + "dvda" = dontDistribute super."dvda"; + "dvdread" = dontDistribute super."dvdread"; + "dvi-processing" = dontDistribute super."dvi-processing"; + "dvorak" = dontDistribute super."dvorak"; + "dwarf" = dontDistribute super."dwarf"; + "dwarf-el" = dontDistribute super."dwarf-el"; + "dwarfadt" = dontDistribute super."dwarfadt"; + "dx9base" = dontDistribute super."dx9base"; + "dx9d3d" = dontDistribute super."dx9d3d"; + "dx9d3dx" = dontDistribute super."dx9d3dx"; + "dynamic-cabal" = dontDistribute super."dynamic-cabal"; + "dynamic-graph" = dontDistribute super."dynamic-graph"; + "dynamic-linker-template" = dontDistribute super."dynamic-linker-template"; + "dynamic-loader" = dontDistribute super."dynamic-loader"; + "dynamic-mvector" = dontDistribute super."dynamic-mvector"; + "dynamic-object" = dontDistribute super."dynamic-object"; + "dynamic-plot" = dontDistribute super."dynamic-plot"; + "dynamic-pp" = dontDistribute super."dynamic-pp"; + "dynamic-state" = dontDistribute super."dynamic-state"; + "dynobud" = dontDistribute super."dynobud"; + "dyre" = dontDistribute super."dyre"; + "dywapitchtrack" = dontDistribute super."dywapitchtrack"; + "dzen-utils" = dontDistribute super."dzen-utils"; + "eager-sockets" = dontDistribute super."eager-sockets"; + "easy-api" = dontDistribute super."easy-api"; + "easy-bitcoin" = dontDistribute super."easy-bitcoin"; + "easyjson" = dontDistribute super."easyjson"; + "easyplot" = dontDistribute super."easyplot"; + "easyrender" = dontDistribute super."easyrender"; + "ebeats" = dontDistribute super."ebeats"; + "ebnf-bff" = dontDistribute super."ebnf-bff"; + "ec2-signature" = dontDistribute super."ec2-signature"; + "ecdsa" = dontDistribute super."ecdsa"; + "ecma262" = dontDistribute super."ecma262"; + "ecu" = dontDistribute super."ecu"; + "ed25519" = dontDistribute super."ed25519"; + "ed25519-donna" = dontDistribute super."ed25519-donna"; + "eddie" = dontDistribute super."eddie"; + "edenmodules" = dontDistribute super."edenmodules"; + "edenskel" = dontDistribute super."edenskel"; + "edentv" = dontDistribute super."edentv"; + "edge" = dontDistribute super."edge"; + "edit-distance-vector" = dontDistribute super."edit-distance-vector"; + "edit-lenses" = dontDistribute super."edit-lenses"; + "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; + "editable" = dontDistribute super."editable"; + "editline" = dontDistribute super."editline"; + "effect-monad" = dontDistribute super."effect-monad"; + "effective-aspects" = dontDistribute super."effective-aspects"; + "effective-aspects-mzv" = dontDistribute super."effective-aspects-mzv"; + "effects" = dontDistribute super."effects"; + "effects-parser" = dontDistribute super."effects-parser"; + "effin" = dontDistribute super."effin"; + "egison" = dontDistribute super."egison"; + "egison-quote" = dontDistribute super."egison-quote"; + "egison-tutorial" = dontDistribute super."egison-tutorial"; + "ehaskell" = dontDistribute super."ehaskell"; + "ehs" = dontDistribute super."ehs"; + "eibd-client-simple" = dontDistribute super."eibd-client-simple"; + "eigen" = dontDistribute super."eigen"; + "either-unwrap" = dontDistribute super."either-unwrap"; + "eithers" = dontDistribute super."eithers"; + "ekg" = dontDistribute super."ekg"; + "ekg-bosun" = dontDistribute super."ekg-bosun"; + "ekg-carbon" = dontDistribute super."ekg-carbon"; + "ekg-json" = dontDistribute super."ekg-json"; + "ekg-log" = dontDistribute super."ekg-log"; + "ekg-push" = dontDistribute super."ekg-push"; + "ekg-rrd" = dontDistribute super."ekg-rrd"; + "ekg-statsd" = dontDistribute super."ekg-statsd"; + "electrum-mnemonic" = dontDistribute super."electrum-mnemonic"; + "elerea" = dontDistribute super."elerea"; + "elerea-examples" = dontDistribute super."elerea-examples"; + "elerea-sdl" = dontDistribute super."elerea-sdl"; + "elevator" = dontDistribute super."elevator"; + "elf" = dontDistribute super."elf"; + "elm-bridge" = dontDistribute super."elm-bridge"; + "elm-build-lib" = dontDistribute super."elm-build-lib"; + "elm-compiler" = dontDistribute super."elm-compiler"; + "elm-get" = dontDistribute super."elm-get"; + "elm-init" = dontDistribute super."elm-init"; + "elm-make" = dontDistribute super."elm-make"; + "elm-package" = dontDistribute super."elm-package"; + "elm-reactor" = dontDistribute super."elm-reactor"; + "elm-repl" = dontDistribute super."elm-repl"; + "elm-server" = dontDistribute super."elm-server"; + "elm-yesod" = dontDistribute super."elm-yesod"; + "elo" = dontDistribute super."elo"; + "elocrypt" = dontDistribute super."elocrypt"; + "emacs-keys" = dontDistribute super."emacs-keys"; + "email" = dontDistribute super."email"; + "email-header" = dontDistribute super."email-header"; + "email-postmark" = dontDistribute super."email-postmark"; + "email-validator" = dontDistribute super."email-validator"; + "embeddock" = dontDistribute super."embeddock"; + "embeddock-example" = dontDistribute super."embeddock-example"; + "embroidery" = dontDistribute super."embroidery"; + "emgm" = dontDistribute super."emgm"; + "empty" = dontDistribute super."empty"; + "encoding" = dontDistribute super."encoding"; + "endo" = dontDistribute super."endo"; + "engine-io-snap" = dontDistribute super."engine-io-snap"; + "engine-io-wai" = dontDistribute super."engine-io-wai"; + "engine-io-yesod" = dontDistribute super."engine-io-yesod"; + "engineering-units" = dontDistribute super."engineering-units"; + "enumerable" = dontDistribute super."enumerable"; + "enumeration" = dontDistribute super."enumeration"; + "enumerator-fd" = dontDistribute super."enumerator-fd"; + "enumerator-tf" = dontDistribute super."enumerator-tf"; + "enumfun" = dontDistribute super."enumfun"; + "enummapmap" = dontDistribute super."enummapmap"; + "enummapset" = dontDistribute super."enummapset"; + "enummapset-th" = dontDistribute super."enummapset-th"; + "enumset" = dontDistribute super."enumset"; + "env-parser" = dontDistribute super."env-parser"; + "envparse" = dontDistribute super."envparse"; + "envy" = dontDistribute super."envy"; + "epanet-haskell" = dontDistribute super."epanet-haskell"; + "epass" = dontDistribute super."epass"; + "epic" = dontDistribute super."epic"; + "epoll" = dontDistribute super."epoll"; + "eprocess" = dontDistribute super."eprocess"; + "epub" = dontDistribute super."epub"; + "epub-metadata" = dontDistribute super."epub-metadata"; + "epub-tools" = dontDistribute super."epub-tools"; + "epubname" = dontDistribute super."epubname"; + "equal-files" = dontDistribute super."equal-files"; + "equational-reasoning" = dontDistribute super."equational-reasoning"; + "erd" = dontDistribute super."erd"; + "erf-native" = dontDistribute super."erf-native"; + "erlang" = dontDistribute super."erlang"; + "eros" = dontDistribute super."eros"; + "eros-client" = dontDistribute super."eros-client"; + "eros-http" = dontDistribute super."eros-http"; + "errno" = dontDistribute super."errno"; + "error-analyze" = dontDistribute super."error-analyze"; + "error-continuations" = dontDistribute super."error-continuations"; + "error-list" = dontDistribute super."error-list"; + "error-loc" = dontDistribute super."error-loc"; + "error-location" = dontDistribute super."error-location"; + "error-message" = dontDistribute super."error-message"; + "errorcall-eq-instance" = dontDistribute super."errorcall-eq-instance"; + "ersatz" = dontDistribute super."ersatz"; + "ersatz-toysat" = dontDistribute super."ersatz-toysat"; + "ert" = dontDistribute super."ert"; + "esotericbot" = dontDistribute super."esotericbot"; + "ess" = dontDistribute super."ess"; + "estimator" = dontDistribute super."estimator"; + "estimators" = dontDistribute super."estimators"; + "estreps" = dontDistribute super."estreps"; + "etcd" = dontDistribute super."etcd"; + "eternal" = dontDistribute super."eternal"; + "ethereum-client-haskell" = dontDistribute super."ethereum-client-haskell"; + "ethereum-merkle-patricia-db" = dontDistribute super."ethereum-merkle-patricia-db"; + "ethereum-rlp" = dontDistribute super."ethereum-rlp"; + "ety" = dontDistribute super."ety"; + "euler" = dontDistribute super."euler"; + "euphoria" = dontDistribute super."euphoria"; + "eurofxref" = dontDistribute super."eurofxref"; + "event-driven" = dontDistribute super."event-driven"; + "event-handlers" = dontDistribute super."event-handlers"; + "event-list" = dontDistribute super."event-list"; + "event-monad" = dontDistribute super."event-monad"; + "eventloop" = dontDistribute super."eventloop"; + "eventstore" = dontDistribute super."eventstore"; + "every-bit-counts" = dontDistribute super."every-bit-counts"; + "ewe" = dontDistribute super."ewe"; + "ex-pool" = dontDistribute super."ex-pool"; + "exact-combinatorics" = dontDistribute super."exact-combinatorics"; + "exact-pi" = dontDistribute super."exact-pi"; + "exception-mailer" = dontDistribute super."exception-mailer"; + "exception-monads-fd" = dontDistribute super."exception-monads-fd"; + "exception-monads-tf" = dontDistribute super."exception-monads-tf"; + "exherbo-cabal" = dontDistribute super."exherbo-cabal"; + "exif" = dontDistribute super."exif"; + "exinst" = dontDistribute super."exinst"; + "exinst-aeson" = dontDistribute super."exinst-aeson"; + "exinst-bytes" = dontDistribute super."exinst-bytes"; + "exinst-deepseq" = dontDistribute super."exinst-deepseq"; + "exinst-hashable" = dontDistribute super."exinst-hashable"; + "exists" = dontDistribute super."exists"; + "exit-codes" = dontDistribute super."exit-codes"; + "exp-pairs" = dontDistribute super."exp-pairs"; + "expand" = dontDistribute super."expand"; + "expat-enumerator" = dontDistribute super."expat-enumerator"; + "expiring-mvar" = dontDistribute super."expiring-mvar"; + "explain" = dontDistribute super."explain"; + "explicit-determinant" = dontDistribute super."explicit-determinant"; + "explicit-exception" = dontDistribute super."explicit-exception"; + "explicit-iomodes" = dontDistribute super."explicit-iomodes"; + "explicit-iomodes-bytestring" = dontDistribute super."explicit-iomodes-bytestring"; + "explicit-iomodes-text" = dontDistribute super."explicit-iomodes-text"; + "explicit-sharing" = dontDistribute super."explicit-sharing"; + "explore" = dontDistribute super."explore"; + "exposed-containers" = dontDistribute super."exposed-containers"; + "expression-parser" = dontDistribute super."expression-parser"; + "extcore" = dontDistribute super."extcore"; + "extemp" = dontDistribute super."extemp"; + "extended-categories" = dontDistribute super."extended-categories"; + "extended-reals" = dontDistribute super."extended-reals"; + "extensible" = dontDistribute super."extensible"; + "extensible-data" = dontDistribute super."extensible-data"; + "extensible-effects" = dontDistribute super."extensible-effects"; + "external-sort" = dontDistribute super."external-sort"; + "extractelf" = dontDistribute super."extractelf"; + "ez-couch" = dontDistribute super."ez-couch"; + "faceted" = dontDistribute super."faceted"; + "factory" = dontDistribute super."factory"; + "factual-api" = dontDistribute super."factual-api"; + "fad" = dontDistribute super."fad"; + "failable-list" = dontDistribute super."failable-list"; + "failure" = dontDistribute super."failure"; + "fair-predicates" = dontDistribute super."fair-predicates"; + "faker" = dontDistribute super."faker"; + "falling-turnip" = dontDistribute super."falling-turnip"; + "fallingblocks" = dontDistribute super."fallingblocks"; + "family-tree" = dontDistribute super."family-tree"; + "farmhash" = dontDistribute super."farmhash"; + "fast-digits" = dontDistribute super."fast-digits"; + "fast-math" = dontDistribute super."fast-math"; + "fast-tags" = dontDistribute super."fast-tags"; + "fast-tagsoup" = dontDistribute super."fast-tagsoup"; + "fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only"; + "fasta" = dontDistribute super."fasta"; + "fastbayes" = dontDistribute super."fastbayes"; + "fastcgi" = dontDistribute super."fastcgi"; + "fastedit" = dontDistribute super."fastedit"; + "fastirc" = dontDistribute super."fastirc"; + "fault-tree" = dontDistribute super."fault-tree"; + "fay-geoposition" = dontDistribute super."fay-geoposition"; + "fay-hsx" = dontDistribute super."fay-hsx"; + "fay-ref" = dontDistribute super."fay-ref"; + "fca" = dontDistribute super."fca"; + "fcd" = dontDistribute super."fcd"; + "fckeditor" = dontDistribute super."fckeditor"; + "fclabels-monadlib" = dontDistribute super."fclabels-monadlib"; + "fdo-trash" = dontDistribute super."fdo-trash"; + "fec" = dontDistribute super."fec"; + "fedora-packages" = dontDistribute super."fedora-packages"; + "feed-cli" = dontDistribute super."feed-cli"; + "feed-collect" = dontDistribute super."feed-collect"; + "feed-crawl" = dontDistribute super."feed-crawl"; + "feed-translator" = dontDistribute super."feed-translator"; + "feed2lj" = dontDistribute super."feed2lj"; + "feed2twitter" = dontDistribute super."feed2twitter"; + "feldspar-compiler" = dontDistribute super."feldspar-compiler"; + "feldspar-language" = dontDistribute super."feldspar-language"; + "feldspar-signal" = dontDistribute super."feldspar-signal"; + "fen2s" = dontDistribute super."fen2s"; + "fences" = dontDistribute super."fences"; + "fenfire" = dontDistribute super."fenfire"; + "fez-conf" = dontDistribute super."fez-conf"; + "ffeed" = dontDistribute super."ffeed"; + "fficxx" = dontDistribute super."fficxx"; + "fficxx-runtime" = dontDistribute super."fficxx-runtime"; + "ffmpeg-light" = dontDistribute super."ffmpeg-light"; + "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials"; + "fft" = dontDistribute super."fft"; + "fftwRaw" = dontDistribute super."fftwRaw"; + "fgl-arbitrary" = dontDistribute super."fgl-arbitrary"; + "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions"; + "fgl-visualize" = dontDistribute super."fgl-visualize"; + "fibon" = dontDistribute super."fibon"; + "fibonacci" = dontDistribute super."fibonacci"; + "fields" = dontDistribute super."fields"; + "fields-json" = dontDistribute super."fields-json"; + "fieldwise" = dontDistribute super."fieldwise"; + "fig" = dontDistribute super."fig"; + "file-collection" = dontDistribute super."file-collection"; + "file-command-qq" = dontDistribute super."file-command-qq"; + "filecache" = dontDistribute super."filecache"; + "filediff" = dontDistribute super."filediff"; + "filepath-io-access" = dontDistribute super."filepath-io-access"; + "filepather" = dontDistribute super."filepather"; + "filestore" = dontDistribute super."filestore"; + "filesystem-conduit" = dontDistribute super."filesystem-conduit"; + "filesystem-enumerator" = dontDistribute super."filesystem-enumerator"; + "filesystem-trees" = dontDistribute super."filesystem-trees"; + "filtrable" = dontDistribute super."filtrable"; + "final" = dontDistribute super."final"; + "find-conduit" = dontDistribute super."find-conduit"; + "fingertree-tf" = dontDistribute super."fingertree-tf"; + "finite-field" = dontDistribute super."finite-field"; + "finite-typelits" = dontDistribute super."finite-typelits"; + "first-and-last" = dontDistribute super."first-and-last"; + "first-class-patterns" = dontDistribute super."first-class-patterns"; + "firstify" = dontDistribute super."firstify"; + "fishfood" = dontDistribute super."fishfood"; + "fit" = dontDistribute super."fit"; + "fitsio" = dontDistribute super."fitsio"; + "fix-imports" = dontDistribute super."fix-imports"; + "fix-parser-simple" = dontDistribute super."fix-parser-simple"; + "fix-symbols-gitit" = dontDistribute super."fix-symbols-gitit"; + "fixed-length" = dontDistribute super."fixed-length"; + "fixed-point" = dontDistribute super."fixed-point"; + "fixed-point-vector" = dontDistribute super."fixed-point-vector"; + "fixed-point-vector-space" = dontDistribute super."fixed-point-vector-space"; + "fixed-precision" = dontDistribute super."fixed-precision"; + "fixed-storable-array" = dontDistribute super."fixed-storable-array"; + "fixed-vector-binary" = dontDistribute super."fixed-vector-binary"; + "fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal"; + "fixedprec" = dontDistribute super."fixedprec"; + "fixedwidth-hs" = dontDistribute super."fixedwidth-hs"; + "fixhs" = dontDistribute super."fixhs"; + "fixplate" = dontDistribute super."fixplate"; + "fixpoint" = dontDistribute super."fixpoint"; + "fixtime" = dontDistribute super."fixtime"; + "fizz-buzz" = dontDistribute super."fizz-buzz"; + "flaccuraterip" = dontDistribute super."flaccuraterip"; + "flamethrower" = dontDistribute super."flamethrower"; + "flamingra" = dontDistribute super."flamingra"; + "flat-mcmc" = dontDistribute super."flat-mcmc"; + "flat-tex" = dontDistribute super."flat-tex"; + "flexible-time" = dontDistribute super."flexible-time"; + "flexible-unlit" = dontDistribute super."flexible-unlit"; + "flexiwrap" = dontDistribute super."flexiwrap"; + "flexiwrap-smallcheck" = dontDistribute super."flexiwrap-smallcheck"; + "flickr" = dontDistribute super."flickr"; + "flippers" = dontDistribute super."flippers"; + "flite" = dontDistribute super."flite"; + "flo" = dontDistribute super."flo"; + "float-binstring" = dontDistribute super."float-binstring"; + "floating-bits" = dontDistribute super."floating-bits"; + "floatshow" = dontDistribute super."floatshow"; + "flow2dot" = dontDistribute super."flow2dot"; + "flowdock-api" = dontDistribute super."flowdock-api"; + "flowdock-rest" = dontDistribute super."flowdock-rest"; + "flower" = dontDistribute super."flower"; + "flowlocks-framework" = dontDistribute super."flowlocks-framework"; + "flowsim" = dontDistribute super."flowsim"; + "fltkhs" = dontDistribute super."fltkhs"; + "fltkhs-fluid-examples" = dontDistribute super."fltkhs-fluid-examples"; + "fluent-logger" = dontDistribute super."fluent-logger"; + "fluent-logger-conduit" = dontDistribute super."fluent-logger-conduit"; + "fluidsynth" = dontDistribute super."fluidsynth"; + "fmark" = dontDistribute super."fmark"; + "fn" = dontDistribute super."fn"; + "fn-extra" = dontDistribute super."fn-extra"; + "fold-debounce" = dontDistribute super."fold-debounce"; + "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit"; + "foldl-incremental" = dontDistribute super."foldl-incremental"; + "foldl-transduce" = dontDistribute super."foldl-transduce"; + "foldl-transduce-attoparsec" = dontDistribute super."foldl-transduce-attoparsec"; + "folds" = dontDistribute super."folds"; + "folds-common" = dontDistribute super."folds-common"; + "follower" = dontDistribute super."follower"; + "foma" = dontDistribute super."foma"; + "font-opengl-basic4x6" = dontDistribute super."font-opengl-basic4x6"; + "foo" = dontDistribute super."foo"; + "for-free" = dontDistribute super."for-free"; + "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "fordo" = dontDistribute super."fordo"; + "forecast-io" = dontDistribute super."forecast-io"; + "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric"; + "foreign-var" = dontDistribute super."foreign-var"; + "forger" = dontDistribute super."forger"; + "forkable-monad" = dontDistribute super."forkable-monad"; + "formal" = dontDistribute super."formal"; + "format" = dontDistribute super."format"; + "format-status" = dontDistribute super."format-status"; + "formattable" = dontDistribute super."formattable"; + "forml" = dontDistribute super."forml"; + "formlets" = dontDistribute super."formlets"; + "formlets-hsp" = dontDistribute super."formlets-hsp"; + "forth-hll" = dontDistribute super."forth-hll"; + "fountain" = dontDistribute super."fountain"; + "fpco-api" = dontDistribute super."fpco-api"; + "fpipe" = dontDistribute super."fpipe"; + "fpnla" = dontDistribute super."fpnla"; + "fpnla-examples" = dontDistribute super."fpnla-examples"; + "fptest" = dontDistribute super."fptest"; + "fquery" = dontDistribute super."fquery"; + "fractal" = dontDistribute super."fractal"; + "fractals" = dontDistribute super."fractals"; + "fraction" = dontDistribute super."fraction"; + "frag" = dontDistribute super."frag"; + "frame" = dontDistribute super."frame"; + "frame-markdown" = dontDistribute super."frame-markdown"; + "franchise" = dontDistribute super."franchise"; + "free-functors" = dontDistribute super."free-functors"; + "free-game" = dontDistribute super."free-game"; + "free-http" = dontDistribute super."free-http"; + "free-operational" = dontDistribute super."free-operational"; + "free-theorems" = dontDistribute super."free-theorems"; + "free-theorems-counterexamples" = dontDistribute super."free-theorems-counterexamples"; + "free-theorems-seq" = dontDistribute super."free-theorems-seq"; + "free-theorems-seq-webui" = dontDistribute super."free-theorems-seq-webui"; + "free-theorems-webui" = dontDistribute super."free-theorems-webui"; + "freekick2" = dontDistribute super."freekick2"; + "freenect" = doDistribute super."freenect_1_2"; + "freer" = dontDistribute super."freer"; + "freesect" = dontDistribute super."freesect"; + "freesound" = dontDistribute super."freesound"; + "freetype-simple" = dontDistribute super."freetype-simple"; + "freetype2" = dontDistribute super."freetype2"; + "fresh" = dontDistribute super."fresh"; + "friday" = dontDistribute super."friday"; + "friday-devil" = dontDistribute super."friday-devil"; + "friday-juicypixels" = dontDistribute super."friday-juicypixels"; + "friendly-time" = dontDistribute super."friendly-time"; + "frp-arduino" = dontDistribute super."frp-arduino"; + "frpnow" = dontDistribute super."frpnow"; + "frpnow-gloss" = dontDistribute super."frpnow-gloss"; + "frpnow-gtk" = dontDistribute super."frpnow-gtk"; + "frquotes" = dontDistribute super."frquotes"; + "fs-events" = dontDistribute super."fs-events"; + "fsharp" = dontDistribute super."fsharp"; + "fsmActions" = dontDistribute super."fsmActions"; + "fst" = dontDistribute super."fst"; + "fsutils" = dontDistribute super."fsutils"; + "fswatcher" = dontDistribute super."fswatcher"; + "ftdi" = dontDistribute super."ftdi"; + "ftp-conduit" = dontDistribute super."ftp-conduit"; + "ftphs" = dontDistribute super."ftphs"; + "ftree" = dontDistribute super."ftree"; + "ftshell" = dontDistribute super."ftshell"; + "fugue" = dontDistribute super."fugue"; + "full-sessions" = dontDistribute super."full-sessions"; + "full-text-search" = dontDistribute super."full-text-search"; + "fullstop" = dontDistribute super."fullstop"; + "funbot" = dontDistribute super."funbot"; + "funbot-client" = dontDistribute super."funbot-client"; + "funbot-ext-events" = dontDistribute super."funbot-ext-events"; + "funbot-git-hook" = dontDistribute super."funbot-git-hook"; + "funcmp" = dontDistribute super."funcmp"; + "function-combine" = dontDistribute super."function-combine"; + "function-instances-algebra" = dontDistribute super."function-instances-algebra"; + "functional-arrow" = dontDistribute super."functional-arrow"; + "functor-apply" = dontDistribute super."functor-apply"; + "functor-combo" = dontDistribute super."functor-combo"; + "functor-infix" = dontDistribute super."functor-infix"; + "functor-monadic" = dontDistribute super."functor-monadic"; + "functorm" = dontDistribute super."functorm"; + "functors" = dontDistribute super."functors"; + "funion" = dontDistribute super."funion"; + "funpat" = dontDistribute super."funpat"; + "funsat" = dontDistribute super."funsat"; + "fusion" = dontDistribute super."fusion"; + "futun" = dontDistribute super."futun"; + "future" = dontDistribute super."future"; + "future-resource" = dontDistribute super."future-resource"; + "fuzzy" = dontDistribute super."fuzzy"; + "fuzzy-timings" = dontDistribute super."fuzzy-timings"; + "fuzzytime" = dontDistribute super."fuzzytime"; + "fwgl" = dontDistribute super."fwgl"; + "fwgl-glfw" = dontDistribute super."fwgl-glfw"; + "fwgl-javascript" = dontDistribute super."fwgl-javascript"; + "g-npm" = dontDistribute super."g-npm"; + "gact" = dontDistribute super."gact"; + "game-of-life" = dontDistribute super."game-of-life"; + "game-probability" = dontDistribute super."game-probability"; + "game-tree" = dontDistribute super."game-tree"; + "gameclock" = dontDistribute super."gameclock"; + "gamma" = dontDistribute super."gamma"; + "gang-of-threads" = dontDistribute super."gang-of-threads"; + "garepinoh" = dontDistribute super."garepinoh"; + "garsia-wachs" = dontDistribute super."garsia-wachs"; + "gbu" = dontDistribute super."gbu"; + "gc" = dontDistribute super."gc"; + "gc-monitoring-wai" = dontDistribute super."gc-monitoring-wai"; + "gconf" = dontDistribute super."gconf"; + "gdiff" = dontDistribute super."gdiff"; + "gdiff-ig" = dontDistribute super."gdiff-ig"; + "gdiff-th" = dontDistribute super."gdiff-th"; + "gearbox" = dontDistribute super."gearbox"; + "geek" = dontDistribute super."geek"; + "geek-server" = dontDistribute super."geek-server"; + "gelatin" = dontDistribute super."gelatin"; + "gemstone" = dontDistribute super."gemstone"; + "gencheck" = dontDistribute super."gencheck"; + "gender" = dontDistribute super."gender"; + "genders" = dontDistribute super."genders"; + "general-prelude" = dontDistribute super."general-prelude"; + "generator" = dontDistribute super."generator"; + "generators" = dontDistribute super."generators"; + "generic-accessors" = dontDistribute super."generic-accessors"; + "generic-binary" = dontDistribute super."generic-binary"; + "generic-church" = dontDistribute super."generic-church"; + "generic-deepseq" = dontDistribute super."generic-deepseq"; + "generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold"; + "generic-maybe" = dontDistribute super."generic-maybe"; + "generic-pretty" = dontDistribute super."generic-pretty"; + "generic-server" = dontDistribute super."generic-server"; + "generic-storable" = dontDistribute super."generic-storable"; + "generic-tree" = dontDistribute super."generic-tree"; + "generic-trie" = dontDistribute super."generic-trie"; + "generic-xml" = dontDistribute super."generic-xml"; + "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "genericserialize" = dontDistribute super."genericserialize"; + "genetics" = dontDistribute super."genetics"; + "geni-gui" = dontDistribute super."geni-gui"; + "geni-util" = dontDistribute super."geni-util"; + "geniconvert" = dontDistribute super."geniconvert"; + "genifunctors" = dontDistribute super."genifunctors"; + "geniplate" = dontDistribute super."geniplate"; + "geniserver" = dontDistribute super."geniserver"; + "genprog" = dontDistribute super."genprog"; + "gentlemark" = dontDistribute super."gentlemark"; + "geo-resolver" = dontDistribute super."geo-resolver"; + "geocalc" = dontDistribute super."geocalc"; + "geocode-google" = dontDistribute super."geocode-google"; + "geodetic" = dontDistribute super."geodetic"; + "geodetics" = dontDistribute super."geodetics"; + "geohash" = dontDistribute super."geohash"; + "geoip2" = dontDistribute super."geoip2"; + "geojson" = dontDistribute super."geojson"; + "geom2d" = dontDistribute super."geom2d"; + "getemx" = dontDistribute super."getemx"; + "getflag" = dontDistribute super."getflag"; + "getopt-generics" = doDistribute super."getopt-generics_0_10_0_1"; + "getopt-simple" = dontDistribute super."getopt-simple"; + "gf" = dontDistribute super."gf"; + "ggtsTC" = dontDistribute super."ggtsTC"; + "ghc-core" = dontDistribute super."ghc-core"; + "ghc-core-html" = dontDistribute super."ghc-core-html"; + "ghc-datasize" = dontDistribute super."ghc-datasize"; + "ghc-dup" = dontDistribute super."ghc-dup"; + "ghc-events-analyze" = dontDistribute super."ghc-events-analyze"; + "ghc-events-parallel" = dontDistribute super."ghc-events-parallel"; + "ghc-exactprint" = dontDistribute super."ghc-exactprint"; + "ghc-gc-tune" = dontDistribute super."ghc-gc-tune"; + "ghc-generic-instances" = dontDistribute super."ghc-generic-instances"; + "ghc-heap-view" = dontDistribute super."ghc-heap-view"; + "ghc-imported-from" = dontDistribute super."ghc-imported-from"; + "ghc-make" = dontDistribute super."ghc-make"; + "ghc-man-completion" = dontDistribute super."ghc-man-completion"; + "ghc-mod" = dontDistribute super."ghc-mod"; + "ghc-parmake" = dontDistribute super."ghc-parmake"; + "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; + "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; + "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph"; + "ghc-server" = dontDistribute super."ghc-server"; + "ghc-session" = dontDistribute super."ghc-session"; + "ghc-simple" = dontDistribute super."ghc-simple"; + "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; + "ghc-syb" = dontDistribute super."ghc-syb"; + "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; + "ghc-vis" = dontDistribute super."ghc-vis"; + "ghci-diagrams" = dontDistribute super."ghci-diagrams"; + "ghci-haskeline" = dontDistribute super."ghci-haskeline"; + "ghci-lib" = dontDistribute super."ghci-lib"; + "ghci-ng" = dontDistribute super."ghci-ng"; + "ghci-pretty" = dontDistribute super."ghci-pretty"; + "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; + "ghcjs-dom" = dontDistribute super."ghcjs-dom"; + "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; + "ghcjs-websockets" = dontDistribute super."ghcjs-websockets"; + "ghclive" = dontDistribute super."ghclive"; + "ghczdecode" = dontDistribute super."ghczdecode"; + "ght" = dontDistribute super."ght"; + "gi-atk" = dontDistribute super."gi-atk"; + "gi-cairo" = dontDistribute super."gi-cairo"; + "gi-gdk" = dontDistribute super."gi-gdk"; + "gi-gdkpixbuf" = dontDistribute super."gi-gdkpixbuf"; + "gi-gio" = dontDistribute super."gi-gio"; + "gi-glib" = dontDistribute super."gi-glib"; + "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gtk" = dontDistribute super."gi-gtk"; + "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; + "gi-notify" = dontDistribute super."gi-notify"; + "gi-pango" = dontDistribute super."gi-pango"; + "gi-soup" = dontDistribute super."gi-soup"; + "gi-vte" = dontDistribute super."gi-vte"; + "gi-webkit" = dontDistribute super."gi-webkit"; + "gimlh" = dontDistribute super."gimlh"; + "ginger" = dontDistribute super."ginger"; + "ginsu" = dontDistribute super."ginsu"; + "gipeda" = doDistribute super."gipeda_0_1_2_1"; + "gist" = dontDistribute super."gist"; + "git-all" = dontDistribute super."git-all"; + "git-annex" = doDistribute super."git-annex_5_20150727"; + "git-checklist" = dontDistribute super."git-checklist"; + "git-date" = dontDistribute super."git-date"; + "git-embed" = dontDistribute super."git-embed"; + "git-freq" = dontDistribute super."git-freq"; + "git-gpush" = dontDistribute super."git-gpush"; + "git-jump" = dontDistribute super."git-jump"; + "git-monitor" = dontDistribute super."git-monitor"; + "git-object" = dontDistribute super."git-object"; + "git-repair" = dontDistribute super."git-repair"; + "git-sanity" = dontDistribute super."git-sanity"; + "git-vogue" = dontDistribute super."git-vogue"; + "gitcache" = dontDistribute super."gitcache"; + "gitdo" = dontDistribute super."gitdo"; + "github" = dontDistribute super."github"; + "github-backup" = dontDistribute super."github-backup"; + "github-post-receive" = dontDistribute super."github-post-receive"; + "github-types" = dontDistribute super."github-types"; + "github-utils" = dontDistribute super."github-utils"; + "github-webhook-handler" = dontDistribute super."github-webhook-handler"; + "github-webhook-handler-snap" = dontDistribute super."github-webhook-handler-snap"; + "gitignore" = dontDistribute super."gitignore"; + "gitit" = dontDistribute super."gitit"; + "gitlib-cmdline" = dontDistribute super."gitlib-cmdline"; + "gitlib-cross" = dontDistribute super."gitlib-cross"; + "gitlib-s3" = dontDistribute super."gitlib-s3"; + "gitlib-sample" = dontDistribute super."gitlib-sample"; + "gitlib-utils" = dontDistribute super."gitlib-utils"; + "gl-capture" = dontDistribute super."gl-capture"; + "glade" = dontDistribute super."glade"; + "gladexml-accessor" = dontDistribute super."gladexml-accessor"; + "glambda" = dontDistribute super."glambda"; + "glapp" = dontDistribute super."glapp"; + "glasso" = dontDistribute super."glasso"; + "glider-nlp" = dontDistribute super."glider-nlp"; + "glintcollider" = dontDistribute super."glintcollider"; + "gll" = dontDistribute super."gll"; + "global" = dontDistribute super."global"; + "global-config" = dontDistribute super."global-config"; + "global-lock" = dontDistribute super."global-lock"; + "global-variables" = dontDistribute super."global-variables"; + "glome-hs" = dontDistribute super."glome-hs"; + "gloss" = dontDistribute super."gloss"; + "gloss-accelerate" = dontDistribute super."gloss-accelerate"; + "gloss-algorithms" = dontDistribute super."gloss-algorithms"; + "gloss-banana" = dontDistribute super."gloss-banana"; + "gloss-devil" = dontDistribute super."gloss-devil"; + "gloss-examples" = dontDistribute super."gloss-examples"; + "gloss-game" = dontDistribute super."gloss-game"; + "gloss-juicy" = dontDistribute super."gloss-juicy"; + "gloss-raster" = dontDistribute super."gloss-raster"; + "gloss-raster-accelerate" = dontDistribute super."gloss-raster-accelerate"; + "gloss-rendering" = dontDistribute super."gloss-rendering"; + "gloss-sodium" = dontDistribute super."gloss-sodium"; + "glpk-hs" = dontDistribute super."glpk-hs"; + "glue" = dontDistribute super."glue"; + "glue-common" = dontDistribute super."glue-common"; + "glue-core" = dontDistribute super."glue-core"; + "glue-ekg" = dontDistribute super."glue-ekg"; + "glue-example" = dontDistribute super."glue-example"; + "gluturtle" = dontDistribute super."gluturtle"; + "gmap" = dontDistribute super."gmap"; + "gmndl" = dontDistribute super."gmndl"; + "gnome-desktop" = dontDistribute super."gnome-desktop"; + "gnome-keyring" = dontDistribute super."gnome-keyring"; + "gnomevfs" = dontDistribute super."gnomevfs"; + "gnuplot" = dontDistribute super."gnuplot"; + "goa" = dontDistribute super."goa"; + "goatee" = dontDistribute super."goatee"; + "goatee-gtk" = dontDistribute super."goatee-gtk"; + "gofer-prelude" = dontDistribute super."gofer-prelude"; + "gogol" = dontDistribute super."gogol"; + "gogol-adexchange-buyer" = dontDistribute super."gogol-adexchange-buyer"; + "gogol-adexchange-seller" = dontDistribute super."gogol-adexchange-seller"; + "gogol-admin-datatransfer" = dontDistribute super."gogol-admin-datatransfer"; + "gogol-admin-directory" = dontDistribute super."gogol-admin-directory"; + "gogol-admin-emailmigration" = dontDistribute super."gogol-admin-emailmigration"; + "gogol-admin-reports" = dontDistribute super."gogol-admin-reports"; + "gogol-adsense" = dontDistribute super."gogol-adsense"; + "gogol-adsense-host" = dontDistribute super."gogol-adsense-host"; + "gogol-affiliates" = dontDistribute super."gogol-affiliates"; + "gogol-analytics" = dontDistribute super."gogol-analytics"; + "gogol-android-enterprise" = dontDistribute super."gogol-android-enterprise"; + "gogol-android-publisher" = dontDistribute super."gogol-android-publisher"; + "gogol-appengine" = dontDistribute super."gogol-appengine"; + "gogol-apps-activity" = dontDistribute super."gogol-apps-activity"; + "gogol-apps-calendar" = dontDistribute super."gogol-apps-calendar"; + "gogol-apps-licensing" = dontDistribute super."gogol-apps-licensing"; + "gogol-apps-reseller" = dontDistribute super."gogol-apps-reseller"; + "gogol-apps-tasks" = dontDistribute super."gogol-apps-tasks"; + "gogol-appstate" = dontDistribute super."gogol-appstate"; + "gogol-autoscaler" = dontDistribute super."gogol-autoscaler"; + "gogol-bigquery" = dontDistribute super."gogol-bigquery"; + "gogol-billing" = dontDistribute super."gogol-billing"; + "gogol-blogger" = dontDistribute super."gogol-blogger"; + "gogol-books" = dontDistribute super."gogol-books"; + "gogol-civicinfo" = dontDistribute super."gogol-civicinfo"; + "gogol-classroom" = dontDistribute super."gogol-classroom"; + "gogol-cloudtrace" = dontDistribute super."gogol-cloudtrace"; + "gogol-compute" = dontDistribute super."gogol-compute"; + "gogol-container" = dontDistribute super."gogol-container"; + "gogol-core" = dontDistribute super."gogol-core"; + "gogol-customsearch" = dontDistribute super."gogol-customsearch"; + "gogol-dataflow" = dontDistribute super."gogol-dataflow"; + "gogol-datastore" = dontDistribute super."gogol-datastore"; + "gogol-debugger" = dontDistribute super."gogol-debugger"; + "gogol-deploymentmanager" = dontDistribute super."gogol-deploymentmanager"; + "gogol-dfareporting" = dontDistribute super."gogol-dfareporting"; + "gogol-discovery" = dontDistribute super."gogol-discovery"; + "gogol-dns" = dontDistribute super."gogol-dns"; + "gogol-doubleclick-bids" = dontDistribute super."gogol-doubleclick-bids"; + "gogol-doubleclick-search" = dontDistribute super."gogol-doubleclick-search"; + "gogol-drive" = dontDistribute super."gogol-drive"; + "gogol-fitness" = dontDistribute super."gogol-fitness"; + "gogol-fonts" = dontDistribute super."gogol-fonts"; + "gogol-freebasesearch" = dontDistribute super."gogol-freebasesearch"; + "gogol-fusiontables" = dontDistribute super."gogol-fusiontables"; + "gogol-games" = dontDistribute super."gogol-games"; + "gogol-games-configuration" = dontDistribute super."gogol-games-configuration"; + "gogol-games-management" = dontDistribute super."gogol-games-management"; + "gogol-genomics" = dontDistribute super."gogol-genomics"; + "gogol-gmail" = dontDistribute super."gogol-gmail"; + "gogol-groups-migration" = dontDistribute super."gogol-groups-migration"; + "gogol-groups-settings" = dontDistribute super."gogol-groups-settings"; + "gogol-identity-toolkit" = dontDistribute super."gogol-identity-toolkit"; + "gogol-latencytest" = dontDistribute super."gogol-latencytest"; + "gogol-logging" = dontDistribute super."gogol-logging"; + "gogol-maps-coordinate" = dontDistribute super."gogol-maps-coordinate"; + "gogol-maps-engine" = dontDistribute super."gogol-maps-engine"; + "gogol-mirror" = dontDistribute super."gogol-mirror"; + "gogol-monitoring" = dontDistribute super."gogol-monitoring"; + "gogol-oauth2" = dontDistribute super."gogol-oauth2"; + "gogol-pagespeed" = dontDistribute super."gogol-pagespeed"; + "gogol-partners" = dontDistribute super."gogol-partners"; + "gogol-play-moviespartner" = dontDistribute super."gogol-play-moviespartner"; + "gogol-plus" = dontDistribute super."gogol-plus"; + "gogol-plus-domains" = dontDistribute super."gogol-plus-domains"; + "gogol-prediction" = dontDistribute super."gogol-prediction"; + "gogol-proximitybeacon" = dontDistribute super."gogol-proximitybeacon"; + "gogol-pubsub" = dontDistribute super."gogol-pubsub"; + "gogol-qpxexpress" = dontDistribute super."gogol-qpxexpress"; + "gogol-replicapool" = dontDistribute super."gogol-replicapool"; + "gogol-replicapool-updater" = dontDistribute super."gogol-replicapool-updater"; + "gogol-resourcemanager" = dontDistribute super."gogol-resourcemanager"; + "gogol-resourceviews" = dontDistribute super."gogol-resourceviews"; + "gogol-shopping-content" = dontDistribute super."gogol-shopping-content"; + "gogol-siteverification" = dontDistribute super."gogol-siteverification"; + "gogol-spectrum" = dontDistribute super."gogol-spectrum"; + "gogol-sqladmin" = dontDistribute super."gogol-sqladmin"; + "gogol-storage" = dontDistribute super."gogol-storage"; + "gogol-storage-transfer" = dontDistribute super."gogol-storage-transfer"; + "gogol-tagmanager" = dontDistribute super."gogol-tagmanager"; + "gogol-taskqueue" = dontDistribute super."gogol-taskqueue"; + "gogol-translate" = dontDistribute super."gogol-translate"; + "gogol-urlshortener" = dontDistribute super."gogol-urlshortener"; + "gogol-useraccounts" = dontDistribute super."gogol-useraccounts"; + "gogol-webmaster-tools" = dontDistribute super."gogol-webmaster-tools"; + "gogol-youtube" = dontDistribute super."gogol-youtube"; + "gogol-youtube-analytics" = dontDistribute super."gogol-youtube-analytics"; + "gogol-youtube-reporting" = dontDistribute super."gogol-youtube-reporting"; + "gooey" = dontDistribute super."gooey"; + "google-cloud" = dontDistribute super."google-cloud"; + "google-dictionary" = dontDistribute super."google-dictionary"; + "google-drive" = dontDistribute super."google-drive"; + "google-html5-slide" = dontDistribute super."google-html5-slide"; + "google-mail-filters" = dontDistribute super."google-mail-filters"; + "google-oauth2" = dontDistribute super."google-oauth2"; + "google-search" = dontDistribute super."google-search"; + "google-translate" = dontDistribute super."google-translate"; + "googleplus" = dontDistribute super."googleplus"; + "googlepolyline" = dontDistribute super."googlepolyline"; + "gopherbot" = dontDistribute super."gopherbot"; + "gpah" = dontDistribute super."gpah"; + "gpcsets" = dontDistribute super."gpcsets"; + "gpolyline" = dontDistribute super."gpolyline"; + "gps" = dontDistribute super."gps"; + "gps2htmlReport" = dontDistribute super."gps2htmlReport"; + "gpx-conduit" = dontDistribute super."gpx-conduit"; + "graceful" = dontDistribute super."graceful"; + "grammar-combinators" = dontDistribute super."grammar-combinators"; + "grapefruit-examples" = dontDistribute super."grapefruit-examples"; + "grapefruit-frp" = dontDistribute super."grapefruit-frp"; + "grapefruit-records" = dontDistribute super."grapefruit-records"; + "grapefruit-ui" = dontDistribute super."grapefruit-ui"; + "grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk"; + "graph-generators" = dontDistribute super."graph-generators"; + "graph-matchings" = dontDistribute super."graph-matchings"; + "graph-rewriting" = dontDistribute super."graph-rewriting"; + "graph-rewriting-cl" = dontDistribute super."graph-rewriting-cl"; + "graph-rewriting-gl" = dontDistribute super."graph-rewriting-gl"; + "graph-rewriting-lambdascope" = dontDistribute super."graph-rewriting-lambdascope"; + "graph-rewriting-layout" = dontDistribute super."graph-rewriting-layout"; + "graph-rewriting-ski" = dontDistribute super."graph-rewriting-ski"; + "graph-rewriting-strategies" = dontDistribute super."graph-rewriting-strategies"; + "graph-rewriting-trs" = dontDistribute super."graph-rewriting-trs"; + "graph-rewriting-ww" = dontDistribute super."graph-rewriting-ww"; + "graph-serialize" = dontDistribute super."graph-serialize"; + "graph-utils" = dontDistribute super."graph-utils"; + "graph-visit" = dontDistribute super."graph-visit"; + "graphbuilder" = dontDistribute super."graphbuilder"; + "graphene" = dontDistribute super."graphene"; + "graphics-drawingcombinators" = dontDistribute super."graphics-drawingcombinators"; + "graphics-formats-collada" = dontDistribute super."graphics-formats-collada"; + "graphicsFormats" = dontDistribute super."graphicsFormats"; + "graphicstools" = dontDistribute super."graphicstools"; + "graphmod" = dontDistribute super."graphmod"; + "graphql" = dontDistribute super."graphql"; + "graphtype" = dontDistribute super."graphtype"; + "graphviz" = dontDistribute super."graphviz"; + "gray-code" = dontDistribute super."gray-code"; + "gray-extended" = dontDistribute super."gray-extended"; + "greencard" = dontDistribute super."greencard"; + "greencard-lib" = dontDistribute super."greencard-lib"; + "greg-client" = dontDistribute super."greg-client"; + "grid" = dontDistribute super."grid"; + "gridland" = dontDistribute super."gridland"; + "grm" = dontDistribute super."grm"; + "groom" = dontDistribute super."groom"; + "groundhog-inspector" = dontDistribute super."groundhog-inspector"; + "group-with" = dontDistribute super."group-with"; + "grouped-list" = dontDistribute super."grouped-list"; + "groupoid" = dontDistribute super."groupoid"; + "gruff" = dontDistribute super."gruff"; + "gruff-examples" = dontDistribute super."gruff-examples"; + "gsc-weighting" = dontDistribute super."gsc-weighting"; + "gsl-random" = dontDistribute super."gsl-random"; + "gsl-random-fu" = dontDistribute super."gsl-random-fu"; + "gsmenu" = dontDistribute super."gsmenu"; + "gstreamer" = dontDistribute super."gstreamer"; + "gt-tools" = dontDistribute super."gt-tools"; + "gtfs" = dontDistribute super."gtfs"; + "gtk-helpers" = dontDistribute super."gtk-helpers"; + "gtk-jsinput" = dontDistribute super."gtk-jsinput"; + "gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore"; + "gtk-mac-integration" = dontDistribute super."gtk-mac-integration"; + "gtk-serialized-event" = dontDistribute super."gtk-serialized-event"; + "gtk-simple-list-view" = dontDistribute super."gtk-simple-list-view"; + "gtk-toggle-button-list" = dontDistribute super."gtk-toggle-button-list"; + "gtk-toy" = dontDistribute super."gtk-toy"; + "gtk-traymanager" = dontDistribute super."gtk-traymanager"; + "gtk2hs-cast-glade" = dontDistribute super."gtk2hs-cast-glade"; + "gtk2hs-cast-glib" = dontDistribute super."gtk2hs-cast-glib"; + "gtk2hs-cast-gnomevfs" = dontDistribute super."gtk2hs-cast-gnomevfs"; + "gtk2hs-cast-gtk" = dontDistribute super."gtk2hs-cast-gtk"; + "gtk2hs-cast-gtkglext" = dontDistribute super."gtk2hs-cast-gtkglext"; + "gtk2hs-cast-gtksourceview2" = dontDistribute super."gtk2hs-cast-gtksourceview2"; + "gtk2hs-cast-th" = dontDistribute super."gtk2hs-cast-th"; + "gtk2hs-hello" = dontDistribute super."gtk2hs-hello"; + "gtk2hs-rpn" = dontDistribute super."gtk2hs-rpn"; + "gtk3-mac-integration" = dontDistribute super."gtk3-mac-integration"; + "gtkglext" = dontDistribute super."gtkglext"; + "gtkimageview" = dontDistribute super."gtkimageview"; + "gtkrsync" = dontDistribute super."gtkrsync"; + "gtksourceview2" = dontDistribute super."gtksourceview2"; + "gtksourceview3" = dontDistribute super."gtksourceview3"; + "guarded-rewriting" = dontDistribute super."guarded-rewriting"; + "guess-combinator" = dontDistribute super."guess-combinator"; + "gulcii" = dontDistribute super."gulcii"; + "gutenberg-fibonaccis" = dontDistribute super."gutenberg-fibonaccis"; + "gyah-bin" = dontDistribute super."gyah-bin"; + "h-booru" = dontDistribute super."h-booru"; + "h-gpgme" = dontDistribute super."h-gpgme"; + "h2048" = dontDistribute super."h2048"; + "hArduino" = dontDistribute super."hArduino"; + "hBDD" = dontDistribute super."hBDD"; + "hBDD-CMUBDD" = dontDistribute super."hBDD-CMUBDD"; + "hBDD-CUDD" = dontDistribute super."hBDD-CUDD"; + "hCsound" = dontDistribute super."hCsound"; + "hDFA" = dontDistribute super."hDFA"; + "hF2" = dontDistribute super."hF2"; + "hGelf" = dontDistribute super."hGelf"; + "hLLVM" = dontDistribute super."hLLVM"; + "hMollom" = dontDistribute super."hMollom"; + "hOpenPGP" = dontDistribute super."hOpenPGP"; + "hPDB-examples" = dontDistribute super."hPDB-examples"; + "hPushover" = dontDistribute super."hPushover"; + "hR" = dontDistribute super."hR"; + "hRESP" = dontDistribute super."hRESP"; + "hS3" = dontDistribute super."hS3"; + "hScraper" = dontDistribute super."hScraper"; + "hSimpleDB" = dontDistribute super."hSimpleDB"; + "hTalos" = dontDistribute super."hTalos"; + "hTensor" = dontDistribute super."hTensor"; + "hVOIDP" = dontDistribute super."hVOIDP"; + "hXmixer" = dontDistribute super."hXmixer"; + "haar" = dontDistribute super."haar"; + "hacanon-light" = dontDistribute super."hacanon-light"; + "hack" = dontDistribute super."hack"; + "hack-contrib" = dontDistribute super."hack-contrib"; + "hack-contrib-press" = dontDistribute super."hack-contrib-press"; + "hack-frontend-happstack" = dontDistribute super."hack-frontend-happstack"; + "hack-frontend-monadcgi" = dontDistribute super."hack-frontend-monadcgi"; + "hack-handler-cgi" = dontDistribute super."hack-handler-cgi"; + "hack-handler-epoll" = dontDistribute super."hack-handler-epoll"; + "hack-handler-evhttp" = dontDistribute super."hack-handler-evhttp"; + "hack-handler-fastcgi" = dontDistribute super."hack-handler-fastcgi"; + "hack-handler-happstack" = dontDistribute super."hack-handler-happstack"; + "hack-handler-hyena" = dontDistribute super."hack-handler-hyena"; + "hack-handler-kibro" = dontDistribute super."hack-handler-kibro"; + "hack-handler-simpleserver" = dontDistribute super."hack-handler-simpleserver"; + "hack-middleware-cleanpath" = dontDistribute super."hack-middleware-cleanpath"; + "hack-middleware-clientsession" = dontDistribute super."hack-middleware-clientsession"; + "hack-middleware-gzip" = dontDistribute super."hack-middleware-gzip"; + "hack-middleware-jsonp" = dontDistribute super."hack-middleware-jsonp"; + "hack2" = dontDistribute super."hack2"; + "hack2-contrib" = dontDistribute super."hack2-contrib"; + "hack2-contrib-extra" = dontDistribute super."hack2-contrib-extra"; + "hack2-handler-happstack-server" = dontDistribute super."hack2-handler-happstack-server"; + "hack2-handler-mongrel2-http" = dontDistribute super."hack2-handler-mongrel2-http"; + "hack2-handler-snap-server" = dontDistribute super."hack2-handler-snap-server"; + "hack2-handler-warp" = dontDistribute super."hack2-handler-warp"; + "hack2-interface-wai" = dontDistribute super."hack2-interface-wai"; + "hackage-diff" = dontDistribute super."hackage-diff"; + "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-proxy" = dontDistribute super."hackage-proxy"; + "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; + "hackage-security" = dontDistribute super."hackage-security"; + "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; + "hackage-server" = dontDistribute super."hackage-server"; + "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage2hwn" = dontDistribute super."hackage2hwn"; + "hackage2twitter" = dontDistribute super."hackage2twitter"; + "hackager" = dontDistribute super."hackager"; + "hackernews" = dontDistribute super."hackernews"; + "hackertyper" = dontDistribute super."hackertyper"; + "hackmanager" = dontDistribute super."hackmanager"; + "hackport" = dontDistribute super."hackport"; + "hactor" = dontDistribute super."hactor"; + "hactors" = dontDistribute super."hactors"; + "haddock" = dontDistribute super."haddock"; + "haddock-leksah" = dontDistribute super."haddock-leksah"; + "haddocset" = dontDistribute super."haddocset"; + "hadoop-formats" = dontDistribute super."hadoop-formats"; + "hadoop-rpc" = dontDistribute super."hadoop-rpc"; + "hadoop-tools" = dontDistribute super."hadoop-tools"; + "haeredes" = dontDistribute super."haeredes"; + "haggis" = dontDistribute super."haggis"; + "haha" = dontDistribute super."haha"; + "hailgun" = dontDistribute super."hailgun"; + "hailgun-send" = dontDistribute super."hailgun-send"; + "hails" = dontDistribute super."hails"; + "hails-bin" = dontDistribute super."hails-bin"; + "hairy" = dontDistribute super."hairy"; + "hakaru" = dontDistribute super."hakaru"; + "hake" = dontDistribute super."hake"; + "hakismet" = dontDistribute super."hakismet"; + "hako" = dontDistribute super."hako"; + "hakyll-R" = dontDistribute super."hakyll-R"; + "hakyll-agda" = dontDistribute super."hakyll-agda"; + "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates"; + "hakyll-contrib" = dontDistribute super."hakyll-contrib"; + "hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation"; + "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links"; + "hakyll-convert" = dontDistribute super."hakyll-convert"; + "hakyll-elm" = dontDistribute super."hakyll-elm"; + "hakyll-sass" = dontDistribute super."hakyll-sass"; + "halberd" = dontDistribute super."halberd"; + "halfs" = dontDistribute super."halfs"; + "halipeto" = dontDistribute super."halipeto"; + "halive" = dontDistribute super."halive"; + "halma" = dontDistribute super."halma"; + "haltavista" = dontDistribute super."haltavista"; + "hamid" = dontDistribute super."hamid"; + "hampp" = dontDistribute super."hampp"; + "hamtmap" = dontDistribute super."hamtmap"; + "hamusic" = dontDistribute super."hamusic"; + "handa-gdata" = dontDistribute super."handa-gdata"; + "handa-geodata" = dontDistribute super."handa-geodata"; + "handle-like" = dontDistribute super."handle-like"; + "handsy" = dontDistribute super."handsy"; + "hangman" = dontDistribute super."hangman"; + "hannahci" = dontDistribute super."hannahci"; + "hans" = dontDistribute super."hans"; + "hans-pcap" = dontDistribute super."hans-pcap"; + "hans-pfq" = dontDistribute super."hans-pfq"; + "hapistrano" = dontDistribute super."hapistrano"; + "happindicator" = dontDistribute super."happindicator"; + "happindicator3" = dontDistribute super."happindicator3"; + "happraise" = dontDistribute super."happraise"; + "happs-hsp" = dontDistribute super."happs-hsp"; + "happs-hsp-template" = dontDistribute super."happs-hsp-template"; + "happs-tutorial" = dontDistribute super."happs-tutorial"; + "happstack" = dontDistribute super."happstack"; + "happstack-auth" = dontDistribute super."happstack-auth"; + "happstack-authenticate" = dontDistribute super."happstack-authenticate"; + "happstack-clientsession" = dontDistribute super."happstack-clientsession"; + "happstack-contrib" = dontDistribute super."happstack-contrib"; + "happstack-data" = dontDistribute super."happstack-data"; + "happstack-dlg" = dontDistribute super."happstack-dlg"; + "happstack-facebook" = dontDistribute super."happstack-facebook"; + "happstack-fastcgi" = dontDistribute super."happstack-fastcgi"; + "happstack-fay" = dontDistribute super."happstack-fay"; + "happstack-fay-ajax" = dontDistribute super."happstack-fay-ajax"; + "happstack-foundation" = dontDistribute super."happstack-foundation"; + "happstack-hamlet" = dontDistribute super."happstack-hamlet"; + "happstack-heist" = dontDistribute super."happstack-heist"; + "happstack-helpers" = dontDistribute super."happstack-helpers"; + "happstack-hsp" = dontDistribute super."happstack-hsp"; + "happstack-hstringtemplate" = dontDistribute super."happstack-hstringtemplate"; + "happstack-ixset" = dontDistribute super."happstack-ixset"; + "happstack-jmacro" = dontDistribute super."happstack-jmacro"; + "happstack-lite" = dontDistribute super."happstack-lite"; + "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; + "happstack-plugins" = dontDistribute super."happstack-plugins"; + "happstack-server-tls" = dontDistribute super."happstack-server-tls"; + "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; + "happstack-state" = dontDistribute super."happstack-state"; + "happstack-static-routing" = dontDistribute super."happstack-static-routing"; + "happstack-util" = dontDistribute super."happstack-util"; + "happstack-yui" = dontDistribute super."happstack-yui"; + "happy-meta" = dontDistribute super."happy-meta"; + "happybara" = dontDistribute super."happybara"; + "happybara-webkit" = dontDistribute super."happybara-webkit"; + "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "har" = dontDistribute super."har"; + "harchive" = dontDistribute super."harchive"; + "hark" = dontDistribute super."hark"; + "harmony" = dontDistribute super."harmony"; + "haroonga" = dontDistribute super."haroonga"; + "haroonga-httpd" = dontDistribute super."haroonga-httpd"; + "harp" = dontDistribute super."harp"; + "harpy" = dontDistribute super."harpy"; + "has" = dontDistribute super."has"; + "has-th" = dontDistribute super."has-th"; + "hascal" = dontDistribute super."hascal"; + "hascat" = dontDistribute super."hascat"; + "hascat-lib" = dontDistribute super."hascat-lib"; + "hascat-setup" = dontDistribute super."hascat-setup"; + "hascat-system" = dontDistribute super."hascat-system"; + "hash" = dontDistribute super."hash"; + "hashable-generics" = dontDistribute super."hashable-generics"; + "hashable-time" = dontDistribute super."hashable-time"; + "hashabler" = dontDistribute super."hashabler"; + "hashed-storage" = dontDistribute super."hashed-storage"; + "hashids" = dontDistribute super."hashids"; + "hashring" = dontDistribute super."hashring"; + "hashtables-plus" = dontDistribute super."hashtables-plus"; + "hasim" = dontDistribute super."hasim"; + "hask" = dontDistribute super."hask"; + "hask-home" = dontDistribute super."hask-home"; + "haskades" = dontDistribute super."haskades"; + "haskakafka" = dontDistribute super."haskakafka"; + "haskanoid" = dontDistribute super."haskanoid"; + "haskarrow" = dontDistribute super."haskarrow"; + "haskbot-core" = dontDistribute super."haskbot-core"; + "haskdeep" = dontDistribute super."haskdeep"; + "haskdogs" = dontDistribute super."haskdogs"; + "haskeem" = dontDistribute super."haskeem"; + "haskeline" = doDistribute super."haskeline_0_7_2_1"; + "haskeline-class" = dontDistribute super."haskeline-class"; + "haskell-aliyun" = dontDistribute super."haskell-aliyun"; + "haskell-awk" = dontDistribute super."haskell-awk"; + "haskell-bcrypt" = dontDistribute super."haskell-bcrypt"; + "haskell-brainfuck" = dontDistribute super."haskell-brainfuck"; + "haskell-cnc" = dontDistribute super."haskell-cnc"; + "haskell-coffee" = dontDistribute super."haskell-coffee"; + "haskell-compression" = dontDistribute super."haskell-compression"; + "haskell-course-preludes" = dontDistribute super."haskell-course-preludes"; + "haskell-docs" = dontDistribute super."haskell-docs"; + "haskell-exp-parser" = dontDistribute super."haskell-exp-parser"; + "haskell-formatter" = dontDistribute super."haskell-formatter"; + "haskell-ftp" = dontDistribute super."haskell-ftp"; + "haskell-generate" = dontDistribute super."haskell-generate"; + "haskell-gi" = dontDistribute super."haskell-gi"; + "haskell-gi-base" = dontDistribute super."haskell-gi-base"; + "haskell-import-graph" = dontDistribute super."haskell-import-graph"; + "haskell-in-space" = dontDistribute super."haskell-in-space"; + "haskell-modbus" = dontDistribute super."haskell-modbus"; + "haskell-mpi" = dontDistribute super."haskell-mpi"; + "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; + "haskell-platform-test" = dontDistribute super."haskell-platform-test"; + "haskell-plot" = dontDistribute super."haskell-plot"; + "haskell-qrencode" = dontDistribute super."haskell-qrencode"; + "haskell-read-editor" = dontDistribute super."haskell-read-editor"; + "haskell-reflect" = dontDistribute super."haskell-reflect"; + "haskell-rules" = dontDistribute super."haskell-rules"; + "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; + "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; + "haskell-token-utils" = dontDistribute super."haskell-token-utils"; + "haskell-type-exts" = dontDistribute super."haskell-type-exts"; + "haskell-typescript" = dontDistribute super."haskell-typescript"; + "haskell-tyrant" = dontDistribute super."haskell-tyrant"; + "haskell-updater" = dontDistribute super."haskell-updater"; + "haskell-xmpp" = dontDistribute super."haskell-xmpp"; + "haskell2010" = dontDistribute super."haskell2010"; + "haskell98" = dontDistribute super."haskell98"; + "haskell98libraries" = dontDistribute super."haskell98libraries"; + "haskelldb" = dontDistribute super."haskelldb"; + "haskelldb-connect-hdbc" = dontDistribute super."haskelldb-connect-hdbc"; + "haskelldb-connect-hdbc-catchio-mtl" = dontDistribute super."haskelldb-connect-hdbc-catchio-mtl"; + "haskelldb-connect-hdbc-catchio-tf" = dontDistribute super."haskelldb-connect-hdbc-catchio-tf"; + "haskelldb-connect-hdbc-catchio-transformers" = dontDistribute super."haskelldb-connect-hdbc-catchio-transformers"; + "haskelldb-connect-hdbc-lifted" = dontDistribute super."haskelldb-connect-hdbc-lifted"; + "haskelldb-dynamic" = dontDistribute super."haskelldb-dynamic"; + "haskelldb-flat" = dontDistribute super."haskelldb-flat"; + "haskelldb-hdbc" = dontDistribute super."haskelldb-hdbc"; + "haskelldb-hdbc-mysql" = dontDistribute super."haskelldb-hdbc-mysql"; + "haskelldb-hdbc-odbc" = dontDistribute super."haskelldb-hdbc-odbc"; + "haskelldb-hdbc-postgresql" = dontDistribute super."haskelldb-hdbc-postgresql"; + "haskelldb-hdbc-sqlite3" = dontDistribute super."haskelldb-hdbc-sqlite3"; + "haskelldb-hsql" = dontDistribute super."haskelldb-hsql"; + "haskelldb-hsql-mysql" = dontDistribute super."haskelldb-hsql-mysql"; + "haskelldb-hsql-odbc" = dontDistribute super."haskelldb-hsql-odbc"; + "haskelldb-hsql-oracle" = dontDistribute super."haskelldb-hsql-oracle"; + "haskelldb-hsql-postgresql" = dontDistribute super."haskelldb-hsql-postgresql"; + "haskelldb-hsql-sqlite" = dontDistribute super."haskelldb-hsql-sqlite"; + "haskelldb-hsql-sqlite3" = dontDistribute super."haskelldb-hsql-sqlite3"; + "haskelldb-th" = dontDistribute super."haskelldb-th"; + "haskelldb-wx" = dontDistribute super."haskelldb-wx"; + "haskellscrabble" = dontDistribute super."haskellscrabble"; + "haskellscript" = dontDistribute super."haskellscript"; + "haskelm" = dontDistribute super."haskelm"; + "haskgame" = dontDistribute super."haskgame"; + "haskheap" = dontDistribute super."haskheap"; + "haskhol-core" = dontDistribute super."haskhol-core"; + "haskintex" = doDistribute super."haskintex_0_5_1_0"; + "haskmon" = dontDistribute super."haskmon"; + "haskoin" = dontDistribute super."haskoin"; + "haskoin-crypto" = dontDistribute super."haskoin-crypto"; + "haskoin-protocol" = dontDistribute super."haskoin-protocol"; + "haskoin-script" = dontDistribute super."haskoin-script"; + "haskoin-util" = dontDistribute super."haskoin-util"; + "haskoin-wallet" = dontDistribute super."haskoin-wallet"; + "haskoon" = dontDistribute super."haskoon"; + "haskoon-httpspec" = dontDistribute super."haskoon-httpspec"; + "haskoon-salvia" = dontDistribute super."haskoon-salvia"; + "haskore" = dontDistribute super."haskore"; + "haskore-realtime" = dontDistribute super."haskore-realtime"; + "haskore-supercollider" = dontDistribute super."haskore-supercollider"; + "haskore-synthesizer" = dontDistribute super."haskore-synthesizer"; + "haskore-vintage" = dontDistribute super."haskore-vintage"; + "hasktags" = dontDistribute super."hasktags"; + "haslo" = dontDistribute super."haslo"; + "hasloGUI" = dontDistribute super."hasloGUI"; + "hasparql-client" = dontDistribute super."hasparql-client"; + "haspell" = dontDistribute super."haspell"; + "hasql-postgres-options" = dontDistribute super."hasql-postgres-options"; + "hastache-aeson" = dontDistribute super."hastache-aeson"; + "haste" = dontDistribute super."haste"; + "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-markup" = dontDistribute super."haste-markup"; + "haste-perch" = dontDistribute super."haste-perch"; + "hastily" = dontDistribute super."hastily"; + "hasty-hamiltonian" = dontDistribute super."hasty-hamiltonian"; + "hat" = dontDistribute super."hat"; + "hatex-guide" = dontDistribute super."hatex-guide"; + "hath" = dontDistribute super."hath"; + "hatt" = dontDistribute super."hatt"; + "haverer" = dontDistribute super."haverer"; + "hawitter" = dontDistribute super."hawitter"; + "haxl" = dontDistribute super."haxl"; + "haxl-facebook" = dontDistribute super."haxl-facebook"; + "haxparse" = dontDistribute super."haxparse"; + "haxr-th" = dontDistribute super."haxr-th"; + "haxy" = dontDistribute super."haxy"; + "hayland" = dontDistribute super."hayland"; + "hayoo-cli" = dontDistribute super."hayoo-cli"; + "hback" = dontDistribute super."hback"; + "hbayes" = dontDistribute super."hbayes"; + "hbb" = dontDistribute super."hbb"; + "hbcd" = dontDistribute super."hbcd"; + "hbeat" = dontDistribute super."hbeat"; + "hblas" = dontDistribute super."hblas"; + "hblock" = dontDistribute super."hblock"; + "hbro" = dontDistribute super."hbro"; + "hbro-contrib" = dontDistribute super."hbro-contrib"; + "hburg" = dontDistribute super."hburg"; + "hcc" = dontDistribute super."hcc"; + "hcg-minus" = dontDistribute super."hcg-minus"; + "hcg-minus-cairo" = dontDistribute super."hcg-minus-cairo"; + "hcheat" = dontDistribute super."hcheat"; + "hchesslib" = dontDistribute super."hchesslib"; + "hcltest" = dontDistribute super."hcltest"; + "hcron" = dontDistribute super."hcron"; + "hcube" = dontDistribute super."hcube"; + "hcwiid" = dontDistribute super."hcwiid"; + "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix"; + "hdbc-aeson" = dontDistribute super."hdbc-aeson"; + "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore"; + "hdbc-tuple" = dontDistribute super."hdbc-tuple"; + "hdbi" = dontDistribute super."hdbi"; + "hdbi-conduit" = dontDistribute super."hdbi-conduit"; + "hdbi-postgresql" = dontDistribute super."hdbi-postgresql"; + "hdbi-sqlite" = dontDistribute super."hdbi-sqlite"; + "hdbi-tests" = dontDistribute super."hdbi-tests"; + "hdf" = dontDistribute super."hdf"; + "hdigest" = dontDistribute super."hdigest"; + "hdirect" = dontDistribute super."hdirect"; + "hdis86" = dontDistribute super."hdis86"; + "hdiscount" = dontDistribute super."hdiscount"; + "hdm" = dontDistribute super."hdm"; + "hdph" = dontDistribute super."hdph"; + "hdph-closure" = dontDistribute super."hdph-closure"; + "headergen" = dontDistribute super."headergen"; + "heapsort" = dontDistribute super."heapsort"; + "hecc" = dontDistribute super."hecc"; + "hedis-config" = dontDistribute super."hedis-config"; + "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-pile" = dontDistribute super."hedis-pile"; + "hedis-simple" = dontDistribute super."hedis-simple"; + "hedis-tags" = dontDistribute super."hedis-tags"; + "hedn" = dontDistribute super."hedn"; + "hein" = dontDistribute super."hein"; + "heist-aeson" = dontDistribute super."heist-aeson"; + "heist-async" = dontDistribute super."heist-async"; + "helics" = dontDistribute super."helics"; + "helics-wai" = dontDistribute super."helics-wai"; + "helisp" = dontDistribute super."helisp"; + "helium" = dontDistribute super."helium"; + "hell" = dontDistribute super."hell"; + "hellage" = dontDistribute super."hellage"; + "hellnet" = dontDistribute super."hellnet"; + "hello" = dontDistribute super."hello"; + "helm" = dontDistribute super."helm"; + "help-esb" = dontDistribute super."help-esb"; + "hemkay" = dontDistribute super."hemkay"; + "hemkay-core" = dontDistribute super."hemkay-core"; + "hemokit" = dontDistribute super."hemokit"; + "hen" = dontDistribute super."hen"; + "henet" = dontDistribute super."henet"; + "hepevt" = dontDistribute super."hepevt"; + "her-lexer" = dontDistribute super."her-lexer"; + "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; + "herbalizer" = dontDistribute super."herbalizer"; + "hermit" = dontDistribute super."hermit"; + "hermit-syb" = dontDistribute super."hermit-syb"; + "heroku" = dontDistribute super."heroku"; + "heroku-persistent" = dontDistribute super."heroku-persistent"; + "herringbone" = dontDistribute super."herringbone"; + "herringbone-embed" = dontDistribute super."herringbone-embed"; + "herringbone-wai" = dontDistribute super."herringbone-wai"; + "hesql" = dontDistribute super."hesql"; + "hetero-map" = dontDistribute super."hetero-map"; + "hetris" = dontDistribute super."hetris"; + "heukarya" = dontDistribute super."heukarya"; + "hevolisa" = dontDistribute super."hevolisa"; + "hevolisa-dph" = dontDistribute super."hevolisa-dph"; + "hexdump" = dontDistribute super."hexdump"; + "hexif" = dontDistribute super."hexif"; + "hexpat-iteratee" = dontDistribute super."hexpat-iteratee"; + "hexpat-lens" = dontDistribute super."hexpat-lens"; + "hexpat-pickle" = dontDistribute super."hexpat-pickle"; + "hexpat-pickle-generic" = dontDistribute super."hexpat-pickle-generic"; + "hexpat-tagsoup" = dontDistribute super."hexpat-tagsoup"; + "hexpr" = dontDistribute super."hexpr"; + "hexquote" = dontDistribute super."hexquote"; + "heyefi" = dontDistribute super."heyefi"; + "hfann" = dontDistribute super."hfann"; + "hfd" = dontDistribute super."hfd"; + "hfiar" = dontDistribute super."hfiar"; + "hfmt" = dontDistribute super."hfmt"; + "hfoil" = dontDistribute super."hfoil"; + "hfov" = dontDistribute super."hfov"; + "hfractal" = dontDistribute super."hfractal"; + "hfusion" = dontDistribute super."hfusion"; + "hg-buildpackage" = dontDistribute super."hg-buildpackage"; + "hgal" = dontDistribute super."hgal"; + "hgalib" = dontDistribute super."hgalib"; + "hgdbmi" = dontDistribute super."hgdbmi"; + "hgearman" = dontDistribute super."hgearman"; + "hgen" = dontDistribute super."hgen"; + "hgeometric" = dontDistribute super."hgeometric"; + "hgeometry" = dontDistribute super."hgeometry"; + "hgettext" = dontDistribute super."hgettext"; + "hgithub" = dontDistribute super."hgithub"; + "hgl-example" = dontDistribute super."hgl-example"; + "hgom" = dontDistribute super."hgom"; + "hgopher" = dontDistribute super."hgopher"; + "hgrev" = dontDistribute super."hgrev"; + "hgrib" = dontDistribute super."hgrib"; + "hharp" = dontDistribute super."hharp"; + "hi" = dontDistribute super."hi"; + "hiccup" = dontDistribute super."hiccup"; + "hichi" = dontDistribute super."hichi"; + "hidapi" = dontDistribute super."hidapi"; + "hieraclus" = dontDistribute super."hieraclus"; + "hierarchical-clustering" = dontDistribute super."hierarchical-clustering"; + "hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams"; + "hierarchical-exceptions" = dontDistribute super."hierarchical-exceptions"; + "hierarchy" = dontDistribute super."hierarchy"; + "hiernotify" = dontDistribute super."hiernotify"; + "highWaterMark" = dontDistribute super."highWaterMark"; + "higher-leveldb" = dontDistribute super."higher-leveldb"; + "higherorder" = dontDistribute super."higherorder"; + "highlight-versions" = dontDistribute super."highlight-versions"; + "highlighter" = dontDistribute super."highlighter"; + "highlighter2" = dontDistribute super."highlighter2"; + "hills" = dontDistribute super."hills"; + "himerge" = dontDistribute super."himerge"; + "himg" = dontDistribute super."himg"; + "himpy" = dontDistribute super."himpy"; + "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; + "hinduce-classifier" = dontDistribute super."hinduce-classifier"; + "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; + "hinduce-examples" = dontDistribute super."hinduce-examples"; + "hinduce-missingh" = dontDistribute super."hinduce-missingh"; + "hinquire" = dontDistribute super."hinquire"; + "hinstaller" = dontDistribute super."hinstaller"; + "hint-server" = dontDistribute super."hint-server"; + "hinvaders" = dontDistribute super."hinvaders"; + "hinze-streams" = dontDistribute super."hinze-streams"; + "hipbot" = dontDistribute super."hipbot"; + "hipe" = dontDistribute super."hipe"; + "hips" = dontDistribute super."hips"; + "hircules" = dontDistribute super."hircules"; + "hirt" = dontDistribute super."hirt"; + "hissmetrics" = dontDistribute super."hissmetrics"; + "hist-pl" = dontDistribute super."hist-pl"; + "hist-pl-dawg" = dontDistribute super."hist-pl-dawg"; + "hist-pl-fusion" = dontDistribute super."hist-pl-fusion"; + "hist-pl-lexicon" = dontDistribute super."hist-pl-lexicon"; + "hist-pl-lmf" = dontDistribute super."hist-pl-lmf"; + "hist-pl-transliter" = dontDistribute super."hist-pl-transliter"; + "hist-pl-types" = dontDistribute super."hist-pl-types"; + "histogram-fill-binary" = dontDistribute super."histogram-fill-binary"; + "histogram-fill-cereal" = dontDistribute super."histogram-fill-cereal"; + "historian" = dontDistribute super."historian"; + "hjcase" = dontDistribute super."hjcase"; + "hjpath" = dontDistribute super."hjpath"; + "hjs" = dontDistribute super."hjs"; + "hjson" = dontDistribute super."hjson"; + "hjson-query" = dontDistribute super."hjson-query"; + "hjsonpointer" = dontDistribute super."hjsonpointer"; + "hjsonschema" = dontDistribute super."hjsonschema"; + "hlatex" = dontDistribute super."hlatex"; + "hlbfgsb" = dontDistribute super."hlbfgsb"; + "hlcm" = dontDistribute super."hlcm"; + "hledger" = doDistribute super."hledger_0_26"; + "hledger-chart" = dontDistribute super."hledger-chart"; + "hledger-diff" = dontDistribute super."hledger-diff"; + "hledger-interest" = dontDistribute super."hledger-interest"; + "hledger-irr" = dontDistribute super."hledger-irr"; + "hledger-lib" = doDistribute super."hledger-lib_0_26"; + "hledger-ui" = dontDistribute super."hledger-ui"; + "hledger-vty" = dontDistribute super."hledger-vty"; + "hledger-web" = doDistribute super."hledger-web_0_26"; + "hlibBladeRF" = dontDistribute super."hlibBladeRF"; + "hlibev" = dontDistribute super."hlibev"; + "hlibfam" = dontDistribute super."hlibfam"; + "hlogger" = dontDistribute super."hlogger"; + "hlongurl" = dontDistribute super."hlongurl"; + "hls" = dontDistribute super."hls"; + "hlwm" = dontDistribute super."hlwm"; + "hly" = dontDistribute super."hly"; + "hmark" = dontDistribute super."hmark"; + "hmarkup" = dontDistribute super."hmarkup"; + "hmatrix" = doDistribute super."hmatrix_0_16_1_5"; + "hmatrix-banded" = dontDistribute super."hmatrix-banded"; + "hmatrix-csv" = dontDistribute super."hmatrix-csv"; + "hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; + "hmatrix-gsl" = doDistribute super."hmatrix-gsl_0_16_0_3"; + "hmatrix-gsl-stats" = doDistribute super."hmatrix-gsl-stats_0_4_1_1"; + "hmatrix-mmap" = dontDistribute super."hmatrix-mmap"; + "hmatrix-nipals" = dontDistribute super."hmatrix-nipals"; + "hmatrix-quadprogpp" = dontDistribute super."hmatrix-quadprogpp"; + "hmatrix-special" = dontDistribute super."hmatrix-special"; + "hmatrix-static" = dontDistribute super."hmatrix-static"; + "hmatrix-svdlibc" = dontDistribute super."hmatrix-svdlibc"; + "hmatrix-syntax" = dontDistribute super."hmatrix-syntax"; + "hmatrix-tests" = dontDistribute super."hmatrix-tests"; + "hmeap" = dontDistribute super."hmeap"; + "hmeap-utils" = dontDistribute super."hmeap-utils"; + "hmemdb" = dontDistribute super."hmemdb"; + "hmenu" = dontDistribute super."hmenu"; + "hmidi" = dontDistribute super."hmidi"; + "hmk" = dontDistribute super."hmk"; + "hmm" = dontDistribute super."hmm"; + "hmm-hmatrix" = dontDistribute super."hmm-hmatrix"; + "hmp3" = dontDistribute super."hmp3"; + "hmpfr" = dontDistribute super."hmpfr"; + "hmt" = dontDistribute super."hmt"; + "hmt-diagrams" = dontDistribute super."hmt-diagrams"; + "hmumps" = dontDistribute super."hmumps"; + "hnetcdf" = dontDistribute super."hnetcdf"; + "hnix" = dontDistribute super."hnix"; + "hnn" = dontDistribute super."hnn"; + "hnop" = dontDistribute super."hnop"; + "ho-rewriting" = dontDistribute super."ho-rewriting"; + "hoauth" = dontDistribute super."hoauth"; + "hob" = dontDistribute super."hob"; + "hobbes" = dontDistribute super."hobbes"; + "hobbits" = dontDistribute super."hobbits"; + "hoe" = dontDistribute super."hoe"; + "hofix-mtl" = dontDistribute super."hofix-mtl"; + "hog" = dontDistribute super."hog"; + "hogg" = dontDistribute super."hogg"; + "hogre" = dontDistribute super."hogre"; + "hogre-examples" = dontDistribute super."hogre-examples"; + "hois" = dontDistribute super."hois"; + "hoist-error" = dontDistribute super."hoist-error"; + "hold-em" = dontDistribute super."hold-em"; + "hole" = dontDistribute super."hole"; + "holey-format" = dontDistribute super."holey-format"; + "homeomorphic" = dontDistribute super."homeomorphic"; + "hommage" = dontDistribute super."hommage"; + "hommage-ds" = dontDistribute super."hommage-ds"; + "homplexity" = dontDistribute super."homplexity"; + "honi" = dontDistribute super."honi"; + "honk" = dontDistribute super."honk"; + "hoobuddy" = dontDistribute super."hoobuddy"; + "hood" = dontDistribute super."hood"; + "hood-off" = dontDistribute super."hood-off"; + "hood2" = dontDistribute super."hood2"; + "hoodie" = dontDistribute super."hoodie"; + "hoodle" = dontDistribute super."hoodle"; + "hoodle-builder" = dontDistribute super."hoodle-builder"; + "hoodle-core" = dontDistribute super."hoodle-core"; + "hoodle-extra" = dontDistribute super."hoodle-extra"; + "hoodle-parser" = dontDistribute super."hoodle-parser"; + "hoodle-publish" = dontDistribute super."hoodle-publish"; + "hoodle-render" = dontDistribute super."hoodle-render"; + "hoodle-types" = dontDistribute super."hoodle-types"; + "hoogle-index" = dontDistribute super."hoogle-index"; + "hooks-dir" = dontDistribute super."hooks-dir"; + "hoovie" = dontDistribute super."hoovie"; + "hopencc" = dontDistribute super."hopencc"; + "hopencl" = dontDistribute super."hopencl"; + "hopenpgp-tools" = dontDistribute super."hopenpgp-tools"; + "hopenssl" = dontDistribute super."hopenssl"; + "hopfield" = dontDistribute super."hopfield"; + "hopfield-networks" = dontDistribute super."hopfield-networks"; + "hopfli" = dontDistribute super."hopfli"; + "hops" = dontDistribute super."hops"; + "hoq" = dontDistribute super."hoq"; + "horizon" = dontDistribute super."horizon"; + "hosc" = dontDistribute super."hosc"; + "hosc-json" = dontDistribute super."hosc-json"; + "hosc-utils" = dontDistribute super."hosc-utils"; + "hosts-server" = dontDistribute super."hosts-server"; + "hothasktags" = dontDistribute super."hothasktags"; + "hotswap" = dontDistribute super."hotswap"; + "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "hp2any-core" = dontDistribute super."hp2any-core"; + "hp2any-graph" = dontDistribute super."hp2any-graph"; + "hp2any-manager" = dontDistribute super."hp2any-manager"; + "hp2html" = dontDistribute super."hp2html"; + "hp2pretty" = dontDistribute super."hp2pretty"; + "hpack" = dontDistribute super."hpack"; + "hpaco" = dontDistribute super."hpaco"; + "hpaco-lib" = dontDistribute super."hpaco-lib"; + "hpage" = dontDistribute super."hpage"; + "hpapi" = dontDistribute super."hpapi"; + "hpaste" = dontDistribute super."hpaste"; + "hpasteit" = dontDistribute super."hpasteit"; + "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; + "hpc-strobe" = dontDistribute super."hpc-strobe"; + "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hplayground" = dontDistribute super."hplayground"; + "hplaylist" = dontDistribute super."hplaylist"; + "hpodder" = dontDistribute super."hpodder"; + "hpp" = dontDistribute super."hpp"; + "hpqtypes" = dontDistribute super."hpqtypes"; + "hprotoc-fork" = dontDistribute super."hprotoc-fork"; + "hps" = dontDistribute super."hps"; + "hps-cairo" = dontDistribute super."hps-cairo"; + "hps-kmeans" = dontDistribute super."hps-kmeans"; + "hpuz" = dontDistribute super."hpuz"; + "hpygments" = dontDistribute super."hpygments"; + "hpylos" = dontDistribute super."hpylos"; + "hpyrg" = dontDistribute super."hpyrg"; + "hquantlib" = dontDistribute super."hquantlib"; + "hquery" = dontDistribute super."hquery"; + "hranker" = dontDistribute super."hranker"; + "hreader" = dontDistribute super."hreader"; + "hricket" = dontDistribute super."hricket"; + "hruby" = dontDistribute super."hruby"; + "hs-GeoIP" = dontDistribute super."hs-GeoIP"; + "hs-blake2" = dontDistribute super."hs-blake2"; + "hs-captcha" = dontDistribute super."hs-captcha"; + "hs-carbon" = dontDistribute super."hs-carbon"; + "hs-carbon-examples" = dontDistribute super."hs-carbon-examples"; + "hs-cdb" = dontDistribute super."hs-cdb"; + "hs-dotnet" = dontDistribute super."hs-dotnet"; + "hs-duktape" = dontDistribute super."hs-duktape"; + "hs-excelx" = dontDistribute super."hs-excelx"; + "hs-ffmpeg" = dontDistribute super."hs-ffmpeg"; + "hs-fltk" = dontDistribute super."hs-fltk"; + "hs-gchart" = dontDistribute super."hs-gchart"; + "hs-gen-iface" = dontDistribute super."hs-gen-iface"; + "hs-gizapp" = dontDistribute super."hs-gizapp"; + "hs-inspector" = dontDistribute super."hs-inspector"; + "hs-java" = dontDistribute super."hs-java"; + "hs-json-rpc" = dontDistribute super."hs-json-rpc"; + "hs-logo" = dontDistribute super."hs-logo"; + "hs-mesos" = dontDistribute super."hs-mesos"; + "hs-nombre-generator" = dontDistribute super."hs-nombre-generator"; + "hs-pgms" = dontDistribute super."hs-pgms"; + "hs-php-session" = dontDistribute super."hs-php-session"; + "hs-pkg-config" = dontDistribute super."hs-pkg-config"; + "hs-pkpass" = dontDistribute super."hs-pkpass"; + "hs-re" = dontDistribute super."hs-re"; + "hs-scrape" = dontDistribute super."hs-scrape"; + "hs-twitter" = dontDistribute super."hs-twitter"; + "hs-twitterarchiver" = dontDistribute super."hs-twitterarchiver"; + "hs-vcard" = dontDistribute super."hs-vcard"; + "hs2048" = dontDistribute super."hs2048"; + "hs2bf" = dontDistribute super."hs2bf"; + "hs2dot" = dontDistribute super."hs2dot"; + "hsConfigure" = dontDistribute super."hsConfigure"; + "hsSqlite3" = dontDistribute super."hsSqlite3"; + "hsXenCtrl" = dontDistribute super."hsXenCtrl"; + "hsay" = dontDistribute super."hsay"; + "hsb2hs" = dontDistribute super."hsb2hs"; + "hsbackup" = dontDistribute super."hsbackup"; + "hsbencher" = dontDistribute super."hsbencher"; + "hsbencher-codespeed" = dontDistribute super."hsbencher-codespeed"; + "hsbencher-fusion" = dontDistribute super."hsbencher-fusion"; + "hsc2hs" = dontDistribute super."hsc2hs"; + "hsc3" = dontDistribute super."hsc3"; + "hsc3-auditor" = dontDistribute super."hsc3-auditor"; + "hsc3-cairo" = dontDistribute super."hsc3-cairo"; + "hsc3-data" = dontDistribute super."hsc3-data"; + "hsc3-db" = dontDistribute super."hsc3-db"; + "hsc3-dot" = dontDistribute super."hsc3-dot"; + "hsc3-forth" = dontDistribute super."hsc3-forth"; + "hsc3-graphs" = dontDistribute super."hsc3-graphs"; + "hsc3-lang" = dontDistribute super."hsc3-lang"; + "hsc3-lisp" = dontDistribute super."hsc3-lisp"; + "hsc3-plot" = dontDistribute super."hsc3-plot"; + "hsc3-process" = dontDistribute super."hsc3-process"; + "hsc3-rec" = dontDistribute super."hsc3-rec"; + "hsc3-rw" = dontDistribute super."hsc3-rw"; + "hsc3-server" = dontDistribute super."hsc3-server"; + "hsc3-sf" = dontDistribute super."hsc3-sf"; + "hsc3-sf-hsndfile" = dontDistribute super."hsc3-sf-hsndfile"; + "hsc3-unsafe" = dontDistribute super."hsc3-unsafe"; + "hsc3-utils" = dontDistribute super."hsc3-utils"; + "hscamwire" = dontDistribute super."hscamwire"; + "hscassandra" = dontDistribute super."hscassandra"; + "hscd" = dontDistribute super."hscd"; + "hsclock" = dontDistribute super."hsclock"; + "hscope" = dontDistribute super."hscope"; + "hscrtmpl" = dontDistribute super."hscrtmpl"; + "hscuid" = dontDistribute super."hscuid"; + "hscurses" = dontDistribute super."hscurses"; + "hscurses-fish-ex" = dontDistribute super."hscurses-fish-ex"; + "hsdev" = dontDistribute super."hsdev"; + "hsdif" = dontDistribute super."hsdif"; + "hsdip" = dontDistribute super."hsdip"; + "hsdns" = dontDistribute super."hsdns"; + "hsdns-cache" = dontDistribute super."hsdns-cache"; + "hsemail-ns" = dontDistribute super."hsemail-ns"; + "hsenv" = dontDistribute super."hsenv"; + "hserv" = dontDistribute super."hserv"; + "hset" = dontDistribute super."hset"; + "hsexif" = dontDistribute super."hsexif"; + "hsfacter" = dontDistribute super."hsfacter"; + "hsfcsh" = dontDistribute super."hsfcsh"; + "hsfilt" = dontDistribute super."hsfilt"; + "hsgnutls" = dontDistribute super."hsgnutls"; + "hsgnutls-yj" = dontDistribute super."hsgnutls-yj"; + "hsgsom" = dontDistribute super."hsgsom"; + "hsgtd" = dontDistribute super."hsgtd"; + "hsharc" = dontDistribute super."hsharc"; + "hsignal" = doDistribute super."hsignal_0_2_7_1"; + "hsilop" = dontDistribute super."hsilop"; + "hsimport" = dontDistribute super."hsimport"; + "hsini" = dontDistribute super."hsini"; + "hskeleton" = dontDistribute super."hskeleton"; + "hslackbuilder" = dontDistribute super."hslackbuilder"; + "hslibsvm" = dontDistribute super."hslibsvm"; + "hslinks" = dontDistribute super."hslinks"; + "hslogger-reader" = dontDistribute super."hslogger-reader"; + "hslogger-template" = dontDistribute super."hslogger-template"; + "hslogger4j" = dontDistribute super."hslogger4j"; + "hslogstash" = dontDistribute super."hslogstash"; + "hsmagick" = dontDistribute super."hsmagick"; + "hsmisc" = dontDistribute super."hsmisc"; + "hsmtpclient" = dontDistribute super."hsmtpclient"; + "hsndfile" = dontDistribute super."hsndfile"; + "hsndfile-storablevector" = dontDistribute super."hsndfile-storablevector"; + "hsndfile-vector" = dontDistribute super."hsndfile-vector"; + "hsnock" = dontDistribute super."hsnock"; + "hsnoise" = dontDistribute super."hsnoise"; + "hsns" = dontDistribute super."hsns"; + "hsnsq" = dontDistribute super."hsnsq"; + "hsntp" = dontDistribute super."hsntp"; + "hsoptions" = dontDistribute super."hsoptions"; + "hsp" = dontDistribute super."hsp"; + "hsp-cgi" = dontDistribute super."hsp-cgi"; + "hsparklines" = dontDistribute super."hsparklines"; + "hsparql" = dontDistribute super."hsparql"; + "hspear" = dontDistribute super."hspear"; + "hspec" = doDistribute super."hspec_2_1_10"; + "hspec-checkers" = dontDistribute super."hspec-checkers"; + "hspec-core" = doDistribute super."hspec-core_2_1_10"; + "hspec-discover" = doDistribute super."hspec-discover_2_1_10"; + "hspec-expectations" = doDistribute super."hspec-expectations_0_7_1"; + "hspec-expectations-lens" = dontDistribute super."hspec-expectations-lens"; + "hspec-expectations-lifted" = dontDistribute super."hspec-expectations-lifted"; + "hspec-expectations-pretty" = dontDistribute super."hspec-expectations-pretty"; + "hspec-expectations-pretty-diff" = dontDistribute super."hspec-expectations-pretty-diff"; + "hspec-experimental" = dontDistribute super."hspec-experimental"; + "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; + "hspec-monad-control" = dontDistribute super."hspec-monad-control"; + "hspec-server" = dontDistribute super."hspec-server"; + "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; + "hspec-snap" = doDistribute super."hspec-snap_0_3_3_0"; + "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; + "hspec-test-framework" = dontDistribute super."hspec-test-framework"; + "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; + "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-webdriver" = doDistribute super."hspec-webdriver_1_0_3"; + "hspec2" = dontDistribute super."hspec2"; + "hspr-sh" = dontDistribute super."hspr-sh"; + "hspread" = dontDistribute super."hspread"; + "hspresent" = dontDistribute super."hspresent"; + "hsprocess" = dontDistribute super."hsprocess"; + "hsql" = dontDistribute super."hsql"; + "hsql-mysql" = dontDistribute super."hsql-mysql"; + "hsql-odbc" = dontDistribute super."hsql-odbc"; + "hsql-postgresql" = dontDistribute super."hsql-postgresql"; + "hsql-sqlite3" = dontDistribute super."hsql-sqlite3"; + "hsqml" = dontDistribute super."hsqml"; + "hsqml-datamodel" = dontDistribute super."hsqml-datamodel"; + "hsqml-datamodel-vinyl" = dontDistribute super."hsqml-datamodel-vinyl"; + "hsqml-demo-morris" = dontDistribute super."hsqml-demo-morris"; + "hsqml-demo-notes" = dontDistribute super."hsqml-demo-notes"; + "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples"; + "hsqml-morris" = dontDistribute super."hsqml-morris"; + "hsreadability" = dontDistribute super."hsreadability"; + "hsshellscript" = dontDistribute super."hsshellscript"; + "hssourceinfo" = dontDistribute super."hssourceinfo"; + "hssqlppp" = dontDistribute super."hssqlppp"; + "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; + "hstats" = dontDistribute super."hstats"; + "hstest" = dontDistribute super."hstest"; + "hstidy" = dontDistribute super."hstidy"; + "hstorchat" = dontDistribute super."hstorchat"; + "hstradeking" = dontDistribute super."hstradeking"; + "hstyle" = dontDistribute super."hstyle"; + "hstzaar" = dontDistribute super."hstzaar"; + "hsubconvert" = dontDistribute super."hsubconvert"; + "hsverilog" = dontDistribute super."hsverilog"; + "hswip" = dontDistribute super."hswip"; + "hsx" = dontDistribute super."hsx"; + "hsx-jmacro" = dontDistribute super."hsx-jmacro"; + "hsx-xhtml" = dontDistribute super."hsx-xhtml"; + "hsx2hs" = dontDistribute super."hsx2hs"; + "hsyscall" = dontDistribute super."hsyscall"; + "hszephyr" = dontDistribute super."hszephyr"; + "htaglib" = dontDistribute super."htaglib"; + "htags" = dontDistribute super."htags"; + "htar" = dontDistribute super."htar"; + "htiled" = dontDistribute super."htiled"; + "htime" = dontDistribute super."htime"; + "html-email-validate" = dontDistribute super."html-email-validate"; + "html-entities" = dontDistribute super."html-entities"; + "html-kure" = dontDistribute super."html-kure"; + "html-minimalist" = dontDistribute super."html-minimalist"; + "html-rules" = dontDistribute super."html-rules"; + "html-tokenizer" = dontDistribute super."html-tokenizer"; + "html-truncate" = dontDistribute super."html-truncate"; + "html2hamlet" = dontDistribute super."html2hamlet"; + "html5-entity" = dontDistribute super."html5-entity"; + "htodo" = dontDistribute super."htodo"; + "htoml" = dontDistribute super."htoml"; + "htrace" = dontDistribute super."htrace"; + "hts" = dontDistribute super."hts"; + "htsn" = dontDistribute super."htsn"; + "htsn-common" = dontDistribute super."htsn-common"; + "htsn-import" = dontDistribute super."htsn-import"; + "http-accept" = dontDistribute super."http-accept"; + "http-attoparsec" = dontDistribute super."http-attoparsec"; + "http-client-auth" = dontDistribute super."http-client-auth"; + "http-client-conduit" = dontDistribute super."http-client-conduit"; + "http-client-lens" = dontDistribute super."http-client-lens"; + "http-client-multipart" = dontDistribute super."http-client-multipart"; + "http-client-openssl" = dontDistribute super."http-client-openssl"; + "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-streams" = dontDistribute super."http-client-streams"; + "http-conduit-browser" = dontDistribute super."http-conduit-browser"; + "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; + "http-encodings" = dontDistribute super."http-encodings"; + "http-enumerator" = dontDistribute super."http-enumerator"; + "http-kit" = dontDistribute super."http-kit"; + "http-link-header" = dontDistribute super."http-link-header"; + "http-listen" = dontDistribute super."http-listen"; + "http-monad" = dontDistribute super."http-monad"; + "http-proxy" = dontDistribute super."http-proxy"; + "http-querystring" = dontDistribute super."http-querystring"; + "http-server" = dontDistribute super."http-server"; + "http-shed" = dontDistribute super."http-shed"; + "http-test" = dontDistribute super."http-test"; + "http-wget" = dontDistribute super."http-wget"; + "http2" = doDistribute super."http2_1_0_4"; + "httpd-shed" = dontDistribute super."httpd-shed"; + "https-everywhere-rules" = dontDistribute super."https-everywhere-rules"; + "https-everywhere-rules-raw" = dontDistribute super."https-everywhere-rules-raw"; + "httpspec" = dontDistribute super."httpspec"; + "htune" = dontDistribute super."htune"; + "htzaar" = dontDistribute super."htzaar"; + "hub" = dontDistribute super."hub"; + "hubigraph" = dontDistribute super."hubigraph"; + "hubris" = dontDistribute super."hubris"; + "huckleberry" = dontDistribute super."huckleberry"; + "huffman" = dontDistribute super."huffman"; + "hugs2yc" = dontDistribute super."hugs2yc"; + "hulk" = dontDistribute super."hulk"; + "human-readable-duration" = dontDistribute super."human-readable-duration"; + "hums" = dontDistribute super."hums"; + "hunch" = dontDistribute super."hunch"; + "hunit-gui" = dontDistribute super."hunit-gui"; + "hunit-parsec" = dontDistribute super."hunit-parsec"; + "hunit-rematch" = dontDistribute super."hunit-rematch"; + "hunp" = dontDistribute super."hunp"; + "hunt-searchengine" = dontDistribute super."hunt-searchengine"; + "hunt-server" = dontDistribute super."hunt-server"; + "hunt-server-cli" = dontDistribute super."hunt-server-cli"; + "hurdle" = dontDistribute super."hurdle"; + "husk-scheme" = dontDistribute super."husk-scheme"; + "husk-scheme-libs" = dontDistribute super."husk-scheme-libs"; + "husky" = dontDistribute super."husky"; + "hutton" = dontDistribute super."hutton"; + "huttons-razor" = dontDistribute super."huttons-razor"; + "huzzy" = dontDistribute super."huzzy"; + "hvect" = doDistribute super."hvect_0_2_0_0"; + "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; + "hworker" = dontDistribute super."hworker"; + "hworker-ses" = dontDistribute super."hworker-ses"; + "hws" = dontDistribute super."hws"; + "hwsl2" = dontDistribute super."hwsl2"; + "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector"; + "hwsl2-reducers" = dontDistribute super."hwsl2-reducers"; + "hx" = dontDistribute super."hx"; + "hxmppc" = dontDistribute super."hxmppc"; + "hxournal" = dontDistribute super."hxournal"; + "hxt-binary" = dontDistribute super."hxt-binary"; + "hxt-cache" = dontDistribute super."hxt-cache"; + "hxt-extras" = dontDistribute super."hxt-extras"; + "hxt-filter" = dontDistribute super."hxt-filter"; + "hxt-xpath" = dontDistribute super."hxt-xpath"; + "hxt-xslt" = dontDistribute super."hxt-xslt"; + "hxthelper" = dontDistribute super."hxthelper"; + "hxweb" = dontDistribute super."hxweb"; + "hyahtzee" = dontDistribute super."hyahtzee"; + "hyakko" = dontDistribute super."hyakko"; + "hybrid" = dontDistribute super."hybrid"; + "hybrid-vectors" = dontDistribute super."hybrid-vectors"; + "hydra-hs" = dontDistribute super."hydra-hs"; + "hydra-print" = dontDistribute super."hydra-print"; + "hydrogen" = dontDistribute super."hydrogen"; + "hydrogen-cli" = dontDistribute super."hydrogen-cli"; + "hydrogen-cli-args" = dontDistribute super."hydrogen-cli-args"; + "hydrogen-data" = dontDistribute super."hydrogen-data"; + "hydrogen-multimap" = dontDistribute super."hydrogen-multimap"; + "hydrogen-parsing" = dontDistribute super."hydrogen-parsing"; + "hydrogen-prelude" = dontDistribute super."hydrogen-prelude"; + "hydrogen-prelude-parsec" = dontDistribute super."hydrogen-prelude-parsec"; + "hydrogen-syntax" = dontDistribute super."hydrogen-syntax"; + "hydrogen-util" = dontDistribute super."hydrogen-util"; + "hydrogen-version" = dontDistribute super."hydrogen-version"; + "hyena" = dontDistribute super."hyena"; + "hylolib" = dontDistribute super."hylolib"; + "hylotab" = dontDistribute super."hylotab"; + "hyloutils" = dontDistribute super."hyloutils"; + "hyperdrive" = dontDistribute super."hyperdrive"; + "hyperfunctions" = dontDistribute super."hyperfunctions"; + "hyperloglog" = doDistribute super."hyperloglog_0_3_4"; + "hyperpublic" = dontDistribute super."hyperpublic"; + "hyphenate" = dontDistribute super."hyphenate"; + "hypher" = dontDistribute super."hypher"; + "hzk" = dontDistribute super."hzk"; + "hzulip" = dontDistribute super."hzulip"; + "i18n" = dontDistribute super."i18n"; + "iCalendar" = dontDistribute super."iCalendar"; + "iException" = dontDistribute super."iException"; + "iap-verifier" = dontDistribute super."iap-verifier"; + "ib-api" = dontDistribute super."ib-api"; + "iban" = dontDistribute super."iban"; + "iconv" = dontDistribute super."iconv"; + "ideas" = dontDistribute super."ideas"; + "ideas-math" = dontDistribute super."ideas-math"; + "idempotent" = dontDistribute super."idempotent"; + "identifiers" = dontDistribute super."identifiers"; + "idiii" = dontDistribute super."idiii"; + "idna" = dontDistribute super."idna"; + "idna2008" = dontDistribute super."idna2008"; + "idris" = dontDistribute super."idris"; + "ieee" = dontDistribute super."ieee"; + "ieee-utils" = dontDistribute super."ieee-utils"; + "ieee-utils-tempfix" = dontDistribute super."ieee-utils-tempfix"; + "ieee754-parser" = dontDistribute super."ieee754-parser"; + "ifcxt" = dontDistribute super."ifcxt"; + "iff" = dontDistribute super."iff"; + "ifscs" = dontDistribute super."ifscs"; + "ig" = dontDistribute super."ig"; + "ige-mac-integration" = dontDistribute super."ige-mac-integration"; + "igraph" = dontDistribute super."igraph"; + "igrf" = dontDistribute super."igrf"; + "ihaskell" = doDistribute super."ihaskell_0_6_5_0"; + "ihaskell-display" = dontDistribute super."ihaskell-display"; + "ihaskell-inline-r" = dontDistribute super."ihaskell-inline-r"; + "ihaskell-parsec" = dontDistribute super."ihaskell-parsec"; + "ihaskell-plot" = dontDistribute super."ihaskell-plot"; + "ihaskell-widgets" = dontDistribute super."ihaskell-widgets"; + "ihttp" = dontDistribute super."ihttp"; + "illuminate" = dontDistribute super."illuminate"; + "image-type" = dontDistribute super."image-type"; + "imagefilters" = dontDistribute super."imagefilters"; + "imagemagick" = dontDistribute super."imagemagick"; + "imagepaste" = dontDistribute super."imagepaste"; + "imapget" = dontDistribute super."imapget"; + "imbib" = dontDistribute super."imbib"; + "imgurder" = dontDistribute super."imgurder"; + "imm" = dontDistribute super."imm"; + "imparse" = dontDistribute super."imparse"; + "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; + "implicit" = dontDistribute super."implicit"; + "implicit-params" = dontDistribute super."implicit-params"; + "imports" = dontDistribute super."imports"; + "improve" = dontDistribute super."improve"; + "inc-ref" = dontDistribute super."inc-ref"; + "inch" = dontDistribute super."inch"; + "incremental-computing" = dontDistribute super."incremental-computing"; + "incremental-sat-solver" = dontDistribute super."incremental-sat-solver"; + "increments" = dontDistribute super."increments"; + "indentation" = dontDistribute super."indentation"; + "indentparser" = dontDistribute super."indentparser"; + "index-core" = dontDistribute super."index-core"; + "indexed" = dontDistribute super."indexed"; + "indexed-do-notation" = dontDistribute super."indexed-do-notation"; + "indexed-extras" = dontDistribute super."indexed-extras"; + "indexed-free" = dontDistribute super."indexed-free"; + "indian-language-font-converter" = dontDistribute super."indian-language-font-converter"; + "indices" = dontDistribute super."indices"; + "indieweb-algorithms" = dontDistribute super."indieweb-algorithms"; + "infer-upstream" = dontDistribute super."infer-upstream"; + "infernu" = dontDistribute super."infernu"; + "infinite-search" = dontDistribute super."infinite-search"; + "infinity" = dontDistribute super."infinity"; + "infix" = dontDistribute super."infix"; + "inflist" = dontDistribute super."inflist"; + "influxdb" = dontDistribute super."influxdb"; + "informative" = dontDistribute super."informative"; + "inilist" = dontDistribute super."inilist"; + "inject" = dontDistribute super."inject"; + "inject-function" = dontDistribute super."inject-function"; + "inline-c" = dontDistribute super."inline-c"; + "inline-c-cpp" = dontDistribute super."inline-c-cpp"; + "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-r" = dontDistribute super."inline-r"; + "inquire" = dontDistribute super."inquire"; + "inserts" = dontDistribute super."inserts"; + "inspection-proxy" = dontDistribute super."inspection-proxy"; + "instant-aeson" = dontDistribute super."instant-aeson"; + "instant-bytes" = dontDistribute super."instant-bytes"; + "instant-deepseq" = dontDistribute super."instant-deepseq"; + "instant-generics" = dontDistribute super."instant-generics"; + "instant-hashable" = dontDistribute super."instant-hashable"; + "instant-zipper" = dontDistribute super."instant-zipper"; + "instinct" = dontDistribute super."instinct"; + "instrument-chord" = dontDistribute super."instrument-chord"; + "int-cast" = dontDistribute super."int-cast"; + "integer-pure" = dontDistribute super."integer-pure"; + "intel-aes" = dontDistribute super."intel-aes"; + "interchangeable" = dontDistribute super."interchangeable"; + "interleavableGen" = dontDistribute super."interleavableGen"; + "interleavableIO" = dontDistribute super."interleavableIO"; + "interleave" = dontDistribute super."interleave"; + "interlude" = dontDistribute super."interlude"; + "intern" = dontDistribute super."intern"; + "internetmarke" = dontDistribute super."internetmarke"; + "interpol" = dontDistribute super."interpol"; + "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; + "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; + "interpolation" = dontDistribute super."interpolation"; + "intricacy" = dontDistribute super."intricacy"; + "intset" = dontDistribute super."intset"; + "invertible-syntax" = dontDistribute super."invertible-syntax"; + "io-capture" = dontDistribute super."io-capture"; + "io-reactive" = dontDistribute super."io-reactive"; + "io-region" = dontDistribute super."io-region"; + "io-storage" = dontDistribute super."io-storage"; + "io-streams-http" = dontDistribute super."io-streams-http"; + "io-throttle" = dontDistribute super."io-throttle"; + "ioctl" = dontDistribute super."ioctl"; + "ioref-stable" = dontDistribute super."ioref-stable"; + "iothread" = dontDistribute super."iothread"; + "iotransaction" = dontDistribute super."iotransaction"; + "ip-quoter" = dontDistribute super."ip-quoter"; + "ipatch" = dontDistribute super."ipatch"; + "ipc" = dontDistribute super."ipc"; + "ipcvar" = dontDistribute super."ipcvar"; + "ipopt-hs" = dontDistribute super."ipopt-hs"; + "ipprint" = dontDistribute super."ipprint"; + "iproute" = doDistribute super."iproute_1_5_0"; + "iptables-helpers" = dontDistribute super."iptables-helpers"; + "iptadmin" = dontDistribute super."iptadmin"; + "ipython-kernel" = doDistribute super."ipython-kernel_0_6_1_3"; + "irc" = dontDistribute super."irc"; + "irc-bytestring" = dontDistribute super."irc-bytestring"; + "irc-client" = dontDistribute super."irc-client"; + "irc-colors" = dontDistribute super."irc-colors"; + "irc-conduit" = dontDistribute super."irc-conduit"; + "irc-core" = dontDistribute super."irc-core"; + "irc-ctcp" = dontDistribute super."irc-ctcp"; + "irc-fun-bot" = dontDistribute super."irc-fun-bot"; + "irc-fun-client" = dontDistribute super."irc-fun-client"; + "irc-fun-color" = dontDistribute super."irc-fun-color"; + "irc-fun-messages" = dontDistribute super."irc-fun-messages"; + "ircbot" = dontDistribute super."ircbot"; + "ircbouncer" = dontDistribute super."ircbouncer"; + "ireal" = dontDistribute super."ireal"; + "iron-mq" = dontDistribute super."iron-mq"; + "ironforge" = dontDistribute super."ironforge"; + "is" = dontDistribute super."is"; + "isdicom" = dontDistribute super."isdicom"; + "isevaluated" = dontDistribute super."isevaluated"; + "isiz" = dontDistribute super."isiz"; + "ismtp" = dontDistribute super."ismtp"; + "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; + "iso8601-time" = dontDistribute super."iso8601-time"; + "isohunt" = dontDistribute super."isohunt"; + "itanium-abi" = dontDistribute super."itanium-abi"; + "iter-stats" = dontDistribute super."iter-stats"; + "iterIO" = dontDistribute super."iterIO"; + "iteratee" = dontDistribute super."iteratee"; + "iteratee-compress" = dontDistribute super."iteratee-compress"; + "iteratee-mtl" = dontDistribute super."iteratee-mtl"; + "iteratee-parsec" = dontDistribute super."iteratee-parsec"; + "iteratee-stm" = dontDistribute super."iteratee-stm"; + "iterio-server" = dontDistribute super."iterio-server"; + "ivar-simple" = dontDistribute super."ivar-simple"; + "ivor" = dontDistribute super."ivor"; + "ivory" = dontDistribute super."ivory"; + "ivory-backend-c" = dontDistribute super."ivory-backend-c"; + "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-examples" = dontDistribute super."ivory-examples"; + "ivory-hw" = dontDistribute super."ivory-hw"; + "ivory-opts" = dontDistribute super."ivory-opts"; + "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-stdlib" = dontDistribute super."ivory-stdlib"; + "ivy-web" = dontDistribute super."ivy-web"; + "ix-shapable" = dontDistribute super."ix-shapable"; + "ixdopp" = dontDistribute super."ixdopp"; + "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = dontDistribute super."ixset"; + "ixset-typed" = dontDistribute super."ixset-typed"; + "iyql" = dontDistribute super."iyql"; + "j2hs" = dontDistribute super."j2hs"; + "ja-base-extra" = dontDistribute super."ja-base-extra"; + "jack" = dontDistribute super."jack"; + "jack-bindings" = dontDistribute super."jack-bindings"; + "jackminimix" = dontDistribute super."jackminimix"; + "jacobi-roots" = dontDistribute super."jacobi-roots"; + "jail" = dontDistribute super."jail"; + "jailbreak-cabal" = dontDistribute super."jailbreak-cabal"; + "jalaali" = dontDistribute super."jalaali"; + "jalla" = dontDistribute super."jalla"; + "jammittools" = dontDistribute super."jammittools"; + "jarfind" = dontDistribute super."jarfind"; + "java-bridge" = dontDistribute super."java-bridge"; + "java-bridge-extras" = dontDistribute super."java-bridge-extras"; + "java-character" = dontDistribute super."java-character"; + "java-reflect" = dontDistribute super."java-reflect"; + "javasf" = dontDistribute super."javasf"; + "javav" = dontDistribute super."javav"; + "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; + "jdi" = dontDistribute super."jdi"; + "jespresso" = dontDistribute super."jespresso"; + "jobqueue" = dontDistribute super."jobqueue"; + "join" = dontDistribute super."join"; + "joinlist" = dontDistribute super."joinlist"; + "jonathanscard" = dontDistribute super."jonathanscard"; + "jort" = dontDistribute super."jort"; + "jose" = dontDistribute super."jose"; + "jose-jwt" = doDistribute super."jose-jwt_0_6_2"; + "jpeg" = dontDistribute super."jpeg"; + "js-good-parts" = dontDistribute super."js-good-parts"; + "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-hello" = dontDistribute super."jsaddle-hello"; + "jsc" = dontDistribute super."jsc"; + "jsmw" = dontDistribute super."jsmw"; + "json-assertions" = dontDistribute super."json-assertions"; + "json-b" = dontDistribute super."json-b"; + "json-enumerator" = dontDistribute super."json-enumerator"; + "json-extra" = dontDistribute super."json-extra"; + "json-fu" = dontDistribute super."json-fu"; + "json-litobj" = dontDistribute super."json-litobj"; + "json-python" = dontDistribute super."json-python"; + "json-qq" = dontDistribute super."json-qq"; + "json-rpc" = dontDistribute super."json-rpc"; + "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-server" = dontDistribute super."json-rpc-server"; + "json-sop" = dontDistribute super."json-sop"; + "json-state" = dontDistribute super."json-state"; + "json-stream" = dontDistribute super."json-stream"; + "json-togo" = dontDistribute super."json-togo"; + "json-tools" = dontDistribute super."json-tools"; + "json-types" = dontDistribute super."json-types"; + "json2" = dontDistribute super."json2"; + "json2-hdbc" = dontDistribute super."json2-hdbc"; + "json2-types" = dontDistribute super."json2-types"; + "json2yaml" = dontDistribute super."json2yaml"; + "jsonresume" = dontDistribute super."jsonresume"; + "jsonrpc-conduit" = dontDistribute super."jsonrpc-conduit"; + "jsonschema-gen" = dontDistribute super."jsonschema-gen"; + "jsonsql" = dontDistribute super."jsonsql"; + "jsontsv" = dontDistribute super."jsontsv"; + "jspath" = dontDistribute super."jspath"; + "judy" = dontDistribute super."judy"; + "jukebox" = dontDistribute super."jukebox"; + "jumpthefive" = dontDistribute super."jumpthefive"; + "jvm-parser" = dontDistribute super."jvm-parser"; + "kademlia" = dontDistribute super."kademlia"; + "kafka-client" = dontDistribute super."kafka-client"; + "kangaroo" = dontDistribute super."kangaroo"; + "kansas-comet" = dontDistribute super."kansas-comet"; + "kansas-lava" = dontDistribute super."kansas-lava"; + "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; + "kansas-lava-papilio" = dontDistribute super."kansas-lava-papilio"; + "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; + "karakuri" = dontDistribute super."karakuri"; + "karver" = dontDistribute super."karver"; + "katt" = dontDistribute super."katt"; + "kbq-gu" = dontDistribute super."kbq-gu"; + "kd-tree" = dontDistribute super."kd-tree"; + "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "keera-callbacks" = dontDistribute super."keera-callbacks"; + "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; + "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; + "keera-hails-mvc-environment-gtk" = dontDistribute super."keera-hails-mvc-environment-gtk"; + "keera-hails-mvc-model-lightmodel" = dontDistribute super."keera-hails-mvc-model-lightmodel"; + "keera-hails-mvc-model-protectedmodel" = dontDistribute super."keera-hails-mvc-model-protectedmodel"; + "keera-hails-mvc-solutions-config" = dontDistribute super."keera-hails-mvc-solutions-config"; + "keera-hails-mvc-solutions-gtk" = dontDistribute super."keera-hails-mvc-solutions-gtk"; + "keera-hails-mvc-view" = dontDistribute super."keera-hails-mvc-view"; + "keera-hails-mvc-view-gtk" = dontDistribute super."keera-hails-mvc-view-gtk"; + "keera-hails-reactive-fs" = dontDistribute super."keera-hails-reactive-fs"; + "keera-hails-reactive-gtk" = dontDistribute super."keera-hails-reactive-gtk"; + "keera-hails-reactive-network" = dontDistribute super."keera-hails-reactive-network"; + "keera-hails-reactive-polling" = dontDistribute super."keera-hails-reactive-polling"; + "keera-hails-reactive-wx" = dontDistribute super."keera-hails-reactive-wx"; + "keera-hails-reactive-yampa" = dontDistribute super."keera-hails-reactive-yampa"; + "keera-hails-reactivelenses" = dontDistribute super."keera-hails-reactivelenses"; + "keera-hails-reactivevalues" = dontDistribute super."keera-hails-reactivevalues"; + "keera-posture" = dontDistribute super."keera-posture"; + "keiretsu" = dontDistribute super."keiretsu"; + "kevin" = dontDistribute super."kevin"; + "keyed" = dontDistribute super."keyed"; + "keyring" = dontDistribute super."keyring"; + "keystore" = dontDistribute super."keystore"; + "keyvaluehash" = dontDistribute super."keyvaluehash"; + "keyword-args" = dontDistribute super."keyword-args"; + "kibro" = dontDistribute super."kibro"; + "kicad-data" = dontDistribute super."kicad-data"; + "kickass-torrents-dump-parser" = dontDistribute super."kickass-torrents-dump-parser"; + "kickchan" = dontDistribute super."kickchan"; + "kif-parser" = dontDistribute super."kif-parser"; + "kinds" = dontDistribute super."kinds"; + "kit" = dontDistribute super."kit"; + "kmeans-par" = dontDistribute super."kmeans-par"; + "kmeans-vector" = dontDistribute super."kmeans-vector"; + "knots" = dontDistribute super."knots"; + "koellner-phonetic" = dontDistribute super."koellner-phonetic"; + "kontrakcja-templates" = dontDistribute super."kontrakcja-templates"; + "korfu" = dontDistribute super."korfu"; + "kqueue" = dontDistribute super."kqueue"; + "kraken" = dontDistribute super."kraken"; + "krpc" = dontDistribute super."krpc"; + "ks-test" = dontDistribute super."ks-test"; + "ktx" = dontDistribute super."ktx"; + "kure-your-boilerplate" = dontDistribute super."kure-your-boilerplate"; + "kyotocabinet" = dontDistribute super."kyotocabinet"; + "l-bfgs-b" = dontDistribute super."l-bfgs-b"; + "labeled-graph" = dontDistribute super."labeled-graph"; + "labeled-tree" = dontDistribute super."labeled-tree"; + "laborantin-hs" = dontDistribute super."laborantin-hs"; + "labyrinth" = dontDistribute super."labyrinth"; + "labyrinth-server" = dontDistribute super."labyrinth-server"; + "lackey" = dontDistribute super."lackey"; + "lagrangian" = dontDistribute super."lagrangian"; + "laika" = dontDistribute super."laika"; + "lambda-ast" = dontDistribute super."lambda-ast"; + "lambda-bridge" = dontDistribute super."lambda-bridge"; + "lambda-canvas" = dontDistribute super."lambda-canvas"; + "lambda-devs" = dontDistribute super."lambda-devs"; + "lambda-options" = dontDistribute super."lambda-options"; + "lambda-placeholders" = dontDistribute super."lambda-placeholders"; + "lambda-toolbox" = dontDistribute super."lambda-toolbox"; + "lambda2js" = dontDistribute super."lambda2js"; + "lambdaBase" = dontDistribute super."lambdaBase"; + "lambdaFeed" = dontDistribute super."lambdaFeed"; + "lambdaLit" = dontDistribute super."lambdaLit"; + "lambdabot-utils" = dontDistribute super."lambdabot-utils"; + "lambdacat" = dontDistribute super."lambdacat"; + "lambdacms-core" = dontDistribute super."lambdacms-core"; + "lambdacms-media" = dontDistribute super."lambdacms-media"; + "lambdacube" = dontDistribute super."lambdacube"; + "lambdacube-bullet" = dontDistribute super."lambdacube-bullet"; + "lambdacube-core" = dontDistribute super."lambdacube-core"; + "lambdacube-edsl" = dontDistribute super."lambdacube-edsl"; + "lambdacube-engine" = dontDistribute super."lambdacube-engine"; + "lambdacube-examples" = dontDistribute super."lambdacube-examples"; + "lambdacube-gl" = dontDistribute super."lambdacube-gl"; + "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatwit" = dontDistribute super."lambdatwit"; + "lambdiff" = dontDistribute super."lambdiff"; + "lame-tester" = dontDistribute super."lame-tester"; + "language-asn1" = dontDistribute super."language-asn1"; + "language-bash" = dontDistribute super."language-bash"; + "language-boogie" = dontDistribute super."language-boogie"; + "language-c-comments" = dontDistribute super."language-c-comments"; + "language-c-inline" = dontDistribute super."language-c-inline"; + "language-cil" = dontDistribute super."language-cil"; + "language-css" = dontDistribute super."language-css"; + "language-dot" = dontDistribute super."language-dot"; + "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; + "language-eiffel" = dontDistribute super."language-eiffel"; + "language-fortran" = dontDistribute super."language-fortran"; + "language-gcl" = dontDistribute super."language-gcl"; + "language-go" = dontDistribute super."language-go"; + "language-guess" = dontDistribute super."language-guess"; + "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-kort" = dontDistribute super."language-kort"; + "language-lua" = dontDistribute super."language-lua"; + "language-lua-qq" = dontDistribute super."language-lua-qq"; + "language-lua2" = dontDistribute super."language-lua2"; + "language-mixal" = dontDistribute super."language-mixal"; + "language-nix" = dontDistribute super."language-nix"; + "language-objc" = dontDistribute super."language-objc"; + "language-openscad" = dontDistribute super."language-openscad"; + "language-pig" = dontDistribute super."language-pig"; + "language-puppet" = dontDistribute super."language-puppet"; + "language-python" = dontDistribute super."language-python"; + "language-python-colour" = dontDistribute super."language-python-colour"; + "language-python-test" = dontDistribute super."language-python-test"; + "language-qux" = dontDistribute super."language-qux"; + "language-sh" = dontDistribute super."language-sh"; + "language-slice" = dontDistribute super."language-slice"; + "language-spelling" = dontDistribute super."language-spelling"; + "language-sqlite" = dontDistribute super."language-sqlite"; + "language-thrift" = dontDistribute super."language-thrift"; + "language-typescript" = dontDistribute super."language-typescript"; + "language-vhdl" = dontDistribute super."language-vhdl"; + "lat" = dontDistribute super."lat"; + "latest-npm-version" = dontDistribute super."latest-npm-version"; + "latex" = dontDistribute super."latex"; + "latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll"; + "latex-formulae-image" = dontDistribute super."latex-formulae-image"; + "latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc"; + "lattices" = doDistribute super."lattices_1_3"; + "launchpad-control" = dontDistribute super."launchpad-control"; + "lax" = dontDistribute super."lax"; + "layers" = dontDistribute super."layers"; + "layers-game" = dontDistribute super."layers-game"; + "layout" = dontDistribute super."layout"; + "layout-bootstrap" = dontDistribute super."layout-bootstrap"; + "lazy-io" = dontDistribute super."lazy-io"; + "lazyarray" = dontDistribute super."lazyarray"; + "lazyio" = dontDistribute super."lazyio"; + "lazysplines" = dontDistribute super."lazysplines"; + "lbfgs" = dontDistribute super."lbfgs"; + "lcs" = dontDistribute super."lcs"; + "lda" = dontDistribute super."lda"; + "ldap-client" = dontDistribute super."ldap-client"; + "ldif" = dontDistribute super."ldif"; + "leaf" = dontDistribute super."leaf"; + "leaky" = dontDistribute super."leaky"; + "leankit-api" = dontDistribute super."leankit-api"; + "leapseconds-announced" = dontDistribute super."leapseconds-announced"; + "learn" = dontDistribute super."learn"; + "learn-physics" = dontDistribute super."learn-physics"; + "learn-physics-examples" = dontDistribute super."learn-physics-examples"; + "learning-hmm" = dontDistribute super."learning-hmm"; + "leetify" = dontDistribute super."leetify"; + "leksah" = dontDistribute super."leksah"; + "leksah-server" = dontDistribute super."leksah-server"; + "lendingclub" = dontDistribute super."lendingclub"; + "lens-datetime" = dontDistribute super."lens-datetime"; + "lens-prelude" = dontDistribute super."lens-prelude"; + "lens-properties" = dontDistribute super."lens-properties"; + "lens-regex" = dontDistribute super."lens-regex"; + "lens-sop" = dontDistribute super."lens-sop"; + "lens-text-encoding" = dontDistribute super."lens-text-encoding"; + "lens-time" = dontDistribute super."lens-time"; + "lens-tutorial" = dontDistribute super."lens-tutorial"; + "lenses" = dontDistribute super."lenses"; + "lensref" = dontDistribute super."lensref"; + "lentil" = dontDistribute super."lentil"; + "level-monad" = dontDistribute super."level-monad"; + "leveldb-haskell" = dontDistribute super."leveldb-haskell"; + "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; + "levmar" = dontDistribute super."levmar"; + "levmar-chart" = dontDistribute super."levmar-chart"; + "lgtk" = dontDistribute super."lgtk"; + "lha" = dontDistribute super."lha"; + "lhae" = dontDistribute super."lhae"; + "lhc" = dontDistribute super."lhc"; + "lhe" = dontDistribute super."lhe"; + "lhs2TeX-hl" = dontDistribute super."lhs2TeX-hl"; + "lhs2html" = dontDistribute super."lhs2html"; + "lhslatex" = dontDistribute super."lhslatex"; + "libGenI" = dontDistribute super."libGenI"; + "libarchive-conduit" = dontDistribute super."libarchive-conduit"; + "libconfig" = dontDistribute super."libconfig"; + "libcspm" = dontDistribute super."libcspm"; + "libexpect" = dontDistribute super."libexpect"; + "libffi" = dontDistribute super."libffi"; + "libgraph" = dontDistribute super."libgraph"; + "libhbb" = dontDistribute super."libhbb"; + "libinfluxdb" = dontDistribute super."libinfluxdb"; + "libjenkins" = dontDistribute super."libjenkins"; + "liblastfm" = dontDistribute super."liblastfm"; + "liblinear-enumerator" = dontDistribute super."liblinear-enumerator"; + "libltdl" = dontDistribute super."libltdl"; + "libmpd" = dontDistribute super."libmpd"; + "libnvvm" = dontDistribute super."libnvvm"; + "liboleg" = dontDistribute super."liboleg"; + "libpafe" = dontDistribute super."libpafe"; + "libpq" = dontDistribute super."libpq"; + "librandomorg" = dontDistribute super."librandomorg"; + "libravatar" = dontDistribute super."libravatar"; + "libssh2" = dontDistribute super."libssh2"; + "libssh2-conduit" = dontDistribute super."libssh2-conduit"; + "libstackexchange" = dontDistribute super."libstackexchange"; + "libsystemd-daemon" = dontDistribute super."libsystemd-daemon"; + "libsystemd-journal" = dontDistribute super."libsystemd-journal"; + "libtagc" = dontDistribute super."libtagc"; + "libvirt-hs" = dontDistribute super."libvirt-hs"; + "libvorbis" = dontDistribute super."libvorbis"; + "libxml" = dontDistribute super."libxml"; + "libxml-enumerator" = dontDistribute super."libxml-enumerator"; + "libxslt" = dontDistribute super."libxslt"; + "life" = dontDistribute super."life"; + "lifted-threads" = dontDistribute super."lifted-threads"; + "lifter" = dontDistribute super."lifter"; + "ligature" = dontDistribute super."ligature"; + "ligd" = dontDistribute super."ligd"; + "lighttpd-conf" = dontDistribute super."lighttpd-conf"; + "lighttpd-conf-qq" = dontDistribute super."lighttpd-conf-qq"; + "lilypond" = dontDistribute super."lilypond"; + "limp" = dontDistribute super."limp"; + "limp-cbc" = dontDistribute super."limp-cbc"; + "lin-alg" = dontDistribute super."lin-alg"; + "linda" = dontDistribute super."linda"; + "lindenmayer" = dontDistribute super."lindenmayer"; + "line-break" = dontDistribute super."line-break"; + "line2pdf" = dontDistribute super."line2pdf"; + "linear-algebra-cblas" = dontDistribute super."linear-algebra-cblas"; + "linear-circuit" = dontDistribute super."linear-circuit"; + "linear-grammar" = dontDistribute super."linear-grammar"; + "linear-maps" = dontDistribute super."linear-maps"; + "linear-opengl" = dontDistribute super."linear-opengl"; + "linear-vect" = dontDistribute super."linear-vect"; + "linearEqSolver" = dontDistribute super."linearEqSolver"; + "linearscan" = dontDistribute super."linearscan"; + "linearscan-hoopl" = dontDistribute super."linearscan-hoopl"; + "linebreak" = dontDistribute super."linebreak"; + "linguistic-ordinals" = dontDistribute super."linguistic-ordinals"; + "linkchk" = dontDistribute super."linkchk"; + "linkcore" = dontDistribute super."linkcore"; + "linkedhashmap" = dontDistribute super."linkedhashmap"; + "linklater" = dontDistribute super."linklater"; + "linux-blkid" = dontDistribute super."linux-blkid"; + "linux-cgroup" = dontDistribute super."linux-cgroup"; + "linux-evdev" = dontDistribute super."linux-evdev"; + "linux-inotify" = dontDistribute super."linux-inotify"; + "linux-kmod" = dontDistribute super."linux-kmod"; + "linux-mount" = dontDistribute super."linux-mount"; + "linux-perf" = dontDistribute super."linux-perf"; + "linux-ptrace" = dontDistribute super."linux-ptrace"; + "linux-xattr" = dontDistribute super."linux-xattr"; + "linx-gateway" = dontDistribute super."linx-gateway"; + "lio" = dontDistribute super."lio"; + "lio-eci11" = dontDistribute super."lio-eci11"; + "lio-fs" = dontDistribute super."lio-fs"; + "lio-simple" = dontDistribute super."lio-simple"; + "lipsum-gen" = dontDistribute super."lipsum-gen"; + "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; + "liquidhaskell" = dontDistribute super."liquidhaskell"; + "lispparser" = dontDistribute super."lispparser"; + "list-extras" = dontDistribute super."list-extras"; + "list-grouping" = dontDistribute super."list-grouping"; + "list-mux" = dontDistribute super."list-mux"; + "list-remote-forwards" = dontDistribute super."list-remote-forwards"; + "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; + "list-t-html-parser" = dontDistribute super."list-t-html-parser"; + "list-t-http-client" = dontDistribute super."list-t-http-client"; + "list-t-libcurl" = dontDistribute super."list-t-libcurl"; + "list-t-text" = dontDistribute super."list-t-text"; + "list-tries" = dontDistribute super."list-tries"; + "listlike-instances" = dontDistribute super."listlike-instances"; + "lists" = dontDistribute super."lists"; + "listsafe" = dontDistribute super."listsafe"; + "lit" = dontDistribute super."lit"; + "literals" = dontDistribute super."literals"; + "live-sequencer" = dontDistribute super."live-sequencer"; + "ll-picosat" = dontDistribute super."ll-picosat"; + "llrbtree" = dontDistribute super."llrbtree"; + "llsd" = dontDistribute super."llsd"; + "llvm" = dontDistribute super."llvm"; + "llvm-analysis" = dontDistribute super."llvm-analysis"; + "llvm-base" = dontDistribute super."llvm-base"; + "llvm-base-types" = dontDistribute super."llvm-base-types"; + "llvm-base-util" = dontDistribute super."llvm-base-util"; + "llvm-data-interop" = dontDistribute super."llvm-data-interop"; + "llvm-extra" = dontDistribute super."llvm-extra"; + "llvm-ffi" = dontDistribute super."llvm-ffi"; + "llvm-general" = dontDistribute super."llvm-general"; + "llvm-general-pure" = dontDistribute super."llvm-general-pure"; + "llvm-general-quote" = dontDistribute super."llvm-general-quote"; + "llvm-ht" = dontDistribute super."llvm-ht"; + "llvm-pkg-config" = dontDistribute super."llvm-pkg-config"; + "llvm-pretty" = dontDistribute super."llvm-pretty"; + "llvm-pretty-bc-parser" = dontDistribute super."llvm-pretty-bc-parser"; + "llvm-tf" = dontDistribute super."llvm-tf"; + "llvm-tools" = dontDistribute super."llvm-tools"; + "lmdb" = dontDistribute super."lmdb"; + "load-env" = dontDistribute super."load-env"; + "loadavg" = dontDistribute super."loadavg"; + "local-address" = dontDistribute super."local-address"; + "local-search" = dontDistribute super."local-search"; + "located-base" = dontDistribute super."located-base"; + "locators" = dontDistribute super."locators"; + "loch" = dontDistribute super."loch"; + "lock-file" = dontDistribute super."lock-file"; + "lockfree-queue" = dontDistribute super."lockfree-queue"; + "log" = dontDistribute super."log"; + "log-effect" = dontDistribute super."log-effect"; + "log2json" = dontDistribute super."log2json"; + "logfloat" = dontDistribute super."logfloat"; + "logger" = dontDistribute super."logger"; + "logging" = dontDistribute super."logging"; + "logging-facade-journald" = dontDistribute super."logging-facade-journald"; + "logic-TPTP" = dontDistribute super."logic-TPTP"; + "logic-classes" = dontDistribute super."logic-classes"; + "logicst" = dontDistribute super."logicst"; + "logsink" = dontDistribute super."logsink"; + "lojban" = dontDistribute super."lojban"; + "lojbanParser" = dontDistribute super."lojbanParser"; + "lojbanXiragan" = dontDistribute super."lojbanXiragan"; + "lojysamban" = dontDistribute super."lojysamban"; + "lol" = dontDistribute super."lol"; + "loli" = dontDistribute super."loli"; + "lookup-tables" = dontDistribute super."lookup-tables"; + "loop" = doDistribute super."loop_0_2_0"; + "loop-effin" = dontDistribute super."loop-effin"; + "loop-while" = dontDistribute super."loop-while"; + "loops" = dontDistribute super."loops"; + "loopy" = dontDistribute super."loopy"; + "lord" = dontDistribute super."lord"; + "lorem" = dontDistribute super."lorem"; + "loris" = dontDistribute super."loris"; + "loshadka" = dontDistribute super."loshadka"; + "lostcities" = dontDistribute super."lostcities"; + "lowgl" = dontDistribute super."lowgl"; + "ls-usb" = dontDistribute super."ls-usb"; + "lscabal" = dontDistribute super."lscabal"; + "lss" = dontDistribute super."lss"; + "lsystem" = dontDistribute super."lsystem"; + "ltk" = dontDistribute super."ltk"; + "ltl" = dontDistribute super."ltl"; + "lua-bytecode" = dontDistribute super."lua-bytecode"; + "luachunk" = dontDistribute super."luachunk"; + "luautils" = dontDistribute super."luautils"; + "lub" = dontDistribute super."lub"; + "lucid-foundation" = dontDistribute super."lucid-foundation"; + "lucienne" = dontDistribute super."lucienne"; + "luhn" = dontDistribute super."luhn"; + "lui" = dontDistribute super."lui"; + "luka" = dontDistribute super."luka"; + "luminance" = dontDistribute super."luminance"; + "luminance-samples" = dontDistribute super."luminance-samples"; + "lushtags" = dontDistribute super."lushtags"; + "luthor" = dontDistribute super."luthor"; + "lvish" = dontDistribute super."lvish"; + "lvmlib" = dontDistribute super."lvmlib"; + "lvmrun" = dontDistribute super."lvmrun"; + "lxc" = dontDistribute super."lxc"; + "lye" = dontDistribute super."lye"; + "lz4" = dontDistribute super."lz4"; + "lzma" = dontDistribute super."lzma"; + "lzma-clib" = dontDistribute super."lzma-clib"; + "lzma-enumerator" = dontDistribute super."lzma-enumerator"; + "lzma-streams" = dontDistribute super."lzma-streams"; + "maam" = dontDistribute super."maam"; + "mac" = dontDistribute super."mac"; + "maccatcher" = dontDistribute super."maccatcher"; + "machinecell" = dontDistribute super."machinecell"; + "machines-zlib" = dontDistribute super."machines-zlib"; + "macho" = dontDistribute super."macho"; + "maclight" = dontDistribute super."maclight"; + "macosx-make-standalone" = dontDistribute super."macosx-make-standalone"; + "mage" = dontDistribute super."mage"; + "magico" = dontDistribute super."magico"; + "magma" = dontDistribute super."magma"; + "mahoro" = dontDistribute super."mahoro"; + "maid" = dontDistribute super."maid"; + "mailbox-count" = dontDistribute super."mailbox-count"; + "mailchimp-subscribe" = dontDistribute super."mailchimp-subscribe"; + "mailgun" = dontDistribute super."mailgun"; + "majordomo" = dontDistribute super."majordomo"; + "majority" = dontDistribute super."majority"; + "make-hard-links" = dontDistribute super."make-hard-links"; + "make-package" = dontDistribute super."make-package"; + "makedo" = dontDistribute super."makedo"; + "manatee" = dontDistribute super."manatee"; + "manatee-all" = dontDistribute super."manatee-all"; + "manatee-anything" = dontDistribute super."manatee-anything"; + "manatee-browser" = dontDistribute super."manatee-browser"; + "manatee-core" = dontDistribute super."manatee-core"; + "manatee-curl" = dontDistribute super."manatee-curl"; + "manatee-editor" = dontDistribute super."manatee-editor"; + "manatee-filemanager" = dontDistribute super."manatee-filemanager"; + "manatee-imageviewer" = dontDistribute super."manatee-imageviewer"; + "manatee-ircclient" = dontDistribute super."manatee-ircclient"; + "manatee-mplayer" = dontDistribute super."manatee-mplayer"; + "manatee-pdfviewer" = dontDistribute super."manatee-pdfviewer"; + "manatee-processmanager" = dontDistribute super."manatee-processmanager"; + "manatee-reader" = dontDistribute super."manatee-reader"; + "manatee-template" = dontDistribute super."manatee-template"; + "manatee-terminal" = dontDistribute super."manatee-terminal"; + "manatee-welcome" = dontDistribute super."manatee-welcome"; + "mancala" = dontDistribute super."mancala"; + "mandrill" = doDistribute super."mandrill_0_3_0_0"; + "mandulia" = dontDistribute super."mandulia"; + "manifold-random" = dontDistribute super."manifold-random"; + "manifolds" = dontDistribute super."manifolds"; + "marionetta" = dontDistribute super."marionetta"; + "markdown-kate" = dontDistribute super."markdown-kate"; + "markdown-pap" = dontDistribute super."markdown-pap"; + "markdown-unlit" = dontDistribute super."markdown-unlit"; + "markdown2svg" = dontDistribute super."markdown2svg"; + "marked-pretty" = dontDistribute super."marked-pretty"; + "markov" = dontDistribute super."markov"; + "markov-chain" = dontDistribute super."markov-chain"; + "markov-processes" = dontDistribute super."markov-processes"; + "markup" = doDistribute super."markup_1_1_0"; + "markup-preview" = dontDistribute super."markup-preview"; + "marmalade-upload" = dontDistribute super."marmalade-upload"; + "marquise" = dontDistribute super."marquise"; + "marxup" = dontDistribute super."marxup"; + "masakazu-bot" = dontDistribute super."masakazu-bot"; + "mastermind" = dontDistribute super."mastermind"; + "matchers" = dontDistribute super."matchers"; + "mathblog" = dontDistribute super."mathblog"; + "mathgenealogy" = dontDistribute super."mathgenealogy"; + "mathista" = dontDistribute super."mathista"; + "mathlink" = dontDistribute super."mathlink"; + "matlab" = dontDistribute super."matlab"; + "matrix-market" = dontDistribute super."matrix-market"; + "matrix-market-pure" = dontDistribute super."matrix-market-pure"; + "matsuri" = dontDistribute super."matsuri"; + "maude" = dontDistribute super."maude"; + "maxent" = dontDistribute super."maxent"; + "maxsharing" = dontDistribute super."maxsharing"; + "maybe-justify" = dontDistribute super."maybe-justify"; + "maybench" = dontDistribute super."maybench"; + "mbox-tools" = dontDistribute super."mbox-tools"; + "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; + "mcmc-samplers" = dontDistribute super."mcmc-samplers"; + "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; + "mcmc-types" = dontDistribute super."mcmc-types"; + "mcpi" = dontDistribute super."mcpi"; + "mdcat" = dontDistribute super."mdcat"; + "mdo" = dontDistribute super."mdo"; + "mecab" = dontDistribute super."mecab"; + "mecha" = dontDistribute super."mecha"; + "mediawiki" = dontDistribute super."mediawiki"; + "mediawiki2latex" = dontDistribute super."mediawiki2latex"; + "meep" = dontDistribute super."meep"; + "mega-sdist" = dontDistribute super."mega-sdist"; + "megaparsec" = dontDistribute super."megaparsec"; + "meldable-heap" = dontDistribute super."meldable-heap"; + "melody" = dontDistribute super."melody"; + "memcache" = dontDistribute super."memcache"; + "memcache-conduit" = dontDistribute super."memcache-conduit"; + "memcache-haskell" = dontDistribute super."memcache-haskell"; + "memcached" = dontDistribute super."memcached"; + "memexml" = dontDistribute super."memexml"; + "memo-ptr" = dontDistribute super."memo-ptr"; + "memo-sqlite" = dontDistribute super."memo-sqlite"; + "memoization-utils" = dontDistribute super."memoization-utils"; + "memory" = doDistribute super."memory_0_7"; + "memscript" = dontDistribute super."memscript"; + "mersenne-random" = dontDistribute super."mersenne-random"; + "messente" = dontDistribute super."messente"; + "meta-misc" = dontDistribute super."meta-misc"; + "meta-par" = dontDistribute super."meta-par"; + "meta-par-accelerate" = dontDistribute super."meta-par-accelerate"; + "metadata" = dontDistribute super."metadata"; + "metamorphic" = dontDistribute super."metamorphic"; + "metaplug" = dontDistribute super."metaplug"; + "metric" = dontDistribute super."metric"; + "metricsd-client" = dontDistribute super."metricsd-client"; + "metronome" = dontDistribute super."metronome"; + "mezzolens" = dontDistribute super."mezzolens"; + "mfsolve" = dontDistribute super."mfsolve"; + "mgeneric" = dontDistribute super."mgeneric"; + "mi" = dontDistribute super."mi"; + "microbench" = dontDistribute super."microbench"; + "microformats2-parser" = dontDistribute super."microformats2-parser"; + "microformats2-types" = dontDistribute super."microformats2-types"; + "microlens" = doDistribute super."microlens_0_2_0_0"; + "microlens-each" = dontDistribute super."microlens-each"; + "microlens-ghc" = doDistribute super."microlens-ghc_0_1_0_1"; + "microlens-mtl" = doDistribute super."microlens-mtl_0_1_4_0"; + "microlens-platform" = dontDistribute super."microlens-platform"; + "microlens-th" = doDistribute super."microlens-th_0_2_1_1"; + "microtimer" = dontDistribute super."microtimer"; + "mida" = dontDistribute super."mida"; + "midi" = dontDistribute super."midi"; + "midi-alsa" = dontDistribute super."midi-alsa"; + "midi-music-box" = dontDistribute super."midi-music-box"; + "midi-util" = dontDistribute super."midi-util"; + "midimory" = dontDistribute super."midimory"; + "midisurface" = dontDistribute super."midisurface"; + "mighttpd" = dontDistribute super."mighttpd"; + "mighttpd2" = dontDistribute super."mighttpd2"; + "mighty-metropolis" = dontDistribute super."mighty-metropolis"; + "mikmod" = dontDistribute super."mikmod"; + "miku" = dontDistribute super."miku"; + "milena" = dontDistribute super."milena"; + "mime" = dontDistribute super."mime"; + "mime-directory" = dontDistribute super."mime-directory"; + "mime-string" = dontDistribute super."mime-string"; + "mines" = dontDistribute super."mines"; + "minesweeper" = dontDistribute super."minesweeper"; + "miniball" = dontDistribute super."miniball"; + "miniforth" = dontDistribute super."miniforth"; + "minimal-configuration" = dontDistribute super."minimal-configuration"; + "minimorph" = dontDistribute super."minimorph"; + "minimung" = dontDistribute super."minimung"; + "minions" = dontDistribute super."minions"; + "minioperational" = dontDistribute super."minioperational"; + "miniplex" = dontDistribute super."miniplex"; + "minirotate" = dontDistribute super."minirotate"; + "minisat" = dontDistribute super."minisat"; + "ministg" = dontDistribute super."ministg"; + "miniutter" = dontDistribute super."miniutter"; + "minst-idx" = dontDistribute super."minst-idx"; + "mirror-tweet" = dontDistribute super."mirror-tweet"; + "missing-py2" = dontDistribute super."missing-py2"; + "mix-arrows" = dontDistribute super."mix-arrows"; + "mixed-strategies" = dontDistribute super."mixed-strategies"; + "mkbndl" = dontDistribute super."mkbndl"; + "mkcabal" = dontDistribute super."mkcabal"; + "ml-w" = dontDistribute super."ml-w"; + "mlist" = dontDistribute super."mlist"; + "mmtl" = dontDistribute super."mmtl"; + "mmtl-base" = dontDistribute super."mmtl-base"; + "moan" = dontDistribute super."moan"; + "modbus-tcp" = dontDistribute super."modbus-tcp"; + "modelicaparser" = dontDistribute super."modelicaparser"; + "modsplit" = dontDistribute super."modsplit"; + "modular-arithmetic" = dontDistribute super."modular-arithmetic"; + "modular-prelude" = dontDistribute super."modular-prelude"; + "modular-prelude-classy" = dontDistribute super."modular-prelude-classy"; + "module-management" = dontDistribute super."module-management"; + "modulespection" = dontDistribute super."modulespection"; + "modulo" = dontDistribute super."modulo"; + "moe" = dontDistribute super."moe"; + "moesocks" = dontDistribute super."moesocks"; + "mohws" = dontDistribute super."mohws"; + "mole" = dontDistribute super."mole"; + "monad-abort-fd" = dontDistribute super."monad-abort-fd"; + "monad-atom" = dontDistribute super."monad-atom"; + "monad-atom-simple" = dontDistribute super."monad-atom-simple"; + "monad-bool" = dontDistribute super."monad-bool"; + "monad-classes" = dontDistribute super."monad-classes"; + "monad-codec" = dontDistribute super."monad-codec"; + "monad-exception" = dontDistribute super."monad-exception"; + "monad-fork" = dontDistribute super."monad-fork"; + "monad-gen" = dontDistribute super."monad-gen"; + "monad-interleave" = dontDistribute super."monad-interleave"; + "monad-levels" = dontDistribute super."monad-levels"; + "monad-loops-stm" = dontDistribute super."monad-loops-stm"; + "monad-lrs" = dontDistribute super."monad-lrs"; + "monad-memo" = dontDistribute super."monad-memo"; + "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; + "monad-open" = dontDistribute super."monad-open"; + "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; + "monad-param" = dontDistribute super."monad-param"; + "monad-ran" = dontDistribute super."monad-ran"; + "monad-resumption" = dontDistribute super."monad-resumption"; + "monad-state" = dontDistribute super."monad-state"; + "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-stlike-io" = dontDistribute super."monad-stlike-io"; + "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; + "monad-supply" = dontDistribute super."monad-supply"; + "monad-task" = dontDistribute super."monad-task"; + "monad-time" = dontDistribute super."monad-time"; + "monad-tx" = dontDistribute super."monad-tx"; + "monad-unify" = dontDistribute super."monad-unify"; + "monad-wrap" = dontDistribute super."monad-wrap"; + "monadIO" = dontDistribute super."monadIO"; + "monadLib-compose" = dontDistribute super."monadLib-compose"; + "monadacme" = dontDistribute super."monadacme"; + "monadbi" = dontDistribute super."monadbi"; + "monadcryptorandom" = doDistribute super."monadcryptorandom_0_6_1"; + "monadfibre" = dontDistribute super."monadfibre"; + "monadiccp" = dontDistribute super."monadiccp"; + "monadiccp-gecode" = dontDistribute super."monadiccp-gecode"; + "monadio-unwrappable" = dontDistribute super."monadio-unwrappable"; + "monadlist" = dontDistribute super."monadlist"; + "monadloc" = dontDistribute super."monadloc"; + "monadloc-pp" = dontDistribute super."monadloc-pp"; + "monadplus" = dontDistribute super."monadplus"; + "monads-fd" = dontDistribute super."monads-fd"; + "monadtransform" = dontDistribute super."monadtransform"; + "monarch" = dontDistribute super."monarch"; + "mongodb-queue" = dontDistribute super."mongodb-queue"; + "mongrel2-handler" = dontDistribute super."mongrel2-handler"; + "monitor" = dontDistribute super."monitor"; + "mono-foldable" = dontDistribute super."mono-foldable"; + "mono-traversable" = doDistribute super."mono-traversable_0_9_3"; + "monoid-absorbing" = dontDistribute super."monoid-absorbing"; + "monoid-owns" = dontDistribute super."monoid-owns"; + "monoid-record" = dontDistribute super."monoid-record"; + "monoid-statistics" = dontDistribute super."monoid-statistics"; + "monoid-transformer" = dontDistribute super."monoid-transformer"; + "monoidplus" = dontDistribute super."monoidplus"; + "monoids" = dontDistribute super."monoids"; + "monomorphic" = dontDistribute super."monomorphic"; + "montage" = dontDistribute super."montage"; + "montage-client" = dontDistribute super."montage-client"; + "monte-carlo" = dontDistribute super."monte-carlo"; + "moo" = dontDistribute super."moo"; + "moonshine" = dontDistribute super."moonshine"; + "morfette" = dontDistribute super."morfette"; + "morfeusz" = dontDistribute super."morfeusz"; + "morte" = dontDistribute super."morte"; + "mosaico-lib" = dontDistribute super."mosaico-lib"; + "mount" = dontDistribute super."mount"; + "mp" = dontDistribute super."mp"; + "mp3decoder" = dontDistribute super."mp3decoder"; + "mpdmate" = dontDistribute super."mpdmate"; + "mpppc" = dontDistribute super."mpppc"; + "mpretty" = dontDistribute super."mpretty"; + "mprover" = dontDistribute super."mprover"; + "mps" = dontDistribute super."mps"; + "mpvguihs" = dontDistribute super."mpvguihs"; + "mqtt-hs" = dontDistribute super."mqtt-hs"; + "ms" = dontDistribute super."ms"; + "msgpack" = dontDistribute super."msgpack"; + "msgpack-aeson" = dontDistribute super."msgpack-aeson"; + "msgpack-idl" = dontDistribute super."msgpack-idl"; + "msgpack-rpc" = dontDistribute super."msgpack-rpc"; + "msh" = dontDistribute super."msh"; + "msu" = dontDistribute super."msu"; + "mtgoxapi" = dontDistribute super."mtgoxapi"; + "mtl-c" = dontDistribute super."mtl-c"; + "mtl-evil-instances" = dontDistribute super."mtl-evil-instances"; + "mtl-tf" = dontDistribute super."mtl-tf"; + "mtl-unleashed" = dontDistribute super."mtl-unleashed"; + "mtlparse" = dontDistribute super."mtlparse"; + "mtlx" = dontDistribute super."mtlx"; + "mtp" = dontDistribute super."mtp"; + "mtree" = dontDistribute super."mtree"; + "mucipher" = dontDistribute super."mucipher"; + "mudbath" = dontDistribute super."mudbath"; + "muesli" = dontDistribute super."muesli"; + "multext-east-msd" = dontDistribute super."multext-east-msd"; + "multi-cabal" = dontDistribute super."multi-cabal"; + "multifocal" = dontDistribute super."multifocal"; + "multihash" = dontDistribute super."multihash"; + "multipart-names" = dontDistribute super."multipart-names"; + "multipass" = dontDistribute super."multipass"; + "multiplate" = dontDistribute super."multiplate"; + "multiplate-simplified" = dontDistribute super."multiplate-simplified"; + "multiplicity" = dontDistribute super."multiplicity"; + "multirec" = dontDistribute super."multirec"; + "multirec-alt-deriver" = dontDistribute super."multirec-alt-deriver"; + "multirec-binary" = dontDistribute super."multirec-binary"; + "multiset-comb" = dontDistribute super."multiset-comb"; + "multisetrewrite" = dontDistribute super."multisetrewrite"; + "multistate" = dontDistribute super."multistate"; + "muon" = dontDistribute super."muon"; + "murder" = dontDistribute super."murder"; + "murmur3" = dontDistribute super."murmur3"; + "murmurhash3" = dontDistribute super."murmurhash3"; + "music-articulation" = dontDistribute super."music-articulation"; + "music-diatonic" = dontDistribute super."music-diatonic"; + "music-dynamics" = dontDistribute super."music-dynamics"; + "music-dynamics-literal" = dontDistribute super."music-dynamics-literal"; + "music-graphics" = dontDistribute super."music-graphics"; + "music-parts" = dontDistribute super."music-parts"; + "music-pitch" = dontDistribute super."music-pitch"; + "music-pitch-literal" = dontDistribute super."music-pitch-literal"; + "music-preludes" = dontDistribute super."music-preludes"; + "music-score" = dontDistribute super."music-score"; + "music-sibelius" = dontDistribute super."music-sibelius"; + "music-suite" = dontDistribute super."music-suite"; + "music-util" = dontDistribute super."music-util"; + "musicbrainz-email" = dontDistribute super."musicbrainz-email"; + "musicxml" = dontDistribute super."musicxml"; + "musicxml2" = dontDistribute super."musicxml2"; + "mustache" = dontDistribute super."mustache"; + "mustache-haskell" = dontDistribute super."mustache-haskell"; + "mustache2hs" = dontDistribute super."mustache2hs"; + "mutable-iter" = dontDistribute super."mutable-iter"; + "mute-unmute" = dontDistribute super."mute-unmute"; + "mvc" = dontDistribute super."mvc"; + "mvc-updates" = dontDistribute super."mvc-updates"; + "mvclient" = dontDistribute super."mvclient"; + "mwc-probability" = dontDistribute super."mwc-probability"; + "mwc-random-monad" = dontDistribute super."mwc-random-monad"; + "myTestlll" = dontDistribute super."myTestlll"; + "mybitcoin-sci" = dontDistribute super."mybitcoin-sci"; + "myo" = dontDistribute super."myo"; + "mysnapsession" = dontDistribute super."mysnapsession"; + "mysnapsession-example" = dontDistribute super."mysnapsession-example"; + "mysql-effect" = dontDistribute super."mysql-effect"; + "mysql-simple-quasi" = dontDistribute super."mysql-simple-quasi"; + "mysql-simple-typed" = dontDistribute super."mysql-simple-typed"; + "mzv" = dontDistribute super."mzv"; + "n-m" = dontDistribute super."n-m"; + "nagios-check" = dontDistribute super."nagios-check"; + "nagios-perfdata" = dontDistribute super."nagios-perfdata"; + "nagios-plugin-ekg" = dontDistribute super."nagios-plugin-ekg"; + "named-formlet" = dontDistribute super."named-formlet"; + "named-lock" = dontDistribute super."named-lock"; + "named-records" = dontDistribute super."named-records"; + "namelist" = dontDistribute super."namelist"; + "names" = dontDistribute super."names"; + "names-th" = dontDistribute super."names-th"; + "nano-cryptr" = dontDistribute super."nano-cryptr"; + "nano-hmac" = dontDistribute super."nano-hmac"; + "nano-md5" = dontDistribute super."nano-md5"; + "nanoAgda" = dontDistribute super."nanoAgda"; + "nanocurses" = dontDistribute super."nanocurses"; + "nanomsg" = dontDistribute super."nanomsg"; + "nanomsg-haskell" = dontDistribute super."nanomsg-haskell"; + "nanoparsec" = dontDistribute super."nanoparsec"; + "narc" = dontDistribute super."narc"; + "nat" = dontDistribute super."nat"; + "nationstates" = doDistribute super."nationstates_0_2_0_3"; + "nats" = doDistribute super."nats_1"; + "nats-queue" = dontDistribute super."nats-queue"; + "natural-number" = dontDistribute super."natural-number"; + "natural-numbers" = dontDistribute super."natural-numbers"; + "natural-sort" = dontDistribute super."natural-sort"; + "natural-transformation" = dontDistribute super."natural-transformation"; + "naturalcomp" = dontDistribute super."naturalcomp"; + "naturals" = dontDistribute super."naturals"; + "naver-translate" = dontDistribute super."naver-translate"; + "nbt" = dontDistribute super."nbt"; + "nc-indicators" = dontDistribute super."nc-indicators"; + "ncurses" = dontDistribute super."ncurses"; + "neat" = dontDistribute super."neat"; + "needle" = dontDistribute super."needle"; + "neet" = dontDistribute super."neet"; + "nehe-tuts" = dontDistribute super."nehe-tuts"; + "neil" = dontDistribute super."neil"; + "neither" = dontDistribute super."neither"; + "nemesis" = dontDistribute super."nemesis"; + "nemesis-titan" = dontDistribute super."nemesis-titan"; + "nerf" = dontDistribute super."nerf"; + "nero" = dontDistribute super."nero"; + "nero-wai" = dontDistribute super."nero-wai"; + "nero-warp" = dontDistribute super."nero-warp"; + "nested-routes" = dontDistribute super."nested-routes"; + "nested-sets" = dontDistribute super."nested-sets"; + "nestedmap" = dontDistribute super."nestedmap"; + "net-concurrent" = dontDistribute super."net-concurrent"; + "netclock" = dontDistribute super."netclock"; + "netcore" = dontDistribute super."netcore"; + "netlines" = dontDistribute super."netlines"; + "netlink" = dontDistribute super."netlink"; + "netlist" = dontDistribute super."netlist"; + "netlist-to-vhdl" = dontDistribute super."netlist-to-vhdl"; + "netpbm" = dontDistribute super."netpbm"; + "netrc" = dontDistribute super."netrc"; + "netspec" = dontDistribute super."netspec"; + "netstring-enumerator" = dontDistribute super."netstring-enumerator"; + "nettle" = dontDistribute super."nettle"; + "nettle-frp" = dontDistribute super."nettle-frp"; + "nettle-netkit" = dontDistribute super."nettle-netkit"; + "nettle-openflow" = dontDistribute super."nettle-openflow"; + "netwire" = dontDistribute super."netwire"; + "netwire-input" = dontDistribute super."netwire-input"; + "netwire-input-glfw" = dontDistribute super."netwire-input-glfw"; + "network-address" = dontDistribute super."network-address"; + "network-anonymous-tor" = doDistribute super."network-anonymous-tor_0_9_2"; + "network-api-support" = dontDistribute super."network-api-support"; + "network-bitcoin" = dontDistribute super."network-bitcoin"; + "network-builder" = dontDistribute super."network-builder"; + "network-bytestring" = dontDistribute super."network-bytestring"; + "network-conduit" = dontDistribute super."network-conduit"; + "network-connection" = dontDistribute super."network-connection"; + "network-data" = dontDistribute super."network-data"; + "network-dbus" = dontDistribute super."network-dbus"; + "network-dns" = dontDistribute super."network-dns"; + "network-enumerator" = dontDistribute super."network-enumerator"; + "network-fancy" = dontDistribute super."network-fancy"; + "network-house" = dontDistribute super."network-house"; + "network-interfacerequest" = dontDistribute super."network-interfacerequest"; + "network-ip" = dontDistribute super."network-ip"; + "network-metrics" = dontDistribute super."network-metrics"; + "network-minihttp" = dontDistribute super."network-minihttp"; + "network-msg" = dontDistribute super."network-msg"; + "network-netpacket" = dontDistribute super."network-netpacket"; + "network-pgi" = dontDistribute super."network-pgi"; + "network-rpca" = dontDistribute super."network-rpca"; + "network-server" = dontDistribute super."network-server"; + "network-service" = dontDistribute super."network-service"; + "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr"; + "network-simple-tls" = dontDistribute super."network-simple-tls"; + "network-socket-options" = dontDistribute super."network-socket-options"; + "network-stream" = dontDistribute super."network-stream"; + "network-topic-models" = dontDistribute super."network-topic-models"; + "network-transport-amqp" = dontDistribute super."network-transport-amqp"; + "network-transport-composed" = dontDistribute super."network-transport-composed"; + "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; + "network-transport-tcp" = dontDistribute super."network-transport-tcp"; + "network-transport-tests" = dontDistribute super."network-transport-tests"; + "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; + "network-uri-static" = dontDistribute super."network-uri-static"; + "network-wai-router" = dontDistribute super."network-wai-router"; + "network-websocket" = dontDistribute super."network-websocket"; + "networked-game" = dontDistribute super."networked-game"; + "newports" = dontDistribute super."newports"; + "newsynth" = dontDistribute super."newsynth"; + "newt" = dontDistribute super."newt"; + "newtype-deriving" = dontDistribute super."newtype-deriving"; + "newtype-th" = dontDistribute super."newtype-th"; + "newtyper" = dontDistribute super."newtyper"; + "nextstep-plist" = dontDistribute super."nextstep-plist"; + "nf" = dontDistribute super."nf"; + "ngrams-loader" = dontDistribute super."ngrams-loader"; + "nibblestring" = dontDistribute super."nibblestring"; + "nicify" = dontDistribute super."nicify"; + "nicify-lib" = dontDistribute super."nicify-lib"; + "nicovideo-translator" = dontDistribute super."nicovideo-translator"; + "nikepub" = dontDistribute super."nikepub"; + "nimber" = dontDistribute super."nimber"; + "nitro" = dontDistribute super."nitro"; + "nix-eval" = dontDistribute super."nix-eval"; + "nix-paths" = dontDistribute super."nix-paths"; + "nixfromnpm" = dontDistribute super."nixfromnpm"; + "nixos-types" = dontDistribute super."nixos-types"; + "nkjp" = dontDistribute super."nkjp"; + "nlp-scores" = dontDistribute super."nlp-scores"; + "nlp-scores-scripts" = dontDistribute super."nlp-scores-scripts"; + "nm" = dontDistribute super."nm"; + "nme" = dontDistribute super."nme"; + "nntp" = dontDistribute super."nntp"; + "no-buffering-workaround" = dontDistribute super."no-buffering-workaround"; + "no-role-annots" = dontDistribute super."no-role-annots"; + "nofib-analyze" = dontDistribute super."nofib-analyze"; + "noise" = dontDistribute super."noise"; + "non-empty" = dontDistribute super."non-empty"; + "non-negative" = dontDistribute super."non-negative"; + "nondeterminism" = dontDistribute super."nondeterminism"; + "nonfree" = dontDistribute super."nonfree"; + "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; + "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; + "noodle" = dontDistribute super."noodle"; + "normaldistribution" = dontDistribute super."normaldistribution"; + "not-gloss" = dontDistribute super."not-gloss"; + "not-gloss-examples" = dontDistribute super."not-gloss-examples"; + "not-in-base" = dontDistribute super."not-in-base"; + "notcpp" = dontDistribute super."notcpp"; + "notmuch-haskell" = dontDistribute super."notmuch-haskell"; + "notmuch-web" = dontDistribute super."notmuch-web"; + "notzero" = dontDistribute super."notzero"; + "np-extras" = dontDistribute super."np-extras"; + "np-linear" = dontDistribute super."np-linear"; + "nptools" = dontDistribute super."nptools"; + "nth-prime" = dontDistribute super."nth-prime"; + "nthable" = dontDistribute super."nthable"; + "ntp-control" = dontDistribute super."ntp-control"; + "null-canvas" = dontDistribute super."null-canvas"; + "nullary" = dontDistribute super."nullary"; + "number" = dontDistribute super."number"; + "numbering" = dontDistribute super."numbering"; + "numerals" = dontDistribute super."numerals"; + "numerals-base" = dontDistribute super."numerals-base"; + "numeric-extras" = doDistribute super."numeric-extras_0_0_3"; + "numeric-limits" = dontDistribute super."numeric-limits"; + "numeric-prelude" = dontDistribute super."numeric-prelude"; + "numeric-qq" = dontDistribute super."numeric-qq"; + "numeric-quest" = dontDistribute super."numeric-quest"; + "numeric-tools" = dontDistribute super."numeric-tools"; + "numericpeano" = dontDistribute super."numericpeano"; + "nums" = dontDistribute super."nums"; + "numtype-dk" = dontDistribute super."numtype-dk"; + "numtype-tf" = dontDistribute super."numtype-tf"; + "nurbs" = dontDistribute super."nurbs"; + "nvim-hs" = dontDistribute super."nvim-hs"; + "nvim-hs-contrib" = dontDistribute super."nvim-hs-contrib"; + "nyan" = dontDistribute super."nyan"; + "nylas" = dontDistribute super."nylas"; + "nymphaea" = dontDistribute super."nymphaea"; + "oauthenticated" = dontDistribute super."oauthenticated"; + "obdd" = dontDistribute super."obdd"; + "oberon0" = dontDistribute super."oberon0"; + "obj" = dontDistribute super."obj"; + "objectid" = dontDistribute super."objectid"; + "observable-sharing" = dontDistribute super."observable-sharing"; + "octohat" = dontDistribute super."octohat"; + "octopus" = dontDistribute super."octopus"; + "oculus" = dontDistribute super."oculus"; + "off-simple" = dontDistribute super."off-simple"; + "ofx" = dontDistribute super."ofx"; + "ohloh-hs" = dontDistribute super."ohloh-hs"; + "oi" = dontDistribute super."oi"; + "oidc-client" = dontDistribute super."oidc-client"; + "ois-input-manager" = dontDistribute super."ois-input-manager"; + "old-version" = dontDistribute super."old-version"; + "olwrapper" = dontDistribute super."olwrapper"; + "omaketex" = dontDistribute super."omaketex"; + "omega" = dontDistribute super."omega"; + "omnicodec" = dontDistribute super."omnicodec"; + "on-a-horse" = dontDistribute super."on-a-horse"; + "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "one-liner" = dontDistribute super."one-liner"; + "one-time-password" = dontDistribute super."one-time-password"; + "oneOfN" = dontDistribute super."oneOfN"; + "oneormore" = dontDistribute super."oneormore"; + "only" = dontDistribute super."only"; + "onu-course" = dontDistribute super."onu-course"; + "oo-prototypes" = dontDistribute super."oo-prototypes"; + "opaleye-classy" = dontDistribute super."opaleye-classy"; + "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; + "opaleye-trans" = dontDistribute super."opaleye-trans"; + "open-browser" = dontDistribute super."open-browser"; + "open-haddock" = dontDistribute super."open-haddock"; + "open-pandoc" = dontDistribute super."open-pandoc"; + "open-symbology" = dontDistribute super."open-symbology"; + "open-typerep" = dontDistribute super."open-typerep"; + "open-union" = dontDistribute super."open-union"; + "open-witness" = dontDistribute super."open-witness"; + "opencv-raw" = dontDistribute super."opencv-raw"; + "opendatatable" = dontDistribute super."opendatatable"; + "openexchangerates" = dontDistribute super."openexchangerates"; + "openflow" = dontDistribute super."openflow"; + "opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo"; + "opengl-spacenavigator" = dontDistribute super."opengl-spacenavigator"; + "opengles" = dontDistribute super."opengles"; + "openid" = dontDistribute super."openid"; + "openpgp" = dontDistribute super."openpgp"; + "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; + "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; + "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "openssh-github-keys" = dontDistribute super."openssh-github-keys"; + "openssl-createkey" = dontDistribute super."openssl-createkey"; + "opentheory" = dontDistribute super."opentheory"; + "opentheory-bits" = dontDistribute super."opentheory-bits"; + "opentheory-byte" = dontDistribute super."opentheory-byte"; + "opentheory-char" = dontDistribute super."opentheory-char"; + "opentheory-divides" = dontDistribute super."opentheory-divides"; + "opentheory-fibonacci" = dontDistribute super."opentheory-fibonacci"; + "opentheory-parser" = dontDistribute super."opentheory-parser"; + "opentheory-prime" = dontDistribute super."opentheory-prime"; + "opentheory-primitive" = dontDistribute super."opentheory-primitive"; + "opentheory-probability" = dontDistribute super."opentheory-probability"; + "opentheory-stream" = dontDistribute super."opentheory-stream"; + "opentheory-unicode" = dontDistribute super."opentheory-unicode"; + "operational-alacarte" = dontDistribute super."operational-alacarte"; + "opml" = dontDistribute super."opml"; + "opml-conduit" = dontDistribute super."opml-conduit"; + "opn" = dontDistribute super."opn"; + "optimal-blocks" = dontDistribute super."optimal-blocks"; + "optimization" = dontDistribute super."optimization"; + "optimusprime" = dontDistribute super."optimusprime"; + "optional" = dontDistribute super."optional"; + "options-time" = dontDistribute super."options-time"; + "optparse-declarative" = dontDistribute super."optparse-declarative"; + "orc" = dontDistribute super."orc"; + "orchestrate" = dontDistribute super."orchestrate"; + "orchid" = dontDistribute super."orchid"; + "orchid-demo" = dontDistribute super."orchid-demo"; + "ord-adhoc" = dontDistribute super."ord-adhoc"; + "order-maintenance" = dontDistribute super."order-maintenance"; + "order-statistics" = dontDistribute super."order-statistics"; + "ordered" = dontDistribute super."ordered"; + "orders" = dontDistribute super."orders"; + "ordrea" = dontDistribute super."ordrea"; + "organize-imports" = dontDistribute super."organize-imports"; + "orgmode" = dontDistribute super."orgmode"; + "orgmode-parse" = dontDistribute super."orgmode-parse"; + "origami" = dontDistribute super."origami"; + "os-release" = dontDistribute super."os-release"; + "osc" = dontDistribute super."osc"; + "osm-download" = dontDistribute super."osm-download"; + "oso2pdf" = dontDistribute super."oso2pdf"; + "osx-ar" = dontDistribute super."osx-ar"; + "ot" = dontDistribute super."ot"; + "ottparse-pretty" = dontDistribute super."ottparse-pretty"; + "overture" = dontDistribute super."overture"; + "pack" = dontDistribute super."pack"; + "package-o-tron" = dontDistribute super."package-o-tron"; + "package-vt" = dontDistribute super."package-vt"; + "packdeps" = dontDistribute super."packdeps"; + "packed-dawg" = dontDistribute super."packed-dawg"; + "packedstring" = dontDistribute super."packedstring"; + "packer" = dontDistribute super."packer"; + "packunused" = dontDistribute super."packunused"; + "pacman-memcache" = dontDistribute super."pacman-memcache"; + "padKONTROL" = dontDistribute super."padKONTROL"; + "pagarme" = dontDistribute super."pagarme"; + "pagerduty" = doDistribute super."pagerduty_0_0_3_3"; + "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; + "palindromes" = dontDistribute super."palindromes"; + "pam" = dontDistribute super."pam"; + "panda" = dontDistribute super."panda"; + "pandoc" = doDistribute super."pandoc_1_15_1_1"; + "pandoc-citeproc" = doDistribute super."pandoc-citeproc_0_7_4"; + "pandoc-citeproc-preamble" = dontDistribute super."pandoc-citeproc-preamble"; + "pandoc-crossref" = dontDistribute super."pandoc-crossref"; + "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; + "pandoc-lens" = dontDistribute super."pandoc-lens"; + "pandoc-placetable" = dontDistribute super."pandoc-placetable"; + "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; + "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "papillon" = dontDistribute super."papillon"; + "pappy" = dontDistribute super."pappy"; + "para" = dontDistribute super."para"; + "paragon" = dontDistribute super."paragon"; + "parallel-tasks" = dontDistribute super."parallel-tasks"; + "parallel-tree-search" = dontDistribute super."parallel-tree-search"; + "parameterized-data" = dontDistribute super."parameterized-data"; + "parco" = dontDistribute super."parco"; + "parco-attoparsec" = dontDistribute super."parco-attoparsec"; + "parco-parsec" = dontDistribute super."parco-parsec"; + "parcom-lib" = dontDistribute super."parcom-lib"; + "parconc-examples" = dontDistribute super."parconc-examples"; + "parport" = dontDistribute super."parport"; + "parse-dimacs" = dontDistribute super."parse-dimacs"; + "parse-help" = dontDistribute super."parse-help"; + "parsec-extra" = dontDistribute super."parsec-extra"; + "parsec-numbers" = dontDistribute super."parsec-numbers"; + "parsec-parsers" = dontDistribute super."parsec-parsers"; + "parsec-permutation" = dontDistribute super."parsec-permutation"; + "parsec-tagsoup" = dontDistribute super."parsec-tagsoup"; + "parsec-trace" = dontDistribute super."parsec-trace"; + "parsec-utils" = dontDistribute super."parsec-utils"; + "parsec1" = dontDistribute super."parsec1"; + "parsec2" = dontDistribute super."parsec2"; + "parsec3" = dontDistribute super."parsec3"; + "parsec3-numbers" = dontDistribute super."parsec3-numbers"; + "parsedate" = dontDistribute super."parsedate"; + "parseerror-eq" = dontDistribute super."parseerror-eq"; + "parsek" = dontDistribute super."parsek"; + "parsely" = dontDistribute super."parsely"; + "parser-helper" = dontDistribute super."parser-helper"; + "parser241" = dontDistribute super."parser241"; + "parsergen" = dontDistribute super."parsergen"; + "parsestar" = dontDistribute super."parsestar"; + "parsimony" = dontDistribute super."parsimony"; + "partial" = dontDistribute super."partial"; + "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; + "partial-lens" = dontDistribute super."partial-lens"; + "partial-uri" = dontDistribute super."partial-uri"; + "partly" = dontDistribute super."partly"; + "passage" = dontDistribute super."passage"; + "passwords" = dontDistribute super."passwords"; + "pastis" = dontDistribute super."pastis"; + "pasty" = dontDistribute super."pasty"; + "patch-combinators" = dontDistribute super."patch-combinators"; + "patch-image" = dontDistribute super."patch-image"; + "patches-vector" = dontDistribute super."patches-vector"; + "path-extra" = dontDistribute super."path-extra"; + "pathfinding" = dontDistribute super."pathfinding"; + "pathfindingcore" = dontDistribute super."pathfindingcore"; + "pathtype" = dontDistribute super."pathtype"; + "pathwalk" = dontDistribute super."pathwalk"; + "patronscraper" = dontDistribute super."patronscraper"; + "patterns" = dontDistribute super."patterns"; + "paymill" = dontDistribute super."paymill"; + "paypal-adaptive-hoops" = dontDistribute super."paypal-adaptive-hoops"; + "paypal-api" = dontDistribute super."paypal-api"; + "pb" = dontDistribute super."pb"; + "pbc4hs" = dontDistribute super."pbc4hs"; + "pbkdf" = dontDistribute super."pbkdf"; + "pcap" = dontDistribute super."pcap"; + "pcap-conduit" = dontDistribute super."pcap-conduit"; + "pcap-enumerator" = dontDistribute super."pcap-enumerator"; + "pcd-loader" = dontDistribute super."pcd-loader"; + "pcf" = dontDistribute super."pcf"; + "pcg-random" = dontDistribute super."pcg-random"; + "pcre-heavy" = doDistribute super."pcre-heavy_0_2_5"; + "pcre-less" = dontDistribute super."pcre-less"; + "pcre-light-extra" = dontDistribute super."pcre-light-extra"; + "pcre-utils" = dontDistribute super."pcre-utils"; + "pdf-toolbox-content" = dontDistribute super."pdf-toolbox-content"; + "pdf-toolbox-core" = dontDistribute super."pdf-toolbox-core"; + "pdf-toolbox-document" = dontDistribute super."pdf-toolbox-document"; + "pdf-toolbox-viewer" = dontDistribute super."pdf-toolbox-viewer"; + "pdf2line" = dontDistribute super."pdf2line"; + "pdfsplit" = dontDistribute super."pdfsplit"; + "pdynload" = dontDistribute super."pdynload"; + "peakachu" = dontDistribute super."peakachu"; + "peano" = dontDistribute super."peano"; + "peano-inf" = dontDistribute super."peano-inf"; + "pec" = dontDistribute super."pec"; + "pecoff" = dontDistribute super."pecoff"; + "peg" = dontDistribute super."peg"; + "peggy" = dontDistribute super."peggy"; + "pell" = dontDistribute super."pell"; + "penn-treebank" = dontDistribute super."penn-treebank"; + "penny" = dontDistribute super."penny"; + "penny-bin" = dontDistribute super."penny-bin"; + "penny-lib" = dontDistribute super."penny-lib"; + "peparser" = dontDistribute super."peparser"; + "perceptron" = dontDistribute super."perceptron"; + "perdure" = dontDistribute super."perdure"; + "period" = dontDistribute super."period"; + "perm" = dontDistribute super."perm"; + "permutation" = dontDistribute super."permutation"; + "permute" = dontDistribute super."permute"; + "persist2er" = dontDistribute super."persist2er"; + "persistable-record" = dontDistribute super."persistable-record"; + "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-equivalence" = dontDistribute super."persistent-equivalence"; + "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; + "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; + "persistent-map" = dontDistribute super."persistent-map"; + "persistent-mysql" = doDistribute super."persistent-mysql_2_2"; + "persistent-odbc" = dontDistribute super."persistent-odbc"; + "persistent-protobuf" = dontDistribute super."persistent-protobuf"; + "persistent-ratelimit" = dontDistribute super."persistent-ratelimit"; + "persistent-redis" = dontDistribute super."persistent-redis"; + "persistent-vector" = dontDistribute super."persistent-vector"; + "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; + "persona" = dontDistribute super."persona"; + "persona-idp" = dontDistribute super."persona-idp"; + "pesca" = dontDistribute super."pesca"; + "peyotls" = dontDistribute super."peyotls"; + "peyotls-codec" = dontDistribute super."peyotls-codec"; + "pez" = dontDistribute super."pez"; + "pg-harness" = dontDistribute super."pg-harness"; + "pg-harness-client" = dontDistribute super."pg-harness-client"; + "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pgdl" = dontDistribute super."pgdl"; + "pgm" = dontDistribute super."pgm"; + "pgp-wordlist" = dontDistribute super."pgp-wordlist"; + "pgsql-simple" = dontDistribute super."pgsql-simple"; + "pgstream" = dontDistribute super."pgstream"; + "phasechange" = dontDistribute super."phasechange"; + "phizzle" = dontDistribute super."phizzle"; + "phone-numbers" = dontDistribute super."phone-numbers"; + "phone-push" = dontDistribute super."phone-push"; + "phonetic-code" = dontDistribute super."phonetic-code"; + "phooey" = dontDistribute super."phooey"; + "photoname" = dontDistribute super."photoname"; + "phraskell" = dontDistribute super."phraskell"; + "phybin" = dontDistribute super."phybin"; + "pi-calculus" = dontDistribute super."pi-calculus"; + "pia-forward" = dontDistribute super."pia-forward"; + "pianola" = dontDistribute super."pianola"; + "picologic" = dontDistribute super."picologic"; + "picosat" = dontDistribute super."picosat"; + "piet" = dontDistribute super."piet"; + "piki" = dontDistribute super."piki"; + "pinboard" = dontDistribute super."pinboard"; + "pipe-enumerator" = dontDistribute super."pipe-enumerator"; + "pipeclip" = dontDistribute super."pipeclip"; + "pipes" = doDistribute super."pipes_4_1_6"; + "pipes-async" = dontDistribute super."pipes-async"; + "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; + "pipes-cacophony" = dontDistribute super."pipes-cacophony"; + "pipes-cellular" = dontDistribute super."pipes-cellular"; + "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; + "pipes-cereal" = dontDistribute super."pipes-cereal"; + "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-conduit" = dontDistribute super."pipes-conduit"; + "pipes-core" = dontDistribute super."pipes-core"; + "pipes-courier" = dontDistribute super."pipes-courier"; + "pipes-csv" = dontDistribute super."pipes-csv"; + "pipes-errors" = dontDistribute super."pipes-errors"; + "pipes-extra" = dontDistribute super."pipes-extra"; + "pipes-extras" = dontDistribute super."pipes-extras"; + "pipes-files" = dontDistribute super."pipes-files"; + "pipes-interleave" = dontDistribute super."pipes-interleave"; + "pipes-mongodb" = dontDistribute super."pipes-mongodb"; + "pipes-network-tls" = dontDistribute super."pipes-network-tls"; + "pipes-p2p" = dontDistribute super."pipes-p2p"; + "pipes-p2p-examples" = dontDistribute super."pipes-p2p-examples"; + "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; + "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-shell" = dontDistribute super."pipes-shell"; + "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; + "pipes-vector" = dontDistribute super."pipes-vector"; + "pipes-websockets" = dontDistribute super."pipes-websockets"; + "pipes-zeromq4" = dontDistribute super."pipes-zeromq4"; + "pipes-zlib" = dontDistribute super."pipes-zlib"; + "pisigma" = dontDistribute super."pisigma"; + "pit" = dontDistribute super."pit"; + "pitchtrack" = dontDistribute super."pitchtrack"; + "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pkcs1" = dontDistribute super."pkcs1"; + "pkcs7" = dontDistribute super."pkcs7"; + "pkggraph" = dontDistribute super."pkggraph"; + "pktree" = dontDistribute super."pktree"; + "plailude" = dontDistribute super."plailude"; + "planar-graph" = dontDistribute super."planar-graph"; + "plat" = dontDistribute super."plat"; + "playlists" = dontDistribute super."playlists"; + "plist" = dontDistribute super."plist"; + "plivo" = dontDistribute super."plivo"; + "plot" = doDistribute super."plot_0_2_3_4"; + "plot-gtk" = doDistribute super."plot-gtk_0_2_0_2"; + "plot-gtk-ui" = dontDistribute super."plot-gtk-ui"; + "plot-gtk3" = doDistribute super."plot-gtk3_0_1_0_1"; + "plot-lab" = dontDistribute super."plot-lab"; + "plotfont" = dontDistribute super."plotfont"; + "plotserver-api" = dontDistribute super."plotserver-api"; + "plugins" = dontDistribute super."plugins"; + "plugins-auto" = dontDistribute super."plugins-auto"; + "plugins-multistage" = dontDistribute super."plugins-multistage"; + "plumbers" = dontDistribute super."plumbers"; + "ply-loader" = dontDistribute super."ply-loader"; + "png-file" = dontDistribute super."png-file"; + "pngload" = dontDistribute super."pngload"; + "pngload-fixed" = dontDistribute super."pngload-fixed"; + "pnm" = dontDistribute super."pnm"; + "pocket-dns" = dontDistribute super."pocket-dns"; + "pointedlist" = dontDistribute super."pointedlist"; + "pointfree" = dontDistribute super."pointfree"; + "pointful" = dontDistribute super."pointful"; + "pointless-fun" = dontDistribute super."pointless-fun"; + "pointless-haskell" = dontDistribute super."pointless-haskell"; + "pointless-lenses" = dontDistribute super."pointless-lenses"; + "pointless-rewrite" = dontDistribute super."pointless-rewrite"; + "poker-eval" = dontDistribute super."poker-eval"; + "pokitdok" = dontDistribute super."pokitdok"; + "polar" = dontDistribute super."polar"; + "polar-configfile" = dontDistribute super."polar-configfile"; + "polar-shader" = dontDistribute super."polar-shader"; + "polh-lexicon" = dontDistribute super."polh-lexicon"; + "polimorf" = dontDistribute super."polimorf"; + "poll" = dontDistribute super."poll"; + "polyToMonoid" = dontDistribute super."polyToMonoid"; + "polymap" = dontDistribute super."polymap"; + "polynomial" = dontDistribute super."polynomial"; + "polynomials-bernstein" = dontDistribute super."polynomials-bernstein"; + "polyseq" = dontDistribute super."polyseq"; + "polysoup" = dontDistribute super."polysoup"; + "polytypeable" = dontDistribute super."polytypeable"; + "polytypeable-utils" = dontDistribute super."polytypeable-utils"; + "ponder" = dontDistribute super."ponder"; + "pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver"; + "pontarius-xmpp" = dontDistribute super."pontarius-xmpp"; + "pontarius-xpmn" = dontDistribute super."pontarius-xpmn"; + "pony" = dontDistribute super."pony"; + "pool" = dontDistribute super."pool"; + "pool-conduit" = dontDistribute super."pool-conduit"; + "pooled-io" = dontDistribute super."pooled-io"; + "pop3-client" = dontDistribute super."pop3-client"; + "popenhs" = dontDistribute super."popenhs"; + "poppler" = dontDistribute super."poppler"; + "populate-setup-exe-cache" = dontDistribute super."populate-setup-exe-cache"; + "portable-lines" = dontDistribute super."portable-lines"; + "portaudio" = dontDistribute super."portaudio"; + "porte" = dontDistribute super."porte"; + "porter" = dontDistribute super."porter"; + "ports" = dontDistribute super."ports"; + "ports-tools" = dontDistribute super."ports-tools"; + "positive" = dontDistribute super."positive"; + "posix-acl" = dontDistribute super."posix-acl"; + "posix-escape" = dontDistribute super."posix-escape"; + "posix-filelock" = dontDistribute super."posix-filelock"; + "posix-paths" = dontDistribute super."posix-paths"; + "posix-pty" = dontDistribute super."posix-pty"; + "posix-timer" = dontDistribute super."posix-timer"; + "posix-waitpid" = dontDistribute super."posix-waitpid"; + "possible" = dontDistribute super."possible"; + "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; + "postcodes" = dontDistribute super."postcodes"; + "postgresql-config" = dontDistribute super."postgresql-config"; + "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; + "postgresql-cube" = dontDistribute super."postgresql-cube"; + "postgresql-orm" = dontDistribute super."postgresql-orm"; + "postgresql-query" = dontDistribute super."postgresql-query"; + "postgresql-schema" = dontDistribute super."postgresql-schema"; + "postgresql-simple-migration" = dontDistribute super."postgresql-simple-migration"; + "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; + "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; + "postgresql-typed" = dontDistribute super."postgresql-typed"; + "postgrest" = dontDistribute super."postgrest"; + "postie" = dontDistribute super."postie"; + "postmark" = dontDistribute super."postmark"; + "postmaster" = dontDistribute super."postmaster"; + "potato-tool" = dontDistribute super."potato-tool"; + "potrace" = dontDistribute super."potrace"; + "potrace-diagrams" = dontDistribute super."potrace-diagrams"; + "powermate" = dontDistribute super."powermate"; + "powerpc" = dontDistribute super."powerpc"; + "ppm" = dontDistribute super."ppm"; + "pqc" = dontDistribute super."pqc"; + "pqueue-mtl" = dontDistribute super."pqueue-mtl"; + "practice-room" = dontDistribute super."practice-room"; + "precis" = dontDistribute super."precis"; + "pred-trie" = doDistribute super."pred-trie_0_2_0"; + "predicates" = dontDistribute super."predicates"; + "prednote-test" = dontDistribute super."prednote-test"; + "prefork" = dontDistribute super."prefork"; + "pregame" = dontDistribute super."pregame"; + "prelude-generalize" = dontDistribute super."prelude-generalize"; + "prelude-plus" = dontDistribute super."prelude-plus"; + "prelude-prime" = dontDistribute super."prelude-prime"; + "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "preprocess-haskell" = dontDistribute super."preprocess-haskell"; + "preprocessor-tools" = dontDistribute super."preprocessor-tools"; + "present" = dontDistribute super."present"; + "press" = dontDistribute super."press"; + "presto-hdbc" = dontDistribute super."presto-hdbc"; + "prettify" = dontDistribute super."prettify"; + "pretty-compact" = dontDistribute super."pretty-compact"; + "pretty-error" = dontDistribute super."pretty-error"; + "pretty-hex" = dontDistribute super."pretty-hex"; + "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-sop" = dontDistribute super."pretty-sop"; + "pretty-tree" = dontDistribute super."pretty-tree"; + "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-uniq" = dontDistribute super."prim-uniq"; + "primula-board" = dontDistribute super."primula-board"; + "primula-bot" = dontDistribute super."primula-bot"; + "printf-mauke" = dontDistribute super."printf-mauke"; + "printxosd" = dontDistribute super."printxosd"; + "priority-queue" = dontDistribute super."priority-queue"; + "priority-sync" = dontDistribute super."priority-sync"; + "privileged-concurrency" = dontDistribute super."privileged-concurrency"; + "prizm" = dontDistribute super."prizm"; + "probability" = dontDistribute super."probability"; + "probable" = dontDistribute super."probable"; + "proc" = dontDistribute super."proc"; + "process-conduit" = dontDistribute super."process-conduit"; + "process-iterio" = dontDistribute super."process-iterio"; + "process-leksah" = dontDistribute super."process-leksah"; + "process-listlike" = dontDistribute super."process-listlike"; + "process-progress" = dontDistribute super."process-progress"; + "process-qq" = dontDistribute super."process-qq"; + "process-streaming" = dontDistribute super."process-streaming"; + "processing" = dontDistribute super."processing"; + "processor-creative-kit" = dontDistribute super."processor-creative-kit"; + "procrastinating-structure" = dontDistribute super."procrastinating-structure"; + "procrastinating-variable" = dontDistribute super."procrastinating-variable"; + "procstat" = dontDistribute super."procstat"; + "proctest" = dontDistribute super."proctest"; + "prof2dot" = dontDistribute super."prof2dot"; + "prof2pretty" = dontDistribute super."prof2pretty"; + "profiteur" = dontDistribute super."profiteur"; + "progress" = dontDistribute super."progress"; + "progressbar" = dontDistribute super."progressbar"; + "progression" = dontDistribute super."progression"; + "progressive" = dontDistribute super."progressive"; + "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; + "projection" = dontDistribute super."projection"; + "prolog" = dontDistribute super."prolog"; + "prolog-graph" = dontDistribute super."prolog-graph"; + "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; + "prologue" = dontDistribute super."prologue"; + "promise" = dontDistribute super."promise"; + "promises" = dontDistribute super."promises"; + "prompt" = dontDistribute super."prompt"; + "propane" = dontDistribute super."propane"; + "propellor" = dontDistribute super."propellor"; + "properties" = dontDistribute super."properties"; + "property-list" = dontDistribute super."property-list"; + "proplang" = dontDistribute super."proplang"; + "props" = dontDistribute super."props"; + "prosper" = dontDistribute super."prosper"; + "proteaaudio" = dontDistribute super."proteaaudio"; + "protobuf" = dontDistribute super."protobuf"; + "protobuf-native" = dontDistribute super."protobuf-native"; + "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; + "protocol-buffers-fork" = dontDistribute super."protocol-buffers-fork"; + "proton-haskell" = dontDistribute super."proton-haskell"; + "prototype" = dontDistribute super."prototype"; + "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; + "proxy-kindness" = dontDistribute super."proxy-kindness"; + "psc-ide" = dontDistribute super."psc-ide"; + "pseudo-boolean" = dontDistribute super."pseudo-boolean"; + "pseudo-trie" = dontDistribute super."pseudo-trie"; + "pseudomacros" = dontDistribute super."pseudomacros"; + "pub" = dontDistribute super."pub"; + "publicsuffix" = dontDistribute super."publicsuffix"; + "publicsuffixlist" = dontDistribute super."publicsuffixlist"; + "publicsuffixlistcreate" = dontDistribute super."publicsuffixlistcreate"; + "pubnub" = dontDistribute super."pubnub"; + "pubsub" = dontDistribute super."pubsub"; + "puffytools" = dontDistribute super."puffytools"; + "pugixml" = dontDistribute super."pugixml"; + "pugs-DrIFT" = dontDistribute super."pugs-DrIFT"; + "pugs-HsSyck" = dontDistribute super."pugs-HsSyck"; + "pugs-compat" = dontDistribute super."pugs-compat"; + "pugs-hsregex" = dontDistribute super."pugs-hsregex"; + "pulse-simple" = dontDistribute super."pulse-simple"; + "punkt" = dontDistribute super."punkt"; + "punycode" = dontDistribute super."punycode"; + "puppetresources" = dontDistribute super."puppetresources"; + "pure-cdb" = dontDistribute super."pure-cdb"; + "pure-fft" = dontDistribute super."pure-fft"; + "pure-priority-queue" = dontDistribute super."pure-priority-queue"; + "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; + "pure-zlib" = dontDistribute super."pure-zlib"; + "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "push-notify" = dontDistribute super."push-notify"; + "push-notify-ccs" = dontDistribute super."push-notify-ccs"; + "push-notify-general" = dontDistribute super."push-notify-general"; + "pusher-haskell" = dontDistribute super."pusher-haskell"; + "pusher-http-haskell" = dontDistribute super."pusher-http-haskell"; + "pushme" = dontDistribute super."pushme"; + "putlenses" = dontDistribute super."putlenses"; + "puzzle-draw" = dontDistribute super."puzzle-draw"; + "puzzle-draw-cmdline" = dontDistribute super."puzzle-draw-cmdline"; + "pvd" = dontDistribute super."pvd"; + "pwstore-cli" = dontDistribute super."pwstore-cli"; + "pwstore-purehaskell" = dontDistribute super."pwstore-purehaskell"; + "pxsl-tools" = dontDistribute super."pxsl-tools"; + "pyffi" = dontDistribute super."pyffi"; + "pyfi" = dontDistribute super."pyfi"; + "python-pickle" = dontDistribute super."python-pickle"; + "qc-oi-testgenerator" = dontDistribute super."qc-oi-testgenerator"; + "qd" = dontDistribute super."qd"; + "qd-vec" = dontDistribute super."qd-vec"; + "qed" = dontDistribute super."qed"; + "qhull-simple" = dontDistribute super."qhull-simple"; + "qrcode" = dontDistribute super."qrcode"; + "qt" = dontDistribute super."qt"; + "quadratic-irrational" = dontDistribute super."quadratic-irrational"; + "quantfin" = dontDistribute super."quantfin"; + "quantities" = dontDistribute super."quantities"; + "quantum-arrow" = dontDistribute super."quantum-arrow"; + "qudb" = dontDistribute super."qudb"; + "quenya-verb" = dontDistribute super."quenya-verb"; + "querystring-pickle" = dontDistribute super."querystring-pickle"; + "questioner" = dontDistribute super."questioner"; + "queue" = dontDistribute super."queue"; + "queuelike" = dontDistribute super."queuelike"; + "quick-generator" = dontDistribute super."quick-generator"; + "quick-schema" = dontDistribute super."quick-schema"; + "quickcheck-poly" = dontDistribute super."quickcheck-poly"; + "quickcheck-properties" = dontDistribute super."quickcheck-properties"; + "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb"; + "quickcheck-property-monad" = dontDistribute super."quickcheck-property-monad"; + "quickcheck-regex" = dontDistribute super."quickcheck-regex"; + "quickcheck-relaxng" = dontDistribute super."quickcheck-relaxng"; + "quickcheck-rematch" = dontDistribute super."quickcheck-rematch"; + "quickcheck-script" = dontDistribute super."quickcheck-script"; + "quickcheck-simple" = dontDistribute super."quickcheck-simple"; + "quickcheck-text" = dontDistribute super."quickcheck-text"; + "quickcheck-webdriver" = dontDistribute super."quickcheck-webdriver"; + "quicklz" = dontDistribute super."quicklz"; + "quickpull" = dontDistribute super."quickpull"; + "quickset" = dontDistribute super."quickset"; + "quickspec" = dontDistribute super."quickspec"; + "quicktest" = dontDistribute super."quicktest"; + "quickwebapp" = dontDistribute super."quickwebapp"; + "quiver" = dontDistribute super."quiver"; + "quiver-bytestring" = dontDistribute super."quiver-bytestring"; + "quiver-cell" = dontDistribute super."quiver-cell"; + "quiver-csv" = dontDistribute super."quiver-csv"; + "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-http" = dontDistribute super."quiver-http"; + "quoridor-hs" = dontDistribute super."quoridor-hs"; + "qux" = dontDistribute super."qux"; + "rabocsv2qif" = dontDistribute super."rabocsv2qif"; + "rad" = dontDistribute super."rad"; + "radian" = dontDistribute super."radian"; + "radium" = dontDistribute super."radium"; + "radium-formula-parser" = dontDistribute super."radium-formula-parser"; + "radix" = dontDistribute super."radix"; + "rados-haskell" = dontDistribute super."rados-haskell"; + "rail-compiler-editor" = dontDistribute super."rail-compiler-editor"; + "rainbow-tests" = dontDistribute super."rainbow-tests"; + "rake" = dontDistribute super."rake"; + "rakhana" = dontDistribute super."rakhana"; + "ralist" = dontDistribute super."ralist"; + "rallod" = dontDistribute super."rallod"; + "raml" = dontDistribute super."raml"; + "rand-vars" = dontDistribute super."rand-vars"; + "randfile" = dontDistribute super."randfile"; + "random-access-list" = dontDistribute super."random-access-list"; + "random-derive" = dontDistribute super."random-derive"; + "random-eff" = dontDistribute super."random-eff"; + "random-effin" = dontDistribute super."random-effin"; + "random-extras" = dontDistribute super."random-extras"; + "random-hypergeometric" = dontDistribute super."random-hypergeometric"; + "random-stream" = dontDistribute super."random-stream"; + "random-variates" = dontDistribute super."random-variates"; + "randomgen" = dontDistribute super."randomgen"; + "randproc" = dontDistribute super."randproc"; + "randsolid" = dontDistribute super."randsolid"; + "range-set-list" = dontDistribute super."range-set-list"; + "range-space" = dontDistribute super."range-space"; + "rangemin" = dontDistribute super."rangemin"; + "ranges" = dontDistribute super."ranges"; + "rank1dynamic" = dontDistribute super."rank1dynamic"; + "rascal" = dontDistribute super."rascal"; + "rate-limit" = dontDistribute super."rate-limit"; + "ratio-int" = dontDistribute super."ratio-int"; + "raven-haskell" = dontDistribute super."raven-haskell"; + "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty"; + "rawstring-qm" = dontDistribute super."rawstring-qm"; + "razom-text-util" = dontDistribute super."razom-text-util"; + "rbr" = dontDistribute super."rbr"; + "rclient" = dontDistribute super."rclient"; + "rcu" = dontDistribute super."rcu"; + "rdf4h" = dontDistribute super."rdf4h"; + "rdioh" = dontDistribute super."rdioh"; + "rdtsc" = dontDistribute super."rdtsc"; + "rdtsc-enolan" = dontDistribute super."rdtsc-enolan"; + "re2" = dontDistribute super."re2"; + "react-flux" = dontDistribute super."react-flux"; + "react-haskell" = dontDistribute super."react-haskell"; + "reaction-logic" = dontDistribute super."reaction-logic"; + "reactive" = dontDistribute super."reactive"; + "reactive-bacon" = dontDistribute super."reactive-bacon"; + "reactive-balsa" = dontDistribute super."reactive-balsa"; + "reactive-banana" = dontDistribute super."reactive-banana"; + "reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl"; + "reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny"; + "reactive-banana-wx" = dontDistribute super."reactive-banana-wx"; + "reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip"; + "reactive-glut" = dontDistribute super."reactive-glut"; + "reactive-haskell" = dontDistribute super."reactive-haskell"; + "reactive-io" = dontDistribute super."reactive-io"; + "reactive-thread" = dontDistribute super."reactive-thread"; + "reactor" = dontDistribute super."reactor"; + "read-bounded" = dontDistribute super."read-bounded"; + "read-editor" = dontDistribute super."read-editor"; + "readable" = dontDistribute super."readable"; + "readline" = dontDistribute super."readline"; + "readline-statevar" = dontDistribute super."readline-statevar"; + "readpyc" = dontDistribute super."readpyc"; + "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; + "reasonable-lens" = dontDistribute super."reasonable-lens"; + "reasonable-operational" = dontDistribute super."reasonable-operational"; + "recaptcha" = dontDistribute super."recaptcha"; + "record" = dontDistribute super."record"; + "record-aeson" = dontDistribute super."record-aeson"; + "record-gl" = dontDistribute super."record-gl"; + "record-preprocessor" = dontDistribute super."record-preprocessor"; + "record-syntax" = dontDistribute super."record-syntax"; + "records" = dontDistribute super."records"; + "records-th" = dontDistribute super."records-th"; + "recursion-schemes" = dontDistribute super."recursion-schemes"; + "recursive-line-count" = dontDistribute super."recursive-line-count"; + "redHandlers" = dontDistribute super."redHandlers"; + "reddit" = dontDistribute super."reddit"; + "redis" = dontDistribute super."redis"; + "redis-hs" = dontDistribute super."redis-hs"; + "redis-job-queue" = dontDistribute super."redis-job-queue"; + "redis-simple" = dontDistribute super."redis-simple"; + "redo" = dontDistribute super."redo"; + "reducers" = doDistribute super."reducers_3_10_3_2"; + "reenact" = dontDistribute super."reenact"; + "reexport-crypto-random" = dontDistribute super."reexport-crypto-random"; + "ref" = dontDistribute super."ref"; + "ref-mtl" = dontDistribute super."ref-mtl"; + "ref-tf" = dontDistribute super."ref-tf"; + "refcount" = dontDistribute super."refcount"; + "reference" = dontDistribute super."reference"; + "references" = dontDistribute super."references"; + "refh" = dontDistribute super."refh"; + "refined" = dontDistribute super."refined"; + "reflection-extras" = dontDistribute super."reflection-extras"; + "reflection-without-remorse" = dontDistribute super."reflection-without-remorse"; + "reflex" = dontDistribute super."reflex"; + "reflex-animation" = dontDistribute super."reflex-animation"; + "reflex-dom" = dontDistribute super."reflex-dom"; + "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; + "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; + "reform" = dontDistribute super."reform"; + "reform-blaze" = dontDistribute super."reform-blaze"; + "reform-hamlet" = dontDistribute super."reform-hamlet"; + "reform-happstack" = dontDistribute super."reform-happstack"; + "reform-hsp" = dontDistribute super."reform-hsp"; + "regex-applicative-text" = dontDistribute super."regex-applicative-text"; + "regex-compat-tdfa" = dontDistribute super."regex-compat-tdfa"; + "regex-deriv" = dontDistribute super."regex-deriv"; + "regex-dfa" = dontDistribute super."regex-dfa"; + "regex-easy" = dontDistribute super."regex-easy"; + "regex-genex" = dontDistribute super."regex-genex"; + "regex-parsec" = dontDistribute super."regex-parsec"; + "regex-pderiv" = dontDistribute super."regex-pderiv"; + "regex-posix-unittest" = dontDistribute super."regex-posix-unittest"; + "regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes"; + "regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter"; + "regex-tdfa-text" = dontDistribute super."regex-tdfa-text"; + "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; + "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; + "regex-tre" = dontDistribute super."regex-tre"; + "regex-xmlschema" = dontDistribute super."regex-xmlschema"; + "regexchar" = dontDistribute super."regexchar"; + "regexdot" = dontDistribute super."regexdot"; + "regexp-tries" = dontDistribute super."regexp-tries"; + "regexpr" = dontDistribute super."regexpr"; + "regexpr-symbolic" = dontDistribute super."regexpr-symbolic"; + "regexqq" = dontDistribute super."regexqq"; + "regional-pointers" = dontDistribute super."regional-pointers"; + "regions" = dontDistribute super."regions"; + "regions-monadsfd" = dontDistribute super."regions-monadsfd"; + "regions-monadstf" = dontDistribute super."regions-monadstf"; + "regions-mtl" = dontDistribute super."regions-mtl"; + "regress" = dontDistribute super."regress"; + "regular" = dontDistribute super."regular"; + "regular-extras" = dontDistribute super."regular-extras"; + "regular-web" = dontDistribute super."regular-web"; + "regular-xmlpickler" = dontDistribute super."regular-xmlpickler"; + "reheat" = dontDistribute super."reheat"; + "rehoo" = dontDistribute super."rehoo"; + "rei" = dontDistribute super."rei"; + "reified-records" = dontDistribute super."reified-records"; + "reify" = dontDistribute super."reify"; + "reinterpret-cast" = dontDistribute super."reinterpret-cast"; + "relacion" = dontDistribute super."relacion"; + "relation" = dontDistribute super."relation"; + "relational-postgresql8" = dontDistribute super."relational-postgresql8"; + "relational-query" = dontDistribute super."relational-query"; + "relational-query-HDBC" = dontDistribute super."relational-query-HDBC"; + "relational-record" = dontDistribute super."relational-record"; + "relational-record-examples" = dontDistribute super."relational-record-examples"; + "relational-schemas" = dontDistribute super."relational-schemas"; + "relative-date" = dontDistribute super."relative-date"; + "relit" = dontDistribute super."relit"; + "rematch" = dontDistribute super."rematch"; + "rematch-text" = dontDistribute super."rematch-text"; + "remote" = dontDistribute super."remote"; + "remote-debugger" = dontDistribute super."remote-debugger"; + "remotion" = dontDistribute super."remotion"; + "renderable" = dontDistribute super."renderable"; + "reord" = dontDistribute super."reord"; + "reorderable" = dontDistribute super."reorderable"; + "repa" = doDistribute super."repa_3_4_0_1"; + "repa-algorithms" = doDistribute super."repa-algorithms_3_4_0_1"; + "repa-array" = dontDistribute super."repa-array"; + "repa-bytestring" = dontDistribute super."repa-bytestring"; + "repa-convert" = dontDistribute super."repa-convert"; + "repa-eval" = dontDistribute super."repa-eval"; + "repa-examples" = dontDistribute super."repa-examples"; + "repa-fftw" = dontDistribute super."repa-fftw"; + "repa-flow" = dontDistribute super."repa-flow"; + "repa-io" = doDistribute super."repa-io_3_4_0_1"; + "repa-linear-algebra" = dontDistribute super."repa-linear-algebra"; + "repa-plugin" = dontDistribute super."repa-plugin"; + "repa-scalar" = dontDistribute super."repa-scalar"; + "repa-series" = dontDistribute super."repa-series"; + "repa-sndfile" = dontDistribute super."repa-sndfile"; + "repa-stream" = dontDistribute super."repa-stream"; + "repa-v4l2" = dontDistribute super."repa-v4l2"; + "repl" = dontDistribute super."repl"; + "repl-toolkit" = dontDistribute super."repl-toolkit"; + "repline" = dontDistribute super."repline"; + "repo-based-blog" = dontDistribute super."repo-based-blog"; + "repr" = dontDistribute super."repr"; + "repr-tree-syb" = dontDistribute super."repr-tree-syb"; + "representable-functors" = dontDistribute super."representable-functors"; + "representable-profunctors" = dontDistribute super."representable-profunctors"; + "representable-tries" = dontDistribute super."representable-tries"; + "request-monad" = dontDistribute super."request-monad"; + "reserve" = dontDistribute super."reserve"; + "resistor-cube" = dontDistribute super."resistor-cube"; + "resolve-trivial-conflicts" = dontDistribute super."resolve-trivial-conflicts"; + "resource-effect" = dontDistribute super."resource-effect"; + "resource-embed" = dontDistribute super."resource-embed"; + "resource-pool-catchio" = dontDistribute super."resource-pool-catchio"; + "resource-pool-monad" = dontDistribute super."resource-pool-monad"; + "resource-simple" = dontDistribute super."resource-simple"; + "respond" = dontDistribute super."respond"; + "rest-core" = doDistribute super."rest-core_0_36_0_6"; + "rest-example" = dontDistribute super."rest-example"; + "rest-gen" = doDistribute super."rest-gen_0_17_1_3"; + "rest-happstack" = doDistribute super."rest-happstack_0_2_10_8"; + "rest-snap" = doDistribute super."rest-snap_0_1_17_18"; + "rest-wai" = doDistribute super."rest-wai_0_1_0_8"; + "restful-snap" = dontDistribute super."restful-snap"; + "restricted-workers" = dontDistribute super."restricted-workers"; + "restyle" = dontDistribute super."restyle"; + "resumable-exceptions" = dontDistribute super."resumable-exceptions"; + "rethinkdb" = dontDistribute super."rethinkdb"; + "rethinkdb-model" = dontDistribute super."rethinkdb-model"; + "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; + "retryer" = dontDistribute super."retryer"; + "revdectime" = dontDistribute super."revdectime"; + "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-geocoding" = dontDistribute super."reverse-geocoding"; + "reversi" = dontDistribute super."reversi"; + "rewrite" = dontDistribute super."rewrite"; + "rewriting" = dontDistribute super."rewriting"; + "rex" = dontDistribute super."rex"; + "rezoom" = dontDistribute super."rezoom"; + "rfc3339" = dontDistribute super."rfc3339"; + "rhythm-game-tutorial" = dontDistribute super."rhythm-game-tutorial"; + "riak" = dontDistribute super."riak"; + "riak-protobuf" = dontDistribute super."riak-protobuf"; + "richreports" = dontDistribute super."richreports"; + "riemann" = dontDistribute super."riemann"; + "riff" = dontDistribute super."riff"; + "ring-buffer" = dontDistribute super."ring-buffer"; + "riot" = dontDistribute super."riot"; + "ripple" = dontDistribute super."ripple"; + "ripple-federation" = dontDistribute super."ripple-federation"; + "risc386" = dontDistribute super."risc386"; + "rivers" = dontDistribute super."rivers"; + "rivet" = dontDistribute super."rivet"; + "rivet-core" = dontDistribute super."rivet-core"; + "rivet-migration" = dontDistribute super."rivet-migration"; + "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; + "rlglue" = dontDistribute super."rlglue"; + "rmonad" = dontDistribute super."rmonad"; + "rncryptor" = dontDistribute super."rncryptor"; + "rng-utils" = dontDistribute super."rng-utils"; + "robin" = dontDistribute super."robin"; + "robot" = dontDistribute super."robot"; + "robots-txt" = dontDistribute super."robots-txt"; + "rocksdb-haskell" = dontDistribute super."rocksdb-haskell"; + "roguestar" = dontDistribute super."roguestar"; + "roguestar-engine" = dontDistribute super."roguestar-engine"; + "roguestar-gl" = dontDistribute super."roguestar-gl"; + "roguestar-glut" = dontDistribute super."roguestar-glut"; + "rollbar" = dontDistribute super."rollbar"; + "roller" = dontDistribute super."roller"; + "rolling-queue" = dontDistribute super."rolling-queue"; + "roman-numerals" = dontDistribute super."roman-numerals"; + "romkan" = dontDistribute super."romkan"; + "roots" = dontDistribute super."roots"; + "rope" = dontDistribute super."rope"; + "rosa" = dontDistribute super."rosa"; + "rose-trees" = dontDistribute super."rose-trees"; + "rosezipper" = dontDistribute super."rosezipper"; + "roshask" = dontDistribute super."roshask"; + "rosso" = dontDistribute super."rosso"; + "rot13" = dontDistribute super."rot13"; + "rotating-log" = dontDistribute super."rotating-log"; + "rounding" = dontDistribute super."rounding"; + "roundtrip" = dontDistribute super."roundtrip"; + "roundtrip-aeson" = dontDistribute super."roundtrip-aeson"; + "roundtrip-string" = dontDistribute super."roundtrip-string"; + "roundtrip-xml" = dontDistribute super."roundtrip-xml"; + "route-generator" = dontDistribute super."route-generator"; + "route-planning" = dontDistribute super."route-planning"; + "rowrecord" = dontDistribute super."rowrecord"; + "rpc" = dontDistribute super."rpc"; + "rpc-framework" = dontDistribute super."rpc-framework"; + "rpf" = dontDistribute super."rpf"; + "rpm" = dontDistribute super."rpm"; + "rsagl" = dontDistribute super."rsagl"; + "rsagl-frp" = dontDistribute super."rsagl-frp"; + "rsagl-math" = dontDistribute super."rsagl-math"; + "rspp" = dontDistribute super."rspp"; + "rss" = dontDistribute super."rss"; + "rss2irc" = dontDistribute super."rss2irc"; + "rtld" = dontDistribute super."rtld"; + "rtlsdr" = dontDistribute super."rtlsdr"; + "rtorrent-rpc" = dontDistribute super."rtorrent-rpc"; + "rtorrent-state" = dontDistribute super."rtorrent-state"; + "rubberband" = dontDistribute super."rubberband"; + "ruby-marshal" = dontDistribute super."ruby-marshal"; + "ruby-qq" = dontDistribute super."ruby-qq"; + "ruff" = dontDistribute super."ruff"; + "ruler" = dontDistribute super."ruler"; + "ruler-core" = dontDistribute super."ruler-core"; + "rungekutta" = dontDistribute super."rungekutta"; + "runghc" = dontDistribute super."runghc"; + "rwlock" = dontDistribute super."rwlock"; + "rws" = dontDistribute super."rws"; + "s-cargot" = dontDistribute super."s-cargot"; + "s3-signer" = dontDistribute super."s3-signer"; + "safe-access" = dontDistribute super."safe-access"; + "safe-failure" = dontDistribute super."safe-failure"; + "safe-failure-cme" = dontDistribute super."safe-failure-cme"; + "safe-freeze" = dontDistribute super."safe-freeze"; + "safe-globals" = dontDistribute super."safe-globals"; + "safe-lazy-io" = dontDistribute super."safe-lazy-io"; + "safe-length" = dontDistribute super."safe-length"; + "safe-plugins" = dontDistribute super."safe-plugins"; + "safe-printf" = dontDistribute super."safe-printf"; + "safeint" = dontDistribute super."safeint"; + "safer-file-handles" = dontDistribute super."safer-file-handles"; + "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring"; + "safer-file-handles-text" = dontDistribute super."safer-file-handles-text"; + "saferoute" = dontDistribute super."saferoute"; + "sai-shape-syb" = dontDistribute super."sai-shape-syb"; + "saltine" = dontDistribute super."saltine"; + "saltine-quickcheck" = dontDistribute super."saltine-quickcheck"; + "salvia" = dontDistribute super."salvia"; + "salvia-demo" = dontDistribute super."salvia-demo"; + "salvia-extras" = dontDistribute super."salvia-extras"; + "salvia-protocol" = dontDistribute super."salvia-protocol"; + "salvia-sessions" = dontDistribute super."salvia-sessions"; + "salvia-websocket" = dontDistribute super."salvia-websocket"; + "sample-frame" = dontDistribute super."sample-frame"; + "sample-frame-np" = dontDistribute super."sample-frame-np"; + "samtools" = dontDistribute super."samtools"; + "samtools-conduit" = dontDistribute super."samtools-conduit"; + "samtools-enumerator" = dontDistribute super."samtools-enumerator"; + "samtools-iteratee" = dontDistribute super."samtools-iteratee"; + "sandlib" = dontDistribute super."sandlib"; + "sandman" = dontDistribute super."sandman"; + "sarasvati" = dontDistribute super."sarasvati"; + "sasl" = dontDistribute super."sasl"; + "sat" = dontDistribute super."sat"; + "sat-micro-hs" = dontDistribute super."sat-micro-hs"; + "satchmo" = dontDistribute super."satchmo"; + "satchmo-backends" = dontDistribute super."satchmo-backends"; + "satchmo-examples" = dontDistribute super."satchmo-examples"; + "satchmo-funsat" = dontDistribute super."satchmo-funsat"; + "satchmo-minisat" = dontDistribute super."satchmo-minisat"; + "satchmo-toysat" = dontDistribute super."satchmo-toysat"; + "sbp" = dontDistribute super."sbp"; + "sc3-rdu" = dontDistribute super."sc3-rdu"; + "scalable-server" = dontDistribute super."scalable-server"; + "scaleimage" = dontDistribute super."scaleimage"; + "scalp-webhooks" = dontDistribute super."scalp-webhooks"; + "scan" = dontDistribute super."scan"; + "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scat" = dontDistribute super."scat"; + "scc" = dontDistribute super."scc"; + "scenegraph" = dontDistribute super."scenegraph"; + "scgi" = dontDistribute super."scgi"; + "schedevr" = dontDistribute super."schedevr"; + "schedule-planner" = dontDistribute super."schedule-planner"; + "schedyield" = dontDistribute super."schedyield"; + "scholdoc" = dontDistribute super."scholdoc"; + "scholdoc-citeproc" = dontDistribute super."scholdoc-citeproc"; + "scholdoc-texmath" = dontDistribute super."scholdoc-texmath"; + "scholdoc-types" = dontDistribute super."scholdoc-types"; + "schonfinkeling" = dontDistribute super."schonfinkeling"; + "sci-ratio" = dontDistribute super."sci-ratio"; + "science-constants" = dontDistribute super."science-constants"; + "science-constants-dimensional" = dontDistribute super."science-constants-dimensional"; + "scion" = dontDistribute super."scion"; + "scion-browser" = dontDistribute super."scion-browser"; + "scons2dot" = dontDistribute super."scons2dot"; + "scope" = dontDistribute super."scope"; + "scope-cairo" = dontDistribute super."scope-cairo"; + "scottish" = dontDistribute super."scottish"; + "scotty-binding-play" = dontDistribute super."scotty-binding-play"; + "scotty-blaze" = dontDistribute super."scotty-blaze"; + "scotty-cookie" = dontDistribute super."scotty-cookie"; + "scotty-fay" = dontDistribute super."scotty-fay"; + "scotty-hastache" = dontDistribute super."scotty-hastache"; + "scotty-rest" = dontDistribute super."scotty-rest"; + "scotty-session" = dontDistribute super."scotty-session"; + "scotty-tls" = dontDistribute super."scotty-tls"; + "scp-streams" = dontDistribute super."scp-streams"; + "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrobble" = dontDistribute super."scrobble"; + "scroll" = dontDistribute super."scroll"; + "scrypt" = dontDistribute super."scrypt"; + "scrz" = dontDistribute super."scrz"; + "scyther-proof" = dontDistribute super."scyther-proof"; + "sde-solver" = dontDistribute super."sde-solver"; + "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; + "sdl2" = doDistribute super."sdl2_1_3_1"; + "sdl2-cairo" = dontDistribute super."sdl2-cairo"; + "sdl2-compositor" = dontDistribute super."sdl2-compositor"; + "sdl2-image" = dontDistribute super."sdl2-image"; + "sdl2-ttf" = dontDistribute super."sdl2-ttf"; + "sdnv" = dontDistribute super."sdnv"; + "sdr" = dontDistribute super."sdr"; + "seacat" = dontDistribute super."seacat"; + "seal-module" = dontDistribute super."seal-module"; + "search" = dontDistribute super."search"; + "sec" = dontDistribute super."sec"; + "secdh" = dontDistribute super."secdh"; + "seclib" = dontDistribute super."seclib"; + "second-transfer" = doDistribute super."second-transfer_0_6_1_0"; + "secp256k1" = dontDistribute super."secp256k1"; + "secret-santa" = dontDistribute super."secret-santa"; + "secret-sharing" = dontDistribute super."secret-sharing"; + "secrm" = dontDistribute super."secrm"; + "secure-sockets" = dontDistribute super."secure-sockets"; + "sednaDBXML" = dontDistribute super."sednaDBXML"; + "select" = dontDistribute super."select"; + "selectors" = dontDistribute super."selectors"; + "selenium" = dontDistribute super."selenium"; + "selenium-server" = dontDistribute super."selenium-server"; + "selfrestart" = dontDistribute super."selfrestart"; + "selinux" = dontDistribute super."selinux"; + "semaphore-plus" = dontDistribute super."semaphore-plus"; + "semi-iso" = dontDistribute super."semi-iso"; + "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; + "semigroups-actions" = dontDistribute super."semigroups-actions"; + "semiring" = dontDistribute super."semiring"; + "semiring-simple" = dontDistribute super."semiring-simple"; + "semver-range" = dontDistribute super."semver-range"; + "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensenet" = dontDistribute super."sensenet"; + "sentry" = dontDistribute super."sentry"; + "senza" = dontDistribute super."senza"; + "separated" = dontDistribute super."separated"; + "seqaid" = dontDistribute super."seqaid"; + "seqid" = dontDistribute super."seqid"; + "seqid-streams" = dontDistribute super."seqid-streams"; + "seqloc-datafiles" = dontDistribute super."seqloc-datafiles"; + "sequence" = dontDistribute super."sequence"; + "sequent-core" = dontDistribute super."sequent-core"; + "sequential-index" = dontDistribute super."sequential-index"; + "sequor" = dontDistribute super."sequor"; + "serial" = dontDistribute super."serial"; + "serial-test-generators" = dontDistribute super."serial-test-generators"; + "serialport" = dontDistribute super."serialport"; + "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0"; + "servant-blaze" = dontDistribute super."servant-blaze"; + "servant-cassava" = dontDistribute super."servant-cassava"; + "servant-ede" = dontDistribute super."servant-ede"; + "servant-examples" = dontDistribute super."servant-examples"; + "servant-lucid" = dontDistribute super."servant-lucid"; + "servant-mock" = dontDistribute super."servant-mock"; + "servant-pool" = dontDistribute super."servant-pool"; + "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-response" = dontDistribute super."servant-response"; + "servant-scotty" = dontDistribute super."servant-scotty"; + "servant-swagger" = dontDistribute super."servant-swagger"; + "servant-yaml" = dontDistribute super."servant-yaml"; + "servius" = dontDistribute super."servius"; + "ses-html" = dontDistribute super."ses-html"; + "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; + "sessions" = dontDistribute super."sessions"; + "set-cover" = dontDistribute super."set-cover"; + "set-with" = dontDistribute super."set-with"; + "setdown" = dontDistribute super."setdown"; + "setops" = dontDistribute super."setops"; + "sets" = dontDistribute super."sets"; + "setters" = dontDistribute super."setters"; + "settings" = dontDistribute super."settings"; + "sexp" = dontDistribute super."sexp"; + "sexp-show" = dontDistribute super."sexp-show"; + "sexpr" = dontDistribute super."sexpr"; + "sext" = dontDistribute super."sext"; + "sfml-audio" = dontDistribute super."sfml-audio"; + "sfmt" = dontDistribute super."sfmt"; + "sgd" = dontDistribute super."sgd"; + "sgf" = dontDistribute super."sgf"; + "sgrep" = dontDistribute super."sgrep"; + "sha-streams" = dontDistribute super."sha-streams"; + "shadower" = dontDistribute super."shadower"; + "shadowsocks" = dontDistribute super."shadowsocks"; + "shady-gen" = dontDistribute super."shady-gen"; + "shady-graphics" = dontDistribute super."shady-graphics"; + "shake-cabal-build" = dontDistribute super."shake-cabal-build"; + "shake-extras" = dontDistribute super."shake-extras"; + "shake-minify" = dontDistribute super."shake-minify"; + "shake-pack" = dontDistribute super."shake-pack"; + "shaker" = dontDistribute super."shaker"; + "shakespeare-css" = dontDistribute super."shakespeare-css"; + "shakespeare-i18n" = dontDistribute super."shakespeare-i18n"; + "shakespeare-js" = dontDistribute super."shakespeare-js"; + "shakespeare-text" = dontDistribute super."shakespeare-text"; + "shana" = dontDistribute super."shana"; + "shapefile" = dontDistribute super."shapefile"; + "shapely-data" = dontDistribute super."shapely-data"; + "sharc-timbre" = dontDistribute super."sharc-timbre"; + "shared-buffer" = dontDistribute super."shared-buffer"; + "shared-fields" = dontDistribute super."shared-fields"; + "shared-memory" = dontDistribute super."shared-memory"; + "sharedio" = dontDistribute super."sharedio"; + "she" = dontDistribute super."she"; + "shelduck" = dontDistribute super."shelduck"; + "shell-escape" = dontDistribute super."shell-escape"; + "shell-monad" = dontDistribute super."shell-monad"; + "shell-pipe" = dontDistribute super."shell-pipe"; + "shellish" = dontDistribute super."shellish"; + "shellmate" = dontDistribute super."shellmate"; + "shelly-extra" = dontDistribute super."shelly-extra"; + "shivers-cfg" = dontDistribute super."shivers-cfg"; + "shoap" = dontDistribute super."shoap"; + "shortcircuit" = dontDistribute super."shortcircuit"; + "shorten-strings" = dontDistribute super."shorten-strings"; + "should-not-typecheck" = dontDistribute super."should-not-typecheck"; + "show-type" = dontDistribute super."show-type"; + "showdown" = dontDistribute super."showdown"; + "shpider" = dontDistribute super."shpider"; + "shplit" = dontDistribute super."shplit"; + "shqq" = dontDistribute super."shqq"; + "shuffle" = dontDistribute super."shuffle"; + "sieve" = dontDistribute super."sieve"; + "sifflet" = dontDistribute super."sifflet"; + "sifflet-lib" = dontDistribute super."sifflet-lib"; + "sign" = dontDistribute super."sign"; + "signal" = dontDistribute super."signal"; + "signals" = dontDistribute super."signals"; + "signed-multiset" = dontDistribute super."signed-multiset"; + "simd" = dontDistribute super."simd"; + "simgi" = dontDistribute super."simgi"; + "simple" = dontDistribute super."simple"; + "simple-actors" = dontDistribute super."simple-actors"; + "simple-atom" = dontDistribute super."simple-atom"; + "simple-bluetooth" = dontDistribute super."simple-bluetooth"; + "simple-c-value" = dontDistribute super."simple-c-value"; + "simple-conduit" = dontDistribute super."simple-conduit"; + "simple-config" = dontDistribute super."simple-config"; + "simple-css" = dontDistribute super."simple-css"; + "simple-eval" = dontDistribute super."simple-eval"; + "simple-firewire" = dontDistribute super."simple-firewire"; + "simple-form" = dontDistribute super."simple-form"; + "simple-genetic-algorithm" = dontDistribute super."simple-genetic-algorithm"; + "simple-genetic-algorithm-mr" = dontDistribute super."simple-genetic-algorithm-mr"; + "simple-get-opt" = dontDistribute super."simple-get-opt"; + "simple-index" = dontDistribute super."simple-index"; + "simple-log" = dontDistribute super."simple-log"; + "simple-log-syslog" = dontDistribute super."simple-log-syslog"; + "simple-neural-networks" = dontDistribute super."simple-neural-networks"; + "simple-nix" = dontDistribute super."simple-nix"; + "simple-observer" = dontDistribute super."simple-observer"; + "simple-pascal" = dontDistribute super."simple-pascal"; + "simple-pipe" = dontDistribute super."simple-pipe"; + "simple-postgresql-orm" = dontDistribute super."simple-postgresql-orm"; + "simple-rope" = dontDistribute super."simple-rope"; + "simple-server" = dontDistribute super."simple-server"; + "simple-session" = dontDistribute super."simple-session"; + "simple-sessions" = dontDistribute super."simple-sessions"; + "simple-smt" = dontDistribute super."simple-smt"; + "simple-sql-parser" = dontDistribute super."simple-sql-parser"; + "simple-stacked-vm" = dontDistribute super."simple-stacked-vm"; + "simple-tabular" = dontDistribute super."simple-tabular"; + "simple-templates" = dontDistribute super."simple-templates"; + "simple-vec3" = dontDistribute super."simple-vec3"; + "simpleargs" = dontDistribute super."simpleargs"; + "simpleirc" = dontDistribute super."simpleirc"; + "simpleirc-lens" = dontDistribute super."simpleirc-lens"; + "simplenote" = dontDistribute super."simplenote"; + "simpleprelude" = dontDistribute super."simpleprelude"; + "simplesmtpclient" = dontDistribute super."simplesmtpclient"; + "simplessh" = dontDistribute super."simplessh"; + "simplex" = dontDistribute super."simplex"; + "simplex-basic" = dontDistribute super."simplex-basic"; + "simseq" = dontDistribute super."simseq"; + "simtreelo" = dontDistribute super."simtreelo"; + "sindre" = dontDistribute super."sindre"; + "singleton-nats" = dontDistribute super."singleton-nats"; + "singletons" = doDistribute super."singletons_1_1_2_1"; + "sink" = dontDistribute super."sink"; + "sirkel" = dontDistribute super."sirkel"; + "sitemap" = dontDistribute super."sitemap"; + "sized" = dontDistribute super."sized"; + "sized-types" = dontDistribute super."sized-types"; + "sized-vector" = dontDistribute super."sized-vector"; + "sizes" = dontDistribute super."sizes"; + "sjsp" = dontDistribute super."sjsp"; + "skeleton" = dontDistribute super."skeleton"; + "skeletons" = dontDistribute super."skeletons"; + "skell" = dontDistribute super."skell"; + "skype4hs" = dontDistribute super."skype4hs"; + "skypelogexport" = dontDistribute super."skypelogexport"; + "slack" = dontDistribute super."slack"; + "slack-api" = dontDistribute super."slack-api"; + "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; + "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; + "slidemews" = dontDistribute super."slidemews"; + "sloane" = dontDistribute super."sloane"; + "slot-lambda" = dontDistribute super."slot-lambda"; + "sloth" = dontDistribute super."sloth"; + "smallarray" = dontDistribute super."smallarray"; + "smallcaps" = dontDistribute super."smallcaps"; + "smallcheck-laws" = dontDistribute super."smallcheck-laws"; + "smallcheck-lens" = dontDistribute super."smallcheck-lens"; + "smallcheck-series" = dontDistribute super."smallcheck-series"; + "smallpt-hs" = dontDistribute super."smallpt-hs"; + "smallstring" = dontDistribute super."smallstring"; + "smaoin" = dontDistribute super."smaoin"; + "smartGroup" = dontDistribute super."smartGroup"; + "smartcheck" = dontDistribute super."smartcheck"; + "smartconstructor" = dontDistribute super."smartconstructor"; + "smartword" = dontDistribute super."smartword"; + "sme" = dontDistribute super."sme"; + "smsaero" = dontDistribute super."smsaero"; + "smt-lib" = dontDistribute super."smt-lib"; + "smtlib2" = dontDistribute super."smtlib2"; + "smtp-mail-ng" = dontDistribute super."smtp-mail-ng"; + "smtp2mta" = dontDistribute super."smtp2mta"; + "smtps-gmail" = dontDistribute super."smtps-gmail"; + "snake-game" = dontDistribute super."snake-game"; + "snap-accept" = dontDistribute super."snap-accept"; + "snap-app" = dontDistribute super."snap-app"; + "snap-auth-cli" = dontDistribute super."snap-auth-cli"; + "snap-blaze" = dontDistribute super."snap-blaze"; + "snap-blaze-clay" = dontDistribute super."snap-blaze-clay"; + "snap-configuration-utilities" = dontDistribute super."snap-configuration-utilities"; + "snap-cors" = dontDistribute super."snap-cors"; + "snap-elm" = dontDistribute super."snap-elm"; + "snap-error-collector" = dontDistribute super."snap-error-collector"; + "snap-extras" = dontDistribute super."snap-extras"; + "snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic"; + "snap-loader-static" = dontDistribute super."snap-loader-static"; + "snap-predicates" = dontDistribute super."snap-predicates"; + "snap-testing" = dontDistribute super."snap-testing"; + "snap-utils" = dontDistribute super."snap-utils"; + "snap-web-routes" = dontDistribute super."snap-web-routes"; + "snaplet-acid-state" = dontDistribute super."snaplet-acid-state"; + "snaplet-actionlog" = dontDistribute super."snaplet-actionlog"; + "snaplet-amqp" = dontDistribute super."snaplet-amqp"; + "snaplet-auth-acid" = dontDistribute super."snaplet-auth-acid"; + "snaplet-coffee" = dontDistribute super."snaplet-coffee"; + "snaplet-css-min" = dontDistribute super."snaplet-css-min"; + "snaplet-environments" = dontDistribute super."snaplet-environments"; + "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; + "snaplet-hasql" = dontDistribute super."snaplet-hasql"; + "snaplet-haxl" = dontDistribute super."snaplet-haxl"; + "snaplet-hdbc" = dontDistribute super."snaplet-hdbc"; + "snaplet-hslogger" = dontDistribute super."snaplet-hslogger"; + "snaplet-i18n" = dontDistribute super."snaplet-i18n"; + "snaplet-influxdb" = dontDistribute super."snaplet-influxdb"; + "snaplet-lss" = dontDistribute super."snaplet-lss"; + "snaplet-mandrill" = dontDistribute super."snaplet-mandrill"; + "snaplet-mongoDB" = dontDistribute super."snaplet-mongoDB"; + "snaplet-mongodb-minimalistic" = dontDistribute super."snaplet-mongodb-minimalistic"; + "snaplet-mysql-simple" = dontDistribute super."snaplet-mysql-simple"; + "snaplet-oauth" = dontDistribute super."snaplet-oauth"; + "snaplet-persistent" = dontDistribute super."snaplet-persistent"; + "snaplet-postgresql-simple" = dontDistribute super."snaplet-postgresql-simple"; + "snaplet-postmark" = dontDistribute super."snaplet-postmark"; + "snaplet-purescript" = dontDistribute super."snaplet-purescript"; + "snaplet-recaptcha" = dontDistribute super."snaplet-recaptcha"; + "snaplet-redis" = dontDistribute super."snaplet-redis"; + "snaplet-redson" = dontDistribute super."snaplet-redson"; + "snaplet-rest" = dontDistribute super."snaplet-rest"; + "snaplet-riak" = dontDistribute super."snaplet-riak"; + "snaplet-sass" = dontDistribute super."snaplet-sass"; + "snaplet-sedna" = dontDistribute super."snaplet-sedna"; + "snaplet-ses-html" = dontDistribute super."snaplet-ses-html"; + "snaplet-sqlite-simple" = dontDistribute super."snaplet-sqlite-simple"; + "snaplet-stripe" = dontDistribute super."snaplet-stripe"; + "snaplet-tasks" = dontDistribute super."snaplet-tasks"; + "snaplet-typed-sessions" = dontDistribute super."snaplet-typed-sessions"; + "snaplet-wordpress" = dontDistribute super."snaplet-wordpress"; + "snappy" = dontDistribute super."snappy"; + "snappy-conduit" = dontDistribute super."snappy-conduit"; + "snappy-framing" = dontDistribute super."snappy-framing"; + "snappy-iteratee" = dontDistribute super."snappy-iteratee"; + "sndfile-enumerators" = dontDistribute super."sndfile-enumerators"; + "sneakyterm" = dontDistribute super."sneakyterm"; + "sneathlane-haste" = dontDistribute super."sneathlane-haste"; + "snippet-extractor" = dontDistribute super."snippet-extractor"; + "snm" = dontDistribute super."snm"; + "snow-white" = dontDistribute super."snow-white"; + "snowball" = dontDistribute super."snowball"; + "snowglobe" = dontDistribute super."snowglobe"; + "soap" = dontDistribute super."soap"; + "soap-openssl" = dontDistribute super."soap-openssl"; + "soap-tls" = dontDistribute super."soap-tls"; + "sock2stream" = dontDistribute super."sock2stream"; + "sockaddr" = dontDistribute super."sockaddr"; + "socket" = dontDistribute super."socket"; + "socket-activation" = dontDistribute super."socket-activation"; + "socket-sctp" = dontDistribute super."socket-sctp"; + "socketio" = dontDistribute super."socketio"; + "soegtk" = dontDistribute super."soegtk"; + "sonic-visualiser" = dontDistribute super."sonic-visualiser"; + "sophia" = dontDistribute super."sophia"; + "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; + "sorted" = dontDistribute super."sorted"; + "sorted-list" = dontDistribute super."sorted-list"; + "sorting" = dontDistribute super."sorting"; + "sorty" = dontDistribute super."sorty"; + "sound-collage" = dontDistribute super."sound-collage"; + "sounddelay" = dontDistribute super."sounddelay"; + "source-code-server" = dontDistribute super."source-code-server"; + "sousit" = dontDistribute super."sousit"; + "sox" = dontDistribute super."sox"; + "soxlib" = dontDistribute super."soxlib"; + "soyuz" = dontDistribute super."soyuz"; + "spacefill" = dontDistribute super."spacefill"; + "spacepart" = dontDistribute super."spacepart"; + "spaceprobe" = dontDistribute super."spaceprobe"; + "spanout" = dontDistribute super."spanout"; + "sparse" = dontDistribute super."sparse"; + "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; + "sparsebit" = dontDistribute super."sparsebit"; + "sparsecheck" = dontDistribute super."sparsecheck"; + "sparser" = dontDistribute super."sparser"; + "spata" = dontDistribute super."spata"; + "spatial-math" = dontDistribute super."spatial-math"; + "spawn" = dontDistribute super."spawn"; + "spe" = dontDistribute super."spe"; + "special-functors" = dontDistribute super."special-functors"; + "special-keys" = dontDistribute super."special-keys"; + "specialize-th" = dontDistribute super."specialize-th"; + "species" = dontDistribute super."species"; + "speculation-transformers" = dontDistribute super."speculation-transformers"; + "speedy-slice" = dontDistribute super."speedy-slice"; + "spelling-suggest" = dontDistribute super."spelling-suggest"; + "sphero" = dontDistribute super."sphero"; + "sphinx-cli" = dontDistribute super."sphinx-cli"; + "spice" = dontDistribute super."spice"; + "spike" = dontDistribute super."spike"; + "spine" = dontDistribute super."spine"; + "spir-v" = dontDistribute super."spir-v"; + "splay" = dontDistribute super."splay"; + "splaytree" = dontDistribute super."splaytree"; + "spline3" = dontDistribute super."spline3"; + "splines" = dontDistribute super."splines"; + "split-channel" = dontDistribute super."split-channel"; + "split-record" = dontDistribute super."split-record"; + "split-tchan" = dontDistribute super."split-tchan"; + "splitter" = dontDistribute super."splitter"; + "splot" = dontDistribute super."splot"; + "spool" = dontDistribute super."spool"; + "spoonutil" = dontDistribute super."spoonutil"; + "spoty" = dontDistribute super."spoty"; + "spreadsheet" = dontDistribute super."spreadsheet"; + "spritz" = dontDistribute super."spritz"; + "spsa" = dontDistribute super."spsa"; + "spy" = dontDistribute super."spy"; + "sql-simple" = dontDistribute super."sql-simple"; + "sql-simple-mysql" = dontDistribute super."sql-simple-mysql"; + "sql-simple-pool" = dontDistribute super."sql-simple-pool"; + "sql-simple-postgresql" = dontDistribute super."sql-simple-postgresql"; + "sql-simple-sqlite" = dontDistribute super."sql-simple-sqlite"; + "sql-words" = dontDistribute super."sql-words"; + "sqlite" = dontDistribute super."sqlite"; + "sqlite-simple-typed" = dontDistribute super."sqlite-simple-typed"; + "sqlvalue-list" = dontDistribute super."sqlvalue-list"; + "squeeze" = dontDistribute super."squeeze"; + "sr-extra" = dontDistribute super."sr-extra"; + "srcinst" = dontDistribute super."srcinst"; + "srec" = dontDistribute super."srec"; + "sscgi" = dontDistribute super."sscgi"; + "ssh" = dontDistribute super."ssh"; + "sshd-lint" = dontDistribute super."sshd-lint"; + "sshtun" = dontDistribute super."sshtun"; + "sssp" = dontDistribute super."sssp"; + "sstable" = dontDistribute super."sstable"; + "ssv" = dontDistribute super."ssv"; + "stable-heap" = dontDistribute super."stable-heap"; + "stable-maps" = dontDistribute super."stable-maps"; + "stable-memo" = dontDistribute super."stable-memo"; + "stable-tree" = dontDistribute super."stable-tree"; + "stack-prism" = dontDistribute super."stack-prism"; + "stackage-curator" = dontDistribute super."stackage-curator"; + "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; + "standalone-haddock" = dontDistribute super."standalone-haddock"; + "star-to-star" = dontDistribute super."star-to-star"; + "star-to-star-contra" = dontDistribute super."star-to-star-contra"; + "starling" = dontDistribute super."starling"; + "starrover2" = dontDistribute super."starrover2"; + "stash" = dontDistribute super."stash"; + "state" = dontDistribute super."state"; + "state-plus" = dontDistribute super."state-plus"; + "state-record" = dontDistribute super."state-record"; + "stateWriter" = dontDistribute super."stateWriter"; + "statechart" = dontDistribute super."statechart"; + "stateful-mtl" = dontDistribute super."stateful-mtl"; + "statethread" = dontDistribute super."statethread"; + "statgrab" = dontDistribute super."statgrab"; + "static-hash" = dontDistribute super."static-hash"; + "static-resources" = dontDistribute super."static-resources"; + "staticanalysis" = dontDistribute super."staticanalysis"; + "statistics-dirichlet" = dontDistribute super."statistics-dirichlet"; + "statistics-fusion" = dontDistribute super."statistics-fusion"; + "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; + "stats" = dontDistribute super."stats"; + "statsd" = dontDistribute super."statsd"; + "statsd-datadog" = dontDistribute super."statsd-datadog"; + "statvfs" = dontDistribute super."statvfs"; + "stb-image" = dontDistribute super."stb-image"; + "stb-truetype" = dontDistribute super."stb-truetype"; + "stdata" = dontDistribute super."stdata"; + "stdf" = dontDistribute super."stdf"; + "steambrowser" = dontDistribute super."steambrowser"; + "steeloverseer" = dontDistribute super."steeloverseer"; + "stemmer" = dontDistribute super."stemmer"; + "step-function" = dontDistribute super."step-function"; + "stepwise" = dontDistribute super."stepwise"; + "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; + "stitch" = dontDistribute super."stitch"; + "stm-channelize" = dontDistribute super."stm-channelize"; + "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; + "stm-firehose" = dontDistribute super."stm-firehose"; + "stm-io-hooks" = dontDistribute super."stm-io-hooks"; + "stm-lifted" = dontDistribute super."stm-lifted"; + "stm-linkedlist" = dontDistribute super."stm-linkedlist"; + "stm-orelse-io" = dontDistribute super."stm-orelse-io"; + "stm-promise" = dontDistribute super."stm-promise"; + "stm-queue-extras" = dontDistribute super."stm-queue-extras"; + "stm-sbchan" = dontDistribute super."stm-sbchan"; + "stm-split" = dontDistribute super."stm-split"; + "stm-tlist" = dontDistribute super."stm-tlist"; + "stmcontrol" = dontDistribute super."stmcontrol"; + "stomp-conduit" = dontDistribute super."stomp-conduit"; + "stomp-patterns" = dontDistribute super."stomp-patterns"; + "stomp-queue" = dontDistribute super."stomp-queue"; + "stompl" = dontDistribute super."stompl"; + "stopwatch" = dontDistribute super."stopwatch"; + "storable" = dontDistribute super."storable"; + "storable-record" = dontDistribute super."storable-record"; + "storable-static-array" = dontDistribute super."storable-static-array"; + "storable-tuple" = dontDistribute super."storable-tuple"; + "storablevector" = dontDistribute super."storablevector"; + "storablevector-carray" = dontDistribute super."storablevector-carray"; + "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; + "str" = dontDistribute super."str"; + "stratum-tool" = dontDistribute super."stratum-tool"; + "stream-fusion" = dontDistribute super."stream-fusion"; + "stream-monad" = dontDistribute super."stream-monad"; + "streamed" = dontDistribute super."streamed"; + "streaming" = dontDistribute super."streaming"; + "streaming-bytestring" = dontDistribute super."streaming-bytestring"; + "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-utils" = dontDistribute super."streaming-utils"; + "streamproc" = dontDistribute super."streamproc"; + "strict-base-types" = dontDistribute super."strict-base-types"; + "strict-concurrency" = dontDistribute super."strict-concurrency"; + "strict-ghc-plugin" = dontDistribute super."strict-ghc-plugin"; + "strict-identity" = dontDistribute super."strict-identity"; + "strict-io" = dontDistribute super."strict-io"; + "strictify" = dontDistribute super."strictify"; + "strictly" = dontDistribute super."strictly"; + "string" = dontDistribute super."string"; + "string-conv" = dontDistribute super."string-conv"; + "string-convert" = dontDistribute super."string-convert"; + "string-qq" = dontDistribute super."string-qq"; + "string-quote" = dontDistribute super."string-quote"; + "string-similarity" = dontDistribute super."string-similarity"; + "stringlike" = dontDistribute super."stringlike"; + "stringprep" = dontDistribute super."stringprep"; + "strings" = dontDistribute super."strings"; + "stringtable-atom" = dontDistribute super."stringtable-atom"; + "strio" = dontDistribute super."strio"; + "stripe" = dontDistribute super."stripe"; + "stripe-core" = dontDistribute super."stripe-core"; + "stripe-haskell" = dontDistribute super."stripe-haskell"; + "stripe-http-streams" = dontDistribute super."stripe-http-streams"; + "strive" = dontDistribute super."strive"; + "strptime" = dontDistribute super."strptime"; + "structs" = dontDistribute super."structs"; + "structural-induction" = dontDistribute super."structural-induction"; + "structured-haskell-mode" = dontDistribute super."structured-haskell-mode"; + "structured-mongoDB" = dontDistribute super."structured-mongoDB"; + "structures" = dontDistribute super."structures"; + "stunclient" = dontDistribute super."stunclient"; + "stunts" = dontDistribute super."stunts"; + "stylized" = dontDistribute super."stylized"; + "sub-state" = dontDistribute super."sub-state"; + "subhask" = dontDistribute super."subhask"; + "subleq-toolchain" = dontDistribute super."subleq-toolchain"; + "subnet" = dontDistribute super."subnet"; + "subtitleParser" = dontDistribute super."subtitleParser"; + "subtitles" = dontDistribute super."subtitles"; + "suffixarray" = dontDistribute super."suffixarray"; + "suffixtree" = dontDistribute super."suffixtree"; + "sugarhaskell" = dontDistribute super."sugarhaskell"; + "suitable" = dontDistribute super."suitable"; + "sundown" = dontDistribute super."sundown"; + "sunlight" = dontDistribute super."sunlight"; + "sunroof-compiler" = dontDistribute super."sunroof-compiler"; + "sunroof-examples" = dontDistribute super."sunroof-examples"; + "sunroof-server" = dontDistribute super."sunroof-server"; + "super-user-spark" = dontDistribute super."super-user-spark"; + "supercollider-ht" = dontDistribute super."supercollider-ht"; + "supercollider-midi" = dontDistribute super."supercollider-midi"; + "superdoc" = dontDistribute super."superdoc"; + "supero" = dontDistribute super."supero"; + "supervisor" = dontDistribute super."supervisor"; + "suspend" = dontDistribute super."suspend"; + "svg2q" = dontDistribute super."svg2q"; + "svgcairo" = dontDistribute super."svgcairo"; + "svgutils" = dontDistribute super."svgutils"; + "svm" = dontDistribute super."svm"; + "svm-light-utils" = dontDistribute super."svm-light-utils"; + "svm-simple" = dontDistribute super."svm-simple"; + "svndump" = dontDistribute super."svndump"; + "swagger2" = dontDistribute super."swagger2"; + "swapper" = dontDistribute super."swapper"; + "swearjure" = dontDistribute super."swearjure"; + "swf" = dontDistribute super."swf"; + "swift-lda" = dontDistribute super."swift-lda"; + "swish" = dontDistribute super."swish"; + "sws" = dontDistribute super."sws"; + "syb-extras" = dontDistribute super."syb-extras"; + "syb-with-class" = dontDistribute super."syb-with-class"; + "syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text"; + "sylvia" = dontDistribute super."sylvia"; + "sym" = dontDistribute super."sym"; + "sym-plot" = dontDistribute super."sym-plot"; + "sync" = dontDistribute super."sync"; + "sync-mht" = dontDistribute super."sync-mht"; + "synchronous-channels" = dontDistribute super."synchronous-channels"; + "syncthing-hs" = dontDistribute super."syncthing-hs"; + "synt" = dontDistribute super."synt"; + "syntactic" = dontDistribute super."syntactic"; + "syntactical" = dontDistribute super."syntactical"; + "syntax" = dontDistribute super."syntax"; + "syntax-attoparsec" = dontDistribute super."syntax-attoparsec"; + "syntax-example" = dontDistribute super."syntax-example"; + "syntax-example-json" = dontDistribute super."syntax-example-json"; + "syntax-pretty" = dontDistribute super."syntax-pretty"; + "syntax-printer" = dontDistribute super."syntax-printer"; + "syntax-trees" = dontDistribute super."syntax-trees"; + "syntax-trees-fork-bairyn" = dontDistribute super."syntax-trees-fork-bairyn"; + "synthesizer" = dontDistribute super."synthesizer"; + "synthesizer-alsa" = dontDistribute super."synthesizer-alsa"; + "synthesizer-core" = dontDistribute super."synthesizer-core"; + "synthesizer-dimensional" = dontDistribute super."synthesizer-dimensional"; + "synthesizer-filter" = dontDistribute super."synthesizer-filter"; + "synthesizer-inference" = dontDistribute super."synthesizer-inference"; + "synthesizer-llvm" = dontDistribute super."synthesizer-llvm"; + "synthesizer-midi" = dontDistribute super."synthesizer-midi"; + "sys-auth-smbclient" = dontDistribute super."sys-auth-smbclient"; + "sys-process" = dontDistribute super."sys-process"; + "system-canonicalpath" = dontDistribute super."system-canonicalpath"; + "system-command" = dontDistribute super."system-command"; + "system-gpio" = dontDistribute super."system-gpio"; + "system-inotify" = dontDistribute super."system-inotify"; + "system-lifted" = dontDistribute super."system-lifted"; + "system-random-effect" = dontDistribute super."system-random-effect"; + "system-time-monotonic" = dontDistribute super."system-time-monotonic"; + "system-util" = dontDistribute super."system-util"; + "system-uuid" = dontDistribute super."system-uuid"; + "systemd" = dontDistribute super."systemd"; + "syz" = dontDistribute super."syz"; + "t-regex" = dontDistribute super."t-regex"; + "ta" = dontDistribute super."ta"; + "table" = dontDistribute super."table"; + "table-tennis" = dontDistribute super."table-tennis"; + "tableaux" = dontDistribute super."tableaux"; + "tables" = dontDistribute super."tables"; + "tablestorage" = dontDistribute super."tablestorage"; + "tabloid" = dontDistribute super."tabloid"; + "taffybar" = dontDistribute super."taffybar"; + "tag-bits" = dontDistribute super."tag-bits"; + "tag-stream" = dontDistribute super."tag-stream"; + "tagchup" = dontDistribute super."tagchup"; + "tagged-exception-core" = dontDistribute super."tagged-exception-core"; + "tagged-list" = dontDistribute super."tagged-list"; + "tagged-th" = dontDistribute super."tagged-th"; + "tagged-transformer" = dontDistribute super."tagged-transformer"; + "tagging" = dontDistribute super."tagging"; + "taggy" = dontDistribute super."taggy"; + "taggy-lens" = dontDistribute super."taggy-lens"; + "taglib" = dontDistribute super."taglib"; + "taglib-api" = dontDistribute super."taglib-api"; + "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "takahashi" = dontDistribute super."takahashi"; + "takusen-oracle" = dontDistribute super."takusen-oracle"; + "tamarin-prover" = dontDistribute super."tamarin-prover"; + "tamarin-prover-term" = dontDistribute super."tamarin-prover-term"; + "tamarin-prover-theory" = dontDistribute super."tamarin-prover-theory"; + "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; + "tamper" = dontDistribute super."tamper"; + "target" = dontDistribute super."target"; + "task" = dontDistribute super."task"; + "taskpool" = dontDistribute super."taskpool"; + "tasty" = doDistribute super."tasty_0_10_1_2"; + "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; + "tasty-html" = dontDistribute super."tasty-html"; + "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; + "tasty-integrate" = dontDistribute super."tasty-integrate"; + "tasty-laws" = dontDistribute super."tasty-laws"; + "tasty-lens" = dontDistribute super."tasty-lens"; + "tasty-program" = dontDistribute super."tasty-program"; + "tasty-tap" = dontDistribute super."tasty-tap"; + "tau" = dontDistribute super."tau"; + "tbox" = dontDistribute super."tbox"; + "tcache-AWS" = dontDistribute super."tcache-AWS"; + "tccli" = dontDistribute super."tccli"; + "tce-conf" = dontDistribute super."tce-conf"; + "tconfig" = dontDistribute super."tconfig"; + "tcp" = dontDistribute super."tcp"; + "tdd-util" = dontDistribute super."tdd-util"; + "tdoc" = dontDistribute super."tdoc"; + "teams" = dontDistribute super."teams"; + "teeth" = dontDistribute super."teeth"; + "telegram" = dontDistribute super."telegram"; + "tellbot" = dontDistribute super."tellbot"; + "template-default" = dontDistribute super."template-default"; + "template-haskell-util" = dontDistribute super."template-haskell-util"; + "template-hsml" = dontDistribute super."template-hsml"; + "template-yj" = dontDistribute super."template-yj"; + "templatepg" = dontDistribute super."templatepg"; + "templater" = dontDistribute super."templater"; + "tempodb" = dontDistribute super."tempodb"; + "temporal-csound" = dontDistribute super."temporal-csound"; + "temporal-media" = dontDistribute super."temporal-media"; + "temporal-music-notation" = dontDistribute super."temporal-music-notation"; + "temporal-music-notation-demo" = dontDistribute super."temporal-music-notation-demo"; + "temporal-music-notation-western" = dontDistribute super."temporal-music-notation-western"; + "temporary-resourcet" = dontDistribute super."temporary-resourcet"; + "tempus" = dontDistribute super."tempus"; + "tempus-fugit" = dontDistribute super."tempus-fugit"; + "tensor" = dontDistribute super."tensor"; + "term-rewriting" = dontDistribute super."term-rewriting"; + "termbox-bindings" = dontDistribute super."termbox-bindings"; + "termination-combinators" = dontDistribute super."termination-combinators"; + "terminfo" = doDistribute super."terminfo_0_4_0_1"; + "terminfo-hs" = dontDistribute super."terminfo-hs"; + "terrahs" = dontDistribute super."terrahs"; + "tersmu" = dontDistribute super."tersmu"; + "test-framework-doctest" = dontDistribute super."test-framework-doctest"; + "test-framework-golden" = dontDistribute super."test-framework-golden"; + "test-framework-program" = dontDistribute super."test-framework-program"; + "test-framework-quickcheck" = dontDistribute super."test-framework-quickcheck"; + "test-framework-sandbox" = dontDistribute super."test-framework-sandbox"; + "test-framework-skip" = dontDistribute super."test-framework-skip"; + "test-framework-smallcheck" = dontDistribute super."test-framework-smallcheck"; + "test-framework-testing-feat" = dontDistribute super."test-framework-testing-feat"; + "test-framework-th-prime" = dontDistribute super."test-framework-th-prime"; + "test-invariant" = dontDistribute super."test-invariant"; + "test-pkg" = dontDistribute super."test-pkg"; + "test-sandbox" = dontDistribute super."test-sandbox"; + "test-sandbox-compose" = dontDistribute super."test-sandbox-compose"; + "test-sandbox-hunit" = dontDistribute super."test-sandbox-hunit"; + "test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck"; + "test-shouldbe" = dontDistribute super."test-shouldbe"; + "test-simple" = dontDistribute super."test-simple"; + "testPkg" = dontDistribute super."testPkg"; + "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; + "testloop" = dontDistribute super."testloop"; + "testpack" = dontDistribute super."testpack"; + "testpattern" = dontDistribute super."testpattern"; + "testrunner" = dontDistribute super."testrunner"; + "tetris" = dontDistribute super."tetris"; + "tex2txt" = dontDistribute super."tex2txt"; + "texrunner" = dontDistribute super."texrunner"; + "text-and-plots" = dontDistribute super."text-and-plots"; + "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-translit" = dontDistribute super."text-icu-translit"; + "text-json-qq" = dontDistribute super."text-json-qq"; + "text-latin1" = dontDistribute super."text-latin1"; + "text-ldap" = dontDistribute super."text-ldap"; + "text-locale-encoding" = dontDistribute super."text-locale-encoding"; + "text-normal" = dontDistribute super."text-normal"; + "text-position" = dontDistribute super."text-position"; + "text-printer" = dontDistribute super."text-printer"; + "text-regex-replace" = dontDistribute super."text-regex-replace"; + "text-register-machine" = dontDistribute super."text-register-machine"; + "text-render" = dontDistribute super."text-render"; + "text-show" = doDistribute super."text-show_2"; + "text-show-instances" = dontDistribute super."text-show-instances"; + "text-stream-decode" = dontDistribute super."text-stream-decode"; + "text-utf7" = dontDistribute super."text-utf7"; + "text-xml-generic" = dontDistribute super."text-xml-generic"; + "text-xml-qq" = dontDistribute super."text-xml-qq"; + "text-zipper" = dontDistribute super."text-zipper"; + "text1" = dontDistribute super."text1"; + "textPlot" = dontDistribute super."textPlot"; + "textmatetags" = dontDistribute super."textmatetags"; + "textocat-api" = dontDistribute super."textocat-api"; + "texts" = dontDistribute super."texts"; + "tfp" = dontDistribute super."tfp"; + "tfp-th" = dontDistribute super."tfp-th"; + "tftp" = dontDistribute super."tftp"; + "tga" = dontDistribute super."tga"; + "th-alpha" = dontDistribute super."th-alpha"; + "th-build" = dontDistribute super."th-build"; + "th-context" = dontDistribute super."th-context"; + "th-fold" = dontDistribute super."th-fold"; + "th-inline-io-action" = dontDistribute super."th-inline-io-action"; + "th-instance-reification" = dontDistribute super."th-instance-reification"; + "th-instances" = dontDistribute super."th-instances"; + "th-kinds" = dontDistribute super."th-kinds"; + "th-lift-instances" = dontDistribute super."th-lift-instances"; + "th-printf" = dontDistribute super."th-printf"; + "th-sccs" = dontDistribute super."th-sccs"; + "th-traced" = dontDistribute super."th-traced"; + "th-typegraph" = dontDistribute super."th-typegraph"; + "themoviedb" = dontDistribute super."themoviedb"; + "themplate" = dontDistribute super."themplate"; + "theoremquest" = dontDistribute super."theoremquest"; + "theoremquest-client" = dontDistribute super."theoremquest-client"; + "these" = dontDistribute super."these"; + "thespian" = dontDistribute super."thespian"; + "theta-functions" = dontDistribute super."theta-functions"; + "thih" = dontDistribute super."thih"; + "thimk" = dontDistribute super."thimk"; + "thorn" = dontDistribute super."thorn"; + "thread-local-storage" = dontDistribute super."thread-local-storage"; + "threadPool" = dontDistribute super."threadPool"; + "threadmanager" = dontDistribute super."threadmanager"; + "threads-pool" = dontDistribute super."threads-pool"; + "threads-supervisor" = dontDistribute super."threads-supervisor"; + "threadscope" = dontDistribute super."threadscope"; + "threefish" = dontDistribute super."threefish"; + "threepenny-gui" = dontDistribute super."threepenny-gui"; + "thrift" = dontDistribute super."thrift"; + "thrist" = dontDistribute super."thrist"; + "throttle" = dontDistribute super."throttle"; + "thumbnail" = dontDistribute super."thumbnail"; + "tianbar" = dontDistribute super."tianbar"; + "tic-tac-toe" = dontDistribute super."tic-tac-toe"; + "tickle" = dontDistribute super."tickle"; + "tictactoe3d" = dontDistribute super."tictactoe3d"; + "tidal" = dontDistribute super."tidal"; + "tidal-midi" = dontDistribute super."tidal-midi"; + "tidal-vis" = dontDistribute super."tidal-vis"; + "tie-knot" = dontDistribute super."tie-knot"; + "tiempo" = dontDistribute super."tiempo"; + "tiger" = dontDistribute super."tiger"; + "tight-apply" = dontDistribute super."tight-apply"; + "tightrope" = dontDistribute super."tightrope"; + "tighttp" = dontDistribute super."tighttp"; + "tilings" = dontDistribute super."tilings"; + "timberc" = dontDistribute super."timberc"; + "time-extras" = dontDistribute super."time-extras"; + "time-exts" = dontDistribute super."time-exts"; + "time-http" = dontDistribute super."time-http"; + "time-interval" = dontDistribute super."time-interval"; + "time-io-access" = dontDistribute super."time-io-access"; + "time-patterns" = dontDistribute super."time-patterns"; + "time-qq" = dontDistribute super."time-qq"; + "time-recurrence" = dontDistribute super."time-recurrence"; + "time-series" = dontDistribute super."time-series"; + "time-units" = dontDistribute super."time-units"; + "time-w3c" = dontDistribute super."time-w3c"; + "timecalc" = dontDistribute super."timecalc"; + "timeconsole" = dontDistribute super."timeconsole"; + "timeless" = dontDistribute super."timeless"; + "timeout" = dontDistribute super."timeout"; + "timeout-control" = dontDistribute super."timeout-control"; + "timeout-with-results" = dontDistribute super."timeout-with-results"; + "timeparsers" = dontDistribute super."timeparsers"; + "timeplot" = dontDistribute super."timeplot"; + "timers" = dontDistribute super."timers"; + "timers-updatable" = dontDistribute super."timers-updatable"; + "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines"; + "timestamper" = dontDistribute super."timestamper"; + "timezone-olson-th" = dontDistribute super."timezone-olson-th"; + "timing-convenience" = dontDistribute super."timing-convenience"; + "tinyMesh" = dontDistribute super."tinyMesh"; + "tinytemplate" = dontDistribute super."tinytemplate"; + "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend"; + "tip-lib" = dontDistribute super."tip-lib"; + "titlecase" = dontDistribute super."titlecase"; + "tkhs" = dontDistribute super."tkhs"; + "tkyprof" = dontDistribute super."tkyprof"; + "tld" = dontDistribute super."tld"; + "tls" = doDistribute super."tls_1_3_2"; + "tls-debug" = doDistribute super."tls-debug_0_4_0"; + "tls-extra" = dontDistribute super."tls-extra"; + "tmpl" = dontDistribute super."tmpl"; + "tn" = dontDistribute super."tn"; + "tnet" = dontDistribute super."tnet"; + "to-haskell" = dontDistribute super."to-haskell"; + "to-string-class" = dontDistribute super."to-string-class"; + "to-string-instances" = dontDistribute super."to-string-instances"; + "todos" = dontDistribute super."todos"; + "tofromxml" = dontDistribute super."tofromxml"; + "toilet" = dontDistribute super."toilet"; + "tokenify" = dontDistribute super."tokenify"; + "tokenize" = dontDistribute super."tokenize"; + "toktok" = dontDistribute super."toktok"; + "tokyocabinet-haskell" = dontDistribute super."tokyocabinet-haskell"; + "tokyotyrant-haskell" = dontDistribute super."tokyotyrant-haskell"; + "tomato-rubato-openal" = dontDistribute super."tomato-rubato-openal"; + "toml" = dontDistribute super."toml"; + "toolshed" = dontDistribute super."toolshed"; + "topkata" = dontDistribute super."topkata"; + "torch" = dontDistribute super."torch"; + "total" = dontDistribute super."total"; + "total-map" = dontDistribute super."total-map"; + "total-maps" = dontDistribute super."total-maps"; + "touched" = dontDistribute super."touched"; + "toysolver" = dontDistribute super."toysolver"; + "tpdb" = dontDistribute super."tpdb"; + "trace" = dontDistribute super."trace"; + "trace-call" = dontDistribute super."trace-call"; + "trace-function-call" = dontDistribute super."trace-function-call"; + "traced" = dontDistribute super."traced"; + "tracer" = dontDistribute super."tracer"; + "tracker" = dontDistribute super."tracker"; + "trajectory" = dontDistribute super."trajectory"; + "transactional-events" = dontDistribute super."transactional-events"; + "transf" = dontDistribute super."transf"; + "transformations" = dontDistribute super."transformations"; + "transformers-abort" = dontDistribute super."transformers-abort"; + "transformers-compose" = dontDistribute super."transformers-compose"; + "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-free" = dontDistribute super."transformers-free"; + "transformers-runnable" = dontDistribute super."transformers-runnable"; + "transformers-supply" = dontDistribute super."transformers-supply"; + "transient" = dontDistribute super."transient"; + "translatable-intset" = dontDistribute super."translatable-intset"; + "translate" = dontDistribute super."translate"; + "travis" = dontDistribute super."travis"; + "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; + "trawl" = dontDistribute super."trawl"; + "traypoweroff" = dontDistribute super."traypoweroff"; + "tree-monad" = dontDistribute super."tree-monad"; + "treemap-html" = dontDistribute super."treemap-html"; + "treemap-html-tools" = dontDistribute super."treemap-html-tools"; + "treeviz" = dontDistribute super."treeviz"; + "tremulous-query" = dontDistribute super."tremulous-query"; + "trhsx" = dontDistribute super."trhsx"; + "triangulation" = dontDistribute super."triangulation"; + "tries" = dontDistribute super."tries"; + "trimpolya" = dontDistribute super."trimpolya"; + "trivia" = dontDistribute super."trivia"; + "trivial-constraint" = dontDistribute super."trivial-constraint"; + "tropical" = dontDistribute super."tropical"; + "true-name" = dontDistribute super."true-name"; + "truelevel" = dontDistribute super."truelevel"; + "trurl" = dontDistribute super."trurl"; + "truthful" = dontDistribute super."truthful"; + "tsession" = dontDistribute super."tsession"; + "tsession-happstack" = dontDistribute super."tsession-happstack"; + "tskiplist" = dontDistribute super."tskiplist"; + "tslogger" = dontDistribute super."tslogger"; + "tsp-viz" = dontDistribute super."tsp-viz"; + "tsparse" = dontDistribute super."tsparse"; + "tst" = dontDistribute super."tst"; + "tsvsql" = dontDistribute super."tsvsql"; + "ttrie" = dontDistribute super."ttrie"; + "tttool" = doDistribute super."tttool_1_4_0_5"; + "tubes" = dontDistribute super."tubes"; + "tuntap" = dontDistribute super."tuntap"; + "tup-functor" = dontDistribute super."tup-functor"; + "tuple-gen" = dontDistribute super."tuple-gen"; + "tuple-generic" = dontDistribute super."tuple-generic"; + "tuple-hlist" = dontDistribute super."tuple-hlist"; + "tuple-lenses" = dontDistribute super."tuple-lenses"; + "tuple-morph" = dontDistribute super."tuple-morph"; + "tuple-th" = dontDistribute super."tuple-th"; + "tupleinstances" = dontDistribute super."tupleinstances"; + "turing" = dontDistribute super."turing"; + "turing-music" = dontDistribute super."turing-music"; + "turkish-deasciifier" = dontDistribute super."turkish-deasciifier"; + "turni" = dontDistribute super."turni"; + "turtle" = doDistribute super."turtle_1_2_2"; + "tweak" = dontDistribute super."tweak"; + "twentefp" = dontDistribute super."twentefp"; + "twentefp-eventloop-graphics" = dontDistribute super."twentefp-eventloop-graphics"; + "twentefp-eventloop-trees" = dontDistribute super."twentefp-eventloop-trees"; + "twentefp-graphs" = dontDistribute super."twentefp-graphs"; + "twentefp-number" = dontDistribute super."twentefp-number"; + "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; + "twentefp-trees" = dontDistribute super."twentefp-trees"; + "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "twhs" = dontDistribute super."twhs"; + "twidge" = dontDistribute super."twidge"; + "twilight-stm" = dontDistribute super."twilight-stm"; + "twilio" = dontDistribute super."twilio"; + "twill" = dontDistribute super."twill"; + "twiml" = dontDistribute super."twiml"; + "twine" = dontDistribute super."twine"; + "twisty" = dontDistribute super."twisty"; + "twitch" = dontDistribute super."twitch"; + "twitter" = dontDistribute super."twitter"; + "twitter-conduit" = dontDistribute super."twitter-conduit"; + "twitter-enumerator" = dontDistribute super."twitter-enumerator"; + "twitter-types" = dontDistribute super."twitter-types"; + "twitter-types-lens" = dontDistribute super."twitter-types-lens"; + "tx" = dontDistribute super."tx"; + "txt-sushi" = dontDistribute super."txt-sushi"; + "txt2rtf" = dontDistribute super."txt2rtf"; + "txtblk" = dontDistribute super."txtblk"; + "ty" = dontDistribute super."ty"; + "typalyze" = dontDistribute super."typalyze"; + "type-aligned" = dontDistribute super."type-aligned"; + "type-booleans" = dontDistribute super."type-booleans"; + "type-cereal" = dontDistribute super."type-cereal"; + "type-combinators" = dontDistribute super."type-combinators"; + "type-digits" = dontDistribute super."type-digits"; + "type-equality" = dontDistribute super."type-equality"; + "type-equality-check" = dontDistribute super."type-equality-check"; + "type-fun" = dontDistribute super."type-fun"; + "type-functions" = dontDistribute super."type-functions"; + "type-hint" = dontDistribute super."type-hint"; + "type-int" = dontDistribute super."type-int"; + "type-iso" = dontDistribute super."type-iso"; + "type-level" = dontDistribute super."type-level"; + "type-level-bst" = dontDistribute super."type-level-bst"; + "type-level-natural-number" = dontDistribute super."type-level-natural-number"; + "type-level-natural-number-induction" = dontDistribute super."type-level-natural-number-induction"; + "type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations"; + "type-level-sets" = dontDistribute super."type-level-sets"; + "type-level-tf" = dontDistribute super."type-level-tf"; + "type-list" = doDistribute super."type-list_0_2_0_0"; + "type-natural" = dontDistribute super."type-natural"; + "type-ord" = dontDistribute super."type-ord"; + "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; + "type-prelude" = dontDistribute super."type-prelude"; + "type-settheory" = dontDistribute super."type-settheory"; + "type-spine" = dontDistribute super."type-spine"; + "type-structure" = dontDistribute super."type-structure"; + "type-sub-th" = dontDistribute super."type-sub-th"; + "type-unary" = dontDistribute super."type-unary"; + "typeable-th" = dontDistribute super."typeable-th"; + "typed-wire" = dontDistribute super."typed-wire"; + "typedquery" = dontDistribute super."typedquery"; + "typehash" = dontDistribute super."typehash"; + "typelevel" = dontDistribute super."typelevel"; + "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typeof" = dontDistribute super."typeof"; + "typeparams" = dontDistribute super."typeparams"; + "typesafe-endian" = dontDistribute super."typesafe-endian"; + "typescript-docs" = dontDistribute super."typescript-docs"; + "typical" = dontDistribute super."typical"; + "typography-geometry" = dontDistribute super."typography-geometry"; + "tz" = dontDistribute super."tz"; + "tzdata" = dontDistribute super."tzdata"; + "uAgda" = dontDistribute super."uAgda"; + "ua-parser" = dontDistribute super."ua-parser"; + "uacpid" = dontDistribute super."uacpid"; + "uberlast" = dontDistribute super."uberlast"; + "uconv" = dontDistribute super."uconv"; + "udbus" = dontDistribute super."udbus"; + "udbus-model" = dontDistribute super."udbus-model"; + "udcode" = dontDistribute super."udcode"; + "udev" = dontDistribute super."udev"; + "uglymemo" = dontDistribute super."uglymemo"; + "uhc-light" = dontDistribute super."uhc-light"; + "uhc-util" = dontDistribute super."uhc-util"; + "uhexdump" = dontDistribute super."uhexdump"; + "uhttpc" = dontDistribute super."uhttpc"; + "ui-command" = dontDistribute super."ui-command"; + "uid" = dontDistribute super."uid"; + "una" = dontDistribute super."una"; + "unagi-chan" = dontDistribute super."unagi-chan"; + "unagi-streams" = dontDistribute super."unagi-streams"; + "unamb" = dontDistribute super."unamb"; + "unamb-custom" = dontDistribute super."unamb-custom"; + "unbound" = dontDistribute super."unbound"; + "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; + "unboxed-containers" = dontDistribute super."unboxed-containers"; + "unexceptionalio" = dontDistribute super."unexceptionalio"; + "unfoldable" = dontDistribute super."unfoldable"; + "ungadtagger" = dontDistribute super."ungadtagger"; + "uni-events" = dontDistribute super."uni-events"; + "uni-graphs" = dontDistribute super."uni-graphs"; + "uni-htk" = dontDistribute super."uni-htk"; + "uni-posixutil" = dontDistribute super."uni-posixutil"; + "uni-reactor" = dontDistribute super."uni-reactor"; + "uni-uDrawGraph" = dontDistribute super."uni-uDrawGraph"; + "uni-util" = dontDistribute super."uni-util"; + "unicode" = dontDistribute super."unicode"; + "unicode-names" = dontDistribute super."unicode-names"; + "unicode-normalization" = dontDistribute super."unicode-normalization"; + "unicode-prelude" = dontDistribute super."unicode-prelude"; + "unicode-properties" = dontDistribute super."unicode-properties"; + "unicode-symbols" = dontDistribute super."unicode-symbols"; + "unicoder" = dontDistribute super."unicoder"; + "unification-fd" = dontDistribute super."unification-fd"; + "uniform-io" = dontDistribute super."uniform-io"; + "uniform-pair" = dontDistribute super."uniform-pair"; + "union-find-array" = dontDistribute super."union-find-array"; + "union-map" = dontDistribute super."union-map"; + "unique" = dontDistribute super."unique"; + "unique-logic" = dontDistribute super."unique-logic"; + "unique-logic-tf" = dontDistribute super."unique-logic-tf"; + "uniqueid" = dontDistribute super."uniqueid"; + "unit" = dontDistribute super."unit"; + "units" = dontDistribute super."units"; + "units-attoparsec" = dontDistribute super."units-attoparsec"; + "units-defs" = dontDistribute super."units-defs"; + "units-parser" = dontDistribute super."units-parser"; + "unittyped" = dontDistribute super."unittyped"; + "universal-binary" = dontDistribute super."universal-binary"; + "universe" = dontDistribute super."universe"; + "universe-base" = dontDistribute super."universe-base"; + "universe-instances-base" = dontDistribute super."universe-instances-base"; + "universe-instances-extended" = dontDistribute super."universe-instances-extended"; + "universe-instances-trans" = dontDistribute super."universe-instances-trans"; + "universe-reverse-instances" = dontDistribute super."universe-reverse-instances"; + "universe-th" = dontDistribute super."universe-th"; + "unix-bytestring" = dontDistribute super."unix-bytestring"; + "unix-fcntl" = dontDistribute super."unix-fcntl"; + "unix-handle" = dontDistribute super."unix-handle"; + "unix-io-extra" = dontDistribute super."unix-io-extra"; + "unix-memory" = dontDistribute super."unix-memory"; + "unix-process-conduit" = dontDistribute super."unix-process-conduit"; + "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unlit" = dontDistribute super."unlit"; + "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; + "unordered-graphs" = dontDistribute super."unordered-graphs"; + "unpack-funcs" = dontDistribute super."unpack-funcs"; + "unroll-ghc-plugin" = dontDistribute super."unroll-ghc-plugin"; + "unsafe" = dontDistribute super."unsafe"; + "unsafe-promises" = dontDistribute super."unsafe-promises"; + "unsafely" = dontDistribute super."unsafely"; + "unsafeperformst" = dontDistribute super."unsafeperformst"; + "unscramble" = dontDistribute super."unscramble"; + "unusable-pkg" = dontDistribute super."unusable-pkg"; + "uom-plugin" = dontDistribute super."uom-plugin"; + "up" = dontDistribute super."up"; + "up-grade" = dontDistribute super."up-grade"; + "uploadcare" = dontDistribute super."uploadcare"; + "upskirt" = dontDistribute super."upskirt"; + "ureader" = dontDistribute super."ureader"; + "urembed" = dontDistribute super."urembed"; + "uri" = dontDistribute super."uri"; + "uri-conduit" = dontDistribute super."uri-conduit"; + "uri-enumerator" = dontDistribute super."uri-enumerator"; + "uri-enumerator-file" = dontDistribute super."uri-enumerator-file"; + "uri-template" = dontDistribute super."uri-template"; + "url-generic" = dontDistribute super."url-generic"; + "urlcheck" = dontDistribute super."urlcheck"; + "urldecode" = dontDistribute super."urldecode"; + "urldisp-happstack" = dontDistribute super."urldisp-happstack"; + "urlencoded" = dontDistribute super."urlencoded"; + "urlpath" = doDistribute super."urlpath_2_1_0"; + "urn" = dontDistribute super."urn"; + "urxml" = dontDistribute super."urxml"; + "usb" = dontDistribute super."usb"; + "usb-enumerator" = dontDistribute super."usb-enumerator"; + "usb-hid" = dontDistribute super."usb-hid"; + "usb-id-database" = dontDistribute super."usb-id-database"; + "usb-iteratee" = dontDistribute super."usb-iteratee"; + "usb-safe" = dontDistribute super."usb-safe"; + "userid" = dontDistribute super."userid"; + "utc" = dontDistribute super."utc"; + "utf8-env" = dontDistribute super."utf8-env"; + "utf8-prelude" = dontDistribute super."utf8-prelude"; + "utility-ht" = dontDistribute super."utility-ht"; + "uu-cco" = dontDistribute super."uu-cco"; + "uu-cco-examples" = dontDistribute super."uu-cco-examples"; + "uu-cco-hut-parsing" = dontDistribute super."uu-cco-hut-parsing"; + "uu-cco-uu-parsinglib" = dontDistribute super."uu-cco-uu-parsinglib"; + "uu-options" = dontDistribute super."uu-options"; + "uu-tc" = dontDistribute super."uu-tc"; + "uuagc" = dontDistribute super."uuagc"; + "uuagc-bootstrap" = dontDistribute super."uuagc-bootstrap"; + "uuagc-cabal" = dontDistribute super."uuagc-cabal"; + "uuagc-diagrams" = dontDistribute super."uuagc-diagrams"; + "uuagd" = dontDistribute super."uuagd"; + "uuid-aeson" = dontDistribute super."uuid-aeson"; + "uuid-le" = dontDistribute super."uuid-le"; + "uuid-orphans" = dontDistribute super."uuid-orphans"; + "uuid-quasi" = dontDistribute super."uuid-quasi"; + "uulib" = dontDistribute super."uulib"; + "uvector" = dontDistribute super."uvector"; + "uvector-algorithms" = dontDistribute super."uvector-algorithms"; + "uxadt" = dontDistribute super."uxadt"; + "uzbl-with-source" = dontDistribute super."uzbl-with-source"; + "v4l2" = dontDistribute super."v4l2"; + "v4l2-examples" = dontDistribute super."v4l2-examples"; + "vacuum" = dontDistribute super."vacuum"; + "vacuum-cairo" = dontDistribute super."vacuum-cairo"; + "vacuum-graphviz" = dontDistribute super."vacuum-graphviz"; + "vacuum-opengl" = dontDistribute super."vacuum-opengl"; + "vacuum-ubigraph" = dontDistribute super."vacuum-ubigraph"; + "vado" = dontDistribute super."vado"; + "valid-names" = dontDistribute super."valid-names"; + "validate" = dontDistribute super."validate"; + "validate-input" = doDistribute super."validate-input_0_2_0_0"; + "validated-literals" = dontDistribute super."validated-literals"; + "validation" = dontDistribute super."validation"; + "validations" = dontDistribute super."validations"; + "value-supply" = dontDistribute super."value-supply"; + "vampire" = dontDistribute super."vampire"; + "var" = dontDistribute super."var"; + "varan" = dontDistribute super."varan"; + "variable-precision" = dontDistribute super."variable-precision"; + "variables" = dontDistribute super."variables"; + "varying" = dontDistribute super."varying"; + "vaultaire-common" = dontDistribute super."vaultaire-common"; + "vcache" = dontDistribute super."vcache"; + "vcache-trie" = dontDistribute super."vcache-trie"; + "vcard" = dontDistribute super."vcard"; + "vcd" = dontDistribute super."vcd"; + "vcs-revision" = dontDistribute super."vcs-revision"; + "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; + "vcsgui" = dontDistribute super."vcsgui"; + "vcswrapper" = dontDistribute super."vcswrapper"; + "vect" = dontDistribute super."vect"; + "vect-floating" = dontDistribute super."vect-floating"; + "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate"; + "vect-opengl" = dontDistribute super."vect-opengl"; + "vector" = doDistribute super."vector_0_10_12_3"; + "vector-binary" = dontDistribute super."vector-binary"; + "vector-bytestring" = dontDistribute super."vector-bytestring"; + "vector-clock" = dontDistribute super."vector-clock"; + "vector-conduit" = dontDistribute super."vector-conduit"; + "vector-fftw" = dontDistribute super."vector-fftw"; + "vector-functorlazy" = dontDistribute super."vector-functorlazy"; + "vector-heterogenous" = dontDistribute super."vector-heterogenous"; + "vector-instances-collections" = dontDistribute super."vector-instances-collections"; + "vector-mmap" = dontDistribute super."vector-mmap"; + "vector-random" = dontDistribute super."vector-random"; + "vector-read-instances" = dontDistribute super."vector-read-instances"; + "vector-space-map" = dontDistribute super."vector-space-map"; + "vector-space-opengl" = dontDistribute super."vector-space-opengl"; + "vector-static" = dontDistribute super."vector-static"; + "vector-strategies" = dontDistribute super."vector-strategies"; + "verbalexpressions" = dontDistribute super."verbalexpressions"; + "verbosity" = dontDistribute super."verbosity"; + "verdict" = dontDistribute super."verdict"; + "verdict-json" = dontDistribute super."verdict-json"; + "verilog" = dontDistribute super."verilog"; + "versions" = dontDistribute super."versions"; + "vhdl" = dontDistribute super."vhdl"; + "views" = dontDistribute super."views"; + "vigilance" = dontDistribute super."vigilance"; + "vimeta" = dontDistribute super."vimeta"; + "vimus" = dontDistribute super."vimus"; + "vintage-basic" = dontDistribute super."vintage-basic"; + "vinyl" = dontDistribute super."vinyl"; + "vinyl-gl" = dontDistribute super."vinyl-gl"; + "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-utils" = dontDistribute super."vinyl-utils"; + "virthualenv" = dontDistribute super."virthualenv"; + "vision" = dontDistribute super."vision"; + "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; + "visual-prof" = dontDistribute super."visual-prof"; + "vivid" = dontDistribute super."vivid"; + "vk-aws-route53" = dontDistribute super."vk-aws-route53"; + "vk-posix-pty" = dontDistribute super."vk-posix-pty"; + "vocabulary-kadma" = dontDistribute super."vocabulary-kadma"; + "vorbiscomment" = dontDistribute super."vorbiscomment"; + "vowpal-utils" = dontDistribute super."vowpal-utils"; + "voyeur" = dontDistribute super."voyeur"; + "vte" = dontDistribute super."vte"; + "vtegtk3" = dontDistribute super."vtegtk3"; + "vty" = dontDistribute super."vty"; + "vty-examples" = dontDistribute super."vty-examples"; + "vty-menu" = dontDistribute super."vty-menu"; + "vty-ui" = dontDistribute super."vty-ui"; + "vty-ui-extras" = dontDistribute super."vty-ui-extras"; + "waddle" = dontDistribute super."waddle"; + "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; + "wai-devel" = dontDistribute super."wai-devel"; + "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; + "wai-dispatch" = dontDistribute super."wai-dispatch"; + "wai-frontend-monadcgi" = dontDistribute super."wai-frontend-monadcgi"; + "wai-graceful" = dontDistribute super."wai-graceful"; + "wai-handler-devel" = dontDistribute super."wai-handler-devel"; + "wai-handler-fastcgi" = dontDistribute super."wai-handler-fastcgi"; + "wai-handler-scgi" = dontDistribute super."wai-handler-scgi"; + "wai-handler-snap" = dontDistribute super."wai-handler-snap"; + "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; + "wai-hastache" = dontDistribute super."wai-hastache"; + "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-lens" = dontDistribute super."wai-lens"; + "wai-lite" = dontDistribute super."wai-lite"; + "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; + "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; + "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; + "wai-middleware-catch" = dontDistribute super."wai-middleware-catch"; + "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; + "wai-middleware-etag" = dontDistribute super."wai-middleware-etag"; + "wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip"; + "wai-middleware-headers" = dontDistribute super."wai-middleware-headers"; + "wai-middleware-hmac" = dontDistribute super."wai-middleware-hmac"; + "wai-middleware-hmac-client" = dontDistribute super."wai-middleware-hmac-client"; + "wai-middleware-metrics" = dontDistribute super."wai-middleware-metrics"; + "wai-middleware-preprocessor" = dontDistribute super."wai-middleware-preprocessor"; + "wai-middleware-route" = dontDistribute super."wai-middleware-route"; + "wai-middleware-static" = doDistribute super."wai-middleware-static_0_7_0_1"; + "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; + "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs"; + "wai-request-spec" = dontDistribute super."wai-request-spec"; + "wai-responsible" = dontDistribute super."wai-responsible"; + "wai-router" = dontDistribute super."wai-router"; + "wai-routes" = doDistribute super."wai-routes_0_7_3"; + "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; + "wai-static-cache" = dontDistribute super."wai-static-cache"; + "wai-static-pages" = dontDistribute super."wai-static-pages"; + "wai-test" = dontDistribute super."wai-test"; + "wai-thrift" = dontDistribute super."wai-thrift"; + "wai-throttler" = dontDistribute super."wai-throttler"; + "wai-transformers" = dontDistribute super."wai-transformers"; + "wai-util" = dontDistribute super."wai-util"; + "wait-handle" = dontDistribute super."wait-handle"; + "waitfree" = dontDistribute super."waitfree"; + "warc" = dontDistribute super."warc"; + "warp" = doDistribute super."warp_3_1_3_1"; + "warp-dynamic" = dontDistribute super."warp-dynamic"; + "warp-static" = dontDistribute super."warp-static"; + "warp-tls" = doDistribute super."warp-tls_3_1_3"; + "warp-tls-uid" = dontDistribute super."warp-tls-uid"; + "watchdog" = dontDistribute super."watchdog"; + "watcher" = dontDistribute super."watcher"; + "watchit" = dontDistribute super."watchit"; + "wavconvert" = dontDistribute super."wavconvert"; + "wavefront" = dontDistribute super."wavefront"; + "wavesurfer" = dontDistribute super."wavesurfer"; + "wavy" = dontDistribute super."wavy"; + "wcwidth" = dontDistribute super."wcwidth"; + "weather-api" = dontDistribute super."weather-api"; + "web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell"; + "web-css" = dontDistribute super."web-css"; + "web-encodings" = dontDistribute super."web-encodings"; + "web-mongrel2" = dontDistribute super."web-mongrel2"; + "web-page" = dontDistribute super."web-page"; + "web-plugins" = dontDistribute super."web-plugins"; + "web-routes" = dontDistribute super."web-routes"; + "web-routes-boomerang" = dontDistribute super."web-routes-boomerang"; + "web-routes-happstack" = dontDistribute super."web-routes-happstack"; + "web-routes-hsp" = dontDistribute super."web-routes-hsp"; + "web-routes-mtl" = dontDistribute super."web-routes-mtl"; + "web-routes-quasi" = dontDistribute super."web-routes-quasi"; + "web-routes-regular" = dontDistribute super."web-routes-regular"; + "web-routes-th" = dontDistribute super."web-routes-th"; + "web-routes-transformers" = dontDistribute super."web-routes-transformers"; + "web-routes-wai" = dontDistribute super."web-routes-wai"; + "webcrank" = dontDistribute super."webcrank"; + "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; + "webcrank-wai" = dontDistribute super."webcrank-wai"; + "webdriver" = doDistribute super."webdriver_0_6_3_1"; + "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webidl" = dontDistribute super."webidl"; + "webify" = dontDistribute super."webify"; + "webkit" = dontDistribute super."webkit"; + "webkit-javascriptcore" = dontDistribute super."webkit-javascriptcore"; + "webkitgtk3" = dontDistribute super."webkitgtk3"; + "webkitgtk3-javascriptcore" = dontDistribute super."webkitgtk3-javascriptcore"; + "webrtc-vad" = dontDistribute super."webrtc-vad"; + "webserver" = dontDistribute super."webserver"; + "websnap" = dontDistribute super."websnap"; + "websockets-snap" = dontDistribute super."websockets-snap"; + "webwire" = dontDistribute super."webwire"; + "wedding-announcement" = dontDistribute super."wedding-announcement"; + "wedged" = dontDistribute super."wedged"; + "weighted-regexp" = dontDistribute super."weighted-regexp"; + "weighted-search" = dontDistribute super."weighted-search"; + "welshy" = dontDistribute super."welshy"; + "wheb-mongo" = dontDistribute super."wheb-mongo"; + "wheb-redis" = dontDistribute super."wheb-redis"; + "wheb-strapped" = dontDistribute super."wheb-strapped"; + "while-lang-parser" = dontDistribute super."while-lang-parser"; + "whim" = dontDistribute super."whim"; + "whiskers" = dontDistribute super."whiskers"; + "whitespace" = dontDistribute super."whitespace"; + "whois" = dontDistribute super."whois"; + "why3" = dontDistribute super."why3"; + "wigner-symbols" = dontDistribute super."wigner-symbols"; + "wikipedia4epub" = dontDistribute super."wikipedia4epub"; + "win-hp-path" = dontDistribute super."win-hp-path"; + "windowslive" = dontDistribute super."windowslive"; + "winerror" = dontDistribute super."winerror"; + "winio" = dontDistribute super."winio"; + "wiring" = dontDistribute super."wiring"; + "withdependencies" = dontDistribute super."withdependencies"; + "witness" = dontDistribute super."witness"; + "witty" = dontDistribute super."witty"; + "wkt" = dontDistribute super."wkt"; + "wl-pprint-ansiterm" = dontDistribute super."wl-pprint-ansiterm"; + "wlc-hs" = dontDistribute super."wlc-hs"; + "wobsurv" = dontDistribute super."wobsurv"; + "woffex" = dontDistribute super."woffex"; + "wol" = dontDistribute super."wol"; + "wolf" = dontDistribute super."wolf"; + "woot" = dontDistribute super."woot"; + "word-trie" = dontDistribute super."word-trie"; + "word24" = dontDistribute super."word24"; + "wordcloud" = dontDistribute super."wordcloud"; + "wordexp" = dontDistribute super."wordexp"; + "words" = dontDistribute super."words"; + "wordsearch" = dontDistribute super."wordsearch"; + "wordsetdiff" = dontDistribute super."wordsetdiff"; + "workflow-osx" = dontDistribute super."workflow-osx"; + "wp-archivebot" = dontDistribute super."wp-archivebot"; + "wraparound" = dontDistribute super."wraparound"; + "wraxml" = dontDistribute super."wraxml"; + "wreq-sb" = dontDistribute super."wreq-sb"; + "wright" = dontDistribute super."wright"; + "wsedit" = dontDistribute super."wsedit"; + "wtk" = dontDistribute super."wtk"; + "wtk-gtk" = dontDistribute super."wtk-gtk"; + "wumpus-basic" = dontDistribute super."wumpus-basic"; + "wumpus-core" = dontDistribute super."wumpus-core"; + "wumpus-drawing" = dontDistribute super."wumpus-drawing"; + "wumpus-microprint" = dontDistribute super."wumpus-microprint"; + "wumpus-tree" = dontDistribute super."wumpus-tree"; + "wuss" = dontDistribute super."wuss"; + "wx" = dontDistribute super."wx"; + "wxAsteroids" = dontDistribute super."wxAsteroids"; + "wxFruit" = dontDistribute super."wxFruit"; + "wxc" = dontDistribute super."wxc"; + "wxcore" = dontDistribute super."wxcore"; + "wxdirect" = dontDistribute super."wxdirect"; + "wxhnotepad" = dontDistribute super."wxhnotepad"; + "wxturtle" = dontDistribute super."wxturtle"; + "wybor" = dontDistribute super."wybor"; + "wyvern" = dontDistribute super."wyvern"; + "x-dsp" = dontDistribute super."x-dsp"; + "x11-xim" = dontDistribute super."x11-xim"; + "x11-xinput" = dontDistribute super."x11-xinput"; + "x509-util" = dontDistribute super."x509-util"; + "xattr" = dontDistribute super."xattr"; + "xbattbar" = dontDistribute super."xbattbar"; + "xcb-types" = dontDistribute super."xcb-types"; + "xcffib" = dontDistribute super."xcffib"; + "xchat-plugin" = dontDistribute super."xchat-plugin"; + "xcp" = dontDistribute super."xcp"; + "xdg-basedir" = dontDistribute super."xdg-basedir"; + "xdg-userdirs" = dontDistribute super."xdg-userdirs"; + "xdot" = dontDistribute super."xdot"; + "xfconf" = dontDistribute super."xfconf"; + "xhaskell-library" = dontDistribute super."xhaskell-library"; + "xhb" = dontDistribute super."xhb"; + "xhb-atom-cache" = dontDistribute super."xhb-atom-cache"; + "xhb-ewmh" = dontDistribute super."xhb-ewmh"; + "xhtml" = doDistribute super."xhtml_3000_2_1"; + "xhtml-combinators" = dontDistribute super."xhtml-combinators"; + "xilinx-lava" = dontDistribute super."xilinx-lava"; + "xine" = dontDistribute super."xine"; + "xing-api" = dontDistribute super."xing-api"; + "xinput-conduit" = dontDistribute super."xinput-conduit"; + "xkbcommon" = dontDistribute super."xkbcommon"; + "xkcd" = dontDistribute super."xkcd"; + "xlsx-templater" = dontDistribute super."xlsx-templater"; + "xml-basic" = dontDistribute super."xml-basic"; + "xml-catalog" = dontDistribute super."xml-catalog"; + "xml-conduit-parse" = dontDistribute super."xml-conduit-parse"; + "xml-conduit-writer" = dontDistribute super."xml-conduit-writer"; + "xml-enumerator" = dontDistribute super."xml-enumerator"; + "xml-enumerator-combinators" = dontDistribute super."xml-enumerator-combinators"; + "xml-extractors" = dontDistribute super."xml-extractors"; + "xml-helpers" = dontDistribute super."xml-helpers"; + "xml-html-conduit-lens" = dontDistribute super."xml-html-conduit-lens"; + "xml-monad" = dontDistribute super."xml-monad"; + "xml-parsec" = dontDistribute super."xml-parsec"; + "xml-picklers" = dontDistribute super."xml-picklers"; + "xml-pipe" = dontDistribute super."xml-pipe"; + "xml-prettify" = dontDistribute super."xml-prettify"; + "xml-push" = dontDistribute super."xml-push"; + "xml2html" = dontDistribute super."xml2html"; + "xml2json" = dontDistribute super."xml2json"; + "xml2x" = dontDistribute super."xml2x"; + "xmltv" = dontDistribute super."xmltv"; + "xmms2-client" = dontDistribute super."xmms2-client"; + "xmms2-client-glib" = dontDistribute super."xmms2-client-glib"; + "xmobar" = dontDistribute super."xmobar"; + "xmonad" = dontDistribute super."xmonad"; + "xmonad-bluetilebranch" = dontDistribute super."xmonad-bluetilebranch"; + "xmonad-contrib" = dontDistribute super."xmonad-contrib"; + "xmonad-contrib-bluetilebranch" = dontDistribute super."xmonad-contrib-bluetilebranch"; + "xmonad-contrib-gpl" = dontDistribute super."xmonad-contrib-gpl"; + "xmonad-entryhelper" = dontDistribute super."xmonad-entryhelper"; + "xmonad-eval" = dontDistribute super."xmonad-eval"; + "xmonad-extras" = dontDistribute super."xmonad-extras"; + "xmonad-screenshot" = dontDistribute super."xmonad-screenshot"; + "xmonad-utils" = dontDistribute super."xmonad-utils"; + "xmonad-wallpaper" = dontDistribute super."xmonad-wallpaper"; + "xmonad-windownames" = dontDistribute super."xmonad-windownames"; + "xmpipe" = dontDistribute super."xmpipe"; + "xorshift" = dontDistribute super."xorshift"; + "xosd" = dontDistribute super."xosd"; + "xournal-builder" = dontDistribute super."xournal-builder"; + "xournal-convert" = dontDistribute super."xournal-convert"; + "xournal-parser" = dontDistribute super."xournal-parser"; + "xournal-render" = dontDistribute super."xournal-render"; + "xournal-types" = dontDistribute super."xournal-types"; + "xsact" = dontDistribute super."xsact"; + "xsd" = dontDistribute super."xsd"; + "xsha1" = dontDistribute super."xsha1"; + "xslt" = dontDistribute super."xslt"; + "xtc" = dontDistribute super."xtc"; + "xtest" = dontDistribute super."xtest"; + "xturtle" = dontDistribute super."xturtle"; + "xxhash" = dontDistribute super."xxhash"; + "y0l0bot" = dontDistribute super."y0l0bot"; + "yabi" = dontDistribute super."yabi"; + "yabi-muno" = dontDistribute super."yabi-muno"; + "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; + "yahoo-web-search" = dontDistribute super."yahoo-web-search"; + "yajl" = dontDistribute super."yajl"; + "yajl-enumerator" = dontDistribute super."yajl-enumerator"; + "yall" = dontDistribute super."yall"; + "yamemo" = dontDistribute super."yamemo"; + "yaml-config" = dontDistribute super."yaml-config"; + "yaml-light" = dontDistribute super."yaml-light"; + "yaml-light-lens" = dontDistribute super."yaml-light-lens"; + "yaml-rpc" = dontDistribute super."yaml-rpc"; + "yaml-rpc-scotty" = dontDistribute super."yaml-rpc-scotty"; + "yaml-rpc-snap" = dontDistribute super."yaml-rpc-snap"; + "yaml2owl" = dontDistribute super."yaml2owl"; + "yamlkeysdiff" = dontDistribute super."yamlkeysdiff"; + "yampa-canvas" = dontDistribute super."yampa-canvas"; + "yampa-glfw" = dontDistribute super."yampa-glfw"; + "yampa-glut" = dontDistribute super."yampa-glut"; + "yampa2048" = dontDistribute super."yampa2048"; + "yaop" = dontDistribute super."yaop"; + "yap" = dontDistribute super."yap"; + "yarr" = dontDistribute super."yarr"; + "yarr-image-io" = dontDistribute super."yarr-image-io"; + "yate" = dontDistribute super."yate"; + "yavie" = dontDistribute super."yavie"; + "ycextra" = dontDistribute super."ycextra"; + "yeganesh" = dontDistribute super."yeganesh"; + "yeller" = dontDistribute super."yeller"; + "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yesod-angular" = dontDistribute super."yesod-angular"; + "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; + "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; + "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos"; + "yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap"; + "yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre"; + "yesod-auth-ldap-native" = dontDistribute super."yesod-auth-ldap-native"; + "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; + "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; + "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; + "yesod-bootstrap" = dontDistribute super."yesod-bootstrap"; + "yesod-comments" = dontDistribute super."yesod-comments"; + "yesod-content-pdf" = dontDistribute super."yesod-content-pdf"; + "yesod-continuations" = dontDistribute super."yesod-continuations"; + "yesod-crud" = dontDistribute super."yesod-crud"; + "yesod-crud-persist" = dontDistribute super."yesod-crud-persist"; + "yesod-datatables" = dontDistribute super."yesod-datatables"; + "yesod-dsl" = dontDistribute super."yesod-dsl"; + "yesod-examples" = dontDistribute super."yesod-examples"; + "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-json" = dontDistribute super."yesod-json"; + "yesod-links" = dontDistribute super."yesod-links"; + "yesod-lucid" = dontDistribute super."yesod-lucid"; + "yesod-markdown" = dontDistribute super."yesod-markdown"; + "yesod-media-simple" = dontDistribute super."yesod-media-simple"; + "yesod-newsfeed" = doDistribute super."yesod-newsfeed_1_4_0_1"; + "yesod-paginate" = dontDistribute super."yesod-paginate"; + "yesod-pagination" = dontDistribute super."yesod-pagination"; + "yesod-paginator" = dontDistribute super."yesod-paginator"; + "yesod-platform" = dontDistribute super."yesod-platform"; + "yesod-pnotify" = dontDistribute super."yesod-pnotify"; + "yesod-pure" = dontDistribute super."yesod-pure"; + "yesod-purescript" = dontDistribute super."yesod-purescript"; + "yesod-raml" = dontDistribute super."yesod-raml"; + "yesod-raml-bin" = dontDistribute super."yesod-raml-bin"; + "yesod-raml-docs" = dontDistribute super."yesod-raml-docs"; + "yesod-raml-mock" = dontDistribute super."yesod-raml-mock"; + "yesod-recaptcha" = dontDistribute super."yesod-recaptcha"; + "yesod-routes" = dontDistribute super."yesod-routes"; + "yesod-routes-flow" = dontDistribute super."yesod-routes-flow"; + "yesod-routes-typescript" = dontDistribute super."yesod-routes-typescript"; + "yesod-rst" = dontDistribute super."yesod-rst"; + "yesod-s3" = dontDistribute super."yesod-s3"; + "yesod-sass" = dontDistribute super."yesod-sass"; + "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-table" = doDistribute super."yesod-table_1_0_6"; + "yesod-tableview" = dontDistribute super."yesod-tableview"; + "yesod-test" = doDistribute super."yesod-test_1_4_4"; + "yesod-test-json" = dontDistribute super."yesod-test-json"; + "yesod-tls" = dontDistribute super."yesod-tls"; + "yesod-transloadit" = dontDistribute super."yesod-transloadit"; + "yesod-vend" = dontDistribute super."yesod-vend"; + "yesod-websockets-extra" = dontDistribute super."yesod-websockets-extra"; + "yesod-worker" = dontDistribute super."yesod-worker"; + "yet-another-logger" = dontDistribute super."yet-another-logger"; + "yhccore" = dontDistribute super."yhccore"; + "yi" = dontDistribute super."yi"; + "yi-contrib" = dontDistribute super."yi-contrib"; + "yi-emacs-colours" = dontDistribute super."yi-emacs-colours"; + "yi-fuzzy-open" = dontDistribute super."yi-fuzzy-open"; + "yi-gtk" = dontDistribute super."yi-gtk"; + "yi-language" = dontDistribute super."yi-language"; + "yi-monokai" = dontDistribute super."yi-monokai"; + "yi-rope" = dontDistribute super."yi-rope"; + "yi-snippet" = dontDistribute super."yi-snippet"; + "yi-solarized" = dontDistribute super."yi-solarized"; + "yi-spolsky" = dontDistribute super."yi-spolsky"; + "yi-vty" = dontDistribute super."yi-vty"; + "yices" = dontDistribute super."yices"; + "yices-easy" = dontDistribute super."yices-easy"; + "yices-painless" = dontDistribute super."yices-painless"; + "yjftp" = dontDistribute super."yjftp"; + "yjftp-libs" = dontDistribute super."yjftp-libs"; + "yjsvg" = dontDistribute super."yjsvg"; + "yjtools" = dontDistribute super."yjtools"; + "yocto" = dontDistribute super."yocto"; + "yoko" = dontDistribute super."yoko"; + "york-lava" = dontDistribute super."york-lava"; + "youtube" = dontDistribute super."youtube"; + "yql" = dontDistribute super."yql"; + "yst" = dontDistribute super."yst"; + "yuiGrid" = dontDistribute super."yuiGrid"; + "yuuko" = dontDistribute super."yuuko"; + "yxdb-utils" = dontDistribute super."yxdb-utils"; + "z3" = dontDistribute super."z3"; + "zalgo" = dontDistribute super."zalgo"; + "zampolit" = dontDistribute super."zampolit"; + "zasni-gerna" = dontDistribute super."zasni-gerna"; + "zcache" = dontDistribute super."zcache"; + "zenc" = dontDistribute super."zenc"; + "zendesk-api" = dontDistribute super."zendesk-api"; + "zeno" = dontDistribute super."zeno"; + "zerobin" = dontDistribute super."zerobin"; + "zeromq-haskell" = dontDistribute super."zeromq-haskell"; + "zeromq3-conduit" = dontDistribute super."zeromq3-conduit"; + "zeromq3-haskell" = dontDistribute super."zeromq3-haskell"; + "zeroth" = dontDistribute super."zeroth"; + "zigbee-znet25" = dontDistribute super."zigbee-znet25"; + "zim-parser" = dontDistribute super."zim-parser"; + "zip-conduit" = dontDistribute super."zip-conduit"; + "zipedit" = dontDistribute super."zipedit"; + "zipper" = dontDistribute super."zipper"; + "zippers" = dontDistribute super."zippers"; + "zippo" = dontDistribute super."zippo"; + "zlib-conduit" = dontDistribute super."zlib-conduit"; + "zmcat" = dontDistribute super."zmcat"; + "zmidi-core" = dontDistribute super."zmidi-core"; + "zmidi-score" = dontDistribute super."zmidi-score"; + "zmqat" = dontDistribute super."zmqat"; + "zoneinfo" = dontDistribute super."zoneinfo"; + "zoom" = dontDistribute super."zoom"; + "zoom-cache" = dontDistribute super."zoom-cache"; + "zoom-cache-pcm" = dontDistribute super."zoom-cache-pcm"; + "zoom-cache-sndfile" = dontDistribute super."zoom-cache-sndfile"; + "zoom-refs" = dontDistribute super."zoom-refs"; + "zot" = dontDistribute super."zot"; + "zsh-battery" = dontDistribute super."zsh-battery"; + "ztail" = dontDistribute super."ztail"; + +} diff --git a/pkgs/development/haskell-modules/configuration-lts-3.2.nix b/pkgs/development/haskell-modules/configuration-lts-3.2.nix index 7d5ff5d2dac..c7b3498c2d8 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.2.nix @@ -566,6 +566,7 @@ self: super: { "JuicyPixels" = doDistribute super."JuicyPixels_3_2_6"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; "JuicyPixels-repa" = dontDistribute super."JuicyPixels-repa"; + "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; "JunkDB" = dontDistribute super."JunkDB"; "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; @@ -1114,6 +1115,7 @@ self: super: { "afv" = dontDistribute super."afv"; "agda-server" = dontDistribute super."agda-server"; "agda-snippets" = dontDistribute super."agda-snippets"; + "agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll"; "agum" = dontDistribute super."agum"; "aig" = dontDistribute super."aig"; "air" = dontDistribute super."air"; @@ -1650,6 +1652,7 @@ self: super: { "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; + "bson" = doDistribute super."bson_0_3_1"; "bson-generic" = dontDistribute super."bson-generic"; "bson-generics" = dontDistribute super."bson-generics"; "bson-lens" = dontDistribute super."bson-lens"; @@ -1880,6 +1883,7 @@ self: super: { "clafer" = dontDistribute super."clafer"; "claferIG" = dontDistribute super."claferIG"; "claferwiki" = dontDistribute super."claferwiki"; + "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; "clash" = dontDistribute super."clash"; "clash-ghc" = doDistribute super."clash-ghc_0_5_11"; @@ -2423,6 +2427,7 @@ self: super: { "dicom" = dontDistribute super."dicom"; "dictparser" = dontDistribute super."dictparser"; "diet" = dontDistribute super."diet"; + "diff-gestalt" = dontDistribute super."diff-gestalt"; "diff-parse" = dontDistribute super."diff-parse"; "diffarray" = dontDistribute super."diffarray"; "diffcabal" = dontDistribute super."diffcabal"; @@ -2512,6 +2517,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; "download" = dontDistribute super."download"; @@ -3102,6 +3108,7 @@ self: super: { "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph"; "ghc-server" = dontDistribute super."ghc-server"; + "ghc-session" = dontDistribute super."ghc-session"; "ghc-simple" = dontDistribute super."ghc-simple"; "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; @@ -3423,6 +3430,7 @@ self: super: { "hR" = dontDistribute super."hR"; "hRESP" = dontDistribute super."hRESP"; "hS3" = dontDistribute super."hS3"; + "hScraper" = dontDistribute super."hScraper"; "hSimpleDB" = dontDistribute super."hSimpleDB"; "hTalos" = dontDistribute super."hTalos"; "hTensor" = dontDistribute super."hTensor"; @@ -4258,6 +4266,7 @@ self: super: { "hub" = dontDistribute super."hub"; "hubigraph" = dontDistribute super."hubigraph"; "hubris" = dontDistribute super."hubris"; + "huckleberry" = dontDistribute super."huckleberry"; "huffman" = dontDistribute super."huffman"; "hugs2yc" = dontDistribute super."hugs2yc"; "hulk" = dontDistribute super."hulk"; @@ -4710,6 +4719,7 @@ self: super: { "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; + "latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll"; "latex-formulae-image" = dontDistribute super."latex-formulae-image"; "latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc"; "lattices" = doDistribute super."lattices_1_3"; @@ -4932,6 +4942,7 @@ self: super: { "luachunk" = dontDistribute super."luachunk"; "luautils" = dontDistribute super."luautils"; "lub" = dontDistribute super."lub"; + "lucid" = doDistribute super."lucid_2_9_2"; "lucid-foundation" = dontDistribute super."lucid-foundation"; "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; @@ -5006,6 +5017,7 @@ self: super: { "markov" = dontDistribute super."markov"; "markov-chain" = dontDistribute super."markov-chain"; "markov-processes" = dontDistribute super."markov-processes"; + "markup" = doDistribute super."markup_1_1_0"; "markup-preview" = dontDistribute super."markup-preview"; "marmalade-upload" = dontDistribute super."marmalade-upload"; "marquise" = dontDistribute super."marquise"; @@ -5313,6 +5325,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = doDistribute super."nationstates_0_2_0_0"; + "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; "natural-numbers" = dontDistribute super."natural-numbers"; @@ -5644,6 +5657,7 @@ self: super: { "patch-combinators" = dontDistribute super."patch-combinators"; "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; + "path-extra" = dontDistribute super."path-extra"; "path-pieces" = doDistribute super."path-pieces_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; @@ -5745,9 +5759,11 @@ self: super: { "pinboard" = dontDistribute super."pinboard"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; + "pipes" = doDistribute super."pipes_4_1_6"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-binary" = doDistribute super."pipes-binary_0_4_0_4"; + "pipes-cacophony" = dontDistribute super."pipes-cacophony"; "pipes-cellular" = dontDistribute super."pipes-cellular"; "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; @@ -6980,6 +6996,7 @@ self: super: { "svm-light-utils" = dontDistribute super."svm-light-utils"; "svm-simple" = dontDistribute super."svm-simple"; "svndump" = dontDistribute super."svndump"; + "swagger2" = dontDistribute super."swagger2"; "swapper" = dontDistribute super."swapper"; "swearjure" = dontDistribute super."swearjure"; "swf" = dontDistribute super."swf"; @@ -7525,6 +7542,7 @@ self: super: { "urldecode" = dontDistribute super."urldecode"; "urldisp-happstack" = dontDistribute super."urldisp-happstack"; "urlencoded" = dontDistribute super."urlencoded"; + "urlpath" = doDistribute super."urlpath_2_1_0"; "urn" = dontDistribute super."urn"; "urxml" = dontDistribute super."urxml"; "usb" = dontDistribute super."usb"; @@ -7648,6 +7666,7 @@ self: super: { "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_3_0"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; + "wai-cors" = doDistribute super."wai-cors_0_2_3"; "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; @@ -7968,6 +7987,9 @@ self: super: { "yesod-pure" = dontDistribute super."yesod-pure"; "yesod-purescript" = dontDistribute super."yesod-purescript"; "yesod-raml" = dontDistribute super."yesod-raml"; + "yesod-raml-bin" = dontDistribute super."yesod-raml-bin"; + "yesod-raml-docs" = dontDistribute super."yesod-raml-docs"; + "yesod-raml-mock" = dontDistribute super."yesod-raml-mock"; "yesod-recaptcha" = dontDistribute super."yesod-recaptcha"; "yesod-routes" = dontDistribute super."yesod-routes"; "yesod-routes-flow" = dontDistribute super."yesod-routes-flow"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.3.nix b/pkgs/development/haskell-modules/configuration-lts-3.3.nix index 71b02033829..e6d2a4c4689 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.3.nix @@ -566,6 +566,7 @@ self: super: { "JuicyPixels" = doDistribute super."JuicyPixels_3_2_6_1"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; "JuicyPixels-repa" = dontDistribute super."JuicyPixels-repa"; + "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; "JunkDB" = dontDistribute super."JunkDB"; "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; @@ -1114,6 +1115,7 @@ self: super: { "afv" = dontDistribute super."afv"; "agda-server" = dontDistribute super."agda-server"; "agda-snippets" = dontDistribute super."agda-snippets"; + "agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll"; "agum" = dontDistribute super."agum"; "aig" = dontDistribute super."aig"; "air" = dontDistribute super."air"; @@ -1649,6 +1651,7 @@ self: super: { "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; + "bson" = doDistribute super."bson_0_3_1"; "bson-generic" = dontDistribute super."bson-generic"; "bson-generics" = dontDistribute super."bson-generics"; "bson-lens" = dontDistribute super."bson-lens"; @@ -1879,6 +1882,7 @@ self: super: { "clafer" = dontDistribute super."clafer"; "claferIG" = dontDistribute super."claferIG"; "claferwiki" = dontDistribute super."claferwiki"; + "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; "clash" = dontDistribute super."clash"; "clash-ghc" = doDistribute super."clash-ghc_0_5_11"; @@ -2419,6 +2423,7 @@ self: super: { "dicom" = dontDistribute super."dicom"; "dictparser" = dontDistribute super."dictparser"; "diet" = dontDistribute super."diet"; + "diff-gestalt" = dontDistribute super."diff-gestalt"; "diff-parse" = dontDistribute super."diff-parse"; "diffarray" = dontDistribute super."diffarray"; "diffcabal" = dontDistribute super."diffcabal"; @@ -2508,6 +2513,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; "download" = dontDistribute super."download"; @@ -3097,6 +3103,7 @@ self: super: { "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph"; "ghc-server" = dontDistribute super."ghc-server"; + "ghc-session" = dontDistribute super."ghc-session"; "ghc-simple" = dontDistribute super."ghc-simple"; "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; @@ -3418,6 +3425,7 @@ self: super: { "hR" = dontDistribute super."hR"; "hRESP" = dontDistribute super."hRESP"; "hS3" = dontDistribute super."hS3"; + "hScraper" = dontDistribute super."hScraper"; "hSimpleDB" = dontDistribute super."hSimpleDB"; "hTalos" = dontDistribute super."hTalos"; "hTensor" = dontDistribute super."hTensor"; @@ -4251,6 +4259,7 @@ self: super: { "hub" = dontDistribute super."hub"; "hubigraph" = dontDistribute super."hubigraph"; "hubris" = dontDistribute super."hubris"; + "huckleberry" = dontDistribute super."huckleberry"; "huffman" = dontDistribute super."huffman"; "hugs2yc" = dontDistribute super."hugs2yc"; "hulk" = dontDistribute super."hulk"; @@ -4703,6 +4712,7 @@ self: super: { "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; + "latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll"; "latex-formulae-image" = dontDistribute super."latex-formulae-image"; "latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc"; "lattices" = doDistribute super."lattices_1_3"; @@ -4925,6 +4935,7 @@ self: super: { "luachunk" = dontDistribute super."luachunk"; "luautils" = dontDistribute super."luautils"; "lub" = dontDistribute super."lub"; + "lucid" = doDistribute super."lucid_2_9_2"; "lucid-foundation" = dontDistribute super."lucid-foundation"; "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; @@ -4999,6 +5010,7 @@ self: super: { "markov" = dontDistribute super."markov"; "markov-chain" = dontDistribute super."markov-chain"; "markov-processes" = dontDistribute super."markov-processes"; + "markup" = doDistribute super."markup_1_1_0"; "markup-preview" = dontDistribute super."markup-preview"; "marmalade-upload" = dontDistribute super."marmalade-upload"; "marquise" = dontDistribute super."marquise"; @@ -5306,6 +5318,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = doDistribute super."nationstates_0_2_0_1"; + "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; "natural-numbers" = dontDistribute super."natural-numbers"; @@ -5636,6 +5649,7 @@ self: super: { "patch-combinators" = dontDistribute super."patch-combinators"; "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; + "path-extra" = dontDistribute super."path-extra"; "path-pieces" = doDistribute super."path-pieces_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; @@ -5737,9 +5751,11 @@ self: super: { "pinboard" = dontDistribute super."pinboard"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; + "pipes" = doDistribute super."pipes_4_1_6"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-binary" = doDistribute super."pipes-binary_0_4_0_4"; + "pipes-cacophony" = dontDistribute super."pipes-cacophony"; "pipes-cellular" = dontDistribute super."pipes-cellular"; "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; @@ -6970,6 +6986,7 @@ self: super: { "svm-light-utils" = dontDistribute super."svm-light-utils"; "svm-simple" = dontDistribute super."svm-simple"; "svndump" = dontDistribute super."svndump"; + "swagger2" = dontDistribute super."swagger2"; "swapper" = dontDistribute super."swapper"; "swearjure" = dontDistribute super."swearjure"; "swf" = dontDistribute super."swf"; @@ -7514,6 +7531,7 @@ self: super: { "urldecode" = dontDistribute super."urldecode"; "urldisp-happstack" = dontDistribute super."urldisp-happstack"; "urlencoded" = dontDistribute super."urlencoded"; + "urlpath" = doDistribute super."urlpath_2_1_0"; "urn" = dontDistribute super."urn"; "urxml" = dontDistribute super."urxml"; "usb" = dontDistribute super."usb"; @@ -7636,6 +7654,7 @@ self: super: { "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_3_0"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; + "wai-cors" = doDistribute super."wai-cors_0_2_3"; "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; @@ -7955,6 +7974,9 @@ self: super: { "yesod-pure" = dontDistribute super."yesod-pure"; "yesod-purescript" = dontDistribute super."yesod-purescript"; "yesod-raml" = dontDistribute super."yesod-raml"; + "yesod-raml-bin" = dontDistribute super."yesod-raml-bin"; + "yesod-raml-docs" = dontDistribute super."yesod-raml-docs"; + "yesod-raml-mock" = dontDistribute super."yesod-raml-mock"; "yesod-recaptcha" = dontDistribute super."yesod-recaptcha"; "yesod-routes" = dontDistribute super."yesod-routes"; "yesod-routes-flow" = dontDistribute super."yesod-routes-flow"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.4.nix b/pkgs/development/haskell-modules/configuration-lts-3.4.nix index 7a687555bcb..27f2a0c4f7f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.4.nix @@ -566,6 +566,7 @@ self: super: { "JuicyPixels" = doDistribute super."JuicyPixels_3_2_6_1"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; "JuicyPixels-repa" = dontDistribute super."JuicyPixels-repa"; + "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; "JunkDB" = dontDistribute super."JunkDB"; "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; @@ -1114,6 +1115,7 @@ self: super: { "afv" = dontDistribute super."afv"; "agda-server" = dontDistribute super."agda-server"; "agda-snippets" = dontDistribute super."agda-snippets"; + "agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll"; "agum" = dontDistribute super."agum"; "aig" = dontDistribute super."aig"; "air" = dontDistribute super."air"; @@ -1649,6 +1651,7 @@ self: super: { "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; + "bson" = doDistribute super."bson_0_3_1"; "bson-generic" = dontDistribute super."bson-generic"; "bson-generics" = dontDistribute super."bson-generics"; "bson-lens" = dontDistribute super."bson-lens"; @@ -1878,6 +1881,7 @@ self: super: { "clafer" = dontDistribute super."clafer"; "claferIG" = dontDistribute super."claferIG"; "claferwiki" = dontDistribute super."claferwiki"; + "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; "clash" = dontDistribute super."clash"; "clash-ghc" = doDistribute super."clash-ghc_0_5_11"; @@ -2418,6 +2422,7 @@ self: super: { "dicom" = dontDistribute super."dicom"; "dictparser" = dontDistribute super."dictparser"; "diet" = dontDistribute super."diet"; + "diff-gestalt" = dontDistribute super."diff-gestalt"; "diff-parse" = dontDistribute super."diff-parse"; "diffarray" = dontDistribute super."diffarray"; "diffcabal" = dontDistribute super."diffcabal"; @@ -2507,6 +2512,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; "download" = dontDistribute super."download"; @@ -3096,6 +3102,7 @@ self: super: { "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph"; "ghc-server" = dontDistribute super."ghc-server"; + "ghc-session" = dontDistribute super."ghc-session"; "ghc-simple" = dontDistribute super."ghc-simple"; "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; @@ -3417,6 +3424,7 @@ self: super: { "hR" = dontDistribute super."hR"; "hRESP" = dontDistribute super."hRESP"; "hS3" = dontDistribute super."hS3"; + "hScraper" = dontDistribute super."hScraper"; "hSimpleDB" = dontDistribute super."hSimpleDB"; "hTalos" = dontDistribute super."hTalos"; "hTensor" = dontDistribute super."hTensor"; @@ -4250,6 +4258,7 @@ self: super: { "hub" = dontDistribute super."hub"; "hubigraph" = dontDistribute super."hubigraph"; "hubris" = dontDistribute super."hubris"; + "huckleberry" = dontDistribute super."huckleberry"; "huffman" = dontDistribute super."huffman"; "hugs2yc" = dontDistribute super."hugs2yc"; "hulk" = dontDistribute super."hulk"; @@ -4702,6 +4711,7 @@ self: super: { "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; + "latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll"; "latex-formulae-image" = dontDistribute super."latex-formulae-image"; "latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc"; "lattices" = doDistribute super."lattices_1_3"; @@ -4924,6 +4934,7 @@ self: super: { "luachunk" = dontDistribute super."luachunk"; "luautils" = dontDistribute super."luautils"; "lub" = dontDistribute super."lub"; + "lucid" = doDistribute super."lucid_2_9_2"; "lucid-foundation" = dontDistribute super."lucid-foundation"; "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; @@ -4998,6 +5009,7 @@ self: super: { "markov" = dontDistribute super."markov"; "markov-chain" = dontDistribute super."markov-chain"; "markov-processes" = dontDistribute super."markov-processes"; + "markup" = doDistribute super."markup_1_1_0"; "markup-preview" = dontDistribute super."markup-preview"; "marmalade-upload" = dontDistribute super."marmalade-upload"; "marquise" = dontDistribute super."marquise"; @@ -5305,6 +5317,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = doDistribute super."nationstates_0_2_0_2"; + "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; "natural-numbers" = dontDistribute super."natural-numbers"; @@ -5635,6 +5648,7 @@ self: super: { "patch-combinators" = dontDistribute super."patch-combinators"; "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; + "path-extra" = dontDistribute super."path-extra"; "path-pieces" = doDistribute super."path-pieces_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; @@ -5736,9 +5750,11 @@ self: super: { "pinboard" = dontDistribute super."pinboard"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; + "pipes" = doDistribute super."pipes_4_1_6"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-binary" = doDistribute super."pipes-binary_0_4_0_4"; + "pipes-cacophony" = dontDistribute super."pipes-cacophony"; "pipes-cellular" = dontDistribute super."pipes-cellular"; "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; @@ -6967,6 +6983,7 @@ self: super: { "svm-light-utils" = dontDistribute super."svm-light-utils"; "svm-simple" = dontDistribute super."svm-simple"; "svndump" = dontDistribute super."svndump"; + "swagger2" = dontDistribute super."swagger2"; "swapper" = dontDistribute super."swapper"; "swearjure" = dontDistribute super."swearjure"; "swf" = dontDistribute super."swf"; @@ -7511,6 +7528,7 @@ self: super: { "urldecode" = dontDistribute super."urldecode"; "urldisp-happstack" = dontDistribute super."urldisp-happstack"; "urlencoded" = dontDistribute super."urlencoded"; + "urlpath" = doDistribute super."urlpath_2_1_0"; "urn" = dontDistribute super."urn"; "urxml" = dontDistribute super."urxml"; "usb" = dontDistribute super."usb"; @@ -7633,6 +7651,7 @@ self: super: { "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_3_0"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; + "wai-cors" = doDistribute super."wai-cors_0_2_3"; "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; @@ -7951,6 +7970,9 @@ self: super: { "yesod-pure" = dontDistribute super."yesod-pure"; "yesod-purescript" = dontDistribute super."yesod-purescript"; "yesod-raml" = dontDistribute super."yesod-raml"; + "yesod-raml-bin" = dontDistribute super."yesod-raml-bin"; + "yesod-raml-docs" = dontDistribute super."yesod-raml-docs"; + "yesod-raml-mock" = dontDistribute super."yesod-raml-mock"; "yesod-recaptcha" = dontDistribute super."yesod-recaptcha"; "yesod-routes" = dontDistribute super."yesod-routes"; "yesod-routes-flow" = dontDistribute super."yesod-routes-flow"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.5.nix b/pkgs/development/haskell-modules/configuration-lts-3.5.nix index 71d9ef9038d..acb5bb915a4 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.5.nix @@ -566,6 +566,7 @@ self: super: { "JuicyPixels" = doDistribute super."JuicyPixels_3_2_6_1"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; "JuicyPixels-repa" = dontDistribute super."JuicyPixels-repa"; + "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; "JunkDB" = dontDistribute super."JunkDB"; "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; @@ -1114,6 +1115,7 @@ self: super: { "afv" = dontDistribute super."afv"; "agda-server" = dontDistribute super."agda-server"; "agda-snippets" = dontDistribute super."agda-snippets"; + "agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll"; "agum" = dontDistribute super."agum"; "aig" = dontDistribute super."aig"; "air" = dontDistribute super."air"; @@ -1648,6 +1650,7 @@ self: super: { "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; + "bson" = doDistribute super."bson_0_3_1"; "bson-generic" = dontDistribute super."bson-generic"; "bson-generics" = dontDistribute super."bson-generics"; "bson-lens" = dontDistribute super."bson-lens"; @@ -1876,6 +1879,7 @@ self: super: { "clafer" = dontDistribute super."clafer"; "claferIG" = dontDistribute super."claferIG"; "claferwiki" = dontDistribute super."claferwiki"; + "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; "clash" = dontDistribute super."clash"; "clash-ghc" = doDistribute super."clash-ghc_0_5_13"; @@ -2415,6 +2419,7 @@ self: super: { "dicom" = dontDistribute super."dicom"; "dictparser" = dontDistribute super."dictparser"; "diet" = dontDistribute super."diet"; + "diff-gestalt" = dontDistribute super."diff-gestalt"; "diff-parse" = dontDistribute super."diff-parse"; "diffarray" = dontDistribute super."diffarray"; "diffcabal" = dontDistribute super."diffcabal"; @@ -2504,6 +2509,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; "download" = dontDistribute super."download"; @@ -3091,6 +3097,7 @@ self: super: { "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph"; "ghc-server" = dontDistribute super."ghc-server"; + "ghc-session" = dontDistribute super."ghc-session"; "ghc-simple" = dontDistribute super."ghc-simple"; "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; @@ -3412,6 +3419,7 @@ self: super: { "hR" = dontDistribute super."hR"; "hRESP" = dontDistribute super."hRESP"; "hS3" = dontDistribute super."hS3"; + "hScraper" = dontDistribute super."hScraper"; "hSimpleDB" = dontDistribute super."hSimpleDB"; "hTalos" = dontDistribute super."hTalos"; "hTensor" = dontDistribute super."hTensor"; @@ -4242,6 +4250,7 @@ self: super: { "hub" = dontDistribute super."hub"; "hubigraph" = dontDistribute super."hubigraph"; "hubris" = dontDistribute super."hubris"; + "huckleberry" = dontDistribute super."huckleberry"; "huffman" = dontDistribute super."huffman"; "hugs2yc" = dontDistribute super."hugs2yc"; "hulk" = dontDistribute super."hulk"; @@ -4691,6 +4700,7 @@ self: super: { "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; + "latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll"; "latex-formulae-image" = dontDistribute super."latex-formulae-image"; "latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc"; "lattices" = doDistribute super."lattices_1_3"; @@ -4912,6 +4922,7 @@ self: super: { "luachunk" = dontDistribute super."luachunk"; "luautils" = dontDistribute super."luautils"; "lub" = dontDistribute super."lub"; + "lucid" = doDistribute super."lucid_2_9_2"; "lucid-foundation" = dontDistribute super."lucid-foundation"; "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; @@ -4986,6 +4997,7 @@ self: super: { "markov" = dontDistribute super."markov"; "markov-chain" = dontDistribute super."markov-chain"; "markov-processes" = dontDistribute super."markov-processes"; + "markup" = doDistribute super."markup_1_1_0"; "markup-preview" = dontDistribute super."markup-preview"; "marmalade-upload" = dontDistribute super."marmalade-upload"; "marquise" = dontDistribute super."marquise"; @@ -5292,6 +5304,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = doDistribute super."nationstates_0_2_0_3"; + "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; "natural-numbers" = dontDistribute super."natural-numbers"; @@ -5621,6 +5634,7 @@ self: super: { "patch-combinators" = dontDistribute super."patch-combinators"; "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; + "path-extra" = dontDistribute super."path-extra"; "path-pieces" = doDistribute super."path-pieces_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; @@ -5722,9 +5736,11 @@ self: super: { "pinboard" = dontDistribute super."pinboard"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; + "pipes" = doDistribute super."pipes_4_1_6"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-binary" = doDistribute super."pipes-binary_0_4_0_4"; + "pipes-cacophony" = dontDistribute super."pipes-cacophony"; "pipes-cellular" = dontDistribute super."pipes-cellular"; "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; @@ -6949,6 +6965,7 @@ self: super: { "svm-light-utils" = dontDistribute super."svm-light-utils"; "svm-simple" = dontDistribute super."svm-simple"; "svndump" = dontDistribute super."svndump"; + "swagger2" = dontDistribute super."swagger2"; "swapper" = dontDistribute super."swapper"; "swearjure" = dontDistribute super."swearjure"; "swf" = dontDistribute super."swf"; @@ -7490,6 +7507,7 @@ self: super: { "urldecode" = dontDistribute super."urldecode"; "urldisp-happstack" = dontDistribute super."urldisp-happstack"; "urlencoded" = dontDistribute super."urlencoded"; + "urlpath" = doDistribute super."urlpath_2_1_0"; "urn" = dontDistribute super."urn"; "urxml" = dontDistribute super."urxml"; "usb" = dontDistribute super."usb"; @@ -7612,6 +7630,7 @@ self: super: { "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_3_0"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; + "wai-cors" = doDistribute super."wai-cors_0_2_3"; "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; @@ -7927,6 +7946,9 @@ self: super: { "yesod-pure" = dontDistribute super."yesod-pure"; "yesod-purescript" = dontDistribute super."yesod-purescript"; "yesod-raml" = dontDistribute super."yesod-raml"; + "yesod-raml-bin" = dontDistribute super."yesod-raml-bin"; + "yesod-raml-docs" = dontDistribute super."yesod-raml-docs"; + "yesod-raml-mock" = dontDistribute super."yesod-raml-mock"; "yesod-recaptcha" = dontDistribute super."yesod-recaptcha"; "yesod-routes" = dontDistribute super."yesod-routes"; "yesod-routes-flow" = dontDistribute super."yesod-routes-flow"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.6.nix b/pkgs/development/haskell-modules/configuration-lts-3.6.nix index cd621621117..395e9283889 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.6.nix @@ -566,6 +566,7 @@ self: super: { "JuicyPixels" = doDistribute super."JuicyPixels_3_2_6_1"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; "JuicyPixels-repa" = dontDistribute super."JuicyPixels-repa"; + "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; "JunkDB" = dontDistribute super."JunkDB"; "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; @@ -1112,6 +1113,7 @@ self: super: { "afv" = dontDistribute super."afv"; "agda-server" = dontDistribute super."agda-server"; "agda-snippets" = dontDistribute super."agda-snippets"; + "agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll"; "agum" = dontDistribute super."agum"; "aig" = dontDistribute super."aig"; "air" = dontDistribute super."air"; @@ -1646,6 +1648,7 @@ self: super: { "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; + "bson" = doDistribute super."bson_0_3_1"; "bson-generic" = dontDistribute super."bson-generic"; "bson-generics" = dontDistribute super."bson-generics"; "bson-lens" = dontDistribute super."bson-lens"; @@ -1873,6 +1876,7 @@ self: super: { "clafer" = dontDistribute super."clafer"; "claferIG" = dontDistribute super."claferIG"; "claferwiki" = dontDistribute super."claferwiki"; + "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; "clash" = dontDistribute super."clash"; "clash-ghc" = doDistribute super."clash-ghc_0_5_14"; @@ -2411,6 +2415,7 @@ self: super: { "dicom" = dontDistribute super."dicom"; "dictparser" = dontDistribute super."dictparser"; "diet" = dontDistribute super."diet"; + "diff-gestalt" = dontDistribute super."diff-gestalt"; "diff-parse" = dontDistribute super."diff-parse"; "diffarray" = dontDistribute super."diffarray"; "diffcabal" = dontDistribute super."diffcabal"; @@ -2500,6 +2505,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; "download" = dontDistribute super."download"; @@ -3083,6 +3089,7 @@ self: super: { "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph"; "ghc-server" = dontDistribute super."ghc-server"; + "ghc-session" = dontDistribute super."ghc-session"; "ghc-simple" = dontDistribute super."ghc-simple"; "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; @@ -3402,6 +3409,7 @@ self: super: { "hR" = dontDistribute super."hR"; "hRESP" = dontDistribute super."hRESP"; "hS3" = dontDistribute super."hS3"; + "hScraper" = dontDistribute super."hScraper"; "hSimpleDB" = dontDistribute super."hSimpleDB"; "hTalos" = dontDistribute super."hTalos"; "hTensor" = dontDistribute super."hTensor"; @@ -4230,6 +4238,7 @@ self: super: { "hub" = dontDistribute super."hub"; "hubigraph" = dontDistribute super."hubigraph"; "hubris" = dontDistribute super."hubris"; + "huckleberry" = dontDistribute super."huckleberry"; "huffman" = dontDistribute super."huffman"; "hugs2yc" = dontDistribute super."hugs2yc"; "hulk" = dontDistribute super."hulk"; @@ -4676,6 +4685,7 @@ self: super: { "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; + "latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll"; "latex-formulae-image" = dontDistribute super."latex-formulae-image"; "latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc"; "lattices" = doDistribute super."lattices_1_3"; @@ -4895,6 +4905,7 @@ self: super: { "luachunk" = dontDistribute super."luachunk"; "luautils" = dontDistribute super."luautils"; "lub" = dontDistribute super."lub"; + "lucid" = doDistribute super."lucid_2_9_2"; "lucid-foundation" = dontDistribute super."lucid-foundation"; "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; @@ -4969,6 +4980,7 @@ self: super: { "markov" = dontDistribute super."markov"; "markov-chain" = dontDistribute super."markov-chain"; "markov-processes" = dontDistribute super."markov-processes"; + "markup" = doDistribute super."markup_1_1_0"; "markup-preview" = dontDistribute super."markup-preview"; "marmalade-upload" = dontDistribute super."marmalade-upload"; "marquise" = dontDistribute super."marquise"; @@ -5273,6 +5285,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = doDistribute super."nationstates_0_2_0_3"; + "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; "natural-numbers" = dontDistribute super."natural-numbers"; @@ -5602,6 +5615,7 @@ self: super: { "patch-combinators" = dontDistribute super."patch-combinators"; "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; + "path-extra" = dontDistribute super."path-extra"; "path-pieces" = doDistribute super."path-pieces_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; @@ -5702,8 +5716,10 @@ self: super: { "pinboard" = dontDistribute super."pinboard"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; + "pipes" = doDistribute super."pipes_4_1_6"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; + "pipes-cacophony" = dontDistribute super."pipes-cacophony"; "pipes-cellular" = dontDistribute super."pipes-cellular"; "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; @@ -6926,6 +6942,7 @@ self: super: { "svm-light-utils" = dontDistribute super."svm-light-utils"; "svm-simple" = dontDistribute super."svm-simple"; "svndump" = dontDistribute super."svndump"; + "swagger2" = dontDistribute super."swagger2"; "swapper" = dontDistribute super."swapper"; "swearjure" = dontDistribute super."swearjure"; "swf" = dontDistribute super."swf"; @@ -7466,6 +7483,7 @@ self: super: { "urldecode" = dontDistribute super."urldecode"; "urldisp-happstack" = dontDistribute super."urldisp-happstack"; "urlencoded" = dontDistribute super."urlencoded"; + "urlpath" = doDistribute super."urlpath_2_1_0"; "urn" = dontDistribute super."urn"; "urxml" = dontDistribute super."urxml"; "usb" = dontDistribute super."usb"; @@ -7587,6 +7605,7 @@ self: super: { "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_3_0"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; + "wai-cors" = doDistribute super."wai-cors_0_2_3"; "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; @@ -7900,6 +7919,9 @@ self: super: { "yesod-pure" = dontDistribute super."yesod-pure"; "yesod-purescript" = dontDistribute super."yesod-purescript"; "yesod-raml" = dontDistribute super."yesod-raml"; + "yesod-raml-bin" = dontDistribute super."yesod-raml-bin"; + "yesod-raml-docs" = dontDistribute super."yesod-raml-docs"; + "yesod-raml-mock" = dontDistribute super."yesod-raml-mock"; "yesod-recaptcha" = dontDistribute super."yesod-recaptcha"; "yesod-routes" = dontDistribute super."yesod-routes"; "yesod-routes-flow" = dontDistribute super."yesod-routes-flow"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.7.nix b/pkgs/development/haskell-modules/configuration-lts-3.7.nix index c5b1b7f11ba..beb5e3581f5 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.7.nix @@ -565,6 +565,7 @@ self: super: { "JuicyPixels" = doDistribute super."JuicyPixels_3_2_6_1"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; "JuicyPixels-repa" = dontDistribute super."JuicyPixels-repa"; + "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; "JunkDB" = dontDistribute super."JunkDB"; "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; @@ -1111,6 +1112,7 @@ self: super: { "afv" = dontDistribute super."afv"; "agda-server" = dontDistribute super."agda-server"; "agda-snippets" = dontDistribute super."agda-snippets"; + "agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll"; "agum" = dontDistribute super."agum"; "aig" = dontDistribute super."aig"; "air" = dontDistribute super."air"; @@ -1641,6 +1643,7 @@ self: super: { "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; + "bson" = doDistribute super."bson_0_3_1"; "bson-generic" = dontDistribute super."bson-generic"; "bson-generics" = dontDistribute super."bson-generics"; "bson-lens" = dontDistribute super."bson-lens"; @@ -1868,6 +1871,7 @@ self: super: { "clafer" = dontDistribute super."clafer"; "claferIG" = dontDistribute super."claferIG"; "claferwiki" = dontDistribute super."claferwiki"; + "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; "clash" = dontDistribute super."clash"; "clash-ghc" = doDistribute super."clash-ghc_0_5_15"; @@ -2402,6 +2406,7 @@ self: super: { "dicom" = dontDistribute super."dicom"; "dictparser" = dontDistribute super."dictparser"; "diet" = dontDistribute super."diet"; + "diff-gestalt" = dontDistribute super."diff-gestalt"; "diff-parse" = dontDistribute super."diff-parse"; "diffarray" = dontDistribute super."diffarray"; "diffcabal" = dontDistribute super."diffcabal"; @@ -2490,6 +2495,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; "download" = dontDistribute super."download"; @@ -3071,6 +3077,7 @@ self: super: { "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph"; "ghc-server" = dontDistribute super."ghc-server"; + "ghc-session" = dontDistribute super."ghc-session"; "ghc-simple" = dontDistribute super."ghc-simple"; "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; @@ -3390,6 +3397,7 @@ self: super: { "hR" = dontDistribute super."hR"; "hRESP" = dontDistribute super."hRESP"; "hS3" = dontDistribute super."hS3"; + "hScraper" = dontDistribute super."hScraper"; "hSimpleDB" = dontDistribute super."hSimpleDB"; "hTalos" = dontDistribute super."hTalos"; "hTensor" = dontDistribute super."hTensor"; @@ -4215,6 +4223,7 @@ self: super: { "hub" = dontDistribute super."hub"; "hubigraph" = dontDistribute super."hubigraph"; "hubris" = dontDistribute super."hubris"; + "huckleberry" = dontDistribute super."huckleberry"; "huffman" = dontDistribute super."huffman"; "hugs2yc" = dontDistribute super."hugs2yc"; "hulk" = dontDistribute super."hulk"; @@ -4660,6 +4669,7 @@ self: super: { "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; + "latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll"; "latex-formulae-image" = dontDistribute super."latex-formulae-image"; "latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc"; "lattices" = doDistribute super."lattices_1_3"; @@ -4879,6 +4889,7 @@ self: super: { "luachunk" = dontDistribute super."luachunk"; "luautils" = dontDistribute super."luautils"; "lub" = dontDistribute super."lub"; + "lucid" = doDistribute super."lucid_2_9_2"; "lucid-foundation" = dontDistribute super."lucid-foundation"; "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; @@ -4951,6 +4962,7 @@ self: super: { "markov" = dontDistribute super."markov"; "markov-chain" = dontDistribute super."markov-chain"; "markov-processes" = dontDistribute super."markov-processes"; + "markup" = doDistribute super."markup_1_1_0"; "markup-preview" = dontDistribute super."markup-preview"; "marmalade-upload" = dontDistribute super."marmalade-upload"; "marquise" = dontDistribute super."marquise"; @@ -5255,6 +5267,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = doDistribute super."nationstates_0_2_0_3"; + "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; "natural-numbers" = dontDistribute super."natural-numbers"; @@ -5583,6 +5596,7 @@ self: super: { "patch-combinators" = dontDistribute super."patch-combinators"; "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; + "path-extra" = dontDistribute super."path-extra"; "path-pieces" = doDistribute super."path-pieces_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; @@ -5683,8 +5697,10 @@ self: super: { "pinboard" = dontDistribute super."pinboard"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; + "pipes" = doDistribute super."pipes_4_1_6"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; + "pipes-cacophony" = dontDistribute super."pipes-cacophony"; "pipes-cellular" = dontDistribute super."pipes-cellular"; "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; @@ -6900,6 +6916,7 @@ self: super: { "svm-light-utils" = dontDistribute super."svm-light-utils"; "svm-simple" = dontDistribute super."svm-simple"; "svndump" = dontDistribute super."svndump"; + "swagger2" = dontDistribute super."swagger2"; "swapper" = dontDistribute super."swapper"; "swearjure" = dontDistribute super."swearjure"; "swf" = dontDistribute super."swf"; @@ -7439,6 +7456,7 @@ self: super: { "urldecode" = dontDistribute super."urldecode"; "urldisp-happstack" = dontDistribute super."urldisp-happstack"; "urlencoded" = dontDistribute super."urlencoded"; + "urlpath" = doDistribute super."urlpath_2_1_0"; "urn" = dontDistribute super."urn"; "urxml" = dontDistribute super."urxml"; "usb" = dontDistribute super."usb"; @@ -7560,6 +7578,7 @@ self: super: { "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_3_0"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; + "wai-cors" = doDistribute super."wai-cors_0_2_3"; "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; @@ -7869,6 +7888,9 @@ self: super: { "yesod-pure" = dontDistribute super."yesod-pure"; "yesod-purescript" = dontDistribute super."yesod-purescript"; "yesod-raml" = dontDistribute super."yesod-raml"; + "yesod-raml-bin" = dontDistribute super."yesod-raml-bin"; + "yesod-raml-docs" = dontDistribute super."yesod-raml-docs"; + "yesod-raml-mock" = dontDistribute super."yesod-raml-mock"; "yesod-recaptcha" = dontDistribute super."yesod-recaptcha"; "yesod-routes" = dontDistribute super."yesod-routes"; "yesod-routes-flow" = dontDistribute super."yesod-routes-flow"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.8.nix b/pkgs/development/haskell-modules/configuration-lts-3.8.nix index 5b75ea08917..20a7555e10b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.8.nix @@ -565,6 +565,7 @@ self: super: { "JuicyPixels" = doDistribute super."JuicyPixels_3_2_6_1"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; "JuicyPixels-repa" = dontDistribute super."JuicyPixels-repa"; + "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; "JunkDB" = dontDistribute super."JunkDB"; "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; @@ -1110,6 +1111,7 @@ self: super: { "afv" = dontDistribute super."afv"; "agda-server" = dontDistribute super."agda-server"; "agda-snippets" = dontDistribute super."agda-snippets"; + "agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll"; "agum" = dontDistribute super."agum"; "aig" = dontDistribute super."aig"; "air" = dontDistribute super."air"; @@ -1637,6 +1639,7 @@ self: super: { "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; + "bson" = doDistribute super."bson_0_3_1"; "bson-generic" = dontDistribute super."bson-generic"; "bson-generics" = dontDistribute super."bson-generics"; "bson-lens" = dontDistribute super."bson-lens"; @@ -1863,6 +1866,7 @@ self: super: { "clafer" = dontDistribute super."clafer"; "claferIG" = dontDistribute super."claferIG"; "claferwiki" = dontDistribute super."claferwiki"; + "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; "clash" = dontDistribute super."clash"; "clash-ghc" = doDistribute super."clash-ghc_0_5_15"; @@ -2390,6 +2394,7 @@ self: super: { "dicom" = dontDistribute super."dicom"; "dictparser" = dontDistribute super."dictparser"; "diet" = dontDistribute super."diet"; + "diff-gestalt" = dontDistribute super."diff-gestalt"; "diff-parse" = dontDistribute super."diff-parse"; "diffarray" = dontDistribute super."diffarray"; "diffcabal" = dontDistribute super."diffcabal"; @@ -2476,6 +2481,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; "download" = dontDistribute super."download"; @@ -3057,6 +3063,7 @@ self: super: { "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph"; "ghc-server" = dontDistribute super."ghc-server"; + "ghc-session" = dontDistribute super."ghc-session"; "ghc-simple" = dontDistribute super."ghc-simple"; "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; @@ -3376,6 +3383,7 @@ self: super: { "hR" = dontDistribute super."hR"; "hRESP" = dontDistribute super."hRESP"; "hS3" = dontDistribute super."hS3"; + "hScraper" = dontDistribute super."hScraper"; "hSimpleDB" = dontDistribute super."hSimpleDB"; "hTalos" = dontDistribute super."hTalos"; "hTensor" = dontDistribute super."hTensor"; @@ -4200,6 +4208,7 @@ self: super: { "hub" = dontDistribute super."hub"; "hubigraph" = dontDistribute super."hubigraph"; "hubris" = dontDistribute super."hubris"; + "huckleberry" = dontDistribute super."huckleberry"; "huffman" = dontDistribute super."huffman"; "hugs2yc" = dontDistribute super."hugs2yc"; "hulk" = dontDistribute super."hulk"; @@ -4645,6 +4654,7 @@ self: super: { "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; + "latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll"; "latex-formulae-image" = dontDistribute super."latex-formulae-image"; "latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc"; "lattices" = doDistribute super."lattices_1_3"; @@ -4864,6 +4874,7 @@ self: super: { "luachunk" = dontDistribute super."luachunk"; "luautils" = dontDistribute super."luautils"; "lub" = dontDistribute super."lub"; + "lucid" = doDistribute super."lucid_2_9_2"; "lucid-foundation" = dontDistribute super."lucid-foundation"; "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; @@ -4935,6 +4946,7 @@ self: super: { "markov" = dontDistribute super."markov"; "markov-chain" = dontDistribute super."markov-chain"; "markov-processes" = dontDistribute super."markov-processes"; + "markup" = doDistribute super."markup_1_1_0"; "markup-preview" = dontDistribute super."markup-preview"; "marmalade-upload" = dontDistribute super."marmalade-upload"; "marquise" = dontDistribute super."marquise"; @@ -5238,6 +5250,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = doDistribute super."nationstates_0_2_0_3"; + "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; "natural-numbers" = dontDistribute super."natural-numbers"; @@ -5566,6 +5579,7 @@ self: super: { "patch-combinators" = dontDistribute super."patch-combinators"; "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; + "path-extra" = dontDistribute super."path-extra"; "path-pieces" = doDistribute super."path-pieces_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; @@ -5666,8 +5680,10 @@ self: super: { "pinboard" = dontDistribute super."pinboard"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; + "pipes" = doDistribute super."pipes_4_1_6"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; + "pipes-cacophony" = dontDistribute super."pipes-cacophony"; "pipes-cellular" = dontDistribute super."pipes-cellular"; "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; @@ -6878,6 +6894,7 @@ self: super: { "svm-light-utils" = dontDistribute super."svm-light-utils"; "svm-simple" = dontDistribute super."svm-simple"; "svndump" = dontDistribute super."svndump"; + "swagger2" = dontDistribute super."swagger2"; "swapper" = dontDistribute super."swapper"; "swearjure" = dontDistribute super."swearjure"; "swf" = dontDistribute super."swf"; @@ -7240,6 +7257,7 @@ self: super: { "turing-music" = dontDistribute super."turing-music"; "turkish-deasciifier" = dontDistribute super."turkish-deasciifier"; "turni" = dontDistribute super."turni"; + "turtle" = doDistribute super."turtle_1_2_2"; "tweak" = dontDistribute super."tweak"; "twentefp" = dontDistribute super."twentefp"; "twentefp-eventloop-graphics" = dontDistribute super."twentefp-eventloop-graphics"; @@ -7414,6 +7432,7 @@ self: super: { "urldecode" = dontDistribute super."urldecode"; "urldisp-happstack" = dontDistribute super."urldisp-happstack"; "urlencoded" = dontDistribute super."urlencoded"; + "urlpath" = doDistribute super."urlpath_2_1_0"; "urn" = dontDistribute super."urn"; "urxml" = dontDistribute super."urxml"; "usb" = dontDistribute super."usb"; @@ -7534,6 +7553,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; + "wai-cors" = doDistribute super."wai-cors_0_2_3"; "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; @@ -7842,6 +7862,9 @@ self: super: { "yesod-pure" = dontDistribute super."yesod-pure"; "yesod-purescript" = dontDistribute super."yesod-purescript"; "yesod-raml" = dontDistribute super."yesod-raml"; + "yesod-raml-bin" = dontDistribute super."yesod-raml-bin"; + "yesod-raml-docs" = dontDistribute super."yesod-raml-docs"; + "yesod-raml-mock" = dontDistribute super."yesod-raml-mock"; "yesod-recaptcha" = dontDistribute super."yesod-recaptcha"; "yesod-routes" = dontDistribute super."yesod-routes"; "yesod-routes-flow" = dontDistribute super."yesod-routes-flow"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.9.nix b/pkgs/development/haskell-modules/configuration-lts-3.9.nix index 88bd04f4806..9bb14c7d621 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.9.nix @@ -564,6 +564,7 @@ self: super: { "JuicyPixels" = doDistribute super."JuicyPixels_3_2_6_1"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; "JuicyPixels-repa" = dontDistribute super."JuicyPixels-repa"; + "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; "JunkDB" = dontDistribute super."JunkDB"; "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; @@ -1107,6 +1108,7 @@ self: super: { "afv" = dontDistribute super."afv"; "agda-server" = dontDistribute super."agda-server"; "agda-snippets" = dontDistribute super."agda-snippets"; + "agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll"; "agum" = dontDistribute super."agum"; "aig" = dontDistribute super."aig"; "air" = dontDistribute super."air"; @@ -1633,6 +1635,7 @@ self: super: { "broccoli" = dontDistribute super."broccoli"; "broker-haskell" = dontDistribute super."broker-haskell"; "bsd-sysctl" = dontDistribute super."bsd-sysctl"; + "bson" = doDistribute super."bson_0_3_1"; "bson-generic" = dontDistribute super."bson-generic"; "bson-generics" = dontDistribute super."bson-generics"; "bson-lens" = dontDistribute super."bson-lens"; @@ -1858,6 +1861,7 @@ self: super: { "clafer" = dontDistribute super."clafer"; "claferIG" = dontDistribute super."claferIG"; "claferwiki" = dontDistribute super."claferwiki"; + "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; "clash" = dontDistribute super."clash"; "clash-ghc" = doDistribute super."clash-ghc_0_5_15"; @@ -2384,6 +2388,7 @@ self: super: { "dicom" = dontDistribute super."dicom"; "dictparser" = dontDistribute super."dictparser"; "diet" = dontDistribute super."diet"; + "diff-gestalt" = dontDistribute super."diff-gestalt"; "diff-parse" = dontDistribute super."diff-parse"; "diffarray" = dontDistribute super."diffarray"; "diffcabal" = dontDistribute super."diffcabal"; @@ -2470,6 +2475,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; "download" = dontDistribute super."download"; @@ -3048,6 +3054,7 @@ self: super: { "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph"; "ghc-server" = dontDistribute super."ghc-server"; + "ghc-session" = dontDistribute super."ghc-session"; "ghc-simple" = dontDistribute super."ghc-simple"; "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; @@ -3367,6 +3374,7 @@ self: super: { "hR" = dontDistribute super."hR"; "hRESP" = dontDistribute super."hRESP"; "hS3" = dontDistribute super."hS3"; + "hScraper" = dontDistribute super."hScraper"; "hSimpleDB" = dontDistribute super."hSimpleDB"; "hTalos" = dontDistribute super."hTalos"; "hTensor" = dontDistribute super."hTensor"; @@ -4190,6 +4198,7 @@ self: super: { "hub" = dontDistribute super."hub"; "hubigraph" = dontDistribute super."hubigraph"; "hubris" = dontDistribute super."hubris"; + "huckleberry" = dontDistribute super."huckleberry"; "huffman" = dontDistribute super."huffman"; "hugs2yc" = dontDistribute super."hugs2yc"; "hulk" = dontDistribute super."hulk"; @@ -4635,6 +4644,7 @@ self: super: { "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; + "latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll"; "latex-formulae-image" = dontDistribute super."latex-formulae-image"; "latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc"; "lattices" = doDistribute super."lattices_1_3"; @@ -4854,6 +4864,7 @@ self: super: { "luachunk" = dontDistribute super."luachunk"; "luautils" = dontDistribute super."luautils"; "lub" = dontDistribute super."lub"; + "lucid" = doDistribute super."lucid_2_9_2"; "lucid-foundation" = dontDistribute super."lucid-foundation"; "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; @@ -4925,6 +4936,7 @@ self: super: { "markov" = dontDistribute super."markov"; "markov-chain" = dontDistribute super."markov-chain"; "markov-processes" = dontDistribute super."markov-processes"; + "markup" = doDistribute super."markup_1_1_0"; "markup-preview" = dontDistribute super."markup-preview"; "marmalade-upload" = dontDistribute super."marmalade-upload"; "marquise" = dontDistribute super."marquise"; @@ -5101,6 +5113,7 @@ self: super: { "monads-fd" = dontDistribute super."monads-fd"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; + "mongoDB" = doDistribute super."mongoDB_2_0_8"; "mongodb-queue" = dontDistribute super."mongodb-queue"; "mongrel2-handler" = dontDistribute super."mongrel2-handler"; "monitor" = dontDistribute super."monitor"; @@ -5227,6 +5240,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = doDistribute super."nationstates_0_2_0_3"; + "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; "natural-numbers" = dontDistribute super."natural-numbers"; @@ -5554,6 +5568,7 @@ self: super: { "patch-combinators" = dontDistribute super."patch-combinators"; "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; + "path-extra" = dontDistribute super."path-extra"; "path-pieces" = doDistribute super."path-pieces_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; @@ -5654,8 +5669,10 @@ self: super: { "pinboard" = dontDistribute super."pinboard"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; + "pipes" = doDistribute super."pipes_4_1_6"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; + "pipes-cacophony" = dontDistribute super."pipes-cacophony"; "pipes-cellular" = dontDistribute super."pipes-cellular"; "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; @@ -6865,6 +6882,7 @@ self: super: { "svm-light-utils" = dontDistribute super."svm-light-utils"; "svm-simple" = dontDistribute super."svm-simple"; "svndump" = dontDistribute super."svndump"; + "swagger2" = dontDistribute super."swagger2"; "swapper" = dontDistribute super."swapper"; "swearjure" = dontDistribute super."swearjure"; "swf" = dontDistribute super."swf"; @@ -7227,6 +7245,7 @@ self: super: { "turing-music" = dontDistribute super."turing-music"; "turkish-deasciifier" = dontDistribute super."turkish-deasciifier"; "turni" = dontDistribute super."turni"; + "turtle" = doDistribute super."turtle_1_2_2"; "tweak" = dontDistribute super."tweak"; "twentefp" = dontDistribute super."twentefp"; "twentefp-eventloop-graphics" = dontDistribute super."twentefp-eventloop-graphics"; @@ -7401,6 +7420,7 @@ self: super: { "urldecode" = dontDistribute super."urldecode"; "urldisp-happstack" = dontDistribute super."urldisp-happstack"; "urlencoded" = dontDistribute super."urlencoded"; + "urlpath" = doDistribute super."urlpath_2_1_0"; "urn" = dontDistribute super."urn"; "urxml" = dontDistribute super."urxml"; "usb" = dontDistribute super."usb"; @@ -7521,6 +7541,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; + "wai-cors" = doDistribute super."wai-cors_0_2_3"; "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; @@ -7827,6 +7848,9 @@ self: super: { "yesod-pure" = dontDistribute super."yesod-pure"; "yesod-purescript" = dontDistribute super."yesod-purescript"; "yesod-raml" = dontDistribute super."yesod-raml"; + "yesod-raml-bin" = dontDistribute super."yesod-raml-bin"; + "yesod-raml-docs" = dontDistribute super."yesod-raml-docs"; + "yesod-raml-mock" = dontDistribute super."yesod-raml-mock"; "yesod-recaptcha" = dontDistribute super."yesod-recaptcha"; "yesod-routes" = dontDistribute super."yesod-routes"; "yesod-routes-flow" = dontDistribute super."yesod-routes-flow"; diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix index d6890b42d31..4ecb0fe132c 100644 --- a/pkgs/development/haskell-modules/hackage-packages.nix +++ b/pkgs/development/haskell-modules/hackage-packages.nix @@ -2544,12 +2544,12 @@ self: { }) {}; "Cartesian" = callPackage - ({ mkDerivation, base, lens }: + ({ mkDerivation, base, lens, template-haskell }: mkDerivation { pname = "Cartesian"; - version = "0.1.0.1"; - sha256 = "9946acea26007b5d5c5a5ee7a7f5e9e093687893535b2f38f9a803ac6fff374b"; - libraryHaskellDepends = [ base lens ]; + version = "0.2.0.0"; + sha256 = "8b0484241f389a9b83225f97ca0d903b7e5d3b0d98c34f5a526a0c7c3b934b45"; + libraryHaskellDepends = [ base lens template-haskell ]; description = "Coordinate systems"; license = stdenv.lib.licenses.mit; }) {}; @@ -8037,15 +8037,13 @@ self: { ({ mkDerivation, applicative-quoters, base, regex-applicative }: mkDerivation { pname = "HListPP"; - version = "0.2"; - sha256 = "283be8edd451f70ce9fd7dbb976f824e43d21301a0fe5a1f72b81df25cd3024b"; - isLibrary = true; + version = "0.2.1"; + sha256 = "0815e29c2828f4e43bda9ee0c809a0c932ba32c69441ecbd41b182bb7c461667"; + isLibrary = false; isExecutable = true; executableHaskellDepends = [ applicative-quoters base regex-applicative ]; - doHaddock = false; - jailbreak = true; homepage = "http://code.haskell.org/~aavogt/HListPP"; description = "A preprocessor for HList labelable labels"; license = stdenv.lib.licenses.bsd3; @@ -8989,8 +8987,8 @@ self: { }: mkDerivation { pname = "HaRe"; - version = "0.8.2.0"; - sha256 = "4d4e4dd05f579a0a588f307f5a87bb57456d8ea846e1c81e989607794dbf46e1"; + version = "0.8.2.1"; + sha256 = "46045a8bac33e3396e3ce8aec1d2d2545098aae3d0dd7bf2e48935c9aabc1bbe"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -9611,14 +9609,32 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "HaskellNet_0_5" = callPackage + ({ mkDerivation, array, base, base64-string, bytestring, cryptohash + , mime-mail, mtl, network, old-time, pretty, text + }: + mkDerivation { + pname = "HaskellNet"; + version = "0.5"; + sha256 = "b97d3d43672e0b419bee54c4333092382e1049f356eb029c3f9f1f63794ef9aa"; + libraryHaskellDepends = [ + array base base64-string bytestring cryptohash mime-mail mtl + network old-time pretty text + ]; + homepage = "https://github.com/jtdaugherty/HaskellNet"; + description = "Client support for POP3, SMTP, and IMAP"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "HaskellNet-SSL" = callPackage ({ mkDerivation, base, bytestring, connection, data-default , HaskellNet, network, tls }: mkDerivation { pname = "HaskellNet-SSL"; - version = "0.3.1.0"; - sha256 = "f8985280962368feb863ab1279543e61604d01cd3fcf05fbf0bb4aa3752e281b"; + version = "0.3.2.1"; + sha256 = "aca326c924d3545d93371a06a6df2f2278eb2bdeea91a7c8acbedd230582c3db"; libraryHaskellDepends = [ base bytestring connection data-default HaskellNet network tls ]; @@ -10370,6 +10386,7 @@ self: { homepage = "http://github.com/tobs169/HulkImport#readme"; description = "Easily bulk import CSV data to SQL Server"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Hungarian-Munkres" = callPackage @@ -11123,6 +11140,25 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "JuicyPixels-scale-dct" = callPackage + ({ mkDerivation, base, base-compat, carray, fft, JuicyPixels + , JuicyPixels-util, time + }: + mkDerivation { + pname = "JuicyPixels-scale-dct"; + version = "0.1.0.0"; + sha256 = "2237de808b5ed2fd2f60e79ed974a136296a67c157db072d9cb1158a0d849a57"; + libraryHaskellDepends = [ + base base-compat carray fft JuicyPixels + ]; + testHaskellDepends = [ + base base-compat carray fft JuicyPixels JuicyPixels-util time + ]; + homepage = "https://github.com/phadej/JuicyPixels-scale-dct#readme"; + description = "Scale JuicyPixels images with DCT"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "JuicyPixels-util" = callPackage ({ mkDerivation, base, JuicyPixels, vector }: mkDerivation { @@ -12135,25 +12171,25 @@ self: { ({ mkDerivation, abstract-par, array, base, bytestring, cgi , containers, directory, extensible-exceptions, ghc, ghc-paths , hashable, haskell-src, hint, html, monad-par, mtl, mueval - , network, network-uri, old-time, pretty, process, random, syb - , template-haskell, transformers, unix + , network, network-uri, pretty, process, random, syb + , template-haskell, time, transformers, unix }: mkDerivation { pname = "MagicHaskeller"; - version = "0.9.6.4.5"; - sha256 = "35a3fd7e5a5e6b45aac064dc2b28c9a220badd56c30101a59e68c19df65f86ec"; + version = "0.9.6.4.7"; + sha256 = "f239c8601326293226900fc8bb15cc6bfc19f9a10e03756b1785e00a0879c680"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ array base bytestring containers directory ghc ghc-paths hashable - haskell-src html mtl network network-uri old-time pretty random syb - template-haskell + haskell-src html mtl network network-uri pretty random syb + template-haskell time ]; executableHaskellDepends = [ abstract-par array base bytestring cgi containers directory extensible-exceptions ghc ghc-paths hashable haskell-src hint html - monad-par mtl mueval network network-uri old-time pretty process - random syb template-haskell transformers unix + monad-par mtl mueval network network-uri pretty process random syb + template-haskell time transformers unix ]; homepage = "http://nautilus.cs.miyazaki-u.ac.jp/~skata/MagicHaskeller.html"; description = "Automatic inductive functional programmer by systematic search"; @@ -15977,22 +16013,26 @@ self: { "SFML" = callPackage ({ mkDerivation, base, csfml-audio, csfml-graphics, csfml-network - , csfml-system, csfml-window + , csfml-system, csfml-window, sfml-audio, sfml-graphics + , sfml-network, sfml-system, sfml-window }: mkDerivation { pname = "SFML"; - version = "0.2.0.0"; - sha256 = "669a426c8f80dc341986e845a8e262815a775fd3c94d7530d5c90426f3e3e7cb"; + version = "2.3.2.2"; + sha256 = "b61578cc1bc95554aca715ed0ae15eadf89dbf3fe49866541903d384387fdf2d"; libraryHaskellDepends = [ base ]; librarySystemDepends = [ csfml-audio csfml-graphics csfml-network csfml-system csfml-window + sfml-audio sfml-graphics sfml-network sfml-system sfml-window ]; homepage = "https://github.com/jeannekamikaze/SFML"; description = "SFML bindings"; license = stdenv.lib.licenses.mit; hydraPlatforms = stdenv.lib.platforms.none; }) {csfml-audio = null; csfml-graphics = null; - csfml-network = null; csfml-system = null; csfml-window = null;}; + csfml-network = null; csfml-system = null; csfml-window = null; + sfml-audio = null; sfml-graphics = null; sfml-network = null; + sfml-system = null; sfml-window = null;}; "SFML-control" = callPackage ({ mkDerivation, base, mtl, SFML, template-haskell }: @@ -17159,8 +17199,8 @@ self: { }: mkDerivation { pname = "Spock"; - version = "0.9.0.1"; - sha256 = "0d6c97a3ca3ab56e01e4a21f6b2f3ce5a210ea9c6f64c2c1c2d2775295dee56c"; + version = "0.10.0.0"; + sha256 = "9f606d7984a87bdae438912ff94ffff9285150908e76c55c5efb5fb709c35678"; libraryHaskellDepends = [ aeson base base64-bytestring bytestring case-insensitive containers crypto-random directory focus hashable http-types hvect list-t @@ -17169,8 +17209,8 @@ self: { transformers-base unordered-containers vault wai wai-extra warp ]; testHaskellDepends = [ - base bytestring hspec hspec-wai http-types reroute stm text - unordered-containers wai wai-extra + base base64-bytestring bytestring hspec hspec-wai http-types + reroute stm text time unordered-containers wai wai-extra ]; homepage = "http://www.spock.li"; description = "Another Haskell web framework for rapid development"; @@ -21468,6 +21508,8 @@ self: { pname = "aeson-extra"; version = "0.2.1.0"; sha256 = "d46ac20994321ee480ec9ec4b4714943af9121b55d5ef45f25a51932eec63f91"; + revision = "1"; + editedCabalFile = "c80517bdbd55afcbb06a535060f6be97e5619314ed1545181136f140544d4120"; libraryHaskellDepends = [ aeson attoparsec base bytestring containers exceptions hashable scientific tagged text unordered-containers vector @@ -21854,8 +21896,8 @@ self: { ({ mkDerivation, aeson, base }: mkDerivation { pname = "aeson-yak"; - version = "0.1.0.2"; - sha256 = "aac0088282da8912febf886c8ebc7496c51e928e590ebfecaf8c8fc7d2fc9265"; + version = "0.1.1"; + sha256 = "b71317e0a87bbd84d6ec407a307299201070a10e3b2cf9d28c4afb5cf8b0dad2"; libraryHaskellDepends = [ aeson base ]; homepage = "https://github.com/tejon/aeson-yak"; description = "Handle JSON that may or may not be a list, or exist"; @@ -21958,6 +22000,23 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "agda-snippets-hakyll" = callPackage + ({ mkDerivation, agda-snippets, base, directory, filepath, hakyll + , network-uri, pandoc, pandoc-types + }: + mkDerivation { + pname = "agda-snippets-hakyll"; + version = "0.1.1.1"; + sha256 = "d779e0b6b70eeba21efed698a6842873fb5ddc1de4fe5e91c40d761dceec514c"; + libraryHaskellDepends = [ + agda-snippets base directory filepath hakyll network-uri pandoc + pandoc-types + ]; + homepage = "https://github.com/liamoc/agda-snippets#readme"; + description = "Literate Agda support using agda-snippets, for Hakyll pages"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "agentx" = callPackage ({ mkDerivation, base, binary, bitwise, bytestring, containers , data-default, Diff, fclabels, mtl, network, pipes @@ -22091,33 +22150,29 @@ self: { ({ mkDerivation, attoparsec, base, base64-bytestring, blaze-builder , bytestring, bytestring-trie, case-insensitive, cryptohash , directory, either, filepath, http-date, http-media, http-types - , lifted-base, mime-types, monad-control, mtl, network, old-locale - , random, tasty, tasty-hunit, tasty-quickcheck, text, time - , transformers, transformers-base, unix, unordered-containers, wai - , warp + , lifted-base, microlens, mime-types, mmorph, monad-control, mtl + , network, old-locale, random, tasty, tasty-hunit, tasty-quickcheck + , text, time, transformers, transformers-base, unix + , unordered-containers, wai, wai-extra }: mkDerivation { pname = "airship"; - version = "0.3.0.0"; - sha256 = "c8a6eb2d88ccacbf37255970ca59cd2abd1ceec3776777116dbc9a641d551b85"; - isLibrary = true; - isExecutable = true; + version = "0.4.0.0"; + sha256 = "b6ce74d30bc6b031086deb768faab7c6ded109faae409f2f874e9c3839e8a606"; libraryHaskellDepends = [ attoparsec base base64-bytestring blaze-builder bytestring bytestring-trie case-insensitive cryptohash directory either - filepath http-date http-media http-types lifted-base mime-types - monad-control mtl network old-locale random text time transformers - transformers-base unix unordered-containers wai - ]; - executableHaskellDepends = [ - base blaze-builder bytestring http-types mtl text time - unordered-containers wai warp + filepath http-date http-media http-types lifted-base microlens + mime-types mmorph monad-control mtl network old-locale random text + time transformers transformers-base unix unordered-containers wai + wai-extra ]; testHaskellDepends = [ base bytestring tasty tasty-hunit tasty-quickcheck text transformers wai ]; jailbreak = true; + homepage = "https://github.com/helium/airship/"; description = "A Webmachine-inspired HTTP library"; license = stdenv.lib.licenses.mit; }) {}; @@ -28034,32 +28089,6 @@ self: { }) {}; "argon" = callPackage - ({ mkDerivation, aeson, ansi-terminal, base, bytestring, containers - , directory, docopt, filepath, ghc, ghc-paths, ghc-syb-utils, hlint - , hspec, pathwalk, QuickCheck, syb - }: - mkDerivation { - pname = "argon"; - version = "0.3.2.0"; - sha256 = "5cd7e3b493dd7b4739126b466efbd08addd8e6beb750a5c0a29bb9e874085e21"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson ansi-terminal base bytestring ghc ghc-paths ghc-syb-utils syb - ]; - executableHaskellDepends = [ - base containers directory docopt filepath pathwalk - ]; - testHaskellDepends = [ - aeson ansi-terminal base bytestring filepath ghc ghc-paths - ghc-syb-utils hlint hspec QuickCheck syb - ]; - homepage = "http://github.com/rubik/argon"; - description = "Measure your code's complexity"; - license = stdenv.lib.licenses.isc; - }) {}; - - "argon_0_4_0_0" = callPackage ({ mkDerivation, aeson, ansi-terminal, base, bytestring, Cabal , containers, directory, docopt, filepath, ghc, ghc-paths , ghc-syb-utils, hlint, hspec, lens-simple, pathwalk, pipes @@ -28085,7 +28114,6 @@ self: { homepage = "http://github.com/rubik/argon"; description = "Measure your code's complexity"; license = stdenv.lib.licenses.isc; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "argparser" = callPackage @@ -32876,6 +32904,28 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "bifunctors_5_1" = callPackage + ({ mkDerivation, base, containers, hspec, QuickCheck, semigroups + , tagged, template-haskell, transformers, transformers-compat + }: + mkDerivation { + pname = "bifunctors"; + version = "5.1"; + sha256 = "0bd9de8dfe8c3c33555cc59fa423edf624761b850252fa2051097e97574635dd"; + revision = "1"; + editedCabalFile = "b4c4393c49cb8a9f4dbae48fc68fcd1fdc1797f73a9a60320068c8704573432b"; + libraryHaskellDepends = [ + base containers semigroups tagged template-haskell + ]; + testHaskellDepends = [ + base hspec QuickCheck transformers transformers-compat + ]; + homepage = "http://github.com/ekmett/bifunctors/"; + description = "Bifunctors"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "billboard-parser" = callPackage ({ mkDerivation, base, directory, filepath, HarmTrace-Base, HUnit , ListLike, mtl, parseargs, uu-parsinglib @@ -36750,8 +36800,8 @@ self: { }: mkDerivation { pname = "brick"; - version = "0.2.1"; - sha256 = "4613d52b869ca00656f1f08e7fcb466884a50b06dd700bf814d3246a73f6cc94"; + version = "0.2.2"; + sha256 = "6664472f3784a4dce3911b22196c2db26400d4a05e60475a44803b0c92fd944a"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -36839,7 +36889,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "bson" = callPackage + "bson_0_3_1" = callPackage ({ mkDerivation, base, binary, bytestring, cryptohash , data-binary-ieee754, mtl, network, QuickCheck, test-framework , test-framework-quickcheck2, text, time @@ -36862,6 +36912,31 @@ self: { homepage = "http://github.com/mongodb-haskell/bson"; description = "BSON documents are JSON-like objects with a standard binary encoding"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "bson" = callPackage + ({ mkDerivation, base, binary, bytestring, cryptohash + , data-binary-ieee754, mtl, network, QuickCheck, test-framework + , test-framework-quickcheck2, text, time + }: + mkDerivation { + pname = "bson"; + version = "0.3.2"; + sha256 = "6dd232ccda8ec13cf8b8c5da906ffce6b58ae65d72ff0f4e9bc747a7768beb90"; + libraryHaskellDepends = [ + base binary bytestring cryptohash data-binary-ieee754 mtl network + text time + ]; + testHaskellDepends = [ + base binary bytestring cryptohash data-binary-ieee754 mtl network + QuickCheck test-framework test-framework-quickcheck2 text time + ]; + jailbreak = true; + doCheck = false; + homepage = "http://github.com/mongodb-haskell/bson"; + description = "BSON documents are JSON-like objects with a standard binary encoding"; + license = "unknown"; }) {}; "bson-generic" = callPackage @@ -37033,7 +37108,7 @@ self: { ]; description = "Serialize Aeson values with Data.BufferBuilder"; license = stdenv.lib.licenses.mit; - hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bugzilla" = callPackage @@ -37331,8 +37406,8 @@ self: { }: mkDerivation { pname = "byline"; - version = "0.2.0.0"; - sha256 = "54867a1ddd63a29e9c069809ce0b4b4b1494631542122158d7c9860657822485"; + version = "0.2.1.0"; + sha256 = "dd464d3b9afb9e74fd2ed72e44f9fc74bcd59abf870184ee2a4ed2512e2b75c4"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -37340,7 +37415,6 @@ self: { terminfo-hs text transformers ]; executableHaskellDepends = [ base text ]; - jailbreak = true; homepage = "http://github.com/pjones/byline"; description = "Library for creating command-line interfaces (colors, menus, etc.)"; license = stdenv.lib.licenses.bsd2; @@ -37472,6 +37546,8 @@ self: { pname = "bytes"; version = "0.15.0.1"; sha256 = "0844677de1358ac66c0fd1c829cda66539963681cef1125e815bf435108c98e2"; + revision = "1"; + editedCabalFile = "a38761e7550c9ad5d2d6083c0ccc7c03f3ab77a58b294b157d5b3c9112318bbf"; libraryHaskellDepends = [ base binary bytestring cereal containers mtl text time transformers transformers-compat void @@ -39586,32 +39662,30 @@ self: { }: mkDerivation { pname = "cacophony"; - version = "0.1.0.0"; - sha256 = "5260c82a7ccfd1b4bdb9c2567b812ec95052c11d97d8eb208d276c8f3327cd30"; - revision = "2"; - editedCabalFile = "b3916a22e4dbcfcaec70f734e49ca883b2d269249ce1af00844ce37c442f032a"; + version = "0.2.0"; + sha256 = "5825a01a93e959e1da25d095e1b79c28f44abfba3e8fbc3eefac21423f953bb5"; libraryHaskellDepends = [ base bytestring cryptonite lens memory mtl ]; testHaskellDepends = [ - base bytestring directory doctest filepath hlint memory mtl - QuickCheck tasty tasty-quickcheck + base bytestring directory doctest filepath hlint mtl QuickCheck + tasty tasty-quickcheck ]; doCheck = false; - homepage = "https://github.com/centromere/cacophony/wiki"; + homepage = "https://github.com/centromere/cacophony"; description = "A library implementing the Noise protocol"; license = stdenv.lib.licenses.publicDomain; }) {}; - "cacophony_0_2_0" = callPackage + "cacophony_0_3_0" = callPackage ({ mkDerivation, base, bytestring, cryptonite, directory, doctest , filepath, hlint, lens, memory, mtl, QuickCheck, tasty , tasty-quickcheck }: mkDerivation { pname = "cacophony"; - version = "0.2.0"; - sha256 = "5825a01a93e959e1da25d095e1b79c28f44abfba3e8fbc3eefac21423f953bb5"; + version = "0.3.0"; + sha256 = "7128a382bec1e74356c6b231e2cfa71b7be8f98781ee7cb5e20c2d9097081032"; libraryHaskellDepends = [ base bytestring cryptonite lens memory mtl ]; @@ -40217,8 +40291,8 @@ self: { }: mkDerivation { pname = "carettah"; - version = "0.4.1"; - sha256 = "8e8f8943ef544ae3487db565254c8fd657fca12b8c70c817291f965e04db5ea4"; + version = "0.4.2"; + sha256 = "e698dc362f8f6c3fb62bfaecbd56484faa4d2ff84e5fabe8747312970d91f35b"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -40232,17 +40306,17 @@ self: { }) {}; "carray" = callPackage - ({ mkDerivation, array, base, binary, ix-shapable, QuickCheck, syb + ({ mkDerivation, array, base, binary, bytestring, ix-shapable + , QuickCheck, syb }: mkDerivation { pname = "carray"; - version = "0.1.6"; - sha256 = "5999fb2985be337b0d8a823c513bc59847dd025869d818a7546cf7f76be342b0"; + version = "0.1.6.1"; + sha256 = "256aa21d8c39f4e737769e0e6635eae664a65f37f950cedabad7b9d4677b9e4f"; libraryHaskellDepends = [ - array base binary ix-shapable QuickCheck syb + array base binary bytestring ix-shapable QuickCheck syb ]; testHaskellDepends = [ array base ix-shapable QuickCheck ]; - jailbreak = true; description = "A C-compatible array library"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -41648,8 +41722,8 @@ self: { ({ mkDerivation, array, base, process, random }: mkDerivation { pname = "chalmers-lava2000"; - version = "1.5.1"; - sha256 = "82ea480552911a454a3980733a7106e97ccfcb3d8eb5c7990d2cf764e5f1f2ff"; + version = "1.6"; + sha256 = "243d3b25635eb16700723a1250f8db52c5493d56bb16144537dedb0e776e01f8"; libraryHaskellDepends = [ array base process random ]; homepage = "http://projects.haskell.org/chalmers-lava2000/Doc/tutorial.pdf"; description = "Hardware description EDSL"; @@ -41813,8 +41887,8 @@ self: { }: mkDerivation { pname = "chatter"; - version = "0.8.0.0"; - sha256 = "ce18c6bf22f292824e171746ef46edf950a44d3dba1036c7971ce77aaadb109c"; + version = "0.8.0.2"; + sha256 = "d298cc5ce3d95df664e050e17395d56b0b4206b6557af14345eee90768c9ecc0"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -42568,6 +42642,7 @@ self: { homepage = "http://github.com/BartMassey/ciphersaber"; description = "Implementation of CipherSaber2 RC4 cryptography"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "circ" = callPackage @@ -42827,6 +42902,23 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "clang-pure" = callPackage + ({ mkDerivation, base, bytestring, clang, containers, contravariant + , inline-c, stm, template-haskell, vector + }: + mkDerivation { + pname = "clang-pure"; + version = "0.1.0.0"; + sha256 = "7c5cfef49732236bc6d6da95b89087c07447d9bf235c032c16c7e6850a747b08"; + libraryHaskellDepends = [ + base bytestring containers contravariant inline-c stm + template-haskell vector + ]; + librarySystemDepends = [ clang ]; + description = "Pure C++ code analysis with libclang"; + license = stdenv.lib.licenses.asl20; + }) {inherit (self.llvmPackages) clang;}; + "clanki" = callPackage ({ mkDerivation, base, bytestring, directory, safe, strict, time }: mkDerivation { @@ -45404,8 +45496,8 @@ self: { }: mkDerivation { pname = "codex"; - version = "0.4.0.4"; - sha256 = "896add5b0aeea29b6a2e0a3a21e94a44740d6e2401c7c59257cd45d02120c022"; + version = "0.4.0.6"; + sha256 = "b39508eaa0f2239e18070a358b7a9a83f7e7aba326e27061bdaf47b9498eacb1"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -45748,14 +45840,20 @@ self: { }) {}; "combinat" = callPackage - ({ mkDerivation, array, base, containers, random, transformers }: + ({ mkDerivation, array, base, containers, QuickCheck, random + , test-framework, test-framework-quickcheck2, transformers + }: mkDerivation { pname = "combinat"; - version = "0.2.8.0"; - sha256 = "aa718162cfd5b915901b828d51adde032745e97530ebfa281e50fce32cdac82d"; + version = "0.2.8.1"; + sha256 = "5a6c09490085056f2b042c814df6f7333b394581dba1c5c7b788bcad81861937"; libraryHaskellDepends = [ array base containers random transformers ]; + testHaskellDepends = [ + array base containers QuickCheck random test-framework + test-framework-quickcheck2 transformers + ]; homepage = "http://code.haskell.org/~bkomuves/"; description = "Generate and manipulate various combinatorial objects"; license = stdenv.lib.licenses.bsd3; @@ -46344,7 +46442,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "compensated" = callPackage + "compensated_0_6_1" = callPackage ({ mkDerivation, base, bifunctors, binary, bytes, cereal, comonad , deepseq, directory, distributive, doctest, filepath , generic-deriving, hashable, lens, log-domain, safecopy @@ -46370,6 +46468,31 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "compensated" = callPackage + ({ mkDerivation, base, bifunctors, binary, bytes, cereal, comonad + , deepseq, directory, distributive, doctest, filepath + , generic-deriving, hashable, lens, log-domain, safecopy + , semigroupoids, semigroups, simple-reflect, vector + }: + mkDerivation { + pname = "compensated"; + version = "0.7"; + sha256 = "af6a245921b80c5384d64e217fdf2122ea069e8733bd57e9c0135bfd94b5e9b2"; + libraryHaskellDepends = [ + base bifunctors binary bytes cereal comonad deepseq distributive + generic-deriving hashable lens log-domain safecopy semigroupoids + semigroups vector + ]; + testHaskellDepends = [ + base directory doctest filepath generic-deriving semigroups + simple-reflect + ]; + homepage = "http://github.com/analytics/compensated/"; + description = "Compensated floating-point arithmetic"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "competition" = callPackage ({ mkDerivation, base, filepath, parsec }: mkDerivation { @@ -46887,8 +47010,10 @@ self: { }: mkDerivation { pname = "concurrent-output"; - version = "1.5.0"; - sha256 = "f64c08a30c78c177d67ccc52d9718eda72fa610774b3166ef9dd1e8c79af4464"; + version = "1.6.1"; + sha256 = "ea81fcaac04ef0dc612b403c1630f9035bfccd59a8c8894c6a64c54e31bd00f5"; + revision = "3"; + editedCabalFile = "9a39c6788c7ba0dc6ef247f5d92e880b3b6f57875b05ec4ee6bb21959b36a132"; libraryHaskellDepends = [ ansi-terminal async base directory exceptions process stm terminal-size text transformers unix @@ -52173,10 +52298,9 @@ self: { ({ mkDerivation, arithmoi, base, containers }: mkDerivation { pname = "cyclotomic"; - version = "0.4.3"; - sha256 = "173c9771105e20170f75c7ade6d96246f90c06a8385731bfce9166896bf72e93"; + version = "0.4.4"; + sha256 = "72ef126d3bf18542a709d740baef78dc4e4a065e1044fd50274a3730e3feeb97"; libraryHaskellDepends = [ arithmoi base containers ]; - jailbreak = true; description = "A subfield of the complex numbers for exact calculation"; license = stdenv.lib.licenses.gpl3; hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; @@ -52373,36 +52497,35 @@ self: { "darcs" = callPackage ({ mkDerivation, array, attoparsec, base, base16-bytestring, binary , bytestring, cmdargs, containers, cryptohash, curl, data-ordlist - , dataenc, directory, filepath, FindBin, hashable, haskeline, html - , HTTP, HUnit, mmap, mtl, network, network-uri, old-locale - , old-time, parsec, process, QuickCheck, random, regex-applicative - , regex-compat-tdfa, shelly, split, tar, terminfo, test-framework - , test-framework-hunit, test-framework-quickcheck2, text, time - , transformers, transformers-compat, unix, unix-compat, utf8-string - , vector, zip-archive, zlib + , directory, filepath, FindBin, hashable, haskeline, html, HTTP + , HUnit, mmap, mtl, network, network-uri, old-locale, old-time + , parsec, process, QuickCheck, random, regex-applicative + , regex-compat-tdfa, sandi, shelly, split, tar, terminfo + , test-framework, test-framework-hunit, test-framework-quickcheck2 + , text, time, transformers, transformers-compat, unix, unix-compat + , utf8-string, vector, zip-archive, zlib }: mkDerivation { pname = "darcs"; - version = "2.10.1"; - sha256 = "f1ef65b43780e7593ca1afdae5ecf44ed91d62cc1be360693a52c5ff7b57ee94"; + version = "2.10.2"; + sha256 = "6337d3fac04711fa2ef5813558b409c59166c5599b0c9d68c418d21cdccfb327"; configureFlags = [ "-fforce-char8-encoding" "-flibrary" ]; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ array attoparsec base base16-bytestring binary bytestring - containers cryptohash data-ordlist dataenc directory filepath - hashable haskeline html HTTP mmap mtl network network-uri - old-locale old-time parsec process random regex-applicative - regex-compat-tdfa tar terminfo text time transformers - transformers-compat unix unix-compat utf8-string vector zip-archive - zlib + containers cryptohash data-ordlist directory filepath hashable + haskeline html HTTP mmap mtl network network-uri old-locale + old-time parsec process random regex-applicative regex-compat-tdfa + sandi tar terminfo text time transformers transformers-compat unix + unix-compat utf8-string vector zip-archive zlib ]; librarySystemDepends = [ curl ]; executableHaskellDepends = [ base filepath regex-compat-tdfa ]; testHaskellDepends = [ - array base binary bytestring cmdargs containers cryptohash dataenc + array base binary bytestring cmdargs containers cryptohash directory filepath FindBin html HUnit mmap mtl parsec process - QuickCheck regex-compat-tdfa shelly split test-framework + QuickCheck regex-compat-tdfa sandi shelly split test-framework test-framework-hunit test-framework-quickcheck2 text unix-compat zip-archive zlib ]; @@ -54706,8 +54829,8 @@ self: { }: mkDerivation { pname = "dead-code-detection"; - version = "0.3"; - sha256 = "be884f3df2e6c105ab8c8c13779866cd432f786f975a4a8d2c5b76bdba978289"; + version = "0.4"; + sha256 = "bcf7c5e477840d264f1e4e74c5251c140d4410f182fc96a907cad7efc28761d6"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -57661,6 +57784,21 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "diff-gestalt" = callPackage + ({ mkDerivation, base, Diff, KMP, QuickCheck, string-similarity }: + mkDerivation { + pname = "diff-gestalt"; + version = "0.2.0.0"; + sha256 = "734d221512635a874d5aa05704e3a101d7472cb0e30ac7f40ff24c7da6f258a9"; + libraryHaskellDepends = [ + base Diff KMP QuickCheck string-similarity + ]; + testHaskellDepends = [ base Diff ]; + homepage = "http://github.com/chrismwendt/diff-gestalt"; + description = "A diff algorithm based on recursive longest common substrings"; + license = "unknown"; + }) {}; + "diff-parse" = callPackage ({ mkDerivation, attoparsec, base, hspec, text }: mkDerivation { @@ -60372,6 +60510,20 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "double-metaphone" = callPackage + ({ mkDerivation, base, bytestring }: + mkDerivation { + pname = "double-metaphone"; + version = "0.0.1"; + sha256 = "7a73926453e670475b350a7a4474fc871efacec42b150cd767c3ea34426be5d1"; + revision = "1"; + editedCabalFile = "bd8a01ddbe3c8ed20556e0f16f3bced93c6867ac51b859bd91ff8c04bf5fddde"; + libraryHaskellDepends = [ base bytestring ]; + homepage = "https://github.com/christian-marie/double-metaphone"; + description = "Haskell bindings to a C double-metaphone implementation"; + license = "GPL"; + }) {}; + "dove" = callPackage ({ mkDerivation, acl2, base }: mkDerivation { @@ -65139,12 +65291,12 @@ self: { license = stdenv.lib.licenses.mit; }) {}; - "exact-pi_0_3_1_0" = callPackage + "exact-pi_0_4_0_0" = callPackage ({ mkDerivation, base, numtype-dk }: mkDerivation { pname = "exact-pi"; - version = "0.3.1.0"; - sha256 = "bb10c3c9954445cef3af7ba4b6f3d59e8231ca2c76671d690a5fd453c6881776"; + version = "0.4.0.0"; + sha256 = "4d0e5742b4591b0458cd0396f186c88d9679fb80b53c918a69d3e359cd71acfd"; libraryHaskellDepends = [ base numtype-dk ]; homepage = "https://github.com/dmcclean/exact-pi"; description = "Exact rational multiples of pi (and integer powers of pi)"; @@ -65546,8 +65698,8 @@ self: { ({ mkDerivation, base }: mkDerivation { pname = "exit-codes"; - version = "0.1.0.0"; - sha256 = "772877d26bf513f0954c7ea31b18832fa378f483e6c03baf12d9f9d6f0483239"; + version = "0.1.1.0"; + sha256 = "0185d88b9594cd286d67bba6bf24ebe1be559310552ec7fe3f6d2b0f272f1f6d"; libraryHaskellDepends = [ base ]; homepage = "http://github.com/JustusAdam/exit-codes"; description = "Exit codes as defined by BSD"; @@ -67894,10 +68046,29 @@ self: { libraryPkgconfigDepends = [ fftw fftwFloat ]; testHaskellDepends = [ base carray QuickCheck storable-complex ]; jailbreak = true; + doCheck = false; description = "Bindings to the FFTW library"; license = stdenv.lib.licenses.bsd3; }) {inherit (pkgs) fftw; inherit (pkgs) fftwFloat;}; + "fft_0_1_8_2" = callPackage + ({ mkDerivation, array, base, carray, fftw, fftwFloat, ix-shapable + , QuickCheck, storable-complex, syb, transformers + }: + mkDerivation { + pname = "fft"; + version = "0.1.8.2"; + sha256 = "deead91d5fd5ef5ab9a8fec155e661223aa91a8a207dfd70153b6f5491b01e0c"; + libraryHaskellDepends = [ + array base carray ix-shapable storable-complex syb transformers + ]; + libraryPkgconfigDepends = [ fftw fftwFloat ]; + testHaskellDepends = [ base carray QuickCheck storable-complex ]; + description = "Bindings to the FFTW library"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {inherit (pkgs) fftw; inherit (pkgs) fftwFloat;}; + "fftwRaw" = callPackage ({ mkDerivation, base, fftw }: mkDerivation { @@ -69771,33 +69942,38 @@ self: { }) {}; "fn" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring, hspec, http-types - , text, wai + ({ mkDerivation, base, blaze-builder, bytestring, directory + , filepath, hspec, http-types, text, unordered-containers, wai + , wai-extra }: mkDerivation { pname = "fn"; - version = "0.1.4.0"; - sha256 = "980cee1b30251c06650f2d357217aa3d8d86de1c9dd4b49353e98028515e4c13"; + version = "0.2.0.0"; + sha256 = "56ce8492016a576e3cb15283984756a00c1a4c3784ee9861fd75f3ddfe290841"; libraryHaskellDepends = [ - base blaze-builder bytestring http-types text wai + base blaze-builder bytestring directory filepath http-types text + unordered-containers wai wai-extra ]; - testHaskellDepends = [ base hspec http-types text wai ]; - homepage = "http://github.com/dbp/fn#readme"; + testHaskellDepends = [ + base directory filepath hspec http-types text unordered-containers + wai wai-extra + ]; + homepage = "http://github.cxom/dbp/fn#readme"; description = "A functional web framework"; license = stdenv.lib.licenses.isc; }) {}; "fn-extra" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring, either, heist + ({ mkDerivation, base, blaze-builder, bytestring, either, fn, heist , http-types, lens, mtl, text, wai, wai-util, xmlhtml }: mkDerivation { pname = "fn-extra"; - version = "0.1.1.0"; - sha256 = "7d1c5e74ba3a2440f907e65c056e4709b8f0066abc04a957c18cb541c47eeaa0"; + version = "0.2.0.0"; + sha256 = "4463c870b596532599fdfcd0dca53420119bf92d422f4344b5859b0108456538"; libraryHaskellDepends = [ - base blaze-builder bytestring either heist http-types lens mtl text - wai wai-util xmlhtml + base blaze-builder bytestring either fn heist http-types lens mtl + text wai wai-util xmlhtml ]; homepage = "http://github.com/dbp/fn#readme"; description = "Extras for Fn, a functional web framework"; @@ -73414,16 +73590,16 @@ self: { }) {}; "geoip2" = callPackage - ({ mkDerivation, base, binary, bytestring, bytestring-mmap - , containers, iproute, reinterpret-cast, text + ({ mkDerivation, base, bytestring, cereal, containers, iproute + , mmap, reinterpret-cast, text }: mkDerivation { pname = "geoip2"; - version = "0.1.0.2"; - sha256 = "7b2edbe6619e5da2ac9be1b980134813a04312bac88b68780f62ad7374270532"; + version = "0.1.0.4"; + sha256 = "9167b8822b2aa59f24d12f3baa9c5c4f16e04e1c85f3d35af388922a17f51ec0"; libraryHaskellDepends = [ - base binary bytestring bytestring-mmap containers iproute - reinterpret-cast text + base bytestring cereal containers iproute mmap reinterpret-cast + text ]; description = "Pure haskell interface to MaxMind GeoIP database"; license = stdenv.lib.licenses.bsd3; @@ -73526,8 +73702,8 @@ self: { }: mkDerivation { pname = "getopt-generics"; - version = "0.11.0.3"; - sha256 = "914586484530161d8163602c557e7cb1677561debb05dec9c517aab0a40fe0d7"; + version = "0.12"; + sha256 = "f13fef8a35dbd5d2da9b5a8eb7361c848f973a70edb3ef243f0b4bfc409e5c19"; libraryHaskellDepends = [ base base-compat base-orphans generics-sop tagged ]; @@ -73964,6 +74140,8 @@ self: { pname = "ghc-mod"; version = "5.4.0.0"; sha256 = "736652a2f63f9e8625c859c94f193ad8ac9f8fe793bbee672b65576309bfb069"; + revision = "1"; + editedCabalFile = "c5f3b7fcc8bbaef87fa35c055714581435b82cbf1c1a43241b554c74b4413c48"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -74137,6 +74315,25 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "ghc-session" = callPackage + ({ mkDerivation, base, exceptions, ghc, ghc-mtl, ghc-paths + , transformers + }: + mkDerivation { + pname = "ghc-session"; + version = "0.1.0.2"; + sha256 = "6c2c50b2b073dc33066b487dc785e793532dc224609bcff39f87872c11937d4b"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base exceptions ghc ghc-mtl ghc-paths transformers + ]; + executableHaskellDepends = [ base transformers ]; + homepage = "http://github.com/pmlodawski/ghc-session"; + description = "Simplified GHC API"; + license = stdenv.lib.licenses.mit; + }) {}; + "ghc-simple" = callPackage ({ mkDerivation, base, directory, filepath, ghc, ghc-paths }: mkDerivation { @@ -74635,6 +74832,7 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "Atk bindings"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) atk;}; "gi-cairo" = callPackage @@ -74652,6 +74850,7 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "cairo bindings"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {cairo-gobject = null;}; "gi-gdk" = callPackage @@ -74671,6 +74870,7 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "Gdk bindings"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {gdk3 = null;}; "gi-gdkpixbuf" = callPackage @@ -74689,6 +74889,7 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "GdkPixbuf bindings"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) gdk_pixbuf;}; "gi-gio" = callPackage @@ -74707,6 +74908,7 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "Gio bindings"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) glib;}; "gi-glib" = callPackage @@ -74724,6 +74926,7 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "GLib bindings"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) glib;}; "gi-gobject" = callPackage @@ -74742,6 +74945,7 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "GObject bindings"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) glib;}; "gi-gtk" = callPackage @@ -74762,6 +74966,7 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "Gtk bindings"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {gtk3 = null;}; "gi-javascriptcore" = callPackage @@ -74779,6 +74984,7 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "JavaScriptCore bindings"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {javascriptcoregtk = null;}; "gi-notify" = callPackage @@ -74798,6 +75004,7 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "Notify bindings"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) gdk_pixbuf;}; "gi-pango" = callPackage @@ -74816,6 +75023,7 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "Pango bindings"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs.gnome) pango;}; "gi-soup" = callPackage @@ -74834,6 +75042,7 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "Soup bindings"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs.gnome) libsoup;}; "gi-vte" = callPackage @@ -74853,6 +75062,7 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "Vte bindings"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs.gnome) vte;}; "gi-webkit" = callPackage @@ -74874,6 +75084,7 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "WebKit bindings"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) webkit;}; "gimlh" = callPackage @@ -75123,38 +75334,40 @@ self: { }) {}; "git-annex_5_20150727" = callPackage - ({ mkDerivation, aeson, async, aws, base, blaze-builder - , bloomfilter, bup, byteable, bytestring, case-insensitive - , clientsession, conduit, conduit-extra, containers, crypto-api - , cryptohash, curl, data-default, DAV, dbus, directory, dlist, dns - , edit-distance, esqueleto, exceptions, fdo-notify, feed, filepath - , git, gnupg, gnutls, hinotify, hslogger, http-client, http-conduit - , http-types, IfElse, json, lsof, MissingH, monad-control - , monad-logger, mtl, network, network-info, network-multicast - , network-protocol-xmpp, network-uri, old-locale, openssh - , optparse-applicative, path-pieces, perl, persistent - , persistent-sqlite, persistent-template, process, QuickCheck - , random, regex-tdfa, resourcet, rsync, SafeSemaphore, sandi - , securemem, shakespeare, stm, tasty, tasty-hunit, tasty-quickcheck - , tasty-rerun, template-haskell, text, time, torrent, transformers - , unix, unix-compat, utf8-string, uuid, wai, wai-extra, warp - , warp-tls, wget, which, xml-types, yesod, yesod-core - , yesod-default, yesod-form, yesod-static + ({ mkDerivation, aeson, async, base, blaze-builder, bloomfilter + , bup, byteable, bytestring, case-insensitive, clientsession + , containers, crypto-api, cryptohash, curl, data-default, DAV, dbus + , directory, dlist, dns, edit-distance, esqueleto, exceptions + , fdo-notify, feed, filepath, git, gnupg, gnutls, hinotify + , hslogger, http-client, http-conduit, http-types, IfElse, json + , lsof, MissingH, monad-control, monad-logger, mtl, network + , network-info, network-multicast, network-protocol-xmpp + , network-uri, old-locale, openssh, optparse-applicative + , path-pieces, perl, persistent, persistent-sqlite + , persistent-template, process, QuickCheck, random, regex-tdfa + , resourcet, rsync, SafeSemaphore, sandi, securemem, shakespeare + , stm, tasty, tasty-hunit, tasty-quickcheck, tasty-rerun + , template-haskell, text, time, torrent, transformers, unix + , unix-compat, utf8-string, uuid, wai, wai-extra, warp, warp-tls + , wget, which, xml-types, yesod, yesod-core, yesod-default + , yesod-form, yesod-static }: mkDerivation { pname = "git-annex"; version = "5.20150727"; sha256 = "9826836bd0eb4e35be8664862405afbf2ff4dff9a643b2f8ec61c295bd16099f"; + revision = "1"; + editedCabalFile = "a9a36ed856cc4b973682e147a107ade4b55542f832c655445c4f2da570398840"; configureFlags = [ "-fassistant" "-fproduction" ]; isLibrary = false; isExecutable = true; executableHaskellDepends = [ - aeson async aws base blaze-builder bloomfilter byteable bytestring - case-insensitive clientsession conduit conduit-extra containers - crypto-api cryptohash data-default DAV dbus directory dlist dns - edit-distance esqueleto exceptions fdo-notify feed filepath gnutls - hinotify hslogger http-client http-conduit http-types IfElse json - MissingH monad-control monad-logger mtl network network-info + aeson async base blaze-builder bloomfilter byteable bytestring + case-insensitive clientsession containers crypto-api cryptohash + data-default DAV dbus directory dlist dns edit-distance esqueleto + exceptions fdo-notify feed filepath gnutls hinotify hslogger + http-client http-conduit http-types IfElse json MissingH + monad-control monad-logger mtl network network-info network-multicast network-protocol-xmpp network-uri old-locale optparse-applicative path-pieces persistent persistent-sqlite persistent-template process QuickCheck random regex-tdfa resourcet @@ -81338,6 +81551,22 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "hScraper" = callPackage + ({ mkDerivation, base, bytestring, directory, HTTP, http-conduit + , http-types, parsec, process, regex-compat, text, transformers + }: + mkDerivation { + pname = "hScraper"; + version = "0.1.0.0"; + sha256 = "955cb0d84ebfcddd252aadb6dcc565de4db2e16324623d25cac7159c79c3c16a"; + libraryHaskellDepends = [ + base bytestring directory HTTP http-conduit http-types parsec + process regex-compat text transformers + ]; + description = "A Haskell library to scrape and crawl web-pages"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "hSimpleDB" = callPackage ({ mkDerivation, base, bytestring, Crypto, dataenc, HTTP, hxt , network, old-locale, old-time, utf8-string @@ -85720,6 +85949,7 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "Generate Haskell bindings for GObject Introspection capable libraries"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) glib; inherit (pkgs) gobjectIntrospection;}; "haskell-gi-base" = callPackage @@ -85733,6 +85963,7 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi-base"; description = "Foundation for libraries generated by haskell-gi"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) glib;}; "haskell-import-graph" = callPackage @@ -88183,8 +88414,8 @@ self: { }: mkDerivation { pname = "hasql-postgres-options"; - version = "0.1.4"; - sha256 = "c4e9198ad2019426308825f008a86d8424da22187aadfd38931ede61328a5aa6"; + version = "0.1.5"; + sha256 = "a2204c448f7a494d16f37ae36624914f73fc12bd7f25154d19706ea7302a5a90"; libraryHaskellDepends = [ base-prelude hasql-postgres optparse-applicative ]; @@ -90944,6 +91175,7 @@ self: { homepage = "http://github.com/danstiner/hfmt"; description = "Haskell source code formatter"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hfoil" = callPackage @@ -91286,8 +91518,8 @@ self: { }: mkDerivation { pname = "hgrib"; - version = "0.3.0.0"; - sha256 = "4580e6bf46970286bbcc7300791b03b02623a068ec7094acac6782ce7055db54"; + version = "0.3.1.0"; + sha256 = "d3e0d4b1088934c230c566458e327b535733de602aa96ca68fc9236b65e3d73b"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base transformers ]; @@ -98718,8 +98950,8 @@ self: { }: mkDerivation { pname = "hsimport"; - version = "0.6.6"; - sha256 = "6c7da9d9dfb008370de456935639efd19fedb1adf63adbd41db86df9f0b02771"; + version = "0.6.7"; + sha256 = "545a8be7ea5a52d49b32180ed9fcd4b84adc83ca57200334eebb857f6b44a66a"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -101148,7 +101380,6 @@ self: { testHaskellDepends = [ base directory filepath HUnit test-framework test-framework-hunit ]; - doCheck = false; homepage = "https://github.com/mrkkrp/htaglib"; description = "Bindings to TagLib, audio meta-data library"; license = stdenv.lib.licenses.bsd3; @@ -103412,6 +103643,18 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) ruby;}; + "huckleberry" = callPackage + ({ mkDerivation, base, bytestring, mtl, serialport }: + mkDerivation { + pname = "huckleberry"; + version = "0.9.0.0"; + sha256 = "fbd6c4f74638987ef55f924410f42ac8a4d3782423b43c36f09c9f901a6747cb"; + libraryHaskellDepends = [ base bytestring mtl serialport ]; + jailbreak = true; + description = "haskell EDSL Huckleberry"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "huffman" = callPackage ({ mkDerivation, base, containers, fingertree }: mkDerivation { @@ -103883,6 +104126,7 @@ self: { aeson attoparsec base bytestring hedis hspec hspec-contrib HUnit text time uuid ]; + doCheck = false; homepage = "http://github.com/dbp/hworker"; description = "A reliable at-least-once job queue built on top of redis"; license = stdenv.lib.licenses.isc; @@ -103890,17 +104134,18 @@ self: { }) {}; "hworker-ses" = callPackage - ({ mkDerivation, aeson, amazonka, amazonka-ses, base, hworker, lens - , text, time, unordered-containers + ({ mkDerivation, aeson, amazonka, amazonka-core, amazonka-ses, base + , hworker, lens, text, time, unordered-containers }: mkDerivation { pname = "hworker-ses"; - version = "0.1.0.0"; - sha256 = "46f14e8bb087bd0dccadfe8257e402562c0ca4824a9de24852fb0f0acc2d5933"; + version = "0.1.1.0"; + sha256 = "dd5330691585b39ff0ddba8eb7edd2129a5610bae8a0493c2855f2786a3581c7"; libraryHaskellDepends = [ - aeson amazonka amazonka-ses base hworker lens text time - unordered-containers + aeson amazonka amazonka-core amazonka-ses base hworker lens text + time unordered-containers ]; + doCheck = false; homepage = "http://github.com/dbp/hworker-ses"; description = "Library for sending email with Amazon's SES and hworker"; license = stdenv.lib.licenses.isc; @@ -105948,7 +106193,7 @@ self: { ({ mkDerivation, annotated-wl-pprint, ansi-terminal, ansi-wl-pprint , base, base64-bytestring, binary, blaze-html, blaze-markup , bytestring, cheapskate, containers, deepseq, directory, filepath - , fingertree, haskeline, hscurses, libffi, mtl, network + , fingertree, gmp, haskeline, hscurses, libffi, mtl, network , optparse-applicative, parsers, pretty, process, safe, split, text , time, transformers, transformers-compat, trifecta, uniplate, unix , unordered-containers, utf8-string, vector @@ -105956,8 +106201,8 @@ self: { }: mkDerivation { pname = "idris"; - version = "0.9.19.1"; - sha256 = "ec61914e6099e1159157f1528348b2b67c46808a97fabd6a5f9d4addb60ec480"; + version = "0.9.20"; + sha256 = "0d9a886bfb137d67c9a2ae8b52be599176bdc08b03f097b6353f90eb0392ad55"; configureFlags = [ "-fcurses" "-fffi" "-fgmp" ]; isLibrary = true; isExecutable = true; @@ -105970,14 +106215,14 @@ self: { transformers-compat trifecta uniplate unix unordered-containers utf8-string vector vector-binary-instances zip-archive zlib ]; + librarySystemDepends = [ gmp ]; executableHaskellDepends = [ base directory filepath haskeline transformers ]; - jailbreak = true; homepage = "http://www.idris-lang.org/"; description = "Functional Programming Language with Dependent Types"; license = stdenv.lib.licenses.bsd3; - }) {}; + }) {inherit (pkgs) gmp;}; "ieee" = callPackage ({ mkDerivation, base }: @@ -112063,6 +112308,7 @@ self: { homepage = "http://www.keera.es/blog/community/"; description = "Rapid Gtk Application Development - Protected Reactive Models"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "keera-hails-mvc-solutions-config" = callPackage @@ -112174,6 +112420,7 @@ self: { homepage = "http://www.keera.es/blog/community/"; description = "Haskell on Rails - Sockets as Reactive Values"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "keera-hails-reactive-polling" = callPackage @@ -112189,6 +112436,7 @@ self: { homepage = "http://www.keera.es/blog/community/"; description = "Haskell on Rails - Polling based Readable RVs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "keera-hails-reactive-wx" = callPackage @@ -112203,7 +112451,7 @@ self: { homepage = "http://www.keera.es/blog/community/"; description = "Haskell on Rails - Reactive Fields for WX widgets"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "keera-hails-reactive-yampa" = callPackage @@ -112220,6 +112468,7 @@ self: { homepage = "http://www.keera.es/blog/community/"; description = "Haskell on Rails - FRP Yampa Signal Functions as RVs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "keera-hails-reactivelenses" = callPackage @@ -112232,6 +112481,7 @@ self: { homepage = "http://www.keera.es/blog/community/"; description = "Haskell on Gtk rails - Lenses applied to Reactive Values"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "keera-hails-reactivevalues" = callPackage @@ -112251,6 +112501,7 @@ self: { homepage = "http://www.keera.es/blog/community/"; description = "Haskell on Rails - Reactive Values"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "keera-posture" = callPackage @@ -115353,14 +115604,31 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "latex-formulae-hakyll" = callPackage + ({ mkDerivation, base, hakyll, latex-formulae-image + , latex-formulae-pandoc, lrucache, pandoc-types + }: + mkDerivation { + pname = "latex-formulae-hakyll"; + version = "0.1.0.0"; + sha256 = "fa990f5ebde658ceb621b9de60d65f9c09ecf5257db2db8ae70b03c943903b98"; + libraryHaskellDepends = [ + base hakyll latex-formulae-image latex-formulae-pandoc lrucache + pandoc-types + ]; + homepage = "https://github.com/liamoc/latex-formulae#readme"; + description = "Use actual LaTeX to render formulae inside Hakyll pages"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "latex-formulae-image" = callPackage ({ mkDerivation, base, directory, errors, filepath, JuicyPixels , process, temporary, transformers }: mkDerivation { pname = "latex-formulae-image"; - version = "0.1.0.1"; - sha256 = "77535f8b1bb9e0cea2269d43db79c78ad621345dc077d1ce0199ca2a451ec218"; + version = "0.1.1.0"; + sha256 = "39918993fd736ebfe316ab49a644bf73e918b03697daf98b550854887a1a5f93"; libraryHaskellDepends = [ base directory errors filepath JuicyPixels process temporary transformers @@ -115376,8 +115644,8 @@ self: { }: mkDerivation { pname = "latex-formulae-pandoc"; - version = "0.1.0.1"; - sha256 = "0123717456b0a32260a16bac6b11d8b85c05f36ffdadf0a5d4a4dd24c1ddf46b"; + version = "0.2.0.1"; + sha256 = "8750e2fbff3df30d7dc1e738e2ba959fad0eb58480104621aecd70840a327da6"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -115825,12 +116093,16 @@ self: { }: mkDerivation { pname = "learn-physics"; - version = "0.5"; - sha256 = "58b994134ea22ba37408fc309f0aa7dc67a7c72f4bb9456a59575f722fb8072e"; + version = "0.5.2"; + sha256 = "473585c2c6c8c3503bba1dcbfc308dcb402a67c942a8edb5ed3bfbad1e91830d"; + isLibrary = true; + isExecutable = true; libraryHaskellDepends = [ base gloss gnuplot not-gloss spatial-math vector-space ]; - jailbreak = true; + executableHaskellDepends = [ + base gloss gnuplot not-gloss spatial-math + ]; description = "Haskell code for learning physics"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -120637,7 +120909,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "lucid" = callPackage + "lucid_2_9_2" = callPackage ({ mkDerivation, base, bifunctors, blaze-builder, bytestring , containers, hashable, hspec, HUnit, mtl, parsec, text , transformers, unordered-containers @@ -120658,6 +120930,28 @@ self: { homepage = "https://github.com/chrisdone/lucid"; description = "Clear to write, read and edit DSL for HTML"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "lucid" = callPackage + ({ mkDerivation, base, bifunctors, blaze-builder, bytestring + , containers, hashable, hspec, HUnit, mtl, parsec, text + , transformers, unordered-containers + }: + mkDerivation { + pname = "lucid"; + version = "2.9.3"; + sha256 = "c4279b1c12f4261de5e8405ceaf918055e76e492980e6cd84f12412538162353"; + libraryHaskellDepends = [ + base blaze-builder bytestring containers hashable mtl text + transformers unordered-containers + ]; + testHaskellDepends = [ + base bifunctors hspec HUnit mtl parsec text + ]; + homepage = "https://github.com/chrisdone/lucid"; + description = "Clear to write, read and edit DSL for HTML"; + license = stdenv.lib.licenses.bsd3; }) {}; "lucid-foundation" = callPackage @@ -122722,7 +123016,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "markup" = callPackage + "markup_1_1_0" = callPackage ({ mkDerivation, base, blaze-html, blaze-markup, comonad, hspec , lucid, mtl, text, transformers, urlpath }: @@ -122737,6 +123031,25 @@ self: { testHaskellDepends = [ base hspec ]; description = "Abstraction for markup languages"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "markup" = callPackage + ({ mkDerivation, base, blaze-html, blaze-markup, comonad + , exceptions, lucid, mmorph, monad-control, monad-logger, mtl + , path-extra, resourcet, text, transformers-base, urlpath + }: + mkDerivation { + pname = "markup"; + version = "2.2.0"; + sha256 = "8eccd19b6519f4d36816261061d58c65de56e0163b85df4973168e7d173585b3"; + libraryHaskellDepends = [ + base blaze-html blaze-markup comonad exceptions lucid mmorph + monad-control monad-logger mtl path-extra resourcet text + transformers-base urlpath + ]; + description = "Abstraction for markup languages"; + license = stdenv.lib.licenses.mit; }) {}; "markup-preview" = callPackage @@ -123560,25 +123873,6 @@ self: { }) {}; "megaparsec" = callPackage - ({ mkDerivation, base, bytestring, HUnit, mtl, QuickCheck - , test-framework, test-framework-hunit, test-framework-quickcheck2 - , text, transformers - }: - mkDerivation { - pname = "megaparsec"; - version = "4.1.1"; - sha256 = "7e3e5860312d59dfea5cf99818f12c034cf4e7bbe3d8ff9fcf1b94e79af741ec"; - libraryHaskellDepends = [ base bytestring mtl text transformers ]; - testHaskellDepends = [ - base HUnit mtl QuickCheck test-framework test-framework-hunit - test-framework-quickcheck2 transformers - ]; - homepage = "https://github.com/mrkkrp/megaparsec"; - description = "Monadic parser combinators"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "megaparsec_4_2_0" = callPackage ({ mkDerivation, base, bytestring, HUnit, mtl, QuickCheck , test-framework, test-framework-hunit, test-framework-quickcheck2 , text, transformers @@ -123592,11 +123886,9 @@ self: { base HUnit mtl QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 transformers ]; - jailbreak = true; homepage = "https://github.com/mrkkrp/megaparsec"; description = "Monadic parser combinators"; license = stdenv.lib.licenses.bsd2; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "meldable-heap" = callPackage @@ -123785,8 +124077,8 @@ self: { }: mkDerivation { pname = "memoization-utils"; - version = "0.1.0.0"; - sha256 = "250199ba9357b71434d687c48c2989b9ddae4b9cd376c101aeb651589a0367c5"; + version = "0.1.0.1"; + sha256 = "32a495df7ca1a24ed303393f821d33ce873683a4b398ee07e4c79dc88dc72ab6"; libraryHaskellDepends = [ base containers lrucache time time-units ]; @@ -127273,7 +127565,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "mongoDB" = callPackage + "mongoDB_2_0_8" = callPackage ({ mkDerivation, array, base, binary, bson, bytestring, containers , cryptohash, hashtables, hspec, lifted-base, monad-control, mtl , network, old-locale, parsec, random, random-shuffle, text, time @@ -127292,6 +127584,30 @@ self: { homepage = "https://github.com/mongodb-haskell/mongodb"; description = "Driver (client) for MongoDB, a free, scalable, fast, document DBMS"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "mongoDB" = callPackage + ({ mkDerivation, array, base, base16-bytestring, base64-bytestring + , binary, bson, bytestring, containers, cryptohash, hashtables + , hspec, lifted-base, monad-control, mtl, network, nonce + , old-locale, parsec, random, random-shuffle, text, time + , transformers-base + }: + mkDerivation { + pname = "mongoDB"; + version = "2.0.9"; + sha256 = "aae433636448e8b0b118a74b2110c622a4127ae6184d8c6e9bfba8d67e082237"; + libraryHaskellDepends = [ + array base base16-bytestring base64-bytestring binary bson + bytestring containers cryptohash hashtables lifted-base + monad-control mtl network nonce parsec random random-shuffle text + transformers-base + ]; + testHaskellDepends = [ base hspec mtl old-locale text time ]; + homepage = "https://github.com/mongodb-haskell/mongodb"; + description = "Driver (client) for MongoDB, a free, scalable, fast, document DBMS"; + license = "unknown"; }) {}; "mongodb-queue" = callPackage @@ -129365,18 +129681,18 @@ self: { "mustache" = callPackage ({ mkDerivation, aeson, base, base-unicode-symbols, bytestring , cmdargs, containers, directory, either, filepath, hspec - , ja-base-extra, mtl, parsec, process, scientific, tagsoup - , temporary, text, unordered-containers, vector, yaml + , ja-base-extra, mtl, parsec, process, scientific, temporary, text + , unordered-containers, vector, yaml }: mkDerivation { pname = "mustache"; - version = "0.5.0.0"; - sha256 = "f1db1c60cdf09541cc4a2176a5ed2affaa09666b6d0c7341f65577ee6307b3a2"; + version = "0.5.1.0"; + sha256 = "c6df193215b024b79bb34ec01d1c8c8fa7084887db2def231b943d47b851d882"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ aeson base base-unicode-symbols bytestring containers directory - either filepath ja-base-extra mtl parsec scientific tagsoup text + either filepath ja-base-extra mtl parsec scientific text unordered-containers vector ]; executableHaskellDepends = [ @@ -130324,7 +130640,7 @@ self: { license = stdenv.lib.licenses.asl20; }) {}; - "nats" = callPackage + "nats_1" = callPackage ({ mkDerivation }: mkDerivation { pname = "nats"; @@ -130336,6 +130652,19 @@ self: { homepage = "http://github.com/ekmett/nats/"; description = "Natural numbers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "nats" = callPackage + ({ mkDerivation }: + mkDerivation { + pname = "nats"; + version = "1.1"; + sha256 = "ce64e24dcd62d3e93ca9023c9bda43101298d1161a16de84cb3800f5535a09c4"; + doHaddock = false; + homepage = "http://github.com/ekmett/nats/"; + description = "Natural numbers"; + license = stdenv.lib.licenses.bsd3; }) {}; "nats-queue" = callPackage @@ -137298,6 +137627,8 @@ self: { pname = "papillon"; version = "0.1.0.2"; sha256 = "2a7a6d5b08e6be261dca18cc80a4040a1215a5a8e66953a1e766845455ba4861"; + revision = "1"; + editedCabalFile = "5c1af18fd9437293a3fd51ebfe1386e82e4ec7727be4a0703c5f198138ffb8cd"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -137307,7 +137638,7 @@ self: { base directory filepath monads-tf template-haskell transformers ]; jailbreak = true; - homepage = "https://skami.iocikun.jp/haskell/packages/papillon"; + homepage = "https://skami.iocikun.jp/computer/haskell/packages/papillon"; description = "packrat parser"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -138250,6 +138581,17 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "path-extra" = callPackage + ({ mkDerivation, base, path }: + mkDerivation { + pname = "path-extra"; + version = "0.0.1"; + sha256 = "bd45c7ea5226902a3d25a506e5725a7608c4d3dec6453268d8c23e2100ceddf4"; + libraryHaskellDepends = [ base path ]; + description = "Chris Done's path library, enriched with URL-related goodies"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "path-pieces_0_1_4" = callPackage ({ mkDerivation, base, hspec, HUnit, QuickCheck, text, time }: mkDerivation { @@ -138338,8 +138680,8 @@ self: { }: mkDerivation { pname = "pathtype"; - version = "0.5.5"; - sha256 = "9e50b405ecb681966a278901f74103077d2ac63168280a7a952df14e70c6e488"; + version = "0.6"; + sha256 = "92bc70d7b9f2d495caf54f80d378622e347e57d9262bda6fc503fbe7d986be51"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base deepseq directory QuickCheck time ]; @@ -141625,7 +141967,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "pipes" = callPackage + "pipes_4_1_6" = callPackage ({ mkDerivation, base, mmorph, mtl, QuickCheck, test-framework , test-framework-quickcheck2, transformers }: @@ -141640,6 +141982,24 @@ self: { ]; description = "Compositional pipelines"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "pipes" = callPackage + ({ mkDerivation, base, mmorph, mtl, QuickCheck, test-framework + , test-framework-quickcheck2, transformers + }: + mkDerivation { + pname = "pipes"; + version = "4.1.7"; + sha256 = "104620e6868cc2c4f84c85416ecfce32d53fbbbecaacc7466a0566f574f9d616"; + libraryHaskellDepends = [ base mmorph mtl transformers ]; + testHaskellDepends = [ + base mtl QuickCheck test-framework test-framework-quickcheck2 + transformers + ]; + description = "Compositional pipelines"; + license = stdenv.lib.licenses.bsd3; }) {}; "pipes-aeson_0_4_1_2" = callPackage @@ -141857,6 +142217,48 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "pipes-cacophony" = callPackage + ({ mkDerivation, async, base, bytestring, cacophony, hlint, mtl + , pipes, QuickCheck, tasty, tasty-quickcheck + }: + mkDerivation { + pname = "pipes-cacophony"; + version = "0.1.0"; + sha256 = "f259f272a246d179aa76c1943bef6ceef0c008266b54e4828fc35b419ed66695"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base bytestring cacophony pipes ]; + testHaskellDepends = [ + async base bytestring cacophony hlint mtl pipes QuickCheck tasty + tasty-quickcheck + ]; + doCheck = false; + homepage = "https://github.com/centromere/pipes-cacophony"; + description = "Pipes for Noise-secured network connections"; + license = stdenv.lib.licenses.publicDomain; + }) {}; + + "pipes-cacophony_0_1_1" = callPackage + ({ mkDerivation, async, base, bytestring, cacophony, hlint, mtl + , pipes, QuickCheck, tasty, tasty-quickcheck + }: + mkDerivation { + pname = "pipes-cacophony"; + version = "0.1.1"; + sha256 = "a0af2c1ee6a53e959b7f269a1c29cbbd9ce096977e98e58f503dd62d663cf811"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base bytestring cacophony pipes ]; + testHaskellDepends = [ + async base bytestring cacophony hlint mtl pipes QuickCheck tasty + tasty-quickcheck + ]; + homepage = "https://github.com/centromere/pipes-cacophony"; + description = "Pipes for Noise-secured network connections"; + license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "pipes-cellular" = callPackage ({ mkDerivation, base, bytestring, data-cell, pipes }: mkDerivation { @@ -146525,24 +146927,24 @@ self: { "propellor" = callPackage ({ mkDerivation, ansi-terminal, async, base, bytestring, containers , directory, exceptions, filepath, hslogger, IfElse, MissingH, mtl - , network, process, QuickCheck, time, transformers, unix + , network, process, QuickCheck, stm, text, time, transformers, unix , unix-compat }: mkDerivation { pname = "propellor"; - version = "2.12.0"; - sha256 = "75def2f664d267aa77a9573e8d8a91bb94b52bdca11a6dd05daa7e981b17de28"; + version = "2.13.0"; + sha256 = "a07eaafdea912142b6e5fad2e4bca02bb6058bb65650903f427d9304c16a6cf7"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ ansi-terminal async base bytestring containers directory exceptions filepath hslogger IfElse MissingH mtl network process QuickCheck - time transformers unix unix-compat + stm text time transformers unix unix-compat ]; executableHaskellDepends = [ ansi-terminal async base bytestring containers directory exceptions filepath hslogger IfElse MissingH mtl network process QuickCheck - time transformers unix unix-compat + stm text time transformers unix unix-compat ]; homepage = "https://propellor.branchable.com/"; description = "property-based host configuration management in haskell"; @@ -146952,8 +147354,8 @@ self: { }: mkDerivation { pname = "pseudo-boolean"; - version = "0.1.2.0"; - sha256 = "7ff2120feda6165ee04736a29d2da8b4a39e363e9eedf3ecce52d137e7d96f8d"; + version = "0.1.3.0"; + sha256 = "88eb7ed7ced6ce2df62044fccb7be2269ff19a9fa5e3901b84bf896837ee1b0e"; libraryHaskellDepends = [ attoparsec base bytestring bytestring-builder containers deepseq dlist hashable parsec @@ -148209,14 +148611,16 @@ self: { }: mkDerivation { pname = "quantities"; - version = "0.3.0"; - sha256 = "293b42ad57d16ceaf91e0aaa2423141f6453deb793cae35d46ff578e8fa034b1"; + version = "0.4.0"; + sha256 = "603ef0d1bb4102533ef4221cc5ac533050fb430a3413ec8c7a1bfe707fc7491c"; + isLibrary = true; + isExecutable = true; libraryHaskellDepends = [ base containers mtl parsec ]; + executableHaskellDepends = [ base containers mtl parsec ]; testHaskellDepends = [ base containers doctest Glob hlint hspec mtl parsec process regex-compat ]; - jailbreak = true; homepage = "http://github.com/jdreaver/quantities"; description = "Unit conversion and manipulation library"; license = stdenv.lib.licenses.bsd3; @@ -150416,8 +150820,8 @@ self: { }: mkDerivation { pname = "record-aeson"; - version = "0.1.0.0"; - sha256 = "5b9137e45d7eefaa06c460b54d618343efc886eaac973911ae67a243fc306f08"; + version = "0.1.1"; + sha256 = "ea4001311b55cc24b51863f3bc63b8ee638a73013b8c7372eac289817767c679"; libraryHaskellDepends = [ aeson base base-prelude record template-haskell ]; @@ -151165,6 +151569,7 @@ self: { homepage = "https://github.com/reflex-frp/reflex-dom-contrib"; description = "A playground for experimenting with infrastructure and common code for reflex applications"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "reflex-gloss" = callPackage @@ -156875,8 +157280,8 @@ self: { }: mkDerivation { pname = "sandman"; - version = "0.1.0.1"; - sha256 = "2fe8f28f73345007d259ed9cde4c86ae30a59c6dacadc062210382c073d38fa0"; + version = "0.2.0.0"; + sha256 = "25935a86ce5ec33c04b4203d1aa91bb7fd7cce4af37ccea8f1d4a85660cc7d46"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -157057,19 +157462,27 @@ self: { "sbp" = callPackage ({ mkDerivation, aeson, array, base, base64-bytestring - , basic-prelude, binary, bytestring, data-binary-ieee754, lens - , monad-loops, QuickCheck, tasty, tasty-hunit, tasty-quickcheck - , template-haskell, text, unordered-containers, yaml-light + , basic-prelude, binary, binary-conduit, bytestring, conduit + , conduit-combinators, conduit-extra, data-binary-ieee754, lens + , monad-loops, QuickCheck, resourcet, tasty, tasty-hunit + , tasty-quickcheck, template-haskell, text, unordered-containers + , yaml-light }: mkDerivation { pname = "sbp"; - version = "0.51.1"; - sha256 = "b98b5dd46c3e94801205b0c89741fc4aaf64550fbd7604117241584a786f096a"; + version = "0.51.2"; + sha256 = "be022db6f103abf056783f38d9b3da84875b9b672d2fa593d86f7ad573d05f76"; + isLibrary = true; + isExecutable = true; libraryHaskellDepends = [ aeson array base base64-bytestring basic-prelude binary bytestring data-binary-ieee754 lens monad-loops template-haskell text unordered-containers ]; + executableHaskellDepends = [ + aeson base basic-prelude binary-conduit bytestring conduit + conduit-combinators conduit-extra resourcet + ]; testHaskellDepends = [ aeson base base64-bytestring basic-prelude bytestring QuickCheck tasty tasty-hunit tasty-quickcheck yaml-light @@ -158463,6 +158876,7 @@ self: { homepage = "https://github.com/adamwalker/sdr"; description = "A software defined radio library"; license = stdenv.lib.licenses.bsd3; + platforms = [ "x86_64-darwin" "x86_64-linux" ]; hydraPlatforms = stdenv.lib.platforms.none; }) {}; @@ -159169,16 +159583,16 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "semigroups_0_18" = callPackage + "semigroups_0_18_0_1" = callPackage ({ mkDerivation, base, bytestring, containers, deepseq, hashable - , nats, tagged, text, unordered-containers + , tagged, text, unordered-containers }: mkDerivation { pname = "semigroups"; - version = "0.18"; - sha256 = "b3c1bd2f42fcf014af8377d492c08e9fc789e9f06e4179772247a22dd2cd4899"; + version = "0.18.0.1"; + sha256 = "f6e787519acf261e823d529cc3e5d4fca019075f39f8986649f21891d06d3115"; libraryHaskellDepends = [ - base bytestring containers deepseq hashable nats tagged text + base bytestring containers deepseq hashable tagged text unordered-containers ]; homepage = "http://github.com/ekmett/semigroups/"; @@ -167726,10 +168140,11 @@ self: { ({ mkDerivation, base }: mkDerivation { pname = "spir-v"; - version = "0.0.0.1"; - sha256 = "37adf3770eb6a6162cd0b3395d15c88c3f501d0bf6e089ea7d93b48602d95fa9"; + version = "0.0.0.2"; + sha256 = "6933c99a6e0ce0bb540884c76542b9f2d3095ca43718a0ca9475502f33f9262a"; + revision = "1"; + editedCabalFile = "71fa7971fad8f2ce6d0eab96c2e817235822e5e0e048a844ac1288d35dee278f"; libraryHaskellDepends = [ base ]; - jailbreak = true; homepage = "https://github.com/expipiplus1/spir-v"; description = "Some utilities for reading and writing SPIR-V files"; license = stdenv.lib.licenses.mit; @@ -172807,6 +173222,28 @@ self: { license = "unknown"; }) {}; + "swagger2" = callPackage + ({ mkDerivation, aeson, aeson-qq, base, containers, hashable, hspec + , http-media, HUnit, network, QuickCheck, template-haskell, text + , unordered-containers, vector + }: + mkDerivation { + pname = "swagger2"; + version = "0.1"; + sha256 = "d0dfc842ec0099ba20e8e9b6f2366b7b18bf5715e0ae4e3d29a1b45ed1347c83"; + libraryHaskellDepends = [ + aeson base containers hashable http-media network template-haskell + text unordered-containers + ]; + testHaskellDepends = [ + aeson aeson-qq base hspec HUnit QuickCheck text + unordered-containers vector + ]; + homepage = "https://github.com/GetShopTV/swagger2"; + description = "Swagger 2.0 data model"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "swapper" = callPackage ({ mkDerivation, base, binary, bytestring, deepseq, happstack-data , happstack-state, parallel, tokyocabinet @@ -173143,8 +173580,8 @@ self: { }: mkDerivation { pname = "sync-mht"; - version = "0.3.8.0"; - sha256 = "4d30bf2e5b80b7961eeb3f758ffc28025eaf4afc54cfc9d18647f5aac543b51d"; + version = "0.3.8.1"; + sha256 = "50c82a772ee4b9fbeec1b284d737b7e0699ebae8638cc4cfa97b854ad2289bfe"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -179365,8 +179802,8 @@ self: { ({ mkDerivation, ansi-terminal, base, linear, time, transformers }: mkDerivation { pname = "timeless"; - version = "0.8.1.1"; - sha256 = "256c5c10697afffc91d61197bcb8562387916c178cf83dcd6cce8d96a8cb1c1d"; + version = "0.9.0.1"; + sha256 = "2dd43e752b92715d96e71dd82b65cfd6d9f89c808cb2bb70442d8b133cc01443"; libraryHaskellDepends = [ ansi-terminal base linear time transformers ]; @@ -179735,9 +180172,12 @@ self: { }: mkDerivation { pname = "titlecase"; - version = "0.1.0.1"; - sha256 = "0ebaf2bb1e3f5c3d3f29ad76db118db298bf46a5cd495777cab62c77b2639463"; + version = "0.1.0.2"; + sha256 = "4860625a5233a9cc923224e0d86f113200b6636a79bef209acf40f1dcb631ce1"; + isLibrary = true; + isExecutable = true; libraryHaskellDepends = [ base blaze-markup semigroups text ]; + executableHaskellDepends = [ base blaze-markup text ]; testHaskellDepends = [ base semigroups tasty tasty-hunit tasty-quickcheck text ]; @@ -181510,10 +181950,8 @@ self: { }: mkDerivation { pname = "ttrie"; - version = "0.1.2"; - sha256 = "60060871ee1c40c961ecb66b15c6e2cc0fb573664f9f92c2a3b6db218c5acb26"; - revision = "2"; - editedCabalFile = "f517a1ee4ab2eeefe39ec336a793845f84333835c59c3e90f885dd0711f8fbc0"; + version = "0.1.2.1"; + sha256 = "50444fe989559a0b16120df72765321ffd9de2fd97c943104513d894f21f4a68"; libraryHaskellDepends = [ atomic-primops base hashable primitive stm ]; @@ -181521,7 +181959,6 @@ self: { base containers hashable QuickCheck stm test-framework test-framework-quickcheck2 ]; - jailbreak = true; homepage = "http://github.com/mcschroeder/ttrie"; description = "Contention-free STM hash map"; license = stdenv.lib.licenses.mit; @@ -181894,7 +182331,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "turtle" = callPackage + "turtle_1_2_2" = callPackage ({ mkDerivation, async, base, clock, directory, doctest, foldl , hostname, managed, optional-args, optparse-applicative, process , stm, system-fileio, system-filepath, temporary, text, time @@ -181912,6 +182349,27 @@ self: { testHaskellDepends = [ base doctest ]; description = "Shell programming, Haskell-style"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "turtle" = callPackage + ({ mkDerivation, async, base, clock, directory, doctest, foldl + , hostname, managed, optional-args, optparse-applicative, process + , stm, system-fileio, system-filepath, temporary, text, time + , transformers, unix + }: + mkDerivation { + pname = "turtle"; + version = "1.2.3"; + sha256 = "3669a203887b58621ba20a4192defb3bdbfdf17ac13de80747143f739127d36d"; + libraryHaskellDepends = [ + async base clock directory foldl hostname managed optional-args + optparse-applicative process stm system-fileio system-filepath + temporary text time transformers unix + ]; + testHaskellDepends = [ base doctest ]; + description = "Shell programming, Haskell-style"; + license = stdenv.lib.licenses.bsd3; }) {}; "tweak" = callPackage @@ -183991,8 +184449,8 @@ self: { }: mkDerivation { pname = "uniform-io"; - version = "0.2.0.0"; - sha256 = "f9f64502051b6537e175e06228d2b9e295953d17ca96941eb179363e748b7352"; + version = "1.0.0.0"; + sha256 = "758c265cc4838f2536c9adfe0c4e0e3839b4c29c2241ad89ab941925a62ceb1e"; libraryHaskellDepends = [ attoparsec base bytestring data-default-class iproute network transformers word8 @@ -184000,7 +184458,7 @@ self: { librarySystemDepends = [ openssl ]; testHaskellDepends = [ attoparsec base bytestring Cabal ]; homepage = "https://sealgram.com/git/haskell/uniform-io"; - description = "Uniform IO over files, network, watever"; + description = "Uniform IO over files, network, anything"; license = stdenv.lib.licenses.mit; hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) openssl;}; @@ -185228,7 +185686,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "urlpath" = callPackage + "urlpath_2_1_0" = callPackage ({ mkDerivation, base, hspec, monoid-subclasses, mtl, QuickCheck , quickcheck-instances, text, transformers }: @@ -185247,6 +185705,24 @@ self: { ]; description = "Painfully simple URL writing combinators"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "urlpath" = callPackage + ({ mkDerivation, base, exceptions, mmorph, monad-control + , monad-logger, mtl, path-extra, resourcet, transformers + , transformers-base + }: + mkDerivation { + pname = "urlpath"; + version = "3.3.0"; + sha256 = "b9539bd28c4f4b48047c7bcf6ec746e01ee1c88538d3bb0d0c2c778ecd8d3004"; + libraryHaskellDepends = [ + base exceptions mmorph monad-control monad-logger mtl path-extra + resourcet transformers transformers-base + ]; + description = "Painfully simple URL deployment"; + license = stdenv.lib.licenses.mit; }) {}; "urn" = callPackage @@ -186357,23 +186833,6 @@ self: { }) {}; "validate-input" = callPackage - ({ mkDerivation, base, bytestring, either, hspec, mtl, pcre-heavy - , QuickCheck, string-conversions, text - }: - mkDerivation { - pname = "validate-input"; - version = "0.3.0.0"; - sha256 = "ee469618a0a4ec7a154f694512383ae1441dd634dd5079f4612dc12e519a0a16"; - libraryHaskellDepends = [ - base bytestring either mtl pcre-heavy string-conversions text - ]; - testHaskellDepends = [ base hspec QuickCheck ]; - homepage = "https://github.com/agrafix/validate-input"; - description = "Input validation combinator library"; - license = stdenv.lib.licenses.mit; - }) {}; - - "validate-input_0_4_0_0" = callPackage ({ mkDerivation, base, bytestring, either, hspec, mtl, pcre-heavy , QuickCheck, semigroups, string-conversions, text }: @@ -186389,7 +186848,6 @@ self: { homepage = "https://github.com/agrafix/validate-input"; description = "Input validation combinator library"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "validated-literals" = callPackage @@ -187481,6 +187939,7 @@ self: { ]; description = "Types and parsers for software version numbers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vhd" = callPackage @@ -188538,7 +188997,7 @@ self: { license = stdenv.lib.licenses.mit; }) {}; - "wai-cors" = callPackage + "wai-cors_0_2_3" = callPackage ({ mkDerivation, attoparsec, base, base-unicode-symbols, bytestring , case-insensitive, charset, directory, filepath, http-types, mtl , network, parsers, process, text, transformers, wai @@ -188560,6 +189019,32 @@ self: { homepage = "https://github.com/larskuhtz/wai-cors"; description = "CORS for WAI"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "wai-cors" = callPackage + ({ mkDerivation, attoparsec, base, base-unicode-symbols, bytestring + , case-insensitive, charset, directory, filepath, http-types, mtl + , network, parsers, process, tasty, tasty-hunit, text, transformers + , wai, wai-extra, wai-websockets, warp, websockets + }: + mkDerivation { + pname = "wai-cors"; + version = "0.2.4"; + sha256 = "1d404aa28cdc89da3ca8f9edf990508dc9b106409f786204eb951cc548f27568"; + libraryHaskellDepends = [ + attoparsec base base-unicode-symbols bytestring case-insensitive + charset http-types mtl parsers transformers wai + ]; + testHaskellDepends = [ + base base-unicode-symbols directory filepath http-types network + process tasty tasty-hunit text wai wai-extra wai-websockets warp + websockets + ]; + doCheck = false; + homepage = "https://github.com/larskuhtz/wai-cors"; + description = "CORS for WAI"; + license = stdenv.lib.licenses.mit; }) {}; "wai-devel" = callPackage @@ -193957,7 +194442,10 @@ self: { pname = "wumpus-core"; version = "0.52.1"; sha256 = "a8d92ed717140823acee79c5b6bfc2a6928619ce3c8f82cf1f59ecb47a480983"; + revision = "1"; + editedCabalFile = "309c49da6f6eb268ebcbe9ed3faac18c3e25c884b0b16b7c8e29dfd8a0705fcb"; libraryHaskellDepends = [ base containers time vector-space ]; + jailbreak = true; homepage = "http://code.google.com/p/copperbox/"; description = "Pure Haskell PostScript and SVG generation"; license = stdenv.lib.licenses.bsd3; @@ -196235,8 +196723,8 @@ self: { }: mkDerivation { pname = "xmonad-windownames"; - version = "0.1.0.0"; - sha256 = "c9fec30301d30c4e24aae43185f3f74474abec82a395b9559d7dd916d0062ef0"; + version = "0.1.0.1"; + sha256 = "3519dd0ede27ecba3a0694f81e39d2e41fab1144170cb98a3b6e086e270aa885"; libraryHaskellDepends = [ base containers utf8-string xmonad xmonad-contrib ]; @@ -201209,30 +201697,84 @@ self: { }) {}; "yesod-raml" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, hspec - , network-uri, optparse-applicative, regex-posix, template-haskell - , text, unordered-containers, yaml, yesod-core + ({ mkDerivation, aeson, base, bytestring, containers, data-default + , hspec, network-uri, regex-posix, template-haskell, text, th-lift + , unordered-containers, vector, yaml, yesod-core }: mkDerivation { pname = "yesod-raml"; - version = "0.1.4"; - sha256 = "4f5b7fbe2ca2b7e2db633f2919bb5694a827e8995afd112fc95bccc694c0df59"; - isLibrary = true; - isExecutable = true; + version = "0.2.0"; + sha256 = "435ee3add5ed413b655b21619c9830b10148ac465f812aa66023e1ef4256d96c"; libraryHaskellDepends = [ - aeson base bytestring containers network-uri regex-posix - template-haskell text unordered-containers yaml yesod-core + aeson base bytestring containers data-default network-uri + regex-posix template-haskell text th-lift unordered-containers + vector yaml yesod-core ]; + testHaskellDepends = [ + aeson base bytestring containers data-default hspec network-uri + regex-posix template-haskell text th-lift unordered-containers + vector yaml yesod-core + ]; + description = "RAML style route definitions for Yesod"; + license = stdenv.lib.licenses.mit; + }) {}; + + "yesod-raml-bin" = callPackage + ({ mkDerivation, base, blaze-html, blaze-markup, bytestring + , containers, optparse-applicative, shakespeare, template-haskell + , text, yaml, yesod-markdown, yesod-raml, yesod-raml-docs + }: + mkDerivation { + pname = "yesod-raml-bin"; + version = "0.1.1"; + sha256 = "c839093460d674a0ef7e43d71df0207de8f26732398b188ebc420a4dbe200839"; + isLibrary = false; + isExecutable = true; executableHaskellDepends = [ - aeson base bytestring containers network-uri optparse-applicative - regex-posix template-haskell text unordered-containers yaml - yesod-core + base blaze-html blaze-markup bytestring containers + optparse-applicative shakespeare template-haskell text yaml + yesod-markdown yesod-raml yesod-raml-docs + ]; + description = "The raml helper executable"; + license = stdenv.lib.licenses.mit; + }) {}; + + "yesod-raml-docs" = callPackage + ({ mkDerivation, base, bytestring, containers, shakespeare + , template-haskell, text, yaml, yesod-markdown, yesod-raml + }: + mkDerivation { + pname = "yesod-raml-docs"; + version = "0.1.1"; + sha256 = "9b256e1de318bbaa781fda8cc0d76eeaa3ab676a780e63f946d5b96a6a10bc51"; + libraryHaskellDepends = [ + base bytestring containers shakespeare template-haskell text yaml + yesod-markdown yesod-raml + ]; + description = "A html documentation generator library for RAML"; + license = stdenv.lib.licenses.mit; + }) {}; + + "yesod-raml-mock" = callPackage + ({ mkDerivation, aeson, base, bytestring, containers, hspec + , network-uri, regex-posix, template-haskell, text + , unordered-containers, vector, yaml, yesod-core, yesod-raml + , yesod-test + }: + mkDerivation { + pname = "yesod-raml-mock"; + version = "0.1.0"; + sha256 = "c5c3568a27fa02df0dd0f740cbd2ddb708d7193f8597e87ce4ec79a202842684"; + libraryHaskellDepends = [ + base bytestring containers template-haskell text yaml yesod-core + yesod-raml ]; testHaskellDepends = [ aeson base bytestring containers hspec network-uri regex-posix - template-haskell text unordered-containers yaml yesod-core + template-haskell text unordered-containers vector yaml yesod-core + yesod-raml yesod-test ]; - description = "RAML style route definitions for Yesod"; + description = "A mock-handler generator library from RAML"; license = stdenv.lib.licenses.mit; }) {}; @@ -202872,8 +203414,8 @@ self: { }: mkDerivation { pname = "zerobin"; - version = "1.2.0"; - sha256 = "0e4194c0d3061bbb2a6f1affd836164b52746a5227844d62835c3e0185bf5fe5"; + version = "1.5.0"; + sha256 = "f2ad48725b473c417f1b4c607b5e1f46e3d6fdfa50aaf15a576e86c8a020f318"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -202886,6 +203428,7 @@ self: { jailbreak = true; description = "Post to 0bin services"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "zeromq-haskell" = callPackage diff --git a/pkgs/development/interpreters/xulrunner/default.nix b/pkgs/development/interpreters/xulrunner/default.nix index e5c6397ff82..d61b4e5f2f1 100644 --- a/pkgs/development/interpreters/xulrunner/default.nix +++ b/pkgs/development/interpreters/xulrunner/default.nix @@ -65,9 +65,9 @@ stdenv.mkDerivation rec { preConfigure = '' + configureScript=$(pwd)/configure mkdir ../objdir cd ../objdir - configureScript=../mozilla-release/configure ''; meta = { diff --git a/pkgs/development/libraries/check/default.nix b/pkgs/development/libraries/check/default.nix index 3841878341c..3bfcde57422 100644 --- a/pkgs/development/libraries/check/default.nix +++ b/pkgs/development/libraries/check/default.nix @@ -1,4 +1,6 @@ -{ fetchurl, stdenv }: +{ fetchurl, stdenv +, CoreServices +}: stdenv.mkDerivation rec { name = "check-${version}"; @@ -12,6 +14,8 @@ stdenv.mkDerivation rec { # Test can randomly fail: http://hydra.nixos.org/build/7243912 doCheck = false; + buildInputs = stdenv.lib.optional stdenv.isDarwin CoreServices; + meta = with stdenv.lib; { description = "Unit testing framework for C"; diff --git a/pkgs/development/libraries/gnutls/generic.nix b/pkgs/development/libraries/gnutls/generic.nix index 0c2e3429159..f1eb62e0083 100644 --- a/pkgs/development/libraries/gnutls/generic.nix +++ b/pkgs/development/libraries/gnutls/generic.nix @@ -1,5 +1,5 @@ { lib, fetchurl, stdenv, zlib, lzo, libtasn1, nettle, pkgconfig, lzip -, guileBindings, guile, perl, gmp, autogen, libidn, p11_kit, unbound +, guileBindings, guile, perl, gmp, autogen, libidn, p11_kit, unbound, libiconv , tpmSupport ? false, trousers # Version dependent args @@ -30,6 +30,7 @@ stdenv.mkDerivation { enableParallelBuilding = !guileBindings; buildInputs = [ lzo lzip nettle libtasn1 libidn p11_kit zlib gmp autogen ] + ++ lib.optional (stdenv.isDarwin) libiconv ++ lib.optional (tpmSupport && stdenv.isLinux) trousers ++ [ unbound ] ++ lib.optional guileBindings guile; diff --git a/pkgs/development/libraries/libidn/default.nix b/pkgs/development/libraries/libidn/default.nix index 21013d2e072..c3c6c13c98f 100644 --- a/pkgs/development/libraries/libidn/default.nix +++ b/pkgs/development/libraries/libidn/default.nix @@ -1,4 +1,4 @@ -{ fetchurl, stdenv }: +{ fetchurl, stdenv, libiconv }: stdenv.mkDerivation rec { name = "libidn-1.32"; @@ -10,6 +10,8 @@ stdenv.mkDerivation rec { doCheck = ! stdenv.isDarwin; + buildInputs = stdenv.lib.optional stdenv.isDarwin libiconv; + meta = { homepage = http://www.gnu.org/software/libidn/; description = "Library for internationalized domain names"; diff --git a/pkgs/development/libraries/libmediainfo/default.nix b/pkgs/development/libraries/libmediainfo/default.nix index 7e5887e9b9d..d9619fd2712 100644 --- a/pkgs/development/libraries/libmediainfo/default.nix +++ b/pkgs/development/libraries/libmediainfo/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, automake, autoconf, libtool, pkgconfig, libzen, zlib }: stdenv.mkDerivation rec { - version = "0.7.78"; + version = "0.7.79"; name = "libmediainfo-${version}"; src = fetchurl { url = "http://mediaarea.net/download/source/libmediainfo/${version}/libmediainfo_${version}.tar.xz"; - sha256 = "0ai4al5h3qbfq5f1b24ixk5v1fpln2kw1zmdj4hxjz40rj18qzka"; + sha256 = "0lanhx1zg7s36wgi9ndv4zz7dbhkqz4dc99mva6x9rcj2p5p8c6d"; }; buildInputs = [ automake autoconf libtool pkgconfig libzen zlib ]; diff --git a/pkgs/development/libraries/libzen/default.nix b/pkgs/development/libraries/libzen/default.nix index 11b77ae0815..127eeaeaca9 100644 --- a/pkgs/development/libraries/libzen/default.nix +++ b/pkgs/development/libraries/libzen/default.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, automake, autoconf, libtool, pkgconfig }: -let version = "0.4.31"; in +let version = "0.4.32"; in stdenv.mkDerivation { name = "libzen-${version}"; src = fetchurl { url = "http://mediaarea.net/download/source/libzen/${version}/libzen_${version}.tar.bz2"; - sha256 = "1d54bn561dipf16ki1bfq5r72j5bmz1yyx4n1v85jv4qc4cfvl4z"; + sha256 = "0rhbiaywij6jj8d7vkc4v7y21ic1kv9fbn9lk82mm12yjwzlhhyd"; }; buildInputs = [ automake autoconf libtool pkgconfig ]; @@ -14,7 +14,7 @@ stdenv.mkDerivation { sourceRoot = "./ZenLib/Project/GNU/Library/"; - preConfigure = "sh autogen"; + preConfigure = "sh autogen.sh"; meta = { description = "Shared library for libmediainfo and mediainfo"; diff --git a/pkgs/development/libraries/openssl/1.0.2.x.nix b/pkgs/development/libraries/openssl/1.0.2.x.nix index 28254cb390d..9175da0bca4 100644 --- a/pkgs/development/libraries/openssl/1.0.2.x.nix +++ b/pkgs/development/libraries/openssl/1.0.2.x.nix @@ -66,11 +66,18 @@ stdenv.mkDerivation rec { ''; crossAttrs = { + # upstream patch: https://rt.openssl.org/Ticket/Display.html?id=2558 + postPatch = '' + sed -i -e 's/[$][(]CROSS_COMPILE[)]windres/$(WINDRES)/' Makefile.shared + ''; preConfigure='' # It's configure does not like --build or --host export configureFlags="${concatStringsSep " " (configureFlags ++ [ opensslCrossSystem ])}" + # WINDRES and RANLIB need to be prefixed when cross compiling; + # the openssl configure script doesn't do that for us + export WINDRES=${stdenv.cross.config}-windres + export RANLIB=${stdenv.cross.config}-ranlib ''; - configureScript = "./Configure"; }; diff --git a/pkgs/development/libraries/openssl/default.nix b/pkgs/development/libraries/openssl/default.nix index ca3e7999f9b..5ed30731a68 100644 --- a/pkgs/development/libraries/openssl/default.nix +++ b/pkgs/development/libraries/openssl/default.nix @@ -69,11 +69,18 @@ stdenv.mkDerivation rec { ''; crossAttrs = { + # upstream patch: https://rt.openssl.org/Ticket/Display.html?id=2558 + postPatch = '' + sed -i -e 's/[$][(]CROSS_COMPILE[)]windres/$(WINDRES)/' Makefile.shared + ''; preConfigure='' # It's configure does not like --build or --host export configureFlags="${concatStringsSep " " (configureFlags ++ [ opensslCrossSystem ])}" + # WINDRES and RANLIB need to be prefixed when cross compiling; + # the openssl configure script doesn't do that for us + export WINDRES=${stdenv.cross.config}-windres + export RANLIB=${stdenv.cross.config}-ranlib ''; - configureScript = "./Configure"; }; diff --git a/pkgs/development/libraries/qt-5/5.5/qtmultimedia.nix b/pkgs/development/libraries/qt-5/5.5/qtmultimedia.nix index 22e856863ba..b6b4d8ea0cf 100644 --- a/pkgs/development/libraries/qt-5/5.5/qtmultimedia.nix +++ b/pkgs/development/libraries/qt-5/5.5/qtmultimedia.nix @@ -1,4 +1,4 @@ -{ qtSubmodule, qtbase, qtdeclarative +{ qtSubmodule, qtbase, qtdeclarative, pkgconfig , alsaLib, gstreamer, gst-plugins-base, libpulseaudio }: @@ -6,6 +6,7 @@ qtSubmodule { name = "qtmultimedia"; qtInputs = [ qtbase qtdeclarative ]; buildInputs = [ - alsaLib gstreamer gst-plugins-base libpulseaudio + pkgconfig alsaLib gstreamer gst-plugins-base libpulseaudio ]; + configureFlags = "GST_VERSION=1.0"; } diff --git a/pkgs/development/libraries/rabbitmq-c/default.nix b/pkgs/development/libraries/rabbitmq-c/default.nix index 639c8fb1ead..0ab9cd1df04 100644 --- a/pkgs/development/libraries/rabbitmq-c/default.nix +++ b/pkgs/development/libraries/rabbitmq-c/default.nix @@ -2,13 +2,13 @@ stdenv.mkDerivation rec { name = "rabbitmq-c-${version}"; - version = "0.7.0"; + version = "0.7.1"; src = fetchFromGitHub { owner = "alanxz"; repo = "rabbitmq-c"; rev = "v${version}"; - sha256 = "1nfb82lbccr46wr4a2fsrkvpvdvmnyx8kn275hvdfz7mxpkd5qy6"; + sha256 = "084zlir59zc505nxd4m2g9d355m9a8y94gbjaqmjz9kym8lpayd1"; }; buildInputs = [ cmake openssl popt xmlto ]; diff --git a/pkgs/development/libraries/rdkafka/default.nix b/pkgs/development/libraries/rdkafka/default.nix index 0ab4f21f2d8..947b06021cd 100644 --- a/pkgs/development/libraries/rdkafka/default.nix +++ b/pkgs/development/libraries/rdkafka/default.nix @@ -1,14 +1,13 @@ { stdenv, fetchFromGitHub, zlib, perl }: stdenv.mkDerivation rec { - name = "rdkafka-${version}"; - version = "0.8.6"; + name = "rdkafka-2015-11-03"; src = fetchFromGitHub { owner = "edenhill"; repo = "librdkafka"; - rev = version; - sha256 = "0iklvslz35dd0lz26ffrbfb20qirl9v5kcdmlcnnzc034hr2zmnv"; + rev = "3e1babf4f26a7d12bbd272c1cdf4aa6a44000d4a"; + sha256 = "1vmbbkgdwxr25wz60hi6rhqb843ipz34r9baygv87fwh3lwwkqwl"; }; buildInputs = [ zlib perl ]; diff --git a/pkgs/development/libraries/signon/default.nix b/pkgs/development/libraries/signon/default.nix index d33edf9726f..fe7a73fa0fe 100644 --- a/pkgs/development/libraries/signon/default.nix +++ b/pkgs/development/libraries/signon/default.nix @@ -1,11 +1,11 @@ -{ stdenv, fetchzip, doxygen, qtbase }: +{ stdenv, fetchurl, doxygen, qtbase }: stdenv.mkDerivation rec { name = "signon-${version}"; version = "8.57"; - src = fetchzip { - url = "http://signond.accounts-sso.googlecode.com/archive/${version}.zip"; - sha256 = "0q1ncmp27jrwbjkqisf0l63zzpw6bcsx5i4y86xixh8wd5arj87a"; + src = fetchurl { + url = "https://gitlab.com/accounts-sso/signond/repository/archive.tar.gz?ref=${version}"; + sha256 = "1vqkxhmdjk3217k38l2s3wld8x7f4jrbbh6xbr036cn1r23ncni5"; }; buildInputs = [ qtbase ]; diff --git a/pkgs/development/libraries/signon/old.nix b/pkgs/development/libraries/signon/old.nix index 7b3defb8a58..bf211c3b8a3 100644 --- a/pkgs/development/libraries/signon/old.nix +++ b/pkgs/development/libraries/signon/old.nix @@ -1,11 +1,11 @@ -{ stdenv, fetchzip, doxygen, qt5 }: +{ stdenv, fetchurl, doxygen, qt5 }: stdenv.mkDerivation rec { name = "signon-${version}"; version = "8.57"; - src = fetchzip { - url = "http://signond.accounts-sso.googlecode.com/archive/${version}.zip"; - sha256 = "0q1ncmp27jrwbjkqisf0l63zzpw6bcsx5i4y86xixh8wd5arj87a"; + src = fetchurl { + url = "https://gitlab.com/accounts-sso/signond/repository/archive.tar.gz?ref=${version}"; + sha256 = "1vqkxhmdjk3217k38l2s3wld8x7f4jrbbh6xbr036cn1r23ncni5"; }; buildInputs = [ qt5.base ]; diff --git a/pkgs/development/libraries/subunit/default.nix b/pkgs/development/libraries/subunit/default.nix index 1abe38894e7..e4a767579ab 100644 --- a/pkgs/development/libraries/subunit/default.nix +++ b/pkgs/development/libraries/subunit/default.nix @@ -21,6 +21,6 @@ stdenv.mkDerivation rec { description = "A streaming protocol for test results"; homepage = https://launchpad.net/subunit; license = licenses.asl20; - platforms = platforms.linux; + platforms = platforms.all; }; } diff --git a/pkgs/development/perl-modules/dbix-class-fix-52leaks.patch b/pkgs/development/perl-modules/dbix-class-fix-52leaks.patch new file mode 100644 index 00000000000..84af4a5acf1 --- /dev/null +++ b/pkgs/development/perl-modules/dbix-class-fix-52leaks.patch @@ -0,0 +1,23 @@ +From e9d552de92cde6552f35cd45a3572df1e25609cc Mon Sep 17 00:00:00 2001 +From: Peter Rabbitson +Date: Tue, 19 May 2015 05:49:48 +0200 +Subject: [PATCH] Make sure tests pass without a compiler present (another step + to RT#74706) + +--- a/t/52leaks.t ++++ b/t/52leaks.t +@@ -446,6 +446,14 @@ for my $addr (keys %$weak_registry) { + delete $weak_registry->{$addr} + unless $cleared->{hash_merge_singleton}{$weak_registry->{$addr}{weakref}{behavior}}++; + } ++ elsif ($names =~ /^B::Hooks::EndOfScope::PP::_TieHintHashFieldHash/m) { ++ # there is one tied lexical which stays alive until GC time ++ # https://metacpan.org/source/ETHER/B-Hooks-EndOfScope-0.15/lib/B/Hooks/EndOfScope/PP/FieldHash.pm#L24 ++ # simply ignore it here, instead of teaching the leaktracer to examine ties ++ # the latter is possible yet terrible: https://github.com/dbsrgits/dbix-class/blob/v0.082820/t/lib/DBICTest/Util/LeakTracer.pm#L113-L117 ++ delete $weak_registry->{$addr} ++ unless $cleared->{bheos_pptiehinthashfieldhash}++; ++ } + elsif ($names =~ /^DateTime::TimeZone::UTC/m) { + # DT is going through a refactor it seems - let it leak zones for now + delete $weak_registry->{$addr}; diff --git a/pkgs/development/perl-modules/dbix-class-fix-tests.patch b/pkgs/development/perl-modules/dbix-class-fix-tests.patch deleted file mode 100644 index 476a159f621..00000000000 --- a/pkgs/development/perl-modules/dbix-class-fix-tests.patch +++ /dev/null @@ -1,52 +0,0 @@ -diff --git a/t/multi_create/standard.t b/t/multi_create/standard.t -index 5a02947..6c1efd8 100644 ---- a/t/multi_create/standard.t -+++ b/t/multi_create/standard.t -@@ -444,7 +444,11 @@ throws_ok ( sub { - #$t->cd($t->new_related('cd', { artist => undef } ) ); - #$t->{_rel_in_storage} = 0; - $t->insert; --}, qr/cd.artist may not be NULL/, "Exception propogated properly"); -+}, qr/DBI Exception.+(?x: -+ \QNOT NULL constraint failed: cd.artist\E -+ | -+ \Qcd.artist may not be NULL\E -+)/s, "Exception propogated properly"); - - lives_ok ( sub { - $schema->resultset('CD')->create ({ -diff --git a/t/relationship/update_or_create_multi.t b/t/relationship/update_or_create_multi.t -index 8710048..c7cce7a 100644 ---- a/t/relationship/update_or_create_multi.t -+++ b/t/relationship/update_or_create_multi.t -@@ -69,7 +69,12 @@ throws_ok { - year => 2020, - title => 'the best thing since sliced bread', - }) --} qr/\Qcd.artist may not be NULL/, 'ambiguous find + create failed'; -+} qr/DBI Exception.+(?x: -+ \QNOT NULL constraint failed: cd.artist\E -+ | -+ \Qcd.artist may not be NULL\E -+)/s, 'ambiguous find + create failed' -+; - - # expect a create, after a failed search using *only* the - # *current* relationship and the unique column constraints -diff --git a/t/storage/error.t b/t/storage/error.t -index d5980eb..61d6782 100644 ---- a/t/storage/error.t -+++ b/t/storage/error.t -@@ -15,7 +15,11 @@ warnings_are ( sub { - sub { - $schema->resultset('CD')->create({ title => 'vacation in antarctica' }) - }, -- qr/DBI Exception.+cd\.artist.+NULL/s -+ qr/DBI Exception.+(?x: -+ \QNOT NULL constraint failed: cd.artist\E -+ | -+ \Qcd.artist may not be NULL\E -+ )/s - ); # as opposed to some other error - }, [], 'No warnings besides exception' ); - diff --git a/pkgs/development/python-modules/pycairo/default.nix b/pkgs/development/python-modules/pycairo/default.nix index cb93ccc2b58..ddaa7eb508e 100644 --- a/pkgs/development/python-modules/pycairo/default.nix +++ b/pkgs/development/python-modules/pycairo/default.nix @@ -1,6 +1,6 @@ -{ stdenv, fetchurl, fetchpatch, python, pkgconfig, cairo, xlibsWrapper, isPyPy }: +{ stdenv, fetchurl, fetchpatch, python, pkgconfig, cairo, xlibsWrapper, isPyPy, isPy35 }: -if isPyPy then throw "pycairo not supported for interpreter ${python.executable}" else stdenv.mkDerivation rec { +if (isPyPy || isPy35) then throw "pycairo not supported for interpreter ${python.executable}" else stdenv.mkDerivation rec { version = "1.10.0"; name = "pycairo-${version}"; src = if python.is_py3k or false @@ -36,4 +36,6 @@ if isPyPy then throw "pycairo not supported for interpreter ${python.executable} ''; buildPhase = "${python.executable} waf"; installPhase = "${python.executable} waf install"; + + meta.platforms = stdenv.lib.platforms.linux; } diff --git a/pkgs/development/qtcreator/default.nix b/pkgs/development/qtcreator/default.nix index 8dabd3347fc..b2460c768f2 100644 --- a/pkgs/development/qtcreator/default.nix +++ b/pkgs/development/qtcreator/default.nix @@ -46,6 +46,7 @@ stdenv.mkDerivation rec { __EOF__ # Wrap the qtcreator binary addToSearchPath QML2_IMPORT_PATH "${qtLib.quickcontrols}/lib/qt5/qml" + addToSearchPath QML2_IMPORT_PATH "${qtLib.declarative}/lib/qt5/qml" wrapProgram $out/bin/qtcreator \ --prefix QT_PLUGIN_PATH : "$QT_PLUGIN_PATH" \ --prefix QML_IMPORT_PATH : "$QML_IMPORT_PATH" \ diff --git a/pkgs/development/tools/analysis/flow/default.nix b/pkgs/development/tools/analysis/flow/default.nix index c049a57e76e..3dcc9a87572 100644 --- a/pkgs/development/tools/analysis/flow/default.nix +++ b/pkgs/development/tools/analysis/flow/default.nix @@ -1,4 +1,6 @@ -{ stdenv, fetchFromGitHub, ocaml, libelf, cf-private, CoreServices }: +{ stdenv, fetchFromGitHub, lib, ocaml, libelf, cf-private, CoreServices }: + +with lib; stdenv.mkDerivation rec { version = "0.17.0"; @@ -15,13 +17,14 @@ stdenv.mkDerivation rec { cp bin/flow $out/bin/ ''; - buildInputs = [ ocaml libelf cf-private CoreServices ]; + buildInputs = [ ocaml libelf ] + ++ optionals stdenv.isDarwin [ cf-private CoreServices ]; meta = with stdenv.lib; { - homepage = "http://flowtype.org/"; description = "A static type checker for JavaScript"; - license = stdenv.lib.licenses.bsd3; - platforms = stdenv.lib.platforms.unix; + homepage = http://flowtype.org; + license = licenses.bsd3; + platforms = platforms.unix; maintainers = with maintainers; [ puffnfresh globin ]; }; } diff --git a/pkgs/development/tools/build-managers/apache-maven/default.nix b/pkgs/development/tools/build-managers/apache-maven/default.nix index c69814c16ca..ba8f2474f44 100644 --- a/pkgs/development/tools/build-managers/apache-maven/default.nix +++ b/pkgs/development/tools/build-managers/apache-maven/default.nix @@ -2,7 +2,7 @@ assert jdk != null; -let version = "3.2.5"; in +let version = "3.3.3"; in stdenv.mkDerivation rec { name = "apache-maven-${version}"; @@ -10,7 +10,7 @@ stdenv.mkDerivation rec { src = fetchurl { url = "mirror://apache/maven/maven-3/${version}/binaries/${name}-bin.tar.gz"; - sha256 = "0md7fizam2lvl0b7fdlfjng6ywm283chmp382agzz4gmpmj046cc"; + sha256 = "0ya71kxx0isvdnxz3n0rcynlgjah06mvp5r039x61wxr5ahw939s"; }; buildInputs = [ makeWrapper ]; diff --git a/pkgs/development/tools/build-managers/gradle/default.nix b/pkgs/development/tools/build-managers/gradle/default.nix index 185f4a29e00..ca8c5717067 100644 --- a/pkgs/development/tools/build-managers/gradle/default.nix +++ b/pkgs/development/tools/build-managers/gradle/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, unzip, jdk, makeWrapper }: stdenv.mkDerivation rec { - name = "gradle-2.6"; + name = "gradle-2.8"; src = fetchurl { url = "http://services.gradle.org/distributions/${name}-bin.zip"; - sha256 = "10ww9vqyi5jkdw5bna14y63fjfhh40n81q7qsfhdycgj19b8ra8q"; + sha256 = "1jq3m6ihvcxyp37mwsg3i8li9hd6rpv8ri8ih2mgvph4y71bk3d8"; }; installPhase = '' diff --git a/pkgs/development/tools/exercism/default.nix b/pkgs/development/tools/exercism/default.nix deleted file mode 100644 index 9c1b3027252..00000000000 --- a/pkgs/development/tools/exercism/default.nix +++ /dev/null @@ -1,47 +0,0 @@ -{ stdenv, fetchurl }: - -stdenv.mkDerivation rec { - name = "exercism-${version}"; - - version = "1.9.2"; - - src = - if stdenv.system == "x86_64-darwin" then - fetchurl { - url = "https://github.com/exercism/cli/releases/download/v${version}/exercism-mac-64bit.tgz"; - sha256 = "01ddwblq1kqxhjv8mp8r1zy6p78p6pysf1mbsyjxw1y8skfdapnp"; - } - else if stdenv.system == "i686-darwin" then - fetchurl { - url = "https://github.com/exercism/cli/releases/download/v${version}/exercism-mac-32bit.tgz"; - sha256 = "0nkpnvbyi3c3dkw3149jiwil06x997wml844i9m0d6q1wblk0qdd"; - } - else if stdenv.system == "i686-linux" then - fetchurl { - url = "https://github.com/exercism/cli/releases/download/v${version}/exercism-linux-32bit.tgz"; - sha256 = "0szrn28sb0w88j0kbras10wm76rsndg9j4328p01f60rabq9q3z6"; - } - else if stdenv.system == "x86_64-linux" then - fetchurl { - url = "https://github.com/exercism/cli/releases/download/v${version}/exercism-linux-64bit.tgz"; - sha256 = "17iah373ssd9313irmw27jq1a2gpxf8w3chjmgcgiarqfpyny5bz"; - } - else throw "Platform: ${stdenv.system} not supported!"; - - buildPhase = ""; - - setSourceRoot = "sourceRoot=./"; - - installPhase = '' - mkdir -p $out/bin - cp -a exercism $out/bin - ''; - - meta = { - description = "A Go based command line tool for exercism.io"; - homepage = http://exercism.io; - license = stdenv.lib.licenses.mit; - platforms = stdenv.lib.platforms.unix; - maintainers = [ stdenv.lib.maintainers.wjlroe ]; - }; -} diff --git a/pkgs/development/tools/misc/dialog/default.nix b/pkgs/development/tools/misc/dialog/default.nix index d70f409f343..f33ac04fdea 100644 --- a/pkgs/development/tools/misc/dialog/default.nix +++ b/pkgs/development/tools/misc/dialog/default.nix @@ -13,11 +13,11 @@ assert unicodeSupport -> ncurses.unicode && ncurses != null; stdenv.mkDerivation rec { name = "dialog-${version}"; - version = "1.2-20150225"; + version = "1.2-20150920"; src = fetchurl { url = "ftp://invisible-island.net/dialog/${name}.tgz"; - sha256 = "6844b13a7a1fea568a8d5bb3004e1af90888cd4a5e8c2ded2c38f34fcc7397ff"; + sha256 = "01ccd585c241nkj02n0zdbx8jqhylgcfpcmmshynh0c7fv2ixrn4"; }; buildInputs = [ ncurses ]; diff --git a/pkgs/development/tools/parse-cli-bin/default.nix b/pkgs/development/tools/parse-cli-bin/default.nix new file mode 100644 index 00000000000..33a6a7ebcef --- /dev/null +++ b/pkgs/development/tools/parse-cli-bin/default.nix @@ -0,0 +1,29 @@ +{ stdenv, fetchurl }: + +let + version = "3.0.1"; + +in stdenv.mkDerivation rec { + + name = "parse-cli-bin-${version}"; + + src = fetchurl { + url = "https://github.com/ParsePlatform/parse-cli/releases/download/release_${version}/parse_linux"; + sha256 = "d68eccc1d9408b60901b149d2b4710f3cfd0eabe5772d2e222c06870fdeca3c7"; + }; + + meta = with stdenv.lib; { + description = "Parse Command Line Interface"; + homepage = "https://parse.com"; + platforms = platforms.linux; + }; + + phases = "installPhase"; + + installPhase = '' + mkdir -p "$out/bin" + cp "$src" "$out/bin/parse" + chmod +x "$out/bin/parse" + ''; + +} diff --git a/pkgs/games/dwarf-fortress/default.nix b/pkgs/games/dwarf-fortress/default.nix index 4e34453a1e8..ad2733df079 100644 --- a/pkgs/games/dwarf-fortress/default.nix +++ b/pkgs/games/dwarf-fortress/default.nix @@ -1,6 +1,14 @@ { stdenv, fetchgit, fetchurl, cmake, glew, ncurses , SDL, SDL_image, SDL_ttf, gtk2, glib -, mesa, openal, pango, atk, gdk_pixbuf, glibc, libsndfile }: +, mesa, openal, pango, atk, gdk_pixbuf, glibc, libsndfile +# begin dfhack-only parameters +, XMLLibXML +, XMLLibXSLT +, perl +, zlib +# end dfhack-only parameters +, enableDFHack ? false +}: let baseVersion = "40"; @@ -12,12 +20,21 @@ let sha256 = "19vwx6kpv1sf93bx5v8x47f7x2cgxsqk82v6j1a72sa3q7m5cpc7"; }; + dfhack = fetchgit { + url = "https://github.com/DFHack/dfhack.git"; + rev = "0849099f2083e100cae6f64940b4eff4c28ce2eb"; + sha256 = "0lnqrayi8hwfivkrxb7fw8lb6v95i04pskny1px7084n7nzvyv8b"; + }; + df = fetchurl { url = "http://www.bay12games.com/dwarves/df_${baseVersion}_${patchVersion}_linux.tar.bz2"; sha256 = "0d4jrs45qj89vq9mjg7fxxhis7zivvb0vzjpmkk274b778kccdys"; }; }; + dfHackWorksWithCurrentVersion = true; + dfHackEnabled = dfHackWorksWithCurrentVersion && enableDFHack; + in assert stdenv.system == "i686-linux"; @@ -27,11 +44,31 @@ stdenv.mkDerivation rec { inherit baseVersion patchVersion; - buildInputs = [ SDL SDL_image SDL_ttf gtk2 glib glew mesa ncurses openal glibc libsndfile pango atk cmake gdk_pixbuf]; - src = "${srcs.df_unfuck} ${srcs.df}"; - phases = "unpackPhase patchPhase configurePhase buildPhase installPhase"; + buildInputs = [ + SDL + SDL_image + SDL_ttf + gtk2 + glib + glew + mesa + ncurses + openal + glibc + libsndfile + pango + atk + cmake + gdk_pixbuf + XMLLibXML + XMLLibXSLT + perl + zlib + ]; + src = "${srcs.df_unfuck} ${srcs.df}" + stdenv.lib.optionalString dfHackEnabled " ${srcs.dfhack}"; sourceRoot = srcs.df_unfuck.name; + dfHackSourceRoot = srcs.dfhack.name; cmakeFlags = [ "-DGTK2_GLIBCONFIG_INCLUDE_DIR=${glib}/lib/glib-2.0/include" @@ -39,68 +76,142 @@ stdenv.mkDerivation rec { ]; permission = ./df_permission; + dfHackTemplate = ./dwarf-fortress-hacked.in; + dfHackRunTemplate = ./dfhack-run.in; + dwarfFortressTemplate = ./dwarf-fortress.in; + installDfDataToHome = ./install-df-data-to-home.sh; + installDfhackDataToHome = ./install-dfhack-data-to-home.sh; + installDfDataContentToHome = ./install-df-data-content-to-home.sh; + exportLibsTemplate = ./export-libs.sh.in; + exportWorkaround = ./export-workaround.sh; + + postUnpack = stdenv.lib.optionalString dfHackEnabled '' + if [ "$dontMakeSourcesWritable" != 1 ]; then + chmod -R u+w "$dfHackSourceRoot" + fi + ''; + + preConfigure = stdenv.lib.optionalString dfHackEnabled '' + export cmakeFlags="-DCMAKE_INSTALL_PREFIX=$out/share/df_linux $cmakeFlags" + export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$(pwd)/build/depends/protobuf + ''; + + postConfigure = stdenv.lib.optionalString dfHackEnabled '' + if [ -z "$originalSourceRoot" ]; then + + originalSourceRoot=$sourceRoot + export sourceRoot=$dfHackSourceRoot + + pushd ../../$sourceRoot + + eval "''${configurePhase:-configurePhase}" + + popd + + export sourceRoot=$originalSourceRoot + unset originalSourceRoot + fi + ''; installPhase = '' set -x mkdir -p $out/bin mkdir -p $out/share/df_linux - cd ../../ + pushd ../../ cp -r ./df_linux/* $out/share/df_linux rm $out/share/df_linux/libs/lib* - # Store the original hash for dwarf-therapist - echo $(md5sum $out/share/df_linux/libs/Dwarf_Fortress | cut -c1-8) > $out/share/df_linux/hash.md5.orig - # Fix rpath - patchelf --set-rpath "${stdenv.lib.makeLibraryPath [ stdenv.cc.cc stdenv.glibc ]}:$out/share/df_linux/libs" $out/share/df_linux/libs/Dwarf_Fortress + # Store the original hash + orig_hash=$(md5sum $out/share/df_linux/libs/Dwarf_Fortress | awk '{ print $1 }') + echo $orig_hash | cut -c1-8 > $out/share/df_linux/hash.md5.orig # for dwarf-therapist + echo $orig_hash > $out/share/df_linux/full-hash-orig.md5 # for dfhack + cp -f ./${srcs.df_unfuck.name}/build/libgraphics.so $out/share/df_linux/libs/libgraphics.so cp $permission $out/share/df_linux/nix_permission + # Placeholder files for hashes of patched binary + touch $out/share/df_linux/hash.md5.patched + touch $out/share/df_linux/full-hash-patched.md5 + + mkdir -p $out/share/df_linux/shell + cp $installDfDataToHome $out/share/df_linux/shell/install-df-data-to-home.sh + cp $installDfhackDataToHome $out/share/df_linux/shell/install-dfhack-data-to-home.sh + cp $installDfDataContentToHome $out/share/df_linux/shell/install-df-data-content-to-home.sh + cp $exportWorkaround $out/share/df_linux/shell/export-workaround.sh + substitute $exportLibsTemplate $out/share/df_linux/shell/export-libs.sh \ + --subst-var-by stdenv_cc ${stdenv.cc} \ + --subst-var-by SDL ${SDL} \ + --subst-var-by SDL_image ${SDL_image} \ + --subst-var-by SDL_ttf ${SDL_ttf} \ + --subst-var-by gtk2 ${gtk2} \ + --subst-var-by glib ${glib} \ + --subst-var-by libsndfile ${libsndfile} \ + --subst-var-by mesa ${mesa} \ + --subst-var-by openal ${openal} \ + --subst-var-by zlib ${zlib} \ + + substitute $dwarfFortressTemplate $out/bin/dwarf-fortress \ + --subst-var-by stdenv_shell ${stdenv.shell} \ + --subst-var prefix + + chmod 755 $out/bin/dwarf-fortress + + popd + '' + stdenv.lib.optionalString dfHackEnabled '' + + originalSourceRoot=$sourceRoot + export sourceRoot=$dfHackSourceRoot + + pushd ../../$sourceRoot/build + + mkdir -p $out/dfhack + + make install + + cp ../package/linux/dfhack $out/dfhack/ + + mkdir -p $out/bin + + substitute $dfHackTemplate $out/bin/dfhack \ + --subst-var-by stdenv_shell ${stdenv.shell} \ + --subst-var prefix + chmod 755 $out/bin/dfhack + + substitute $dfHackRunTemplate $out/bin/dfhack-run \ + --subst-var-by stdenv_shell ${stdenv.shell} \ + --subst-var prefix + chmod 755 $out/bin/dfhack-run + + popd + + export sourceRoot=$originalSourceRoot + unset originalSourceRoot + ''; + + fixupPhase = '' + # Fix rpath + patchelf --set-rpath "${stdenv.lib.makeLibraryPath [ stdenv.cc.cc stdenv.glibc ]}:$out/share/df_linux/libs" $out/share/df_linux/libs/Dwarf_Fortress + patchelf --set-interpreter ${glibc}/lib/ld-linux.so.2 $out/share/df_linux/libs/Dwarf_Fortress - # Store new hash for dwarf-therapist - echo $(md5sum $out/share/df_linux/libs/Dwarf_Fortress | cut -c1-8) > $out/share/df_linux/hash.md5.patched + # Store new hash + patched_hash=$(md5sum $out/share/df_linux/libs/Dwarf_Fortress | awk '{ print $1 }') + echo $patched_hash | cut -c1-8 > $out/share/df_linux/hash.md5.patched # for dwarf-therapist + echo $patched_hash > $out/share/df_linux/full-hash-patched.md5 # for dfhack + '' + stdenv.lib.optionalString dfHackEnabled '' + find $out/share/df_linux/hack \( \ + \( -type f -a -name "*.so*" \) -o \ + \( -type f -a -perm +0100 \) \ + \) -print -exec patchelf --shrink-rpath {} \; - cat > $out/bin/dwarf-fortress << EOF - #!${stdenv.shell} - - set -ex - - export DF_DIR="\$HOME/.config/df_linux" - if [ -n "\$XDG_DATA_HOME" ] - then export DF_DIR="\$XDG_DATA_HOME/df_linux" - fi - - if [[ ! -d "\$DF_DIR" ]]; then - mkdir -p "\$DF_DIR" - ln -s $out/share/df_linux/raw "\$DF_DIR/raw" - ln -s $out/share/df_linux/libs "\$DF_DIR/libs" - mkdir -p "\$DF_DIR/data/init" - cp -rn $out/share/df_linux/data/init "\$DF_DIR/data/" - fi - - for link in announcement art dipscript help index initial_movies movies shader.fs shader.vs sound speech; do - cp -r $out/share/df_linux/data/\$link "\$DF_DIR/data/\$link" - chmod -R u+rw "\$DF_DIR/data/\$link" - done - - # now run Dwarf Fortress! - export LD_LIBRARY_PATH=\${stdenv.cc}/lib:${SDL}/lib:${SDL_image}/lib/:${SDL_ttf}/lib/:${gtk2}/lib/:${glib}/lib/:${mesa}/lib/:${openal}/lib/:${libsndfile}/lib:\$DF_DIR/df_linux/libs/ - - export SDL_DISABLE_LOCK_KEYS=1 # Work around for bug in Debian/Ubuntu SDL patch. - #export SDL_VIDEO_CENTERED=1 # Centre the screen. Messes up resizing. - - cd \$DF_DIR - $out/share/df_linux/libs/Dwarf_Fortress "$@" - EOF - - chmod +x $out/bin/dwarf-fortress + sed -i "s/$(cat $out/share/df_linux/full-hash-orig.md5)/$(cat $out/share/df_linux/full-hash-patched.md5)/" $out/share/df_linux/hack/symbols.xml ''; meta = { description = "A single-player fantasy game with a randomly generated adventure world"; homepage = http://www.bay12games.com/dwarves; license = stdenv.lib.licenses.unfreeRedistributable; - maintainers = with stdenv.lib.maintainers; [ roconnor the-kenny ]; + maintainers = with stdenv.lib.maintainers; [ a1russell robbinch roconnor the-kenny ]; }; } diff --git a/pkgs/games/dwarf-fortress/dfhack-run.in b/pkgs/games/dwarf-fortress/dfhack-run.in new file mode 100644 index 00000000000..590e5b25acf --- /dev/null +++ b/pkgs/games/dwarf-fortress/dfhack-run.in @@ -0,0 +1,11 @@ +#!@stdenv_shell@ + +data_dir=${XDG_DATA_HOME:-$HOME/.local/share}/df_linux +pkg_dir=@prefix@/share/df_linux + +. $pkg_dir/shell/install-df-data-to-home.sh +. $pkg_dir/shell/install-dfhack-data-to-home.sh +. $pkg_dir/shell/export-libs.sh + +cd "$data_dir" +exec ./dfhack-run "$@" diff --git a/pkgs/games/dwarf-fortress/dwarf-fortress-hacked.in b/pkgs/games/dwarf-fortress/dwarf-fortress-hacked.in new file mode 100644 index 00000000000..027720fc378 --- /dev/null +++ b/pkgs/games/dwarf-fortress/dwarf-fortress-hacked.in @@ -0,0 +1,13 @@ +#!@stdenv_shell@ + +data_dir=${XDG_DATA_HOME:-$HOME/.local/share}/df_linux +pkg_dir=@prefix@/share/df_linux + +. $pkg_dir/shell/install-df-data-to-home.sh +. $pkg_dir/shell/install-dfhack-data-to-home.sh +. $pkg_dir/shell/install-df-data-content-to-home.sh +. $pkg_dir/shell/export-libs.sh +. $pkg_dir/shell/export-workaround.sh + +cd "$data_dir" +exec ./dfhack "$@" diff --git a/pkgs/games/dwarf-fortress/dwarf-fortress.in b/pkgs/games/dwarf-fortress/dwarf-fortress.in new file mode 100644 index 00000000000..db06d34efd0 --- /dev/null +++ b/pkgs/games/dwarf-fortress/dwarf-fortress.in @@ -0,0 +1,14 @@ +#!@stdenv_shell@ + +set -ex + +data_dir=${XDG_DATA_HOME:-$HOME/.local/share}/df_linux +pkg_dir=@prefix@/share/df_linux + +. $pkg_dir/shell/install-df-data-to-home.sh +. $pkg_dir/shell/install-df-data-content-to-home.sh +. $pkg_dir/shell/export-libs.sh +. $pkg_dir/shell/export-workaround.sh + +cd $data_dir +$pkg_dir/libs/Dwarf_Fortress "$@" diff --git a/pkgs/games/dwarf-fortress/export-libs.sh.in b/pkgs/games/dwarf-fortress/export-libs.sh.in new file mode 100644 index 00000000000..453295ca6dd --- /dev/null +++ b/pkgs/games/dwarf-fortress/export-libs.sh.in @@ -0,0 +1,12 @@ +export LD_LIBRARY_PATH=\ +@stdenv_cc@/lib:\ +@SDL@/lib:\ +@SDL_image@/lib/:\ +@SDL_ttf@/lib/:\ +@gtk2@/lib/:\ +@glib@/lib/:\ +@mesa@/lib/:\ +@openal@/lib/:\ +@libsndfile@/lib:\ +@zlib@/lib:\ +$data_dir/df_linux/libs/ diff --git a/pkgs/games/dwarf-fortress/export-workaround.sh b/pkgs/games/dwarf-fortress/export-workaround.sh new file mode 100644 index 00000000000..716d171625c --- /dev/null +++ b/pkgs/games/dwarf-fortress/export-workaround.sh @@ -0,0 +1 @@ +export SDL_DISABLE_LOCK_KEYS=1 # Work around for bug in Debian/Ubuntu SDL patch. diff --git a/pkgs/games/dwarf-fortress/install-df-data-content-to-home.sh b/pkgs/games/dwarf-fortress/install-df-data-content-to-home.sh new file mode 100644 index 00000000000..600af677322 --- /dev/null +++ b/pkgs/games/dwarf-fortress/install-df-data-content-to-home.sh @@ -0,0 +1,4 @@ +for link in announcement art dipscript help index initial_movies movies shader.fs shader.vs sound speech; do + cp -r $pkg_dir/data/$link "$data_dir/data/$link" + chmod -R u+rw "$data_dir/data/$link" +done diff --git a/pkgs/games/dwarf-fortress/install-df-data-to-home.sh b/pkgs/games/dwarf-fortress/install-df-data-to-home.sh new file mode 100644 index 00000000000..42c8c464809 --- /dev/null +++ b/pkgs/games/dwarf-fortress/install-df-data-to-home.sh @@ -0,0 +1,12 @@ +mkdir -p $data_dir +if [[ $(readlink $data_dir/raw) != "$pkg_dir/raw" ]]; then + rm -f $data_dir/raw + ln -s $pkg_dir/raw $data_dir/raw +fi +if [[ $(readlink $data_dir/libs) != "$pkg_dir/libs" ]]; then + rm -f $data_dir/libs + ln -s $pkg_dir/libs $data_dir/libs +fi +mkdir -p "$data_dir/data" +cp -rn $pkg_dir/data/init $data_dir/data/init +chmod -R u+rw $data_dir/data/init diff --git a/pkgs/games/dwarf-fortress/install-dfhack-data-to-home.sh b/pkgs/games/dwarf-fortress/install-dfhack-data-to-home.sh new file mode 100644 index 00000000000..9d316fde949 --- /dev/null +++ b/pkgs/games/dwarf-fortress/install-dfhack-data-to-home.sh @@ -0,0 +1,16 @@ +if [[ $(readlink $data_dir/hack) != "$pkg_dir/hack" ]]; then + rm -f $data_dir/hack + ln -s $pkg_dir/hack $data_dir/hack +fi +if [[ $(readlink $data_dir/dfhack) != "$pkg_dir/dfhack" ]]; then + rm -f $data_dir/dfhack + ln -s $pkg_dir/dfhack $data_dir/dfhack +fi +if [[ $(readlink $data_dir/dfhack.init-example) != "$pkg_dir/dfhack.init-example" ]]; then + rm -f $data_dir/dfhack.init-example + ln -s $pkg_dir/dfhack.init-example $data_dir/dfhack.init-example +fi +if [[ $(readlink $data_dir/dfhack-run) != "$pkg_dir/dfhack-run" ]]; then + rm -f $data_dir/dfhack-run + ln -s $pkg_dir/dfhack-run $data_dir/dfhack-run +fi diff --git a/pkgs/games/steam/chrootenv.nix b/pkgs/games/steam/chrootenv.nix index 6028883c363..1152d48bdd8 100644 --- a/pkgs/games/steam/chrootenv.nix +++ b/pkgs/games/steam/chrootenv.nix @@ -40,12 +40,10 @@ buildFHSUserEnv { ]; extraBuildCommands = '' - [ -d lib64 ] && mv lib64/steam lib - mkdir -p steamrt ln -s ../lib64/steam-runtime steamrt/amd64 - ln -s ../lib/steam-runtime steamrt/i386 + ln -s ../lib32/steam-runtime steamrt/i386 ''; profile = '' diff --git a/pkgs/misc/seafile-shared/default.nix b/pkgs/misc/seafile-shared/default.nix index a00c0b5365a..2b3b05ceda1 100644 --- a/pkgs/misc/seafile-shared/default.nix +++ b/pkgs/misc/seafile-shared/default.nix @@ -2,13 +2,13 @@ stdenv.mkDerivation rec { - version = "4.0.6"; + version = "4.4.2"; name = "seafile-shared-${version}"; src = fetchurl { url = "https://github.com/haiwen/seafile/archive/v${version}.tar.gz"; - sha256 = "1vs1ckxkh0kg1wjklpwdz87d5z60r80q27xv1s6yl7ir65s6zq0i"; + sha256 = "00sflvyap3nw38qblpagp2japgp83sqc5s4r336mi6475grgmnyi"; }; buildInputs = [ which automake autoconf pkgconfig libtool vala python intltool fuse ]; diff --git a/pkgs/os-specific/linux/android-udev-rules/default.nix b/pkgs/os-specific/linux/android-udev-rules/default.nix index 137a362bcd8..efc0e7bedb5 100644 --- a/pkgs/os-specific/linux/android-udev-rules/default.nix +++ b/pkgs/os-specific/linux/android-udev-rules/default.nix @@ -1,12 +1,12 @@ { stdenv, fetchgit }: stdenv.mkDerivation { - name = "android-udev-rules-20150920"; + name = "android-udev-rules-20151108"; src = fetchgit { url = "https://github.com/M0Rf30/android-udev-rules"; - rev = "d2e89a3f6deb096071b15e18b9e3608a02d62437"; - sha256 = "bdc553a1eb4efc4e85866f61f50f2c2f7b8d09d2eb5122afad7c9b38e0fdc4fb"; + rev = "3d21377820694cf8412e1fd09be5caaad3a5eef8"; + sha256 = "2f90bc5822144df916d11ff5312c3179f1b905a7b003aa86056aa24ba433c99b"; }; installPhase = '' diff --git a/pkgs/os-specific/linux/fatrace/default.nix b/pkgs/os-specific/linux/fatrace/default.nix index b8fc6e5f6ce..c620a0056c1 100644 --- a/pkgs/os-specific/linux/fatrace/default.nix +++ b/pkgs/os-specific/linux/fatrace/default.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, python3, which }: -let version = "0.10"; in +let version = "0.11"; in stdenv.mkDerivation rec { name = "fatrace-${version}"; src = fetchurl { url = "http://launchpad.net/fatrace/trunk/${version}/+download/${name}.tar.bz2"; - sha256 = "0q0cv2bsgf76wypz18v2acgj1crcdqhrhlsij3r53glsyv86xyra"; + sha256 = "1f77v222nlfbf8fv7d28cnpm7x8xz0mhxavgz19c2jc51pjlv84s"; }; buildInputs = [ python3 which ]; @@ -27,11 +27,10 @@ stdenv.mkDerivation rec { fatrace reports file access events from all running processes. Its main purpose is to find processes which keep waking up the disk unnecessarily and thus prevent some power saving. - Requires a Linux kernel with the FANOTIFY configuration option enabled. Enabling X86_MSR is also recommended for power-usage-report on x86. ''; maintainers = with maintainers; [ nckx ]; - platforms = with platforms; linux; + platforms = platforms.linux; }; } diff --git a/pkgs/os-specific/linux/kernel/linux-4.1.nix b/pkgs/os-specific/linux/kernel/linux-4.1.nix index d17dcc5119e..b1878846eb8 100644 --- a/pkgs/os-specific/linux/kernel/linux-4.1.nix +++ b/pkgs/os-specific/linux/kernel/linux-4.1.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, perl, buildLinux, ... } @ args: import ./generic.nix (args // rec { - version = "4.1.12"; + version = "4.1.13"; extraMeta.branch = "4.1"; src = fetchurl { url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz"; - sha256 = "0q9zw731mn043fksl0cmbg8dr16f065378ys5x1h955rn93b4jab"; + sha256 = "04xhkqjpb1rfqkq6hxzfma5cr039p1fad2fgims5ns09nvalq6dr"; }; features.iwlwifi = true; diff --git a/pkgs/os-specific/linux/kernel/linux-4.2.nix b/pkgs/os-specific/linux/kernel/linux-4.2.nix index d4c42ba2842..6d2deead3a2 100644 --- a/pkgs/os-specific/linux/kernel/linux-4.2.nix +++ b/pkgs/os-specific/linux/kernel/linux-4.2.nix @@ -1,13 +1,13 @@ { stdenv, fetchurl, perl, buildLinux, ... } @ args: import ./generic.nix (args // rec { - version = "4.2.5"; + version = "4.2.6"; # Remember to update grsecurity! extraMeta.branch = "4.2"; src = fetchurl { url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz"; - sha256 = "11riafz0nljlgx8fpbfwlb5kb07naca2p07vk2wrcwyzil1vnhvw"; + sha256 = "0p7v6v3v9kn7w5iragi5hx0dylhis0jy6xmk77gka486q1ynpnqp"; }; features.iwlwifi = true; diff --git a/pkgs/os-specific/linux/kernel/perf.nix b/pkgs/os-specific/linux/kernel/perf.nix index 2dcdcdc4a91..1e5c64ccb8a 100644 --- a/pkgs/os-specific/linux/kernel/perf.nix +++ b/pkgs/os-specific/linux/kernel/perf.nix @@ -1,6 +1,6 @@ { lib, stdenv, kernel, elfutils, python, perl, newt, slang, asciidoc, xmlto , docbook_xsl, docbook_xml_dtd_45, libxslt, flex, bison, pkgconfig, libunwind, binutils -, withGtk ? false, gtk ? null }: +, zlib, withGtk ? false, gtk ? null }: with lib; @@ -23,7 +23,7 @@ stdenv.mkDerivation { # perf refers both to newt and slang # binutils is required for libbfd. nativeBuildInputs = [ asciidoc xmlto docbook_xsl docbook_xml_dtd_45 libxslt flex bison ]; - buildInputs = [ python perl newt slang pkgconfig libunwind binutils ] ++ + buildInputs = [ python perl newt slang pkgconfig libunwind binutils zlib ] ++ stdenv.lib.optional withGtk gtk; # Note: we don't add elfutils to buildInputs, since it provides a diff --git a/pkgs/os-specific/linux/kexectools/default.nix b/pkgs/os-specific/linux/kexectools/default.nix index 483cdef079d..aefb6dbaaca 100644 --- a/pkgs/os-specific/linux/kexectools/default.nix +++ b/pkgs/os-specific/linux/kexectools/default.nix @@ -1,12 +1,15 @@ { stdenv, fetchurl, zlib }: -let version = "2.0.10"; in +let version = "2.0.11"; in stdenv.mkDerivation rec { name = "kexec-tools-${version}"; src = fetchurl { - url = "http://horms.net/projects/kexec/kexec-tools/${name}.tar.xz"; - sha256 = "18x134nj37j1rshn5hxbyhdcv9kk5sfshs72alkip1icf54l2gp2"; + urls = [ + "mirror://kernel/linux/utils/kernel/kexec/${name}.tar.xz" + "http://horms.net/projects/kexec/kexec-tools/${name}.tar.xz" + ]; + sha256 = "1qrfka9xvy77k0rg3k0cf7xai0f9vpgsbs4l3bs8r4nvzy37j2di"; }; buildInputs = [ zlib ]; diff --git a/pkgs/os-specific/linux/mkinitcpio-nfs-utils/default.nix b/pkgs/os-specific/linux/mkinitcpio-nfs-utils/default.nix new file mode 100644 index 00000000000..f4e7ad1f234 --- /dev/null +++ b/pkgs/os-specific/linux/mkinitcpio-nfs-utils/default.nix @@ -0,0 +1,26 @@ +{ stdenv, fetchurl, xz }: + +stdenv.mkDerivation rec { + name = "mkinitcpio-nfs-utils-0.3"; + + src = fetchurl { + url = "https://sources.archlinux.org/other/mkinitcpio/${name}.tar.xz"; + sha256 = "0fc93sfk41ycpa33083kyd7i4y00ykpbhj5qlw611bjghj4x946j"; + # ugh, upstream... + name = "${name}.tar.gz"; + }; + + makeFlags = [ "DESTDIR=$(out)" "bindir=/bin" ]; + + postInstall = '' + rm -rf $out/usr + ''; + + meta = with stdenv.lib; { + homepage = https://archlinux.org/; + description = "ipconfig and nfsmount tools for root on NFS, ported from klibc"; + license = licenses.gpl2; + platforms = platforms.linux; + maintainers = with maintainers; [ abbradar ]; + }; +} diff --git a/pkgs/os-specific/linux/systemd/default.nix b/pkgs/os-specific/linux/systemd/default.nix index b4588e3d17f..a78f51ddb36 100644 --- a/pkgs/os-specific/linux/systemd/default.nix +++ b/pkgs/os-specific/linux/systemd/default.nix @@ -4,6 +4,7 @@ , kexectools, libmicrohttpd, linuxHeaders, libseccomp , autoreconfHook, gettext, docbook_xsl, docbook_xml_dtd_42, docbook_xml_dtd_45 , pythonPackages ? null, pythonSupport ? false +, enableKDbus ? false }: assert stdenv.isLinux; @@ -65,7 +66,7 @@ stdenv.mkDerivation rec { "--with-sysvinit-path=" "--with-sysvrcnd-path=" "--with-rc-local-script-path-stop=/etc/halt.local" - ]; + ] ++ stdenv.lib.optional enableKDbus "--enable-kdbus"; preConfigure = '' diff --git a/pkgs/os-specific/linux/trinity/default.nix b/pkgs/os-specific/linux/trinity/default.nix index 9b7e2a6876a..a60175900cd 100644 --- a/pkgs/os-specific/linux/trinity/default.nix +++ b/pkgs/os-specific/linux/trinity/default.nix @@ -1,20 +1,21 @@ -{ stdenv, fetchFromGitHub }: +{ stdenv, fetchFromGitHub, linuxHeaders }: stdenv.mkDerivation rec { name = "trinity-${version}"; - version = "1.5"; + version = "1.6"; src = fetchFromGitHub { owner = "kernelslacker"; repo = "trinity"; rev = "v${version}"; - sha256 = "0diwkda6n7yw8plfanivncwangk2kv1acxv0kyk3ly5jhlajwc0s"; + sha256 = "1jwgsjjbngn2dsnkflyigy3ajd0szksl30dlaiy02jc6mqi3nr0p"; }; patchPhase = '' patchShebangs ./configure.sh patchShebangs ./scripts/ substituteInPlace Makefile --replace '/usr/bin/wc' 'wc' + substituteInPlace configure.sh --replace '/usr/include/linux' '${linuxHeaders}/include/linux' ''; configurePhase = "./configure.sh"; diff --git a/pkgs/os-specific/linux/x86_energy_perf_policy/default.nix b/pkgs/os-specific/linux/x86_energy_perf_policy/default.nix new file mode 100644 index 00000000000..cca9dc09e93 --- /dev/null +++ b/pkgs/os-specific/linux/x86_energy_perf_policy/default.nix @@ -0,0 +1,25 @@ +{ stdenv, kernel }: + +stdenv.mkDerivation { + name = "x86_energy_perf_policy-${kernel.version}"; + + src = kernel.src; + + postPatch = '' + cd tools/power/x86/x86_energy_perf_policy + sed -i 's,/usr,,g' Makefile + ''; + + preInstall = '' + mkdir -p $out/bin $out/share/man/man8 + ''; + + makeFlags = [ "DESTDIR=$(out)" ]; + + meta = with stdenv.lib; { + description = "Set the energy versus performance policy preference bias on recent X86 processors"; + homepage = https://www.kernel.org.org/; + license = licenses.gpl2; + platforms = [ "i686-linux" "x86_64-linux" ]; # x86-specific + }; +} diff --git a/pkgs/servers/http/gatling/default.nix b/pkgs/servers/http/gatling/default.nix new file mode 100644 index 00000000000..3901d24edd5 --- /dev/null +++ b/pkgs/servers/http/gatling/default.nix @@ -0,0 +1,32 @@ +{ stdenv, fetchurl, libowfat, zlib, openssl, polarssl }: + +let + version = "0.13"; +in +stdenv.mkDerivation rec { + name = "gatling-${version}"; + + src = fetchurl { + url = "http://dl.fefe.de/${name}.tar.bz2"; + sha256 = "0icjx20ws8gqxgpm77dx7p9zcwi1fv162in6igx04rmnyzyla8dl"; + }; + + buildInputs = [ libowfat zlib openssl polarssl ]; + + configurePhase = '' + substituteInPlace Makefile --replace "/usr/local" "$out" + substituteInPlace GNUmakefile --replace "/opt/diet" "$out" + ''; + + buildPhase = '' + make gatling + ''; + + meta = with stdenv.lib; { + description = "A high performance web server"; + homepage = http://www.fefe.de/gatling/; + license = stdenv.lib.licenses.gpl2; + platforms = platforms.linux; + maintainers = [ maintainers.the-kenny ]; + }; +} diff --git a/pkgs/servers/mail/postfix/3.0.nix b/pkgs/servers/mail/postfix/3.0.nix new file mode 100644 index 00000000000..93f419bc7f6 --- /dev/null +++ b/pkgs/servers/mail/postfix/3.0.nix @@ -0,0 +1,63 @@ +{ stdenv, fetchurl, makeWrapper, gnused, db, openssl, cyrus_sasl, coreutils +, findutils, gnugrep, gawk, icu +}: + +stdenv.mkDerivation rec { + + name = "postfix-${version}"; + + version = "3.0.3"; + + src = fetchurl { + url = "ftp://ftp.cs.uu.nl/mirror/postfix/postfix-release/official/${name}.tar.gz"; + sha256 = "00mc12k5p1zlrlqcf33vh5zizaqr5ai8q78dwv69smjh6kn4c7j0"; + }; + + buildInputs = [ makeWrapper gnused db openssl cyrus_sasl icu ]; + + preBuild = '' + sed -e '/^PATH=/d' -i postfix-install + + export command_directory=$out/sbin + export config_directory=/etc/postfix + export daemon_directory=$out/libexec/postfix + export data_directory=/var/lib/postfix + export html_directory=$out/share/postfix/doc/html + export mailq_path=$out/bin/mailq + export manpage_directory=$out/share/man + export newaliases_path=$out/bin/newaliases + export queue_directory=/var/spool/postfix + export readme_directory=$out/share/postfix/doc + export sendmail_path=$out/bin/sendmail + + make makefiles \ + CCARGS='-DUSE_TLS -DUSE_SASL_AUTH -DUSE_CYRUS_SASL -I${cyrus_sasl}/include/sasl \ + -DHAS_DB_BYPASS_MAKEDEFS_CHECK \ + -fPIE -fstack-protector-all --param ssp-buffer-size=4 -O2 -D_FORTIFY_SOURCE=2' \ + AUXLIBS='-ldb -lnsl -lresolv -lsasl2 -lcrypto -lssl -pie -Wl,-z,relro,-z,now' + ''; + + installTargets = [ "non-interactive-package" ]; + + installFlags = [ " install_root=installdir " ]; + + postInstall = '' + mkdir -p $out + mv -v installdir/$out/* $out/ + mv -v installdir/etc $out/etc + sed -e '/^PATH=/d' -i $out/libexec/postfix/post-install + wrapProgram $out/libexec/postfix/post-install \ + --prefix PATH ":" ${coreutils}/bin:${findutils}/bin:${gnugrep}/bin + wrapProgram $out/libexec/postfix/postfix-script \ + --prefix PATH ":" ${coreutils}/bin:${findutils}/bin:${gnugrep}/bin:${gawk}/bin:${gnused}/bin + ''; + + meta = { + homepage = "http://www.postfix.org/"; + description = "A fast, easy to administer, and secure mail server"; + license = stdenv.lib.licenses.bsdOriginal; + platforms = stdenv.lib.platforms.linux; + maintainers = [ stdenv.lib.maintainers.rickynils ]; + }; + +} diff --git a/pkgs/servers/mpd/default.nix b/pkgs/servers/mpd/default.nix index c7380b02306..bf968ae4b39 100644 --- a/pkgs/servers/mpd/default.nix +++ b/pkgs/servers/mpd/default.nix @@ -29,13 +29,13 @@ let opt = stdenv.lib.optional; mkFlag = c: f: if c then "--enable-${f}" else "--disable-${f}"; major = "0.19"; - minor = "9"; + minor = "11"; in stdenv.mkDerivation rec { name = "mpd-${major}.${minor}"; src = fetchurl { url = "http://www.musicpd.org/download/mpd/${major}/${name}.tar.xz"; - sha256 = "0vzj365s4j0pw5w37lfhx3dmpkdp85driravsvx8rlrw0lii91a7"; + sha256 = "1iin50s8cnlsgjgjwkm1cbyxlwa0b79f6jfwydx5nyprbam6cp3s"; }; buildInputs = [ pkgconfig glib boost ] diff --git a/pkgs/servers/unifi/default.nix b/pkgs/servers/unifi/default.nix index 5d0e7455d94..8fab18c434e 100644 --- a/pkgs/servers/unifi/default.nix +++ b/pkgs/servers/unifi/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "unifi-controller-${version}"; - version = "4.7.5"; + version = "4.7.6"; src = fetchurl { url = "http://dl.ubnt.com/unifi/${version}/UniFi.unix.zip"; - sha256 = "1d5jkpwnz4wvcjr5i73m8i5aah6rkxwd0r9239l90v1ja9lkyk7w"; + sha256 = "0xinrxcbd5gb2jgcvrx3jcslad0f19qrbjzkiir9zjq59sn68gfn"; }; buildInputs = [ unzip ]; diff --git a/pkgs/servers/x11/xorg/default.nix b/pkgs/servers/x11/xorg/default.nix index d834482b683..a12af4776ee 100644 --- a/pkgs/servers/x11/xorg/default.nix +++ b/pkgs/servers/x11/xorg/default.nix @@ -1628,11 +1628,11 @@ let }) // {inherit fontsproto libpciaccess randrproto renderproto videoproto xextproto xorgserver xproto ;}; xf86videointel = (mkDerivation "xf86videointel" { - name = "xf86-video-intel-2015-07-22"; + name = "xf86-video-intel-2015-11-10"; builder = ./builder.sh; src = fetchurl { - url = http://cgit.freedesktop.org/xorg/driver/xf86-video-intel/snapshot/a29e765ec0c1d73ee7ef2dad3aa148214ec04335.tar.gz; - sha256 = "094qa8x0f7vgyirjbj9qdyak71nwxnmmsxml4zk49z59blq4l874"; + url = http://cgit.freedesktop.org/xorg/driver/xf86-video-intel/snapshot/97786e99fbfb8f8ea3931c305f31e993de378fb2.tar.gz; + sha256 = "09rckmvg66yw13v9gbn34im7vjnj48skcj2kb85bfwk2c8q3dfgx"; }; buildInputs = [pkgconfig dri2proto dri3proto fontsproto libdrm libpng udev libpciaccess presentproto randrproto renderproto libX11 xcbutil libxcb libXcursor libXdamage libXext xextproto xf86driproto libXfixes xorgserver xproto libXrandr libXrender libxshmfence libXtst libXvMC ]; }) // {inherit dri2proto dri3proto fontsproto libdrm libpng udev libpciaccess presentproto randrproto renderproto libX11 xcbutil libxcb libXcursor libXdamage libXext xextproto xf86driproto libXfixes xorgserver xproto libXrandr libXrender libxshmfence libXtst libXvMC ;}; diff --git a/pkgs/tools/admin/awscli/default.nix b/pkgs/tools/admin/awscli/default.nix index 06c9b85b8d6..c4de8090e05 100644 --- a/pkgs/tools/admin/awscli/default.nix +++ b/pkgs/tools/admin/awscli/default.nix @@ -13,7 +13,7 @@ pythonPackages.buildPythonPackage rec { }; propagatedBuildInputs = [ - pythonPackages.botocore + pythonPackages.botocore_1_1_10 pythonPackages.bcdoc pythonPackages.six pythonPackages.colorama diff --git a/pkgs/tools/backup/obnam/default.nix b/pkgs/tools/backup/obnam/default.nix index 4b6ffd09a41..5f2c9b2a69d 100644 --- a/pkgs/tools/backup/obnam/default.nix +++ b/pkgs/tools/backup/obnam/default.nix @@ -2,13 +2,13 @@ pythonPackages.buildPythonPackage rec { name = "obnam-${version}"; - version = "1.17"; + version = "1.18.1"; namePrefix = ""; src = fetchurl rec { url = "http://code.liw.fi/debian/pool/main/o/obnam/obnam_${version}.orig.tar.xz"; - sha256 = "01h1la07ra9v5zaqbs1qzsri2pdc9qrk2pz8y07msqg850w59k3v"; + sha256 = "0ziwabd58hml0qziv94fhrffdn9wpaa4zh5cgnzdsv6fcahmjla5"; }; buildInputs = [ pythonPackages.sphinx attr ]; diff --git a/pkgs/tools/filesystems/exfat/default.nix b/pkgs/tools/filesystems/exfat/default.nix index 08cb70dcfc8..f8a0d09bc52 100644 --- a/pkgs/tools/filesystems/exfat/default.nix +++ b/pkgs/tools/filesystems/exfat/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, fuse }: -let version = "1.2.1"; in +let version = "1.2.2"; in stdenv.mkDerivation rec { name = "exfat-${version}"; src = fetchFromGitHub { - sha256 = "1k716civkxszkzpc7bcqqcmfik8lpwk3zwp2nl4v844b8g7r5xz9"; + sha256 = "17yyd988l4r5w3q3h3hjlxprbw74wdg4n759lzg325smh96qk7p1"; rev = "v${version}"; repo = "exfat"; owner = "relan"; diff --git a/pkgs/tools/graphics/wkhtmltopdf/default.nix b/pkgs/tools/graphics/wkhtmltopdf/default.nix index 2f3929b82b8..89ea0e94444 100644 --- a/pkgs/tools/graphics/wkhtmltopdf/default.nix +++ b/pkgs/tools/graphics/wkhtmltopdf/default.nix @@ -2,21 +2,23 @@ , openssl, libX11, libXext, libXrender, overrideDerivation }: stdenv.mkDerivation rec { - version = "0.12.1"; + version = "0.12.2.4"; name = "wkhtmltopdf-${version}"; src = fetchgit { url = "https://github.com/wkhtmltopdf/wkhtmltopdf.git"; rev = "refs/tags/${version}"; - sha256 = "0wjzaaviy1k3z8r2kzb2rmyx6xdj23a338b86sxcb15ws3kzwgwh"; + sha256 = "0g96vgi3s633j4myjfzakkyiml1zspvdvbc0q1vhw8fp5n1xdknm"; + fetchSubmodules = false; }; wkQt = overrideDerivation qt4 (deriv: { name = "qt-mod-4.8.6"; + enableParallelBuilding = true; src = fetchgit { url = "https://github.com/wkhtmltopdf/qt.git"; - rev = "82b568b"; # From git submodule spec in wkhtml repo. - sha256 = "0whppwxnymh5bdayqsqx54n074m99yk6v78z7f0k5prja55yvwyx"; + rev = "48e71c19c7fc67517fb3dca6d42eacb57341c9ba"; # From git submodule spec in wkhtml repo. + sha256 = "1ygr7g3k900zjf54ji6kkfppqnxaqwbh8npr53g2krdw3bmny6fx"; }; configureFlags = '' @@ -67,12 +69,12 @@ stdenv.mkDerivation rec { ]; configurePhase = "qmake wkhtmltopdf.pro INSTALLBASE=$out"; - + patches = [ ./makefix.patch ]; enableParallelBuilding = true; - meta = { + meta = with stdenv.lib; { homepage = http://wkhtmltopdf.org/; description = "Tools for rendering web pages to PDF or images"; longDescription = '' @@ -83,6 +85,7 @@ stdenv.mkDerivation rec { There is also a C library, if you're into that kind of thing. ''; - license = stdenv.lib.licenses.gpl3Plus; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ jb55 ]; }; } diff --git a/pkgs/tools/misc/goaccess/default.nix b/pkgs/tools/misc/goaccess/default.nix index 8ce93f6bb66..b9310db0ee8 100644 --- a/pkgs/tools/misc/goaccess/default.nix +++ b/pkgs/tools/misc/goaccess/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, pkgconfig, geoip, ncurses, glib }: +{ stdenv, fetchurl, pkgconfig, geoipWithDatabase, ncurses, glib }: let version = "0.9.4"; @@ -19,7 +19,7 @@ stdenv.mkDerivation rec { buildInputs = [ pkgconfig - geoip + geoipWithDatabase ncurses glib ]; diff --git a/pkgs/tools/misc/rmlint/default.nix b/pkgs/tools/misc/rmlint/default.nix index 392734e2256..967efd3fae3 100644 --- a/pkgs/tools/misc/rmlint/default.nix +++ b/pkgs/tools/misc/rmlint/default.nix @@ -4,11 +4,11 @@ with stdenv.lib; stdenv.mkDerivation rec { name = "rmlint-${version}"; - version = "2.2.0"; + version = "2.4.1"; src = fetchurl { url = "https://github.com/sahib/rmlint/archive/v${version}.tar.gz"; - sha256 = "1wg6br30ccvxl2189a75lb3d03kg8spfkkp9qlf3whl0xirsm15n"; + sha256 = "1ja73r6ijklvw34yv0fgflc1ps58xnd559rjnxkqfmi33xjwx7f0"; }; configurePhase = "scons config"; diff --git a/pkgs/tools/misc/tlp/default.nix b/pkgs/tools/misc/tlp/default.nix index 4f90b432d04..52d79a9bd5d 100644 --- a/pkgs/tools/misc/tlp/default.nix +++ b/pkgs/tools/misc/tlp/default.nix @@ -1,10 +1,10 @@ -{ stdenv, fetchFromGitHub, makeWrapper, perl, systemd, iw, rfkill, hdparm, ethtool, inetutils, kmod -, enableRDW ? true, networkmanager }: +{ stdenv, lib, fetchFromGitHub, makeWrapper, perl, systemd, iw, rfkill, hdparm, ethtool, inetutils +, kmod, pciutils, smartmontools, x86_energy_perf_policy +, enableRDW ? false, networkmanager +}: let version = "0.8"; in stdenv.mkDerivation { - inherit enableRDW; - name = "tlp-${version}"; src = fetchFromGitHub { @@ -26,10 +26,11 @@ in stdenv.mkDerivation { buildInputs = [ perl ]; - paths = with stdenv.lib; - concatMapStringsSep ":" (x: "${x}/bin") - ([ iw rfkill hdparm ethtool inetutils systemd kmod ] - ++ optional enableRDW networkmanager + paths = lib.makeSearchPath "bin" + ([ iw rfkill hdparm ethtool inetutils systemd kmod pciutils smartmontools + x86_energy_perf_policy + ] + ++ lib.optional enableRDW networkmanager ); installTargets = [ "install-tlp" ] ++ stdenv.lib.optional enableRDW "install-rdw"; @@ -40,13 +41,6 @@ in stdenv.mkDerivation { wrapProgram "$i" \ --prefix PATH : "$paths" done - if [ "$enableRDW" = "1" ]; then - for i in $out/etc/NetworkManager/dispatcher.d/*; do - sed -i "s,/usr/lib/,$out/lib/,g" "$i" - wrapProgram "$i" \ - --prefix PATH : "$paths" - done - fi for i in $out/lib/udev/rules.d/*; do sed -i "s,RUN+=\",\\0$out,g; s,/usr/sbin,/bin,g" "$i" @@ -55,10 +49,14 @@ in stdenv.mkDerivation { for i in man/*; do install -D $i $out/share/man/man''${i##*.}/$(basename $i) done + '' + lib.optionalString enableRDW '' + for i in $out/etc/NetworkManager/dispatcher.d/*; do + sed -i "s,/usr/lib/,$out/lib/,g" "$i" + wrapProgram "$i" \ + --prefix PATH : "$paths" + done ''; - passthru = { inherit enableRDW; }; - meta = with stdenv.lib; { description = "Advanced Power Management for Linux"; homepage = "http://linrunner.de/en/tlp/docs/tlp-linux-advanced-power-management.html"; diff --git a/pkgs/tools/misc/tmux-cssh/default.nix b/pkgs/tools/misc/tmux-cssh/default.nix new file mode 100644 index 00000000000..f54cd2756eb --- /dev/null +++ b/pkgs/tools/misc/tmux-cssh/default.nix @@ -0,0 +1,41 @@ +{ stdenv, fetchFromGitHub, makeWrapper, tmux }: + +stdenv.mkDerivation { + name = "tmux-cssh-20151015"; + + src = fetchFromGitHub { + owner = "dennishafemann"; + repo = "tmux-cssh"; + rev = "21750733c5b6fa2fe23b9e50ce69d8564f2f742a"; + sha256 = "473e27f3b69864b905d1340d97917cd202705c761611eb3aec4c24521f69b52c"; + }; + + buildInputs = [ makeWrapper ]; + + installPhase = '' + mkdir -p $out/bin + cp tmux-cssh $out/bin/tmux-cssh + wrapProgram $out/bin/tmux-cssh --suffix PATH : ${tmux}/bin + ''; + + meta = { + homepage = https://github.com/dennishafemann/tmux-cssh; + description = "SSH to multiple hosts at the same time using tmux"; + + longDescription = + '' + tmux is a terminal multiplexer, like e.g. screen, which gives you a + possibility to use multiple virtual terminal session within one real + terminal session. tmux-cssh (tmux-cluster-ssh) sets a comfortable and + easy to use functionality, clustering and synchronizing virtual + tmux-sessions, on top of tmux. No need for a x-server or x-forwarding. + tmux-cssh works just with tmux and in an low-level terminal-environment, + like most server do. + ''; + + license = stdenv.lib.licenses.asl20; + + platforms = stdenv.lib.platforms.unix; + maintainers = with stdenv.lib.maintainers; [ zimbatm ]; + }; +} diff --git a/pkgs/tools/misc/youtube-dl/default.nix b/pkgs/tools/misc/youtube-dl/default.nix index 0395edf5f3f..1e8a8355ab2 100644 --- a/pkgs/tools/misc/youtube-dl/default.nix +++ b/pkgs/tools/misc/youtube-dl/default.nix @@ -14,7 +14,7 @@ buildPythonPackage rec { src = fetchurl { url = "http://yt-dl.org/downloads/${meta.version}/${name}.tar.gz"; - sha256 = "1q9srq08vb2yzl81hmjrgqwajckq52fhh9ag2ppbbxjibf91w5gs"; + sha256 = "c5a34ecbcf27ff34e1aae7c17732095309012e33ea9d1d4def613ca73f47e6be"; }; buildInputs = [ makeWrapper zip pandoc ]; @@ -24,7 +24,7 @@ buildPythonPackage rec { ''wrapProgram $out/bin/youtube-dl --prefix PATH : "${ffmpeg}/bin"''; meta = with stdenv.lib; { - version = "2015.10.24"; + version = "2015.11.10"; homepage = http://rg3.github.io/youtube-dl/; repositories.git = https://github.com/rg3/youtube-dl.git; description = "Command-line tool to download videos from YouTube.com and other sites"; diff --git a/pkgs/tools/networking/dropbear/default.nix b/pkgs/tools/networking/dropbear/default.nix index 79a23ae3832..98ea4c82304 100644 --- a/pkgs/tools/networking/dropbear/default.nix +++ b/pkgs/tools/networking/dropbear/default.nix @@ -35,9 +35,11 @@ stdenv.mkDerivation rec { buildInputs = [ zlib ]; - meta = { + meta = with stdenv.lib; { homepage = http://matt.ucc.asn.au/dropbear/dropbear.html; description = "An small footprint implementation of the SSH 2 protocol"; - license = stdenv.lib.licenses.mit; + license = licenses.mit; + maintainers = with maintainers; [ abbradar ]; + platforms = platforms.unix; }; } diff --git a/pkgs/tools/networking/dropbear/pass-path.patch b/pkgs/tools/networking/dropbear/pass-path.patch index 1e223e0ad64..2ce08b05799 100644 --- a/pkgs/tools/networking/dropbear/pass-path.patch +++ b/pkgs/tools/networking/dropbear/pass-path.patch @@ -1,31 +1,36 @@ diff --git a/svr-chansession.c b/svr-chansession.c -index 23dad8c..32cac13 100644 +index e44299e..7ef750a 100644 --- a/svr-chansession.c +++ b/svr-chansession.c -@@ -823,6 +823,7 @@ static void addchildpid(struct ChanSess *chansess, pid_t pid) { +@@ -893,6 +893,8 @@ static void addchildpid(struct ChanSess *chansess, pid_t pid) { static void execchild(void *user_data) { struct ChanSess *chansess = user_data; char *usershell = NULL; + const char *path = DEFAULT_PATH; ++ const char *ldpath = NULL; - /* with uClinux we'll have vfork()ed, so don't want to overwrite the - * hostkey. can't think of a workaround to clear it */ -@@ -835,6 +836,9 @@ static void execchild(void *user_data) { - reseedrandom(); + /* with uClinux we'll have vfork()ed, so don't want to overwrite the + * hostkey. can't think of a workaround to clear it */ +@@ -905,6 +907,10 @@ static void execchild(void *user_data) { + seedrandom(); #endif -+ if (getenv("PATH")) -+ path = getenv("PATH"); ++ if (getenv("PATH")) ++ path = getenv("PATH"); ++ ldpath = getenv("LD_LIBRARY_PATH"); + /* clear environment */ /* if we're debugging using valgrind etc, we need to keep the LD_PRELOAD * etc. This is hazardous, so should only be used for debugging. */ -@@ -878,7 +882,7 @@ static void execchild(void *user_data) { +@@ -948,7 +954,10 @@ static void execchild(void *user_data) { addnewvar("LOGNAME", ses.authstate.pw_name); addnewvar("HOME", ses.authstate.pw_dir); addnewvar("SHELL", get_user_shell()); - addnewvar("PATH", DEFAULT_PATH); + addnewvar("PATH", path); ++ if (ldpath != NULL) { ++ addnewvar("LD_LIBRARY_PATH", ldpath); ++ } if (chansess->term != NULL) { addnewvar("TERM", chansess->term); } diff --git a/pkgs/tools/networking/nbd/default.nix b/pkgs/tools/networking/nbd/default.nix index d0011c66766..6cb75152af0 100644 --- a/pkgs/tools/networking/nbd/default.nix +++ b/pkgs/tools/networking/nbd/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, pkgconfig, glib }: stdenv.mkDerivation rec { - name = "nbd-3.11"; + name = "nbd-3.12.1"; src = fetchurl { url = "mirror://sourceforge/nbd/${name}.tar.xz"; - sha256 = "187jwc43dhxbv9rrszimm3bvwr1hcpyixv82jfd61p0nrds0yhhl"; + sha256 = "1pkkid657zgjymwxv3fm32cxnq9llfz29rl15vp6mn42vnzbj1di"; }; buildInputs = [ pkgconfig glib ] ++ stdenv.lib.optional (stdenv ? glibc) stdenv.glibc.kernelHeaders; diff --git a/pkgs/tools/networking/netsniff-ng/default.nix b/pkgs/tools/networking/netsniff-ng/default.nix index 3f29a11f906..121f08c7e55 100644 --- a/pkgs/tools/networking/netsniff-ng/default.nix +++ b/pkgs/tools/networking/netsniff-ng/default.nix @@ -2,7 +2,7 @@ , libnetfilter_conntrack, libnl, libpcap, libsodium, liburcu, ncurses, perl , pkgconfig, zlib }: -let version = "0.5.9-130-ga81b515"; in +let version = "0.6.0"; in stdenv.mkDerivation { name = "netsniff-ng-${version}"; @@ -10,8 +10,8 @@ stdenv.mkDerivation { src = fetchFromGitHub rec { repo = "netsniff-ng"; owner = repo; - rev = "a81b515484828e0cff848fb7689d4a4b77f020d8"; - sha256 = "0p65s9lpifagnb6mbw2la7zx2spckizd0pn5mp2zszn1nda5w0rq"; + rev = "v${version}"; + sha256 = "0vfs1vsrsbiqxp6nrdibxa60wivapjhj3sdpa4v90m3pfnqif46z"; }; buildInputs = [ bison flex geoip geolite-legacy libcli libnet libnl diff --git a/pkgs/tools/networking/ntp/default.nix b/pkgs/tools/networking/ntp/default.nix index a131c567d89..8a23eeb60f4 100644 --- a/pkgs/tools/networking/ntp/default.nix +++ b/pkgs/tools/networking/ntp/default.nix @@ -3,11 +3,11 @@ assert stdenv.isLinux -> libcap != null; stdenv.mkDerivation rec { - name = "ntp-4.2.8p3"; + name = "ntp-4.2.8p4"; src = fetchurl { url = "http://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/ntp-4.2/${name}.tar.gz"; - sha256 = "13zkzcvjm5kbxl4xbcmaq07slplhmpkgahzcqnqlba3cxpra9341"; + sha256 = "1fgxbhv0wyiivi6kh5zpzrd0yqmc48z7d3zmjspw9lj84mbn2s8d"; }; configureFlags = [ diff --git a/pkgs/tools/security/tor/torbrowser.nix b/pkgs/tools/security/tor/torbrowser.nix index 6e8f638c8b0..3ff4ce724b8 100644 --- a/pkgs/tools/security/tor/torbrowser.nix +++ b/pkgs/tools/security/tor/torbrowser.nix @@ -16,13 +16,13 @@ let in stdenv.mkDerivation rec { name = "tor-browser-${version}"; - version = "5.0.3"; + version = "5.0.4"; src = fetchurl { url = "https://archive.torproject.org/tor-package-archive/torbrowser/${version}/tor-browser-linux${if stdenv.is64bit then "64" else "32"}-${version}_en-US.tar.xz"; sha256 = if stdenv.is64bit then - "1lqsiidnlrh0dlwzc93d0vbjclkb1zq3mwfcjxadjpwik6afszsb" else - "1ajn1bw1j63h3yblh06mmp7xhwdhqg9pdkxyz1dqj1rsp264k50f"; + "03vn1wkkpgr6wzd6iiyqs7zv7yxl9q99j755n8l2579bd10w1xcn" else + "1yc13cykr4fafz6r8hnjccl0s33sk297c779cknbdbhj3z3yn163"; }; patchPhase = '' diff --git a/pkgs/tools/system/iops/default.nix b/pkgs/tools/system/iops/default.nix index 300fe59a97d..03c1c85ea84 100644 --- a/pkgs/tools/system/iops/default.nix +++ b/pkgs/tools/system/iops/default.nix @@ -23,7 +23,7 @@ stdenv.mkDerivation rec { homepage = http://www.vanheusden.com/iops/; license = licenses.gpl2; maintainers = with maintainers; davidak; - platforms = with platforms; unix; + platforms = with platforms; linux; # build problems on Darwin }; } diff --git a/pkgs/tools/system/rsyslog/default.nix b/pkgs/tools/system/rsyslog/default.nix index 3ba17f9e7d2..5d3dbd861aa 100644 --- a/pkgs/tools/system/rsyslog/default.nix +++ b/pkgs/tools/system/rsyslog/default.nix @@ -11,14 +11,14 @@ let mkFlag = cond: name: if cond then "--enable-${name}" else "--disable-${name}"; in stdenv.mkDerivation rec { - name = "rsyslog-8.12.0"; + name = "rsyslog-8.14.0"; src = fetchurl { url = "http://www.rsyslog.com/files/download/rsyslog/${name}.tar.gz"; - sha256 = "083yrgv7s5j7pfbk254lav15yyxsk04qhachxghrvs4nhangwss6"; + sha256 = "1hp7ga543m6vhijcnjb4z8v26ddjgypk1lh6km1cvxc45cfmnfs4"; }; - patches = [ ./fix-gnutls-detection.patch ]; + #patches = [ ./fix-gnutls-detection.patch ]; nativeBuildInputs = [ pkgconfig autoreconfHook ]; buildInputs = [ diff --git a/pkgs/tools/text/gist/Gemfile.lock b/pkgs/tools/text/gist/Gemfile.lock index a2d2659b69a..7414da072ad 100644 --- a/pkgs/tools/text/gist/Gemfile.lock +++ b/pkgs/tools/text/gist/Gemfile.lock @@ -1,7 +1,7 @@ GEM remote: https://rubygems.org/ specs: - gist (4.3.0) + gist (4.4.2) PLATFORMS ruby diff --git a/pkgs/tools/text/gist/default.nix b/pkgs/tools/text/gist/default.nix index 0833fd6ce18..223ba59eecb 100644 --- a/pkgs/tools/text/gist/default.nix +++ b/pkgs/tools/text/gist/default.nix @@ -1,6 +1,6 @@ { stdenv, lib, bundlerEnv }: -let version = "4.3.0"; +let version = "4.4.2"; in bundlerEnv { name = "gist-${version}"; gemfile = ./Gemfile; diff --git a/pkgs/tools/text/gist/gemset.nix b/pkgs/tools/text/gist/gemset.nix index 7d207374fe3..961f96dcb97 100644 --- a/pkgs/tools/text/gist/gemset.nix +++ b/pkgs/tools/text/gist/gemset.nix @@ -1,9 +1,9 @@ { "gist" = { - version = "4.3.0"; + version = "4.4.2"; source = { type = "gem"; - sha256 = "0az6l8nq433sszailr7kglh21l3gkcb11k7ag6668nyxxplm9rp0"; + sha256 = "0lr4rywpm549llk0ypdpb3sjdpqw9snzwzqc3dggg8qn5wj69k81"; }; }; } \ No newline at end of file diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 0fa29fe1134..3ff2f2a8607 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1396,8 +1396,6 @@ let execline = callPackage ../tools/misc/execline { }; - exercism = callPackage ../development/tools/exercism { }; - exif = callPackage ../tools/graphics/exif { }; exiftags = callPackage ../tools/graphics/exiftags { }; @@ -3175,6 +3173,8 @@ let tmux = callPackage ../tools/misc/tmux { }; + tmux-cssh = callPackage ../tools/misc/tmux-cssh { }; + tmuxinator = callPackage ../tools/misc/tmuxinator { }; tmin = callPackage ../tools/security/tmin { }; @@ -5725,6 +5725,8 @@ let oprofile = callPackage ../development/tools/profiling/oprofile { }; + parse-cli-bin = callPackage ../development/tools/parse-cli-bin { }; + patchelf = callPackage ../development/tools/misc/patchelf { }; peg = callPackage ../development/tools/parsing/peg { }; @@ -6044,7 +6046,9 @@ let cgui = callPackage ../development/libraries/cgui {}; - check = callPackage ../development/libraries/check { }; + check = callPackage ../development/libraries/check { + inherit (darwin.apple_sdk.frameworks) CoreServices; + }; chipmunk = callPackage ../development/libraries/chipmunk {}; @@ -9107,6 +9111,8 @@ let freeswitch = callPackage ../servers/sip/freeswitch { }; + gatling = callPackage ../servers/http/gatling { }; + groovebasin = callPackage ../applications/audio/groovebasin { }; hbase = callPackage ../servers/hbase {}; @@ -9209,10 +9215,9 @@ let popa3d = callPackage ../servers/mail/popa3d { }; postfix28 = callPackage ../servers/mail/postfix { }; - postfix211 = callPackage ../servers/mail/postfix/2.11.nix { }; - - postfix = postfix211; + postfix30 = callPackage ../servers/mail/postfix/3.0.nix { }; + postfix = postfix30; pshs = callPackage ../servers/http/pshs { }; @@ -10030,6 +10035,8 @@ let virtualboxGuestAdditions = callPackage ../applications/virtualization/virtualbox/guest-additions { }; + x86_energy_perf_policy = callPackage ../os-specific/linux/x86_energy_perf_policy { }; + zfs = callPackage ../os-specific/linux/zfs { configFile = "kernel"; inherit kernel spl; @@ -10137,6 +10144,12 @@ let mingetty = callPackage ../os-specific/linux/mingetty { }; + miraclecast = callPackage ../os-specific/linux/miraclecast { + systemd = systemd.override { enableKDbus = true; }; + }; + + mkinitcpio-nfs-utils = callPackage ../os-specific/linux/mkinitcpio-nfs-utils { }; + module_init_tools = callPackage ../os-specific/linux/module-init-tools { }; aggregateModules = modules: @@ -10883,6 +10896,8 @@ let ffmpeg = ffmpeg_0; }; + audio-recorder = callPackage ../applications/audio/audio-recorder { }; + milkytracker = callPackage ../applications/audio/milkytracker { }; schismtracker = callPackage ../applications/audio/schismtracker { }; @@ -11065,6 +11080,8 @@ let enableNetworkManager = config.networking.networkmanager.enable or false; }; + clfswm = callPackage ../applications/window-managers/clfswm { }; + clipgrab = callPackage ../applications/video/clipgrab { }; clipit = callPackage ../applications/misc/clipit { }; @@ -11181,9 +11198,7 @@ let djview = callPackage ../applications/graphics/djview { }; djview4 = pkgs.djview; - dmenu = callPackage ../applications/misc/dmenu { - enableXft = true; - }; + dmenu = callPackage ../applications/misc/dmenu { }; dmenu2 = callPackage ../applications/misc/dmenu2 { }; @@ -11548,13 +11563,7 @@ let gqrx = callPackage ../applications/misc/gqrx { }; - grass = callPackage ../applications/misc/grass { - fftw = fftwSinglePrec; - ffmpeg = ffmpeg_0; - motif = lesstif; - opendwg = libdwg; - wxPython = wxPython28; - }; + grass = callPackage ../applications/gis/grass { }; grip = callPackage ../applications/misc/grip { inherit (gnome) libgnome libgnomeui vte; @@ -12317,7 +12326,7 @@ let avahi = avahi.override { withLibdnssdCompat = true; }; - qt5 = qt54; # Mumble is not compatible with qt55 yet + qt5 = qt55; # Mumble is not compatible with qt55 yet jackSupport = config.mumble.jackSupport or false; speechdSupport = config.mumble.speechdSupport or false; pulseSupport = config.pulseaudio or false; @@ -13064,7 +13073,7 @@ let tla = callPackage ../applications/version-management/arch { }; tlp = callPackage ../tools/misc/tlp { - enableRDW = config.networking.networkmanager.enable or false; + inherit (linuxPackages) x86_energy_perf_policy; }; todo-txt-cli = callPackage ../applications/office/todo.txt-cli { }; @@ -13745,6 +13754,8 @@ let SDL_image = pkgsi686Linux.SDL_image.override { libpng = pkgsi686Linux.libpng12; }; + inherit (pkgsi686Linux.perlPackages) XMLLibXML XMLLibXSLT; + enableDFHack = config.dwarfFortress.enableDFHack or false; }; dwarf-therapist = callPackage ../games/dwarf-therapist { }; @@ -14662,6 +14673,8 @@ let hologram = goPackages.hologram.bin // { outputs = [ "bin" ]; }; + tini = callPackage ../applications/virtualization/tini {}; + isabelle = callPackage ../applications/science/logic/isabelle { inherit (pkgs.emacs24Packages) proofgeneral; java = if stdenv.isLinux then jre else jdk; diff --git a/pkgs/top-level/dotnet-packages.nix b/pkgs/top-level/dotnet-packages.nix index 1f22ea09288..b66a37c6935 100644 --- a/pkgs/top-level/dotnet-packages.nix +++ b/pkgs/top-level/dotnet-packages.nix @@ -452,60 +452,62 @@ let self = dotnetPackages // overrides; dotnetPackages = with self; { }; }; - MonoDevelopFSharpBinding = buildDotnetPackage rec { - baseName = "MonoDevelop.FSharpBinding"; - version = "git-a09c8185eb"; + # MonoDevelopFSharpBinding = buildDotnetPackage rec { + # baseName = "MonoDevelop.FSharpBinding"; + # version = "git-a09c8185eb"; - src = fetchFromGitHub { - owner = "fsharp"; - repo = "fsharpbinding"; - rev = "a09c8185ebf23fe2f7d22b14b4af2e3268d4f011"; - sha256 = "1zp5gig42s1h681kch0rw5ykbbj0mcsmdvpyz1319wy9s7n2ng91"; - }; + # broken = true; - buildInputs = [ - fsharp - monodevelop - pkgs.gtk-sharp - pkgs.gnome-sharp - dotnetPackages.ExtCore - dotnetPackages.FSharpCompilerService - dotnetPackages.FSharpCompilerCodeDom - dotnetPackages.FSharpAutoComplete - dotnetPackages.Fantomas - ]; + # src = fetchFromGitHub { + # owner = "fsharp"; + # repo = "fsharpbinding"; + # rev = "a09c8185ebf23fe2f7d22b14b4af2e3268d4f011"; + # sha256 = "1zp5gig42s1h681kch0rw5ykbbj0mcsmdvpyz1319wy9s7n2ng91"; + # }; - patches = [ - ../development/dotnet-modules/patches/monodevelop-fsharpbinding.references.patch - ../development/dotnet-modules/patches/monodevelop-fsharpbinding.addin-xml.patch - ]; + # buildInputs = [ + # fsharp + # monodevelop + # pkgs.gtk-sharp + # pkgs.gnome-sharp + # dotnetPackages.ExtCore + # dotnetPackages.FSharpCompilerService + # dotnetPackages.FSharpCompilerCodeDom + # dotnetPackages.FSharpAutoComplete + # dotnetPackages.Fantomas + # ]; - preConfigure = '' - substituteInPlace monodevelop/configure.fsx --replace /usr/lib/monodevelop ${monodevelop}/lib/monodevelop - substituteInPlace monodevelop/configure.fsx --replace bin/MonoDevelop.exe ../../bin/monodevelop - (cd monodevelop; fsharpi ./configure.fsx) - ''; + # patches = [ + # ../development/dotnet-modules/patches/monodevelop-fsharpbinding.references.patch + # ../development/dotnet-modules/patches/monodevelop-fsharpbinding.addin-xml.patch + # ]; - # This will not work as monodevelop probably looks in absolute nix store path rather than path - # relative to its executable. Need to ln -s /run/current-system/sw/lib/dotnet/MonoDevelop.FSharpBinding - # ~/.local/share/MonoDevelop-5.0/LocalInstall/Addins/ to install until we have a better way + # preConfigure = '' + # substituteInPlace monodevelop/configure.fsx --replace /usr/lib/monodevelop ${monodevelop}/lib/monodevelop + # substituteInPlace monodevelop/configure.fsx --replace bin/MonoDevelop.exe ../../bin/monodevelop + # (cd monodevelop; fsharpi ./configure.fsx) + # ''; - # postInstall = '' - # mkdir -p "$out/lib/monodevelop/AddIns" - # ln -sv "$out/lib/dotnet/${baseName}" "$out/lib/monodevelop/AddIns" - # ''; + # # This will not work as monodevelop probably looks in absolute nix store path rather than path + # # relative to its executable. Need to ln -s /run/current-system/sw/lib/dotnet/MonoDevelop.FSharpBinding + # # ~/.local/share/MonoDevelop-5.0/LocalInstall/Addins/ to install until we have a better way - xBuildFiles = [ "monodevelop/MonoDevelop.FSharpBinding/MonoDevelop.FSharp.mac-linux.fsproj" ]; - outputFiles = [ "monodevelop/bin/mac-linux/Release/*" ]; + # # postInstall = '' + # # mkdir -p "$out/lib/monodevelop/AddIns" + # # ln -sv "$out/lib/dotnet/${baseName}" "$out/lib/monodevelop/AddIns" + # # ''; - meta = { - description = "F# addin for MonoDevelop 5.9"; - homepage = "https://github.com/fsharp/fsharpbinding/tree/5.9"; - license = stdenv.lib.licenses.asl20; - maintainers = with stdenv.lib.maintainers; [ obadz ]; - platforms = with stdenv.lib.platforms; linux; - }; - }; + # xBuildFiles = [ "monodevelop/MonoDevelop.FSharpBinding/MonoDevelop.FSharp.mac-linux.fsproj" ]; + # outputFiles = [ "monodevelop/bin/mac-linux/Release/*" ]; + + # meta = { + # description = "F# addin for MonoDevelop 5.9"; + # homepage = "https://github.com/fsharp/fsharpbinding/tree/5.9"; + # license = stdenv.lib.licenses.asl20; + # maintainers = with stdenv.lib.maintainers; [ obadz ]; + # platforms = with stdenv.lib.platforms; linux; + # }; + # }; NDeskOptions = stdenv.mkDerivation rec { baseName = "NDesk.Options"; diff --git a/pkgs/top-level/emacs-packages.nix b/pkgs/top-level/emacs-packages.nix index d36100ab566..b89cabd4d31 100644 --- a/pkgs/top-level/emacs-packages.nix +++ b/pkgs/top-level/emacs-packages.nix @@ -1238,6 +1238,21 @@ let self = _self // overrides; }; }; + paredit = trivialBuild rec { + pname = "paredit-${version}"; + version = "25"; + src = fetchgit { + url = http://mumble.net/~campbell/git/paredit.git/; + rev = "9a696fdcce87c9d9eec4569a9929d0300ac6ae5c"; + sha256 = "13wjqimp2s6pwcqix8pmsrk76bq1cxlnwmj3m57bb5y60y67vp9l"; + }; + meta = { + homepage = http://www.emacswiki.org/emacs/ParEdit; + description = "Minor Emacs mode for structured editing of S-expression data"; + license = gpl3Plus; + }; + }; + perspective = melpaBuild rec { pname = "perspective"; version = "1.12"; diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index 8d7bf3f701e..db110d3a1ef 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -549,6 +549,15 @@ let sha256 = "1rmm1ky7irqypqjkk6qcd2n0xkzpaggdxql9dp9i9qci5rvvwwd4"; }; + exercism = buildFromGitHub { + rev = "v2.2.1"; + name = "exercism"; + owner = "exercism"; + repo = "cli"; + sha256 = "13kwcxd7m3xv42j50nlm9dd08865dxji41glfvnb4wwq9yicyn4g"; + buildInputs = [ net cli-go osext ]; + }; + exponential-backoff = buildFromGitHub { rev = "96e25d36ae36ad09ac02cbfe653b44c4043a8e09"; owner = "odeke-em"; diff --git a/pkgs/top-level/haskell-packages.nix b/pkgs/top-level/haskell-packages.nix index 5842cc3331f..3c40c91ff41 100644 --- a/pkgs/top-level/haskell-packages.nix +++ b/pkgs/top-level/haskell-packages.nix @@ -285,6 +285,9 @@ rec { lts-3_12 = packages.ghc7102.override { packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-3.12.nix { }; }; + lts-3_13 = packages.ghc7102.override { + packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-3.13.nix { }; + }; }; } diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index 3a6b78299d1..1cfad557d15 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -1270,6 +1270,21 @@ let self = _self // overrides; _self = with self; { }; }; + CatalystViewCSV = buildPerlPackage rec { + name = "Catalyst-View-CSV-1.7"; + src = fetchurl { + url = "mirror://cpan/authors/id/M/MC/MCB/${name}.tar.gz"; + sha256 = "e41326b6099891f244b432921ed10096ac619f32b8c4f8b41633313bd54662db"; + }; + buildInputs = [ CatalystActionRenderView CatalystModelDBICSchema CatalystPluginConfigLoader CatalystRuntime CatalystXComponentTraits ConfigGeneral DBDSQLite DBIxClass Moose TestException ]; + propagatedBuildInputs = [ CatalystRuntime TextCSV URI ]; + meta = { + description = "CSV view class"; + license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; + maintainers = [ maintainers.rycee ]; + }; + }; + CatalystViewDownload = buildPerlPackage rec { name = "Catalyst-View-Download-0.09"; src = fetchurl { @@ -2485,11 +2500,11 @@ let self = _self // overrides; _self = with self; { propagatedBuildInputs = [ FileFindRule ]; }; - DataDump = buildPerlPackage { - name = "Data-Dump-1.22"; + DataDump = buildPerlPackage rec { + name = "Data-Dump-1.23"; src = fetchurl { - url = mirror://cpan/authors/id/G/GA/GAAS/Data-Dump-1.22.tar.gz; - sha256 = "1ciqlwsy1q35s94dry9bjy1pwanbq6b7q4rhxm9z8prgkzbslg2k"; + url = "mirror://cpan/authors/id/G/GA/GAAS/${name}.tar.gz"; + sha256 = "0r9ba52b7p8nnn6nw0ygm06lygi8g68piri78jmlqyrqy5gb0lxg"; }; meta = { description = "Pretty printing of data structures"; @@ -2506,10 +2521,10 @@ let self = _self // overrides; _self = with self; { }; DataDumperConcise = buildPerlPackage rec { - name = "Data-Dumper-Concise-2.020"; + name = "Data-Dumper-Concise-2.022"; src = fetchurl { url = "mirror://cpan/modules/by-module/Data/${name}.tar.gz"; - sha256 = "0zb792d2dmpl0dnfmwcgh6wppb5h56hwycdbcf97wqxcgjk3k7hn"; + sha256 = "0z7vxgk1f2kw2zpiimdsyf7jq9f4s5dhh3dlimq5yrirypnk03sc"; }; }; @@ -2540,10 +2555,10 @@ let self = _self // overrides; _self = with self; { }; DataInteger = buildPerlPackage rec { - name = "Data-Integer-0.004"; + name = "Data-Integer-0.005"; src = fetchurl { url = "mirror://cpan/authors/id/Z/ZE/ZEFRAM/${name}.tar.gz"; - sha256 = "3a52f7717d1ebda3af40036d72cbcadd1984210737743997abdad141d620f67e"; + sha256 = "1dk04jf78sv63lww1qzagxlywcc04cfd3cfvzz168d24db9cr5bz"; }; }; @@ -2641,10 +2656,10 @@ let self = _self // overrides; _self = with self; { }; DataUUID = buildPerlPackage rec { - name = "Data-UUID-1.219"; + name = "Data-UUID-1.220"; src = fetchurl { url = "mirror://cpan/modules/by-module/Data/${name}.tar.gz"; - sha256 = "0a6s6qwc548c1ldf459i5z55fvxsrdi4rnc57d167wdbdydd6dn7"; + sha256 = "0q7rfi7firwcvkhh9bym3c56hlm63badfli27m77139lwh33nlwr"; }; }; @@ -2690,11 +2705,11 @@ let self = _self // overrides; _self = with self; { }; }; - DateManip = buildPerlPackage { - name = "Date-Manip-6.43"; + DateManip = buildPerlPackage rec { + name = "Date-Manip-6.51"; src = fetchurl { - url = mirror://cpan/authors/id/S/SB/SBECK/Date-Manip-6.43.tar.gz; - sha256 = "0jwg87j31gw2fn8csm1zyfqxd0dxh8sbv940ma9idg6g7856zfrz"; + url = "mirror://cpan/authors/id/S/SB/SBECK/${name}.tar.gz"; + sha256 = "0afvr2q2hspd807d6wd7kmrr7ypxdlh8bcnqsqbfwcwd74qadg13"; }; propagatedBuildInputs = [ TestInter ]; meta = { @@ -3108,19 +3123,23 @@ let self = _self // overrides; _self = with self; { }; }; - DBIxClass = buildPerlPackage { - name = "DBIx-Class-0.082801"; + DBIxClass = buildPerlPackage rec { + name = "DBIx-Class-0.082820"; src = fetchurl { - url = mirror://cpan/authors/id/R/RI/RIBASUSHI/DBIx-Class-0.082801.tar.gz; - sha256 = "889d6f9139d8e73f5524dfa211019126042e84cb7a0ec30cd2ed7d315d73484b"; + url = "mirror://cpan/authors/id/R/RI/RIBASUSHI/${name}.tar.gz"; + sha256 = "7b6083a1273d474d785aa93581dc1da334bbe5d83c741574ee2e3942559daeb9"; }; - buildInputs = [ DBDSQLite PackageStash TestDeep TestException TestWarn ]; - propagatedBuildInputs = [ ClassAccessorGrouped ClassC3Componentised ClassInspector ConfigAny ContextPreserve DBI DataDumperConcise DataPage DevelGlobalDestruction HashMerge MROCompat ModuleFind Moo PathClass SQLAbstract ScopeGuard SubName TryTiny namespaceclean ]; - doCheck = false; + buildInputs = [ DBDSQLite PackageStash SQLTranslator TestDeep TestException TestWarn ]; + propagatedBuildInputs = [ ClassAccessorGrouped ClassC3Componentised ClassInspector ConfigAny ContextPreserve DBI DataDumperConcise DataPage DevelGlobalDestruction HashMerge MROCompat ModuleFind Moo PathClass SQLAbstract ScopeGuard SubName namespaceclean ]; + patches = [ + # Fix test error inside t/52leaks.t + ../development/perl-modules/dbix-class-fix-52leaks.patch + ]; meta = { homepage = http://www.dbix-class.org/; description = "Extensible and flexible object <-> relational mapper"; license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; + maintainers = [ maintainers.rycee ]; }; }; @@ -5717,6 +5736,21 @@ let self = _self // overrides; _self = with self; { doCheck = false; # tries to connect to facebook.com etc. }; + IOSocketTimeout = buildPerlPackage rec { + name = "IO-Socket-Timeout-0.32"; + src = fetchurl { + url = "mirror://cpan/authors/id/D/DA/DAMS/${name}.tar.gz"; + sha256 = "edf915d6cc66bee43503aa6dc2b373366f38eaff701582183dad10cb8adf2972"; + }; + buildInputs = [ ModuleBuildTiny TestTCP ]; + propagatedBuildInputs = [ PerlIOviaTimeout ]; + meta = { + description = "IO::Socket with read/write timeout"; + license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; + maintainers = [ maintainers.rycee ]; + }; + }; + IOString = buildPerlPackage rec { name = "IO-String-1.08"; src = fetchurl { @@ -7199,17 +7233,18 @@ let self = _self // overrides; _self = with self; { }; }; - Moo = buildPerlPackage { - name = "Moo-1.006000"; + Moo = buildPerlPackage rec { + name = "Moo-2.000002"; src = fetchurl { - url = mirror://cpan/authors/id/H/HA/HAARG/Moo-1.006000.tar.gz; - sha256 = "0gjh6dyz825cwjibq2wlpx14drjqx4pxxh931p4x3jd2617hax17"; + url = "mirror://cpan/authors/id/H/HA/HAARG/${name}.tar.gz"; + sha256 = "fb4bfa751f0dd06bd70f2e06e811f85a640501f263c228a8efafbf6b26691fd4"; }; buildInputs = [ TestFatal ]; - propagatedBuildInputs = [ ClassMethodModifiers DevelGlobalDestruction ImportInto ModuleRuntime RoleTiny strictures ]; + propagatedBuildInputs = [ ClassMethodModifiers DevelGlobalDestruction ModuleRuntime RoleTiny ]; meta = { description = "Minimalist Object Orientation (with Moose compatibility)"; license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; + maintainers = [ maintainers.rycee ]; }; }; @@ -8784,6 +8819,20 @@ let self = _self // overrides; _self = with self; { ''; }; + PerlIOviaTimeout = buildPerlPackage rec { + name = "PerlIO-via-Timeout-0.32"; + src = fetchurl { + url = "mirror://cpan/authors/id/D/DA/DAMS/${name}.tar.gz"; + sha256 = "9278f9ef668850d913d98fa4c0d7e7d667cff3503391f4a4eae73a246f2e7916"; + }; + buildInputs = [ ModuleBuildTiny TestTCP ]; + meta = { + description = "A PerlIO layer that adds read & write timeout to a handle"; + license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; + maintainers = [ maintainers.rycee ]; + }; + }; + PerlMagick = buildPerlPackage rec { name = "PerlMagick-6.89-1"; src = fetchurl { @@ -9321,19 +9370,19 @@ let self = _self // overrides; _self = with self; { }; }; - Redis = buildPerlPackage { - name = "Redis-1.2001"; + Redis = buildPerlPackage rec { + name = "Redis-1.981"; src = fetchurl { - url = mirror://cpan/authors/id/D/DP/DPAVLIN/Redis-1.2001.tar.gz; - sha256 = "1d16dr2qjmb3vswghrk5ygggcmz2rzw7qnw3g87prwi08z5ryih0"; + url = "mirror://cpan/authors/id/D/DA/DAMS/${name}.tar.gz"; + sha256 = "5eb65fb6fdfc43f143c7095ec9500f829724274a295eb43d3882ff8798fa3793"; }; - buildInputs = [ IOString TestDeep TestFatal ]; - propagatedBuildInputs = [ TryTiny ]; + buildInputs = [ IOString ModuleBuildTiny PodCoverageTrustPod TestCPANMeta TestDeep TestFatal TestSharedFork TestTCP ]; + propagatedBuildInputs = [ IOSocketTimeout ]; meta = { - homepage = http://metacpan.org/release/Redis/; + homepage = https://metacpan.org/pod/Redis; description = "Perl binding for Redis database"; license = stdenv.lib.licenses.artistic2; - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ocharles rycee ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -9441,16 +9490,17 @@ let self = _self // overrides; _self = with self; { }; }; - RoleTiny = buildPerlPackage { - name = "Role-Tiny-1.003003"; + RoleTiny = buildPerlPackage rec { + name = "Role-Tiny-2.000001"; src = fetchurl { - url = mirror://cpan/authors/id/H/HA/HAARG/Role-Tiny-1.003003.tar.gz; - sha256 = "1k823g4wnya18yx2v1xrfl73qqavqpzvaydyg1r7gdzcdvdwl4mp"; + url = "mirror://cpan/authors/id/H/HA/HAARG/${name}.tar.gz"; + sha256 = "31883410a7c85d6dc7501c718b1f83edba013a7b9bbccf0338a1033c391f296d"; }; buildInputs = [ TestFatal ]; meta = { - description = "Roles, like a nouvelle cuisine portion size slice of Moose"; + description = "Roles. Like a nouvelle cuisine portion size slice of Moose"; license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; + maintainers = [ maintainers.rycee ]; }; }; @@ -9647,17 +9697,18 @@ let self = _self // overrides; _self = with self; { buildInputs = [ pkgs.which ]; }; - SoftwareLicense = buildPerlPackage { - name = "Software-License-0.103005"; + SoftwareLicense = buildPerlPackage rec { + name = "Software-License-0.103010"; src = fetchurl { - url = mirror://cpan/authors/id/R/RJ/RJBS/Software-License-0.103005.tar.gz; - sha256 = "050a14e0b3fb15763fd267fdd8ccc7ec8c459d8cc830b0bdc39ce09f5910f88c"; + url = "mirror://cpan/authors/id/R/RJ/RJBS/${name}.tar.gz"; + sha256 = "929fbace96f69a0977a0380000820c93fc1af4e973a422c73e6cd254405fa47c"; }; - propagatedBuildInputs = [ DataSection SubInstall TextTemplate ]; + propagatedBuildInputs = [ DataSection TextTemplate TryTiny ]; meta = { - homepage = https://github.com/rjbs/software-license; + homepage = https://github.com/rjbs/Software-License; description = "Packages that provide templated software licenses"; license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; + maintainers = [ maintainers.rycee ]; }; }; @@ -9688,17 +9739,18 @@ let self = _self // overrides; _self = with self; { propagatedBuildInputs = [ IOStringy OLEStorageLight ]; }; - SQLAbstract = buildPerlPackage { - name = "SQL-Abstract-1.80"; + SQLAbstract = buildPerlPackage rec { + name = "SQL-Abstract-1.81"; src = fetchurl { - url = mirror://cpan/authors/id/R/RI/RIBASUSHI/SQL-Abstract-1.80.tar.gz; - sha256 = "de4d0507fca0c6340c17867abca0632017bd56594443e67ea6ace826ba9a07a2"; + url = "mirror://cpan/authors/id/R/RI/RIBASUSHI/${name}.tar.gz"; + sha256 = "5f4d5618ce2424d62bbfdb5228b382e8be0e0ccedbb273d6d850e25d07e64f9f"; }; buildInputs = [ TestDeep TestException TestWarn ]; propagatedBuildInputs = [ HashMerge MROCompat Moo ]; meta = { description = "Generate SQL from Perl data structures"; license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; + maintainers = [ maintainers.rycee ]; }; }; @@ -10650,11 +10702,11 @@ let self = _self // overrides; _self = with self; { propagatedBuildInputs = [ Spiffy ]; }; - TestCheckDeps = buildPerlModule { - name = "Test-CheckDeps-0.006"; + TestCheckDeps = buildPerlPackage rec { + name = "Test-CheckDeps-0.010"; src = fetchurl { - url = mirror://cpan/authors/id/L/LE/LEONT/Test-CheckDeps-0.006.tar.gz; - sha256 = "774c1455566d11746118fd95305d1dbd111af86eac78058918e72468c43d9bcb"; + url = "mirror://cpan/authors/id/L/LE/LEONT/${name}.tar.gz"; + sha256 = "1vjinlixxdx6gfcw8y1dw2rla8bfhi8nmgcqr3nffc7kqskcrz36"; }; buildInputs = [ ModuleBuildTiny ModuleMetadata ]; propagatedBuildInputs = [ CPANMetaCheck ]; @@ -11496,7 +11548,12 @@ let self = _self // overrides; _self = with self; { name = "Text-CSV-1.33"; src = fetchurl { url = "mirror://cpan/authors/id/M/MA/MAKAMAKA/${name}.tar.gz"; - sha256 = "05a1nayxv04n0hx7y3m8327ijm34k9nhngrbxl18zmgzpawqynww"; + sha256 = "9c5b8fb9baffd58f02ed2b3f0b6d9a6454198f18a80e7f3a049680ddbdb24115"; + }; + meta = { + description = "Comma-separated values manipulator (using XS or PurePerl)"; + license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; + maintainers = [ maintainers.rycee ]; }; }; diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 0155e7cd5e2..542259e91f5 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -1620,7 +1620,64 @@ let }; }; + boto3 = buildPythonPackage rec { + name = "boto3-${version}"; + version = "1.1.4"; + + src = pkgs.fetchurl { + url = "https://github.com/boto/boto3/archive/${version}.zip"; + sha256 = "11fdfbq8ann11wdzmbd0djnb1biyyhs1jcc8maxmkcj2q9fw6dk0"; + }; + + propagatedBuildInputs = [ self.botocore + self.futures_2_2 + self.jmespath + ]; + buildInputs = [ self.docutils ]; + + meta = { + homepage = https://github.com/boto3/boto; + + license = stdenv.lib.licenses.asl20; + + description = "AWS SDK for Python"; + + longDescription = '' + Boto3 is the Amazon Web Services (AWS) Software Development Kit (SDK) for + Python, which allows Python developers to write software that makes use of + services like Amazon S3 and Amazon EC2. + ''; + }; + }; + botocore = buildPythonPackage rec { + version = "1.2.0"; + name = "botocore-${version}"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/b/botocore/${name}.tar.gz"; + sha256 = "0wj98fsiwqzy0i0zh86fx15sgdjkwqi6crxig6b4kvrckl8bkwjr"; + }; + + propagatedBuildInputs = + [ self.dateutil + self.requests + self.jmespath + ]; + + buildInputs = [ self.docutils ]; + + meta = { + homepage = https://github.com/boto/botocore; + + license = "bsd"; + + description = "A low-level interface to a growing number of Amazon Web Services"; + + }; + }; + + botocore_1_1_10 = buildPythonPackage rec { version = "1.1.10"; name = "botocore-${version}"; @@ -3693,11 +3750,11 @@ let elasticsearchdsl = buildPythonPackage (rec { - name = "elasticsearch-dsl-0.0.8"; + name = "elasticsearch-dsl-0.0.9"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/e/elasticsearch-dsl/${name}.tar.gz"; - sha256 = "0dd46s7g5l2b2jnjhcpcm721kcsnsqwngzik85jl5qbbcvnqqjzi"; + sha256 = "1gdcdshk881vy18p0czcmbb3i4s5hl8llnfg6961b6x7jkvhihbj"; }; buildInputs = with self; [ covCore dateutil elasticsearch mock pytest pytestcov unittest2 urllib3 pytz ]; @@ -4096,25 +4153,26 @@ let }; gitdb = buildPythonPackage rec { - name = "gitdb-0.5.4"; + name = "gitdb-0.6.4"; meta.maintainers = with maintainers; [ mornfall ]; doCheck = false; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/g/gitdb/${name}.tar.gz"; - sha256 = "10rpmmlln59aq44cd5vkb77hslak5pa1rbmigg6ski5f1nn2spfy"; + sha256 = "0n4n2c7rxph9vs2l6xlafyda5x1mdr8xy16r9s3jwnh3pqkvrsx3"; }; propagatedBuildInputs = with self; [ smmap async ]; }; GitPython = buildPythonPackage rec { - name = "GitPython-0.3.2"; + version = "1.0.1"; + name = "GitPython-${version}"; meta.maintainers = with maintainers; [ mornfall ]; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/G/GitPython/GitPython-0.3.2.RC1.tar.gz"; - sha256 = "1q4lc2ps12l517mmrxc8iq6gxyhj6d77bnk1p7mxf38d99l8crzx"; + url = "https://pypi.python.org/packages/source/G/GitPython/GitPython-${version}.tar.gz"; + sha256 = "0q7plxnbbkp5dd0k73736l7gf932a89yy920yrgl8amfpixw324w"; }; buildInputs = with self; [ nose ]; @@ -6532,6 +6590,33 @@ let }; }; + et_xmlfile = buildPythonPackage rec { + version = "1.0.1"; + name = "et_xmlfile-${version}"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/e/et_xmlfile/${name}.tar.gz"; + sha256="0nrkhcb6jdrlb6pwkvd4rycw34y3s931hjf409ij9xkjsli9fkb1"; + }; + + meta = { + description = "An implementation of lxml.xmlfile for the standard library"; + longDescription = '' + et_xmlfile is a low memory library for creating large XML files. + + It is based upon the xmlfile module from lxml with the aim of allowing + code to be developed that will work with both libraries. It was developed + initially for the openpyxl project but is now a standalone module. + + The code was written by Elias Rabel as part of the Python Düsseldorf + openpyxl sprint in September 2014. + ''; + homepage = "https://pypi.python.org/pypi/et_xmlfile"; + license = licenses.mit; + maintainers = with maintainers; [ sjourdois ]; + }; + }; + eventlet = buildPythonPackage rec { name = "eventlet-0.17.4"; @@ -7137,6 +7222,23 @@ let }; }; + futures_2_2 = buildPythonPackage rec { + version = "2.2.0"; + name = "futures-${version}"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/f/futures/${name}.tar.gz"; + sha256 = "1lqfzl3z3pkxakgbcrfy6x7x0fp3q18mj5lpz103ljj7fdqha70m"; + }; + + meta = with stdenv.lib; { + description = "Backport of the concurrent.futures package from Python 3.2"; + homepage = "https://github.com/agronholm/pythonfutures"; + license = licenses.bsd2; + maintainers = with maintainers; [ garbas ]; + }; + }; + gcovr = buildPythonPackage rec { name = "gcovr-2.4"; @@ -8143,21 +8245,20 @@ let }; isort = buildPythonPackage rec { - name = "isort-3.9.6"; + name = "isort-4.2.2"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/i/isort/${name}.tar.gz"; - md5 = "c0f4a7b16fde265f2ff4842c3e1cdd05"; + sha256 = "0xqxnkli3j69mj1m0i1r9n68bfkdxfcgxi602lqgy491m21q1rpj"; }; buildInputs = with self; [ mock pytest ]; - propagatedBuildInputs = with self; [ natsort pies ]; - meta = { description = "A Python utility / library to sort Python imports"; homepage = https://github.com/timothycrosley/isort; license = licenses.mit; + maintainers = with maintainers; [ couchemar ]; }; }; @@ -8224,12 +8325,11 @@ let }; jinja2 = buildPythonPackage rec { - name = "Jinja2-2.7.3"; + name = "Jinja2-2.8"; src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/J/Jinja2/${name}.tar.gz"; - # md5 = "b9dffd2f3b43d673802fe857c8445b1a"; # provided by pypi website. - sha256 = "2e24ac5d004db5714976a04ac0e80c6df6e47e98c354cb2c0d82f8879d4f8fdb"; + sha256 = "1x0v41lp5m1pjix3l46zx02b7lqp2hflgpnxwkywxynvi3zz47xw"; }; propagatedBuildInputs = with self; [ markupsafe ]; @@ -8244,7 +8344,7 @@ let an optional sandboxed environment. ''; platforms = platforms.all; - maintainers = with maintainers; [ pierron garbas ]; + maintainers = with maintainers; [ pierron garbas sjourdois ]; }; }; @@ -9478,37 +9578,17 @@ let preConfigure = "substituteInPlace setup.py --replace /usr/share usr/share"; }; - pygal = buildPythonPackage ( rec { - version = "2.0.8"; + pygal = buildPythonPackage rec { + version = "2.0.10"; name = "pygal-${version}"; - patchPhase = '' - # Run tests in pygal dir - substituteInPlace setup.py \ - --replace "self.test_args = []" \ - "self.test_args = ['-x', 'build/lib/pygal']" - # Open unicode files during tests - substituteInPlace pygal/test/test_graph.py \ - --replace "import sys" \ - "import sys, io" - substituteInPlace pygal/test/test_graph.py \ - --replace "open(file_name)" \ - "io.open(file_name, encoding='utf-8')" - # Use explicit integers (for python 3.5) - substituteInPlace pygal/colors.py \ - --replace "'#%x%x%x' % (r / 17, g / 17, b / 17)" \ - "'#%x%x%x' % (r // 17, g // 17, b // 17)" - substituteInPlace pygal/colors.py \ - --replace "'#%x%x%x%x' % (r / 17, g / 17, b / 17, a * 15)" \ - "'#%x%x%x%x' % (r // 17, g // 17, b // 17, int(a * 15))" - substituteInPlace pygal/colors.py \ - --replace "'#%02x%02x%02x%02x' % (r, g, b, a * 255)" \ - "'#%02x%02x%02x%02x' % (r, g, b, int(a * 255))" - ''; + doCheck = !isPyPy; # one check fails with pypy - src = pkgs.fetchurl { - url = "https://github.com/Kozea/pygal/archive/${version}.tar.gz"; - sha256 = "1lv8avn7pdlxks50sd58shpqnxybf3l79bggy32qnbqczk4j2s0b"; + src = pkgs.fetchFromGitHub { + owner = "Kozea"; + repo = "pygal"; + rev = version; + sha256 = "1j7qjgraapvfc80yp8xcbddqrw8379gqi7pwkvfml3qcqm0z0d33"; }; buildInputs = with self; [ flask pyquery pytest ]; @@ -9518,9 +9598,9 @@ let description = "Sexy and simple python charting"; homepage = http://www.pygal.org; license = licenses.lgpl3; + maintainers = with maintainers; [ sjourdois ]; }; - }); - + }; pymysql = buildPythonPackage rec { name = "pymysql-${version}"; @@ -10258,6 +10338,26 @@ let }; }; + numtraits = buildPythonPackage rec { + name = "numtraits-${version}"; + version = "0.2"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/n/numtraits/${name}.tar.gz"; + sha256 = "2fca9a6c9334f7358ef1a3e2e64ccaa6a479fc99fc096910e0d5fbe8edcdfd7e"; + }; + + buildInputs = with self; [ pytest ]; + propagatedBuildInputs = with self; [ numpy traitlets]; + + meta = { + description = "Numerical traits for Python objects"; + license = licenses.bsd2; + maintainer = with maintainers; [ fridh ]; + homepage = https://github.com/astrofrog/numtraits; + }; + }; + nwdiag = buildPythonPackage rec { name = "nwdiag-1.0.3"; @@ -10468,23 +10568,23 @@ let }; openpyxl = buildPythonPackage rec { - version = "2.2.6"; + version = "2.3.0"; name = "openpyxl-${version}"; src = pkgs.fetchhg { url = "https://bitbucket.org/openpyxl/openpyxl"; rev = "${version}"; - sha256 = "159cg3njsybjdmwr0458qc5k0m7hbq41h3fczxflc0wnh7ancrdf"; + sha256 = "1iisk6rfh9h5xb411kfyzkcab6fdnsx573i0d83wfn4csk4p3p4d"; }; buildInputs = with self; [ pytest ]; - propagatedBuildInputs = with self; [ jdcal ]; + propagatedBuildInputs = with self; [ jdcal et_xmlfile ]; meta = { description = "A Python library to read/write Excel 2007 xlsx/xlsm files"; - homepage = "https://openpyxl.readthedocs.org"; + homepage = https://openpyxl.readthedocs.org; license = licenses.mit; - maintainers = with maintainers; [ lihop ]; + maintainers = with maintainers; [ lihop sjourdois ]; platforms = platforms.all; }; }; @@ -17461,13 +17561,15 @@ let }; smmap = buildPythonPackage rec { - name = "smmap-0.8.2"; - disabled = isPy3k || isPyPy; # next release will have py3k/pypy support + name = "smmap-0.9.0"; + disabled = isPyPy; # This fails the tests if built with pypy meta.maintainers = with maintainers; [ mornfall ]; + buildInputs = with self; [ nosexcover ]; + src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/s/smmap/${name}.tar.gz"; - sha256 = "0vrdgr6npmajrv658fv8bij7zgm5jmz2yxkbv8kmbv25q1f9b8ny"; + sha256 = "0qlx25f6n2n9ff37w9gg62f217fzj16xlbh0pkz0lpxxjys64aqf"; }; }; @@ -19151,6 +19253,27 @@ let }; }; + cmdtest = buildPythonPackage rec { + name = "cmdtest-${version}"; + version = "0.18"; + disabled = isPy3k || isPyPy; + + propagatedBuildInputs = with self; [ cliapp ttystatus markdown ]; + + # TODO: cmdtest tests must be run before the buildPhase + doCheck = false; + + src = pkgs.fetchurl { + url = "http://code.liw.fi/debian/pool/main/c/cmdtest/cmdtest_0.18.orig.tar.xz"; + sha256 = "068f24k8ad520hcf8g3gj7wvq1wspyd46ay0k9xa360jlb4dv2mn"; + }; + + meta = { + homepage = http://liw.fi/cmdtest/; + description = "black box tests Unix command line tools"; + }; + }; + tornado = buildPythonPackage rec { name = "tornado-${version}"; version = "4.2.1";