diff --git a/lib/maintainers.nix b/lib/maintainers.nix index 720824ee66e7..717d04e2031b 100644 --- a/lib/maintainers.nix +++ b/lib/maintainers.nix @@ -72,6 +72,7 @@ cfouche = "Chaddaï Fouché "; chaoflow = "Florian Friesdorf "; chattered = "Phil Scott "; + choochootrain = "Hurshal Patel "; christopherpoole = "Christopher Mark Poole "; cleverca22 = "Michael Bishop "; coconnor = "Corey O'Connor "; @@ -289,6 +290,7 @@ pxc = "Patrick Callahan "; qknight = "Joachim Schiele "; ragge = "Ragnar Dahlen "; + rasendubi = "Alexey Shmalko "; raskin = "Michael Raskin <7c6f434c@mail.ru>"; redbaron = "Maxim Ivanov "; refnil = "Martin Lavoie "; diff --git a/maintainers/scripts/copy-tarballs.pl b/maintainers/scripts/copy-tarballs.pl index b1233827ad88..db0cea3e670d 100755 --- a/maintainers/scripts/copy-tarballs.pl +++ b/maintainers/scripts/copy-tarballs.pl @@ -22,6 +22,9 @@ use JSON; use Net::Amazon::S3; use Nix::Store; +isValidPath("/nix/store/foo"); # FIXME: forces Nix::Store initialisation + + # S3 setup. my $aws_access_key_id = $ENV{'AWS_ACCESS_KEY_ID'} or die; my $aws_secret_access_key = $ENV{'AWS_SECRET_ACCESS_KEY'} or die; @@ -127,6 +130,7 @@ elsif ($op eq "--expr") { my $url = $fetch->{url}; my $algo = $fetch->{type}; my $hash = $fetch->{hash}; + my $name = $fetch->{name}; if (defined $ENV{DEBUG}) { print "$url $algo $hash\n"; @@ -143,21 +147,34 @@ elsif ($op eq "--expr") { next; } - print STDERR "mirroring $url...\n"; + my $storePath = makeFixedOutputPath(0, $algo, $hash, $name); + + print STDERR "mirroring $url ($storePath)...\n"; next if $ENV{DRY_RUN}; - # Download the file using nix-prefetch-url. - $ENV{QUIET} = 1; - $ENV{PRINT_PATH} = 1; - my $fh; - my $pid = open($fh, "-|", "nix-prefetch-url", "--type", $algo, $url, $hash) or die; - waitpid($pid, 0) or die; - if ($? != 0) { - print STDERR "failed to fetch $url: $?\n"; - next; + # Substitute the output. + if (!isValidPath($storePath)) { + system("nix-store", "-r", $storePath); + } + + # Otherwise download the file using nix-prefetch-url. + if (!isValidPath($storePath)) { + $ENV{QUIET} = 1; + $ENV{PRINT_PATH} = 1; + my $fh; + my $pid = open($fh, "-|", "nix-prefetch-url", "--type", $algo, $url, $hash) or die; + waitpid($pid, 0) or die; + if ($? != 0) { + print STDERR "failed to fetch $url: $?\n"; + next; + } + <$fh>; my $storePath2 = <$fh>; chomp $storePath2; + if ($storePath ne $storePath2) { + warn "strange: $storePath != $storePath2\n"; + next; + } } - <$fh>; my $storePath = <$fh>; chomp $storePath; uploadFile($storePath, $url); $mirrored++; diff --git a/maintainers/scripts/find-tarballs.nix b/maintainers/scripts/find-tarballs.nix index ad79af90901e..bd6afda900c8 100644 --- a/maintainers/scripts/find-tarballs.nix +++ b/maintainers/scripts/find-tarballs.nix @@ -14,7 +14,7 @@ let operator = const [ ]; }); - urls = map (drv: { url = head (drv.urls or [ drv.url ]); hash = drv.outputHash; type = drv.outputHashAlgo; }) fetchurlDependencies; + urls = map (drv: { url = head (drv.urls or [ drv.url ]); hash = drv.outputHash; type = drv.outputHashAlgo; name = drv.name; }) fetchurlDependencies; fetchurlDependencies = filter diff --git a/nixos/default.nix b/nixos/default.nix index 5d69b79e13a6..5f3e2ae081cc 100644 --- a/nixos/default.nix +++ b/nixos/default.nix @@ -39,5 +39,5 @@ in vmWithBootLoader = vmWithBootLoaderConfig.system.build.vm; # The following are used by nixos-rebuild. - nixFallback = pkgs.nixUnstable; + nixFallback = pkgs.nixUnstable.out; } diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix index 41b60773a70b..bb8fa48105ac 100644 --- a/nixos/modules/module-list.nix +++ b/nixos/modules/module-list.nix @@ -71,6 +71,7 @@ ./programs/kbdlight.nix ./programs/light.nix ./programs/man.nix + ./programs/mosh.nix ./programs/nano.nix ./programs/screen.nix ./programs/shadow.nix diff --git a/nixos/modules/programs/bash/bash.nix b/nixos/modules/programs/bash/bash.nix index 1c3c07a1c210..e4e264ec0036 100644 --- a/nixos/modules/programs/bash/bash.nix +++ b/nixos/modules/programs/bash/bash.nix @@ -56,7 +56,7 @@ in */ shellAliases = mkOption { - default = config.environment.shellAliases // { which = "type -P"; }; + default = config.environment.shellAliases; description = '' Set of aliases for bash shell. See for an option format description. diff --git a/nixos/modules/programs/mosh.nix b/nixos/modules/programs/mosh.nix new file mode 100644 index 000000000000..b478f8e180fa --- /dev/null +++ b/nixos/modules/programs/mosh.nix @@ -0,0 +1,26 @@ +{ config, lib, pkgs, ... }: + +with lib; + +let + + cfg = config.programs.mosh; + +in +{ + options.programs.mosh = { + enable = mkOption { + description = '' + Whether to enable mosh. Note, this will open ports in your firewall! + ''; + default = false; + example = true; + type = lib.types.bool; + }; + }; + + config = mkIf cfg.enable { + environment.systemPackages = with pkgs; [ mosh ]; + networking.firewall.allowedUDPPortRanges = [ { from = 60000; to = 61000; } ]; + }; +} diff --git a/nixos/modules/security/acme.nix b/nixos/modules/security/acme.nix index c5cd0fb60ee9..cb5410a5f15d 100644 --- a/nixos/modules/security/acme.nix +++ b/nixos/modules/security/acme.nix @@ -152,7 +152,7 @@ in in nameValuePair ("acme-${cert}") ({ - description = "ACME cert renewal for ${cert} using simp_le"; + description = "Renew ACME Certificate for ${cert}"; after = [ "network.target" ]; serviceConfig = { Type = "oneshot"; @@ -192,7 +192,7 @@ in systemd.timers = flip mapAttrs' cfg.certs (cert: data: nameValuePair ("acme-${cert}") ({ - description = "timer for ACME cert renewal of ${cert}"; + description = "Renew ACME Certificate for ${cert}"; wantedBy = [ "timers.target" ]; timerConfig = { OnCalendar = cfg.renewInterval; diff --git a/nixos/modules/services/misc/nix-daemon.nix b/nixos/modules/services/misc/nix-daemon.nix index 911f79e5756a..10ac6f93cfdb 100644 --- a/nixos/modules/services/misc/nix-daemon.nix +++ b/nixos/modules/services/misc/nix-daemon.nix @@ -65,8 +65,8 @@ in package = mkOption { type = types.package; - default = pkgs.nix; - defaultText = "pkgs.nix"; + default = pkgs.nix.out; + defaultText = "pkgs.nix.out"; description = '' This option specifies the Nix package instance to use throughout the system. ''; diff --git a/nixos/modules/services/printing/cupsd.nix b/nixos/modules/services/printing/cupsd.nix index e4c96c24e64b..0bcb1a0c20c4 100644 --- a/nixos/modules/services/printing/cupsd.nix +++ b/nixos/modules/services/printing/cupsd.nix @@ -34,7 +34,7 @@ let bindir = pkgs.buildEnv { name = "cups-progs"; paths = - [ cups additionalBackends cups_filters pkgs.ghostscript ] + [ cups.out additionalBackends cups_filters pkgs.ghostscript ] ++ optional cfg.gutenprint gutenprint ++ cfg.drivers; pathsToLink = [ "/lib/cups" "/share/cups" "/bin" ]; @@ -267,10 +267,10 @@ in description = "CUPS printing services"; }; - environment.systemPackages = [ cups ] ++ optional polkitEnabled cups-pk-helper; + environment.systemPackages = [ cups.out ] ++ optional polkitEnabled cups-pk-helper; environment.etc."cups".source = "/var/lib/cups"; - services.dbus.packages = [ cups ] ++ optional polkitEnabled cups-pk-helper; + services.dbus.packages = [ cups.out ] ++ optional polkitEnabled cups-pk-helper; # Cups uses libusb to talk to printers, and does not use the # linux kernel driver. If the driver is not in a black list, it @@ -284,7 +284,7 @@ in wants = [ "network.target" ]; after = [ "network.target" ]; - path = [ cups ]; + path = [ cups.out ]; preStart = '' diff --git a/nixos/modules/services/torrent/transmission.nix b/nixos/modules/services/torrent/transmission.nix index c2220cb0cff7..26182dc93cd4 100644 --- a/nixos/modules/services/torrent/transmission.nix +++ b/nixos/modules/services/torrent/transmission.nix @@ -124,7 +124,7 @@ in ${pkgs.xz.out}/lib/liblzma*.so* mr, ${pkgs.libgcrypt.out}/lib/libgcrypt*.so* mr, ${pkgs.libgpgerror.out}/lib/libgpg-error*.so* mr, - ${pkgs.libnghttp2.out}/lib/libnghttp2*.so* mr, + ${pkgs.nghttp2.lib}/lib/libnghttp2*.so* mr, ${pkgs.c-ares.out}/lib/libcares*.so* mr, ${pkgs.libcap.out}/lib/libcap*.so* mr, ${pkgs.attr.out}/lib/libattr*.so* mr, diff --git a/nixos/modules/tasks/filesystems/zfs.nix b/nixos/modules/tasks/filesystems/zfs.nix index f4c42b162206..19292bd1ef71 100644 --- a/nixos/modules/tasks/filesystems/zfs.nix +++ b/nixos/modules/tasks/filesystems/zfs.nix @@ -80,11 +80,8 @@ in description = '' Name of directory from which to import ZFS devices. - Usually /dev works. However, ZFS import may fail if a device node is renamed. - It should therefore use stable device names, such as from /dev/disk/by-id. - - The default remains /dev for 15.09, due to backwards compatibility concerns. - It will change to /dev/disk/by-id in the next NixOS release. + This should be a path under /dev containing stable names for all devices needed, as + import may fail if device nodes are renamed concurrently with a device failing. ''; }; diff --git a/nixos/release-combined.nix b/nixos/release-combined.nix index 731dd36cdfd3..53ef4564b5cd 100644 --- a/nixos/release-combined.nix +++ b/nixos/release-combined.nix @@ -48,7 +48,7 @@ in rec { nixos.ova.x86_64-linux #(all nixos.tests.containers) - #(all nixos.tests.chromium.stable) + (all nixos.tests.chromium.stable) (all nixos.tests.firefox) (all nixos.tests.firewall) nixos.tests.gnome3.x86_64-linux # FIXME: i686-linux diff --git a/pkgs/applications/audio/spotify/default.nix b/pkgs/applications/audio/spotify/default.nix index 00e841e7009e..0875ca939ee4 100644 --- a/pkgs/applications/audio/spotify/default.nix +++ b/pkgs/applications/audio/spotify/default.nix @@ -104,6 +104,6 @@ stdenv.mkDerivation { homepage = https://www.spotify.com/; description = "Play music from the Spotify music service"; license = stdenv.lib.licenses.unfree; - maintainers = with stdenv.lib.maintainers; [ eelco ftrvxmtrx ]; + maintainers = with stdenv.lib.maintainers; [ eelco ftrvxmtrx sheenobu ]; }; } diff --git a/pkgs/applications/backup/areca/default.nix b/pkgs/applications/backup/areca/default.nix new file mode 100644 index 000000000000..364e13e97a90 --- /dev/null +++ b/pkgs/applications/backup/areca/default.nix @@ -0,0 +1,49 @@ +{ stdenv, fetchurl, ant, jre, jdk, swt, acl, attr }: + +stdenv.mkDerivation rec { + name = "areca-7.5"; + + src = fetchurl { + url = "http://downloads.sourceforge.net/project/areca/areca-stable/areca-7.5/areca-7.5-src.tar.gz"; + sha256 = "1q4ha9s96c1syplxm04bh1v1gvjq16l4pa8w25w95d2ywwvyq1xb"; + }; + + sourceRoot = "."; + + buildInputs = [ jdk ant acl attr ]; + + patches = [ ./fix-javah-bug.diff ]; + + postPatch = '' + substituteInPlace build.xml --replace "/usr/lib/java/swt.jar" "${swt}/jars/swt.jar" + substituteInPlace build.xml --replace "gcc" "${stdenv.cc}/bin/gcc" + substituteInPlace areca.sh --replace "bin/" "" + substituteInPlace bin/areca_run.sh --replace "/usr/java" "${jre}/lib/openjdk" + substituteInPlace bin/areca_run.sh --replace "/usr/lib/java/swt.jar" "${swt}/jars/swt.jar" + + sed -i "s#^PROGRAM_DIR.*#PROGRAM_DIR=$out#g" bin/areca_run.sh + sed -i "s#^LIBRARY_PATH.*#LIBRARY_PATH=${swt}/lib:$out/lib:${acl}/lib#g" bin/areca_run.sh + + # https://sourceforge.net/p/areca/bugs/563/ + substituteInPlace bin/areca_run.sh --replace '[ "$JAVA_IMPL" = "java" ]' \ + '[[ "$JAVA_IMPL" = "java" || "$JAVA_IMPL" = "openjdk" ]]' + ''; + + buildPhase = "ant"; + + installPhase = '' + mkdir -p $out/bin $out/lib $out/translations + cp areca.sh $out/bin/areca + cp -r bin $out + cp -r lib $out + cp -r translations $out + cp COPYING $out + ''; + + meta = with stdenv.lib; { + homepage = http://www.areca-backup.org/; + description = "An Open Source personal backup solution"; + license = licenses.gpl2; + maintainers = with maintainers; [ pSub ]; + }; +} diff --git a/pkgs/applications/backup/areca/fix-javah-bug.diff b/pkgs/applications/backup/areca/fix-javah-bug.diff new file mode 100644 index 000000000000..5d5feaf9b943 --- /dev/null +++ b/pkgs/applications/backup/areca/fix-javah-bug.diff @@ -0,0 +1,24 @@ +diff --git a/build.xml b/build.xml +index 1ba08e0..9248b76 100644 +--- a/build.xml ++++ b/build.xml +@@ -56,10 +56,16 @@ + + + JNI compilation task (builds libarecafs.so ... for unix-like operating systems only) ++ + +- +- +- ++ ++ ++ ++ ++ ++ ++ ++ + + + diff --git a/pkgs/applications/display-managers/lightdm/default.nix b/pkgs/applications/display-managers/lightdm/default.nix index 968dd7ab9912..c33d06e7822a 100644 --- a/pkgs/applications/display-managers/lightdm/default.nix +++ b/pkgs/applications/display-managers/lightdm/default.nix @@ -5,15 +5,15 @@ }: let - ver_branch = "1.16"; - version = "1.16.5"; + ver_branch = "1.18"; + version = "1.18.1"; in stdenv.mkDerivation rec { name = "lightdm-${version}"; src = fetchurl { url = "${meta.homepage}/${ver_branch}/${version}/+download/${name}.tar.xz"; - sha256 = "1qb3gvwdm2rymwn8rb1qc4gyam226xmvy2fq5rvmrcmgxblmi34c"; + sha256 = "1yl9zhn9l83bj5mbifkxfw15nqgsjzzhqcrgb81fr290wijqaj45"; }; patches = [ ./fix-paths.patch ]; diff --git a/pkgs/applications/editors/neovim/default.nix b/pkgs/applications/editors/neovim/default.nix index 7d23ae5bbbdd..6513e78ef86c 100644 --- a/pkgs/applications/editors/neovim/default.nix +++ b/pkgs/applications/editors/neovim/default.nix @@ -60,10 +60,10 @@ let neovim = stdenv.mkDerivation rec { name = "neovim-${version}"; - version = "0.1.2"; + version = "0.1.3"; src = fetchFromGitHub { - sha256 = "128aznp2gj08bdz05ri8mqday7wcsy9yz7dw7vdgzk0pk23vjz89"; + sha256 = "1bkyfxsgb7894848nphsi6shr8bvi9z6ch0zvh2df7vkkzji8chr"; rev = "v${version}"; repo = "neovim"; owner = "neovim"; @@ -134,7 +134,7 @@ let modifications to the core source - Improve extensibility with a new plugin architecture ''; - homepage = http://www.neovim.io; + homepage = https://www.neovim.io; # "Contributions committed before b17d96 by authors who did not sign the # Contributor License Agreement (CLA) remain under the Vim license. # Contributions committed after b17d96 are licensed under Apache 2.0 unless diff --git a/pkgs/applications/graphics/feh/default.nix b/pkgs/applications/graphics/feh/default.nix index 39132bb9b6f8..43aa8bfa1f58 100644 --- a/pkgs/applications/graphics/feh/default.nix +++ b/pkgs/applications/graphics/feh/default.nix @@ -2,11 +2,11 @@ , libXinerama, curl, libexif }: stdenv.mkDerivation rec { - name = "feh-2.14"; + name = "feh-2.15.2"; src = fetchurl { url = "http://feh.finalrewind.org/${name}.tar.bz2"; - sha256 = "0j5wxpqccnd0hl74z2vwv25n7qnik1n2mcm2jn0c0z7cjn4wsa9q"; + sha256 = "0bnfk50y2l5zkr292l4yyws1m7ibdmr398vxj7c0djh965frpj1q"; }; outputs = [ "out" "doc" ]; diff --git a/pkgs/applications/graphics/mcomix/default.nix b/pkgs/applications/graphics/mcomix/default.nix index 39d17a32eec3..88f3937335ba 100644 --- a/pkgs/applications/graphics/mcomix/default.nix +++ b/pkgs/applications/graphics/mcomix/default.nix @@ -2,11 +2,12 @@ buildPythonApplication rec { namePrefix = ""; - name = "mcomix-1.01"; + name = "mcomix-${version}"; + version = "1.2.1"; src = fetchurl { url = "mirror://sourceforge/mcomix/${name}.tar.bz2"; - sha256 = "0k3pqbvk08kb1nr0qldaj9bc7ca6rvcycgfi2n7gqmsirq5kscys"; + sha256 = "0fzsf9pklhfs1rzwzj64c0v30b74nk94p93h371rpg45qnfiahvy"; }; propagatedBuildInputs = with python27Packages; [ pygtk pillow sqlite3 ]; diff --git a/pkgs/applications/graphics/yed/default.nix b/pkgs/applications/graphics/yed/default.nix index 51c41e01bf9c..0dad1238876d 100644 --- a/pkgs/applications/graphics/yed/default.nix +++ b/pkgs/applications/graphics/yed/default.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, requireFile, makeWrapper, unzip, jre }: stdenv.mkDerivation rec { - name = "yEd-3.14.4"; + name = "yEd-3.15.0.2"; src = requireFile { name = "${name}.zip"; url = "https://www.yworks.com/en/products/yfiles/yed/"; - sha256 = "0pm271ss6cq2s6cv9ww92haaq2abkjxd9dvc8d72h6af5awv8xy6"; + sha256 = "c60e4868f267303ee8b6fc2587beb4cc846f32bd8a6a557b77e01f0d8039aa4d"; }; nativeBuildInputs = [ unzip makeWrapper ]; diff --git a/pkgs/applications/misc/get_iplayer/default.nix b/pkgs/applications/misc/get_iplayer/default.nix index e6ca8d207e89..e5a463bb5201 100644 --- a/pkgs/applications/misc/get_iplayer/default.nix +++ b/pkgs/applications/misc/get_iplayer/default.nix @@ -7,6 +7,7 @@ buildPerlPackage { preConfigure = "touch Makefile.PL"; doCheck = false; + outputs = [ "out" "man" ]; patchPhase = '' sed -e 's|^update_script|#update_script|' \ @@ -15,10 +16,11 @@ buildPerlPackage { ''; installPhase = '' - mkdir -p $out/bin + mkdir -p $out/bin $out/share/man/man1 cp get_iplayer $out/bin wrapProgram $out/bin/get_iplayer --suffix PATH : ${ffmpeg.bin}/bin:${flvstreamer}/bin:${vlc}/bin:${rtmpdump}/bin --prefix PERL5LIB : $PERL5LIB - ''; + cp get_iplayer.1 $out/share/man/man1 + ''; src = fetchurl { url = ftp://ftp.infradead.org/pub/get_iplayer/get_iplayer-2.94.tar.gz; diff --git a/pkgs/applications/misc/girara/default.nix b/pkgs/applications/misc/girara/default.nix index cfa38a118614..47e301757958 100644 --- a/pkgs/applications/misc/girara/default.nix +++ b/pkgs/applications/misc/girara/default.nix @@ -5,11 +5,11 @@ assert withBuildColors -> ncurses != null; with stdenv.lib; stdenv.mkDerivation rec { name = "girara-${version}"; - version = "0.2.5"; + version = "0.2.6"; src = fetchurl { url = "http://pwmt.org/projects/girara/download/${name}.tar.gz"; - sha256 = "14m8mfbck49ldwi1w2i47bbg5c9daglcmvz9v2g1hnrq8k8g5x2w"; + sha256 = "03wsxj27hvcbs3x96nah7j3paclifwlfag8kdph4kldl48srp9pb"; }; preConfigure = '' diff --git a/pkgs/applications/misc/golden-cheetah/default.nix b/pkgs/applications/misc/golden-cheetah/default.nix new file mode 100644 index 000000000000..82695bbdd7ee --- /dev/null +++ b/pkgs/applications/misc/golden-cheetah/default.nix @@ -0,0 +1,37 @@ +{ stdenv, fetchurl, qtbase, qtsvg, qtserialport, qtwebkit, qtmultimedia +, qttools, yacc, flex, zlib, config, makeQtWrapper }: +stdenv.mkDerivation rec { + name = "golden-cheetah-${version}"; + version = "V4.0-DEV1603"; + src = fetchurl { + url = "https://github.com/GoldenCheetah/GoldenCheetah/archive/${version}.tar.gz"; + sha256 = "12knlzqmq8b3nyl3kvcsnzrbjksgd83mzwzj97wccyfiffjl4wah"; + }; + buildInputs = [ + qtbase qtsvg qtserialport qtwebkit qtmultimedia qttools yacc flex zlib + ]; + nativeBuildInputs = [ makeQtWrapper ]; + configurePhase = '' + runHook preConfigure + cp src/gcconfig.pri.in src/gcconfig.pri + cp qwt/qwtconfig.pri.in qwt/qwtconfig.pri + echo 'QMAKE_LRELEASE = ${qttools}/bin/lrelease' >> src/gcconfig.pri + sed -i -e '21,23d' qwt/qwtconfig.pri # Removed forced installation to /usr/local + qmake PREFIX=$out build.pro + '' + ( + with (config.golden-cheetah); + stdenv.lib.optionalString (dropbox-client-id != null && dropbox-client-secret != null) '' + echo 'DEFINES += GC_DROPBOX_CLIENT_ID=\\\"${config.golden-cheetah.dropbox-client-id}\\\"' >> src/gcconfig.pri + echo 'DEFINES += GC_DROPBOX_CLIENT_SECRET=\\\"${config.golden-cheetah.dropbox-client-secret}\\\"' >> src/gcconfig.pri + ''); + installPhase = '' + mkdir -p $out/bin + cp src/GoldenCheetah $out/bin + wrapQtProgram $out/bin/GoldenCheetah --set LD_LIBRARY_PATH "${zlib.out}/lib" # patchelf doesn't seem to work + ''; + meta = { + description = "Performance software for cyclists, runners and triathletes"; + platforms = stdenv.lib.platforms.linux; + maintainers = [ stdenv.lib.maintainers.ocharles ]; + }; +} diff --git a/pkgs/applications/misc/gpsprune/default.nix b/pkgs/applications/misc/gpsprune/default.nix index 04d3b7874b44..a6ea5b054c35 100644 --- a/pkgs/applications/misc/gpsprune/default.nix +++ b/pkgs/applications/misc/gpsprune/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "gpsprune-${version}"; - version = "18.2"; + version = "18.3"; src = fetchurl { url = "http://activityworkshop.net/software/gpsprune/gpsprune_${version}.jar"; - sha256 = "12zwwiy0jfrwvgrb110flx4b7k3sp3ivx8ijjymdbbk48xil93l2"; + sha256 = "1sas5n4k3afryg3k6y40w39kifs3d0yrnnk46nqp7axs4ay2aqim"; }; phases = [ "installPhase" ]; diff --git a/pkgs/applications/misc/zathura/core/default.nix b/pkgs/applications/misc/zathura/core/default.nix index 62e7ee60cb3e..01c267cbbb44 100644 --- a/pkgs/applications/misc/zathura/core/default.nix +++ b/pkgs/applications/misc/zathura/core/default.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, pkgconfig, gtk, girara, ncurses, gettext, docutils, file, makeWrapper, zathura_icon, sqlite, glib }: stdenv.mkDerivation rec { - version = "0.3.5"; + version = "0.3.6"; name = "zathura-core-${version}"; src = fetchurl { url = "http://pwmt.org/projects/zathura/download/zathura-${version}.tar.gz"; - sha256 = "031kdr10065q14nixc4p58c4rgvrqcmn9x39b19h2357kzabaw9a"; + sha256 = "0fyb5hak0knqvg90rmdavwcmilhnrwgg1s5ykx9wd3skbpi8nsh8"; }; buildInputs = [ pkgconfig file gtk girara gettext makeWrapper sqlite glib ]; diff --git a/pkgs/applications/networking/browsers/qutebrowser/default.nix b/pkgs/applications/networking/browsers/qutebrowser/default.nix index bd7ca8863897..93aff9498df7 100644 --- a/pkgs/applications/networking/browsers/qutebrowser/default.nix +++ b/pkgs/applications/networking/browsers/qutebrowser/default.nix @@ -2,7 +2,7 @@ , jinja2, pygments, pyyaml, pypeg2, gst-plugins-base, gst-plugins-good , gst-plugins-bad, gst-libav, wrapGAppsHook, glib_networking }: -let version = "0.6.0"; in +let version = "0.6.1"; in buildPythonApplication rec { name = "qutebrowser-${version}"; @@ -10,7 +10,7 @@ buildPythonApplication rec { src = fetchurl { url = "https://github.com/The-Compiler/qutebrowser/releases/download/v${version}/${name}.tar.gz"; - sha256 = "1vf9gh1f12wza72y3yqj568h2wsm7wfvjjs6qsh6apw5mgjysz91"; + sha256 = "1xb95yjc390h7f75l1jk252qiwcamgz2bls2978mmjkhf5hm3jm0"; }; # Needs tox diff --git a/pkgs/applications/networking/mumble/default.nix b/pkgs/applications/networking/mumble/default.nix index 12c250ab28bb..646e3dfdd0bb 100644 --- a/pkgs/applications/networking/mumble/default.nix +++ b/pkgs/applications/networking/mumble/default.nix @@ -40,7 +40,9 @@ let ++ (overrides.configureFlags or [ ]); configurePhase = '' + runHook preConfigure qmake $configureFlags DEFINES+="PLUGIN_PATH=$out/lib" + runHook postConfigure ''; makeFlags = [ "release" ]; diff --git a/pkgs/applications/science/misc/root/cmake.patch b/pkgs/applications/science/misc/root/cmake.patch deleted file mode 100644 index 6d2d4cdc70d8..000000000000 --- a/pkgs/applications/science/misc/root/cmake.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- a/cmake/modules/RootBuildOptions.cmake 1969-12-31 20:30:01.000000000 -0330 -+++ b/cmake/modules/RootBuildOptions.cmake 2014-01-10 14:09:29.424937408 -0330 -@@ -149,7 +149,7 @@ - - #---General Build options---------------------------------------------------------------------- - # use, i.e. don't skip the full RPATH for the build tree --set(CMAKE_SKIP_BUILD_RPATH FALSE) -+set(CMAKE_SKIP_BUILD_RPATH TRUE) - # when building, don't use the install RPATH already (but later on when installing) - set(CMAKE_BUILD_WITH_INSTALL_RPATH FALSE) - # add the automatically determined parts of the RPATH diff --git a/pkgs/applications/science/misc/root/default.nix b/pkgs/applications/science/misc/root/default.nix index e61cb557e123..583ba397487c 100644 --- a/pkgs/applications/science/misc/root/default.nix +++ b/pkgs/applications/science/misc/root/default.nix @@ -1,36 +1,26 @@ -{ stdenv, fetchurl, fetchpatch, cmake, pkgconfig, mesa, gfortran -, libX11,libXpm, libXft, libXext, zlib }: +{ stdenv, fetchurl, fetchpatch, cmake, pkgconfig, python +, libX11, libXpm, libXft, libXext, zlib, lzma }: stdenv.mkDerivation rec { name = "root-${version}"; - version = "5.34.15"; + version = "6.04.16"; src = fetchurl { - url = "ftp://root.cern.ch/root/root_v${version}.source.tar.gz"; - sha256 = "1bkiggcyya39a794d3d2rzzmmkbdymf86hbqhh0l1pl4f38xvp6i"; + url = "https://root.cern.ch/download/root_v${version}.source.tar.gz"; + sha256 = "0f58dg83aqhggkxmimsfkd1qyni2vhmykq4qa89cz6jr9p73i1vm"; }; - buildInputs = [ cmake pkgconfig gfortran mesa libX11 libXpm libXft libXext zlib ]; + buildInputs = [ cmake pkgconfig python libX11 libXpm libXft libXext zlib lzma ]; - NIX_CFLAGS_LINK = "-lX11"; - - # CMAKE_INSTALL_RPATH_USE_LINK_PATH is set to FALSE in - # /cmake/modules/RootBuildOptions.cmake. - # This patch sets it to TRUE. - patches = [ - ./cmake.patch - (fetchpatch { - name = "fix-tm_t-member.diff"; - url = "https://github.com/root-mirror/root/commit/" - + "08b08412bafc24fa635b0fdb832097a3aa2fa1d2.diff"; - sha256 = "0apbp51pk8471gl06agx3i88dn76p6gpkgf1ssfhcyam0bjl8907"; - }) - ]; + cmakeFlags = [ + "-Drpath=ON" + ] + ++ stdenv.lib.optional (stdenv.cc.libc != null) "-DC_INCLUDE_DIRS=${stdenv.cc.libc}/include"; enableParallelBuilding = true; meta = { - homepage = "http://root.cern.ch/drupal/"; + homepage = "https://root.cern.ch/"; description = "A data analysis framework"; platforms = stdenv.lib.platforms.linux; }; diff --git a/pkgs/applications/video/makemkv/default.nix b/pkgs/applications/video/makemkv/default.nix index 30fd9a57c4b6..46b5712ca9a4 100644 --- a/pkgs/applications/video/makemkv/default.nix +++ b/pkgs/applications/video/makemkv/default.nix @@ -4,17 +4,17 @@ stdenv.mkDerivation rec { name = "makemkv-${ver}"; - ver = "1.9.9"; + ver = "1.9.10"; builder = ./builder.sh; src_bin = fetchurl { url = "http://www.makemkv.com/download/makemkv-bin-${ver}.tar.gz"; - sha256 = "1rsmsfyxjh18bdj93gy7whm4j6k1098zfak8napxsqfli7dyijb6"; + sha256 = "1i5nqk5gyin6rgvc0fy96pdzq0wsmfvsm6w9mfsibj0yrfqnhi6r"; }; src_oss = fetchurl { url = "http://www.makemkv.com/download/makemkv-oss-${ver}.tar.gz"; - sha256 = "070x8l88nv70abd9gy8jchs09mh09x6psjc0zs4vplk61cbqk3b0"; + sha256 = "1ypc2hisx71kpmjwxnlq6zh4q6r2i1p32gapb0ampjflcjyvx5dk"; }; buildInputs = [openssl qt4 mesa zlib pkgconfig libav]; diff --git a/pkgs/applications/virtualization/docker/default.nix b/pkgs/applications/virtualization/docker/default.nix index 74d23efcabe2..9be979057dc0 100644 --- a/pkgs/applications/virtualization/docker/default.nix +++ b/pkgs/applications/virtualization/docker/default.nix @@ -27,7 +27,9 @@ stdenv.mkDerivation rec { dontStrip = true; - DOCKER_BUILDTAGS = [ "journald" ]; + DOCKER_BUILDTAGS = [ "journald" ] + ++ optional (btrfs-progs == null) "exclude_graphdriver_btrfs" + ++ optional (devicemapper == null) "exclude_graphdriver_devicemapper"; buildPhase = '' patchShebangs . diff --git a/pkgs/build-support/buildenv/default.nix b/pkgs/build-support/buildenv/default.nix index 8b2167a8e74f..dc05ec1678cb 100644 --- a/pkgs/build-support/buildenv/default.nix +++ b/pkgs/build-support/buildenv/default.nix @@ -49,8 +49,11 @@ runCommand name pkgs = builtins.toJSON (map (drv: { paths = # First add the usual output(s): respect if user has chosen explicitly, - # and otherwise use `meta.outputsToInstall` (guaranteed to exist by stdenv). - (if (drv.outputUnspecified or false) + # and otherwise use `meta.outputsToInstall`. The attribute is guaranteed + # to exist in mkDerivation-created cases. The other cases (e.g. runCommand) + # aren't expected to have multiple outputs. + (if drv.outputUnspecified or false + && drv.meta.outputsToInstall or null != null then map (outName: drv.${outName}) drv.meta.outputsToInstall else [ drv ]) # Add any extra outputs specified by the caller of `buildEnv`. diff --git a/pkgs/build-support/replace-dependency.nix b/pkgs/build-support/replace-dependency.nix index 4ac47f9a9f28..b0174ca24ab8 100644 --- a/pkgs/build-support/replace-dependency.nix +++ b/pkgs/build-support/replace-dependency.nix @@ -61,7 +61,7 @@ let drvName = drv: discard (substring 33 (stringLength (builtins.baseNameOf drv)) (builtins.baseNameOf drv)); - rewriteHashes = drv: hashes: runCommand (drvName drv) { nixStore = "${nix}/bin/nix-store"; } '' + rewriteHashes = drv: hashes: runCommand (drvName drv) { nixStore = "${nix.out}/bin/nix-store"; } '' $nixStore --dump ${drv} | sed 's|${baseNameOf drv}|'$(basename $out)'|g' | sed -e ${ concatStringsSep " -e " (mapAttrsToList (name: value: "'s|${baseNameOf name}|${baseNameOf value}|g'" diff --git a/pkgs/data/fonts/helvetica-neue-lt-std/default.nix b/pkgs/data/fonts/helvetica-neue-lt-std/default.nix new file mode 100644 index 000000000000..13e98462b215 --- /dev/null +++ b/pkgs/data/fonts/helvetica-neue-lt-std/default.nix @@ -0,0 +1,41 @@ +{ stdenv, fetchurl, unzip }: + +stdenv.mkDerivation rec { + name = "helvetica-neue-lt-std-${version}"; + version = "2013.06.07"; # date of most recent file in distribution + + src = fetchurl { + url = "http://www.ephifonts.com/downloads/helvetica-neue-lt-std.zip"; + sha256 = "0nrjdj2a11dr6d3aihvjxzrkdi0wq6f2bvaiimi5iwmpyz80n0h6"; + }; + + nativeBuildInputs = [ unzip ]; + + phases = [ "unpackPhase" "installPhase" ]; + + sourceRoot = "Helvetica Neue LT Std"; + + installPhase = '' + mkdir -p $out/share/fonts/opentype + cp -v *.otf $out/share/fonts/opentype + ''; + + meta = { + homepage = http://www.ephifonts.com/free-helvetica-font-helvetica-neue-lt-std.html; + description = "Helvetica Neue LT Std font"; + longDescription = '' + Helvetica Neue Lt Std is one of the most highly rated and complete + fonts of all time. Developed in early 1983, this font has well + camouflaged heights and weights. The structure of the word is uniform + throughout all the characters. + + The legibility with Helvetica Neue LT Std is said to have improved as + opposed to other fonts. The tail of it is much longer in this + font. The numbers are well spaced and defined with high accuracy. The + punctuation marks are heavily detailed as well. + ''; + license = stdenv.lib.licenses.unfree; + maintainers = [ stdenv.lib.maintainers.romildo ]; + platforms = stdenv.lib.platforms.all; + }; +} diff --git a/pkgs/data/misc/geolite-legacy/default.nix b/pkgs/data/misc/geolite-legacy/default.nix index c9b6eb8917fb..79c22354aff7 100644 --- a/pkgs/data/misc/geolite-legacy/default.nix +++ b/pkgs/data/misc/geolite-legacy/default.nix @@ -8,26 +8,26 @@ let in stdenv.mkDerivation rec { name = "geolite-legacy-${version}"; - version = "2016-02-29"; + version = "2016-04-19"; srcGeoIP = fetchDB "GeoLiteCountry/GeoIP.dat.gz" "GeoIP.dat.gz" - "00y8j0jxk60wscm6wiz3mmmj5xfvwqnmxjm2ar8ngkl8mxzl12gm"; + "0g34nwilhim73f0qp0yq3lfx54c42wy70ra4dkmwlfddyq3ln0xd"; srcGeoIPv6 = fetchDB "GeoIPv6.dat.gz" "GeoIPv6.dat.gz" - "0l6wv246kzm63qqmqr9lzpbvbanfwfkvn9bj34jn2djp4rfrkjrf"; + "12k4nmfblm9c7kj4v7cyl6sgfgdfv2jdx4fl7nxfzpk1km7yc5na"; srcGeoLiteCity = fetchDB "GeoLiteCity.dat.xz" "GeoIPCity.dat.xz" - "1095jar3vyax0gmj7wc0w28rpjmq2j1b6wk5yfaghyl87mad5q0f"; + "1l6pnlapc9ky3k6wznlhi013i7r3i68x3b5bmkgbvnxadjjdwszw"; srcGeoLiteCityv6 = fetchDB "GeoLiteCityv6-beta/GeoLiteCityv6.dat.gz" "GeoIPCityv6.dat.gz" - "0fnlznn04lpkkd7sy9r9kdl3fcp8ix7msdrncwgz26dh537ml32z"; + "11igx6r0fypih5i3f0mrcv044pivnl45mq6pkq81i81cv28hfcn8"; srcGeoIPASNum = fetchDB "asnum/GeoIPASNum.dat.gz" "GeoIPASNum.dat.gz" - "10i4c8irvh9shbl3y0s0ffkm71vf3r290fvxjx20snqa558hkvib"; + "0xf5ciqclk9pb82kz9zkv15wb8vm32i456jcwkf6rjv18h3wjl74"; srcGeoIPASNumv6 = fetchDB "asnum/GeoIPASNumv6.dat.gz" "GeoIPASNumv6.dat.gz" - "1rvbjrj98pqj9w5ql5j49b3h40496g6aralpnz1gj21v6dfrd55n"; + "0bgxw4xdkvpwhg7fdillnk8qk14hgld4icvp81d15pz4j0b9jwq9"; meta = with stdenv.lib; { description = "GeoLite Legacy IP geolocation databases"; diff --git a/pkgs/data/misc/tzdata/default.nix b/pkgs/data/misc/tzdata/default.nix index 8ffd21330602..9adbbcb7d7f8 100644 --- a/pkgs/data/misc/tzdata/default.nix +++ b/pkgs/data/misc/tzdata/default.nix @@ -2,16 +2,16 @@ stdenv.mkDerivation rec { name = "tzdata-${version}"; - version = "2016c"; + version = "2016d"; srcs = [ (fetchurl { url = "http://www.iana.org/time-zones/repository/releases/tzdata${version}.tar.gz"; - sha256 = "0j1dk830rkr1pijfac5wkdifi47k28mmvfys6z07l07jws0xj047"; + sha256 = "1d51y1cmp2mhfmk51pagw7p15vrnf269xn1bb19n1mzgl3xlsmfr"; }) (fetchurl { url = "http://www.iana.org/time-zones/repository/releases/tzcode${version}.tar.gz"; - sha256 = "05m4ql1x3b4bmlg0vv1ibz2128mkk4xxnixagcmwlnwkhva1njrl"; + sha256 = "1jp06jd3vpsh38549xnx0wnxadrnwvvcg7vnwh4y3xxfhxpkvwx8"; }) ]; diff --git a/pkgs/desktops/gnome-3/3.18/core/tracker/default.nix b/pkgs/desktops/gnome-3/3.18/core/tracker/default.nix index 88e6da2ad2d0..9c7fb9ce844f 100644 --- a/pkgs/desktops/gnome-3/3.18/core/tracker/default.nix +++ b/pkgs/desktops/gnome-3/3.18/core/tracker/default.nix @@ -1,6 +1,6 @@ { stdenv, intltool, fetchurl, libxml2, upower -, pkgconfig, gtk3, glib -, bash, makeWrapper, itstool, vala, sqlite, libxslt +, pkgconfig, gtk3, glib, dconf +, bash, wrapGAppsHook, itstool, vala, sqlite, libxslt , gnome3, librsvg, gdk_pixbuf, file, libnotify , evolution_data_server, gst_all_1, poppler , icu, taglib, libjpeg, libtiff, giflib, libcue @@ -8,41 +8,36 @@ , libpng, libexif, libgsf, libuuid, bzip2 }: let - majorVersion = "1.4"; + majorVersion = "1.8"; in stdenv.mkDerivation rec { name = "tracker-${majorVersion}.0"; src = fetchurl { url = "mirror://gnome/sources/tracker/${majorVersion}/${name}.tar.xz"; - sha256 = "1ssisbix7ib3d6bgx9s675gx6ayy68jq2srhpzv038mkbaskaz68"; + sha256 = "0zchaahk4w7dwanqk1vx0qgnyrlzlp81krwawfx3mv5zffik27x1"; }; propagatedUserEnvPkgs = [ gnome3.gnome_themes_standard ]; - NIX_CFLAGS_COMPILE = "-I${gnome3.glib}/include/gio-unix-2.0 -I${poppler}/include/poppler"; + nativeBuildInputs = [ pkgconfig wrapGAppsHook ]; - enableParallelBuilding = true; - - buildInputs = [ vala pkgconfig gtk3 glib intltool itstool libxml2 + buildInputs = [ vala gtk3 glib dconf intltool itstool libxml2 bzip2 gnome3.totem-pl-parser libxslt - gnome3.gsettings_desktop_schemas makeWrapper file + gnome3.gsettings_desktop_schemas wrapGAppsHook file gdk_pixbuf gnome3.defaultIconTheme librsvg sqlite upower libnotify evolution_data_server gnome3.libgee gst_all_1.gstreamer gst_all_1.gst-plugins-base flac poppler icu taglib libjpeg libtiff giflib libvorbis exempi networkmanager libpng libexif libgsf libuuid ]; - preConfigure = '' - substituteInPlace src/libtracker-sparql/Makefile.in --replace "--shared-library=libtracker-sparql" "--shared-library=$out/lib/libtracker-sparql" - ''; + NIX_CFLAGS_COMPILE = "-I${glib.dev}/include/gio-unix-2.0 -I${poppler.dev}/include/poppler"; - preFixup = '' - for f in $out/bin/* $out/libexec/*; do - wrapProgram $f \ - --set GDK_PIXBUF_MODULE_FILE "$GDK_PIXBUF_MODULE_FILE" \ - --prefix XDG_DATA_DIRS : "${gnome3.gnome_themes_standard}/share:$out/share:$XDG_ICON_DIRS:$GSETTINGS_SCHEMAS_PATH" - done + enableParallelBuilding = true; + + preConfigure = '' + substituteInPlace src/libtracker-sparql/Makefile.in \ + --replace "--shared-library=libtracker-sparql" "--shared-library=$out/lib/libtracker-sparql" ''; meta = with stdenv.lib; { diff --git a/pkgs/desktops/kde-5/applications-15.12/default.nix b/pkgs/desktops/kde-5/applications-15.12/default.nix index 5db80b45b8f5..f9d65ac6d87d 100644 --- a/pkgs/desktops/kde-5/applications-15.12/default.nix +++ b/pkgs/desktops/kde-5/applications-15.12/default.nix @@ -40,6 +40,7 @@ let gwenview = callPackage ./gwenview.nix {}; kate = callPackage ./kate.nix {}; kcalc = callPackage ./kcalc.nix {}; + kcolorchooser = callPackage ./kcolorchooser.nix {}; kdegraphics-thumbnailers = callPackage ./kdegraphics-thumbnailers.nix {}; kdenetwork-filesharing = callPackage ./kdenetwork-filesharing.nix {}; kgpg = callPackage ./kgpg.nix { inherit (pkgs.kde4) kdepimlibs; }; diff --git a/pkgs/desktops/kde-5/applications-15.12/kcolorchooser.nix b/pkgs/desktops/kde-5/applications-15.12/kcolorchooser.nix new file mode 100644 index 000000000000..e8eac273cb55 --- /dev/null +++ b/pkgs/desktops/kde-5/applications-15.12/kcolorchooser.nix @@ -0,0 +1,15 @@ +{ kdeApp, lib +, automoc4, cmake, kdelibs +}: + +kdeApp { + name = "kcolorchooser"; + + nativeBuildInputs = [ automoc4 cmake ]; + buildInputs = [ kdelibs ]; + + meta = { + license = with lib.licenses; [ mit ]; + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/compilers/ecl/default.nix b/pkgs/development/compilers/ecl/default.nix index a04ec454cae3..ee7dffdf0652 100644 --- a/pkgs/development/compilers/ecl/default.nix +++ b/pkgs/development/compilers/ecl/default.nix @@ -1,6 +1,6 @@ {stdenv, fetchurl , libtool, autoconf, automake -, gmp, mpfr, libffi +, gmp, mpfr, libffi, makeWrapper , noUnicode ? false, }: let @@ -14,7 +14,7 @@ let sha256="16ab8qs3awvdxy8xs8jy82v8r04x4wr70l9l2j45vgag18d2nj1d"; }; buildInputs = [ - libtool autoconf automake + libtool autoconf automake makeWrapper ]; propagatedBuildInputs = [ libffi gmp mpfr @@ -37,6 +37,9 @@ stdenv.mkDerivation { ; postInstall = '' sed -e 's/@[-a-zA-Z_]*@//g' -i $out/bin/ecl-config + wrapProgram "$out/bin/ecl" \ + --prefix NIX_LDFLAGS ' ' "-L${gmp.lib or gmp.out or gmp}/lib" \ + --prefix NIX_LDFLAGS ' ' "-L${libffi.lib or libffi.out or libffi}/lib" ''; meta = { inherit (s) version; diff --git a/pkgs/development/compilers/rustc/default.nix b/pkgs/development/compilers/rustc/default.nix index e7d440396821..61346f1b4e21 100644 --- a/pkgs/development/compilers/rustc/default.nix +++ b/pkgs/development/compilers/rustc/default.nix @@ -1,11 +1,11 @@ { stdenv, callPackage }: callPackage ./generic.nix { - shortVersion = "1.6.0"; + shortVersion = "1.7.0"; isRelease = true; forceBundledLLVM = false; configureFlags = [ "--release-channel=stable" ]; - srcSha = "1dvpiswl0apknizsz9bcrjnc4c43ys191a1b9gm3569xdlmxr36w"; + srcSha = "05f4v6sfmvkwsv6a7jp9sxsm84s0gdvqyf2wwdi1ilg9k8nxzgd4"; /* Rust is bootstrapped from an earlier built version. We need to fetch these earlier versions, which vary per platform. @@ -15,12 +15,12 @@ callPackage ./generic.nix { for the tagged release and not a snapshot in the current HEAD. */ - snapshotHashLinux686 = "e2553bf399cd134a08ef3511a0a6ab0d7a667216"; - snapshotHashLinux64 = "7df8ba9dec63ec77b857066109d4b6250f3d222f"; - snapshotHashDarwin686 = "29750870c82a0347f8b8b735a4e2e0da26f5098d"; - snapshotHashDarwin64 = "c9f2c588238b4c6998190c3abeb33fd6164099a2"; - snapshotDate = "2015-08-11"; - snapshotRev = "1af31d4"; + snapshotHashLinux686 = "a09c4a4036151d0cb28e265101669731600e01f2"; + snapshotHashLinux64 = "97e2a5eb8904962df8596e95d6e5d9b574d73bf4"; + snapshotHashDarwin686 = "ca52d2d3ba6497ed007705ee3401cf7efc136ca1"; + snapshotHashDarwin64 = "3c44ffa18f89567c2b81f8d695e711c86d81ffc7"; + snapshotDate = "2015-12-18"; + snapshotRev = "3391630"; patches = [ ./patches/remove-uneeded-git.patch ] ++ stdenv.lib.optional stdenv.needsPax ./patches/grsec.patch; diff --git a/pkgs/development/compilers/rustc/generic.nix b/pkgs/development/compilers/rustc/generic.nix index 734e43f502b2..3f640076947b 100644 --- a/pkgs/development/compilers/rustc/generic.nix +++ b/pkgs/development/compilers/rustc/generic.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, fetchgit, fetchzip, file, python2, tzdata, procps -, llvmPackages_37, jemalloc, ncurses, darwin, binutils +, llvm, jemalloc, ncurses, darwin, binutils , shortVersion, isRelease , forceBundledLLVM ? false @@ -12,8 +12,6 @@ , patches } @ args: -assert !stdenv.isFreeBSD; - /* Rust's build process has a few quirks : - The Rust compiler is written is Rust, so it requires a bootstrap @@ -39,7 +37,7 @@ let version = if isRelease then procps = if stdenv.isDarwin then darwin.ps else args.procps; - llvmShared = llvmPackages_37.llvm.override { enableSharedLibraries = true; }; + llvmShared = llvm.override { enableSharedLibraries = true; }; platform = if stdenv.system == "i686-linux" then "linux-i386" @@ -66,7 +64,7 @@ let version = if isRelease then description = "A safe, concurrent, practical language"; maintainers = with maintainers; [ madjar cstrahan wizeman globin havvy wkennington ]; license = [ licenses.mit licenses.asl20 ]; - platforms = platforms.linux; + platforms = platforms.linux ++ platforms.darwin; }; snapshotHash = if stdenv.system == "i686-linux" diff --git a/pkgs/development/go-modules/generic/default.nix b/pkgs/development/go-modules/generic/default.nix index 93b09acbda1b..89258062f263 100644 --- a/pkgs/development/go-modules/generic/default.nix +++ b/pkgs/development/go-modules/generic/default.nix @@ -106,7 +106,7 @@ go.stdenv.mkDerivation ( echo "$subPackages" | sed "s,\(^\| \),\1$goPackagePath/,g" else pushd go/src >/dev/null - find "$goPackagePath" -type f -name \*$type.go -exec dirname {} \; | sort | uniq + find "$goPackagePath" -type f -name \*$type.go -exec dirname {} \; | grep -v "/vendor/" | sort | uniq popd >/dev/null fi } diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.0.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.0.x.nix index 77735182d0e7..d5259ef2d130 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.0.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.0.x.nix @@ -77,4 +77,10 @@ self: super: { # Needs void on pre 7.10.x compilers. conduit = addBuildDepend super.conduit self.void; + # Needs tagged on pre 7.6.x compilers. + reflection = addBuildDepend super.reflection self.tagged; + + # Needs nats on pre 7.6.x compilers. + semigroups = addBuildDepend super.semigroups self.nats; + } diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.2.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.2.x.nix index d354ea1305db..db0aa51492fe 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.2.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.2.x.nix @@ -78,4 +78,10 @@ self: super: { # Needs void on pre 7.10.x compilers. conduit = addBuildDepend super.conduit self.void; + # Needs tagged on pre 7.6.x compilers. + reflection = addBuildDepend super.reflection self.tagged; + + # Needs nats on pre 7.6.x compilers. + semigroups = addBuildDepend super.semigroups self.nats; + } diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix index 0103eb3c598c..e2bb4f00d787 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix @@ -89,4 +89,10 @@ self: super: { # Needs void on pre 7.10.x compilers. conduit = addBuildDepend super.conduit self.void; + # Needs tagged on pre 7.6.x compilers. + reflection = addBuildDepend super.reflection self.tagged; + + # Needs nats on pre 7.6.x compilers. + semigroups = addBuildDepend super.semigroups self.nats; + } diff --git a/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix b/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix index 5550016b9b5c..555223b75944 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix @@ -49,9 +49,6 @@ self: super: { # Deviate from Stackage here to fix lots of builds. transformers-compat = self.transformers-compat_0_5_1_4; - # https://github.com/sol/doctest/issues/125 - doctest = self.doctest_0_11_0; - # No modules defined for this compiler. fail = dontHaddock super.fail; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.0.nix b/pkgs/development/haskell-modules/configuration-lts-0.0.nix index 0255bb3f2f86..6209c4405ad1 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.0.nix @@ -1185,10 +1185,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; @@ -1365,6 +1367,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = dontDistribute super."apiary"; @@ -1391,6 +1394,7 @@ self: super: { "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; "applicative-quoters" = dontDistribute super."applicative-quoters"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1616,6 +1620,7 @@ self: super: { "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1799,6 +1804,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_4_0_2"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2208,6 +2214,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2537,6 +2544,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -4888,6 +4896,9 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -5768,6 +5779,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13"; @@ -6375,6 +6387,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6596,6 +6609,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_1"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6829,12 +6843,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "presburger" = dontDistribute super."presburger"; @@ -7461,6 +7477,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7890,6 +7907,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -8008,7 +8026,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -9251,6 +9271,7 @@ self: super: { "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.1.nix b/pkgs/development/haskell-modules/configuration-lts-0.1.nix index 7a6b8d9c3975..d205c4cdff87 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.1.nix @@ -1185,10 +1185,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; @@ -1365,6 +1367,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = dontDistribute super."apiary"; @@ -1391,6 +1394,7 @@ self: super: { "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; "applicative-quoters" = dontDistribute super."applicative-quoters"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1616,6 +1620,7 @@ self: super: { "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1799,6 +1804,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_4_0_2"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2208,6 +2214,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2537,6 +2544,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -4888,6 +4896,9 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -5768,6 +5779,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13"; @@ -6375,6 +6387,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6596,6 +6609,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_1"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6829,12 +6843,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "presburger" = dontDistribute super."presburger"; @@ -7461,6 +7477,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7890,6 +7907,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -8008,7 +8026,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -9251,6 +9271,7 @@ self: super: { "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.2.nix b/pkgs/development/haskell-modules/configuration-lts-0.2.nix index 564778ac7d1e..22c56ac8a676 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.2.nix @@ -1185,10 +1185,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; @@ -1365,6 +1367,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = dontDistribute super."apiary"; @@ -1391,6 +1394,7 @@ self: super: { "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; "applicative-quoters" = dontDistribute super."applicative-quoters"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1616,6 +1620,7 @@ self: super: { "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1799,6 +1804,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_4_0_2"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2208,6 +2214,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2537,6 +2544,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -4888,6 +4896,9 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -5768,6 +5779,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13"; @@ -6375,6 +6387,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6596,6 +6609,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_1"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6829,12 +6843,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "presburger" = dontDistribute super."presburger"; @@ -7461,6 +7477,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7890,6 +7907,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -8008,7 +8026,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -9251,6 +9271,7 @@ self: super: { "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.3.nix b/pkgs/development/haskell-modules/configuration-lts-0.3.nix index c99f5b114ee2..29ef3a1c4a86 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.3.nix @@ -1185,10 +1185,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; @@ -1365,6 +1367,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = dontDistribute super."apiary"; @@ -1391,6 +1394,7 @@ self: super: { "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; "applicative-quoters" = dontDistribute super."applicative-quoters"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1616,6 +1620,7 @@ self: super: { "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1799,6 +1804,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_4_0_2"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2208,6 +2214,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2537,6 +2544,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -4888,6 +4896,9 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -5768,6 +5779,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13"; @@ -6375,6 +6387,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6596,6 +6609,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_1"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6829,12 +6843,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "presburger" = dontDistribute super."presburger"; @@ -7461,6 +7477,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7890,6 +7907,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -8008,7 +8026,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -9251,6 +9271,7 @@ self: super: { "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.4.nix b/pkgs/development/haskell-modules/configuration-lts-0.4.nix index 8519ea145d0a..73b991dd3789 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.4.nix @@ -1185,10 +1185,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; @@ -1365,6 +1367,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = dontDistribute super."apiary"; @@ -1391,6 +1394,7 @@ self: super: { "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; "applicative-quoters" = dontDistribute super."applicative-quoters"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1616,6 +1620,7 @@ self: super: { "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1799,6 +1804,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_4_0_2"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2208,6 +2214,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2537,6 +2544,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -4885,6 +4893,9 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -5765,6 +5776,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13"; @@ -6372,6 +6384,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6593,6 +6606,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_1_2"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6826,12 +6840,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "presburger" = dontDistribute super."presburger"; @@ -7457,6 +7473,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7886,6 +7903,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -8004,7 +8022,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -9247,6 +9267,7 @@ self: super: { "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.5.nix b/pkgs/development/haskell-modules/configuration-lts-0.5.nix index aa8bcf7c0f13..0504c68e1e63 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.5.nix @@ -1185,10 +1185,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; @@ -1365,6 +1367,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = dontDistribute super."apiary"; @@ -1391,6 +1394,7 @@ self: super: { "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; "applicative-quoters" = dontDistribute super."applicative-quoters"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1616,6 +1620,7 @@ self: super: { "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1799,6 +1804,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_4_0_2"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2208,6 +2214,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2537,6 +2544,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -4885,6 +4893,9 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -5765,6 +5776,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13"; @@ -6372,6 +6384,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6593,6 +6606,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_1_2"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6826,12 +6840,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "presburger" = dontDistribute super."presburger"; @@ -7457,6 +7473,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7886,6 +7903,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -8004,7 +8022,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -9247,6 +9267,7 @@ self: super: { "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.6.nix b/pkgs/development/haskell-modules/configuration-lts-0.6.nix index 70f9e6ec9a87..65e9713e3036 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.6.nix @@ -1184,10 +1184,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; @@ -1364,6 +1366,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = dontDistribute super."apiary"; @@ -1390,6 +1393,7 @@ self: super: { "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; "applicative-quoters" = dontDistribute super."applicative-quoters"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1615,6 +1619,7 @@ self: super: { "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1798,6 +1803,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_4_0_2"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2207,6 +2213,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2536,6 +2543,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -4883,6 +4891,9 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -5763,6 +5774,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13"; @@ -6370,6 +6382,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6591,6 +6604,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_1_3"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6824,12 +6838,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "presburger" = dontDistribute super."presburger"; @@ -7454,6 +7470,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7883,6 +7900,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -8001,7 +8019,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -9242,6 +9262,7 @@ self: super: { "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.7.nix b/pkgs/development/haskell-modules/configuration-lts-0.7.nix index 663960a8d01c..081a214d4dbb 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.7.nix @@ -1184,10 +1184,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; @@ -1364,6 +1366,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = dontDistribute super."apiary"; @@ -1390,6 +1393,7 @@ self: super: { "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; "applicative-quoters" = dontDistribute super."applicative-quoters"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1615,6 +1619,7 @@ self: super: { "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1798,6 +1803,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_4_0_2"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2207,6 +2213,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2536,6 +2543,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -4883,6 +4891,9 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -5763,6 +5774,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13"; @@ -6370,6 +6382,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6591,6 +6604,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_1_3"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6824,12 +6838,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "presburger" = dontDistribute super."presburger"; @@ -7454,6 +7470,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7883,6 +7900,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -8001,7 +8019,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -9242,6 +9262,7 @@ self: super: { "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.0.nix b/pkgs/development/haskell-modules/configuration-lts-1.0.nix index 11a254ac8e4b..e1c3d165ff76 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.0.nix @@ -1181,10 +1181,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; @@ -1361,6 +1363,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = dontDistribute super."apiary"; @@ -1387,6 +1390,7 @@ self: super: { "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; "applicative-quoters" = dontDistribute super."applicative-quoters"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1612,6 +1616,7 @@ self: super: { "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1794,6 +1799,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2201,6 +2207,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2529,6 +2536,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -4874,6 +4882,9 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -5754,6 +5765,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13"; @@ -6361,6 +6373,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6582,6 +6595,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_1_3"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6815,12 +6829,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "presburger" = dontDistribute super."presburger"; @@ -7444,6 +7460,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7872,6 +7889,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7990,7 +8008,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -9230,6 +9250,7 @@ self: super: { "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.1.nix b/pkgs/development/haskell-modules/configuration-lts-1.1.nix index b320d53dee1b..070631c28b24 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.1.nix @@ -1181,10 +1181,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; @@ -1361,6 +1363,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = dontDistribute super."apiary"; @@ -1387,6 +1390,7 @@ self: super: { "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; "applicative-quoters" = dontDistribute super."applicative-quoters"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1612,6 +1616,7 @@ self: super: { "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1794,6 +1799,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2200,6 +2206,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2527,6 +2534,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -4868,6 +4876,9 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -5748,6 +5759,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_1"; @@ -6354,6 +6366,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6575,6 +6588,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_1_4"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6808,12 +6822,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "presburger" = dontDistribute super."presburger"; @@ -7437,6 +7453,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7864,6 +7881,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7981,7 +7999,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -9217,6 +9237,7 @@ self: super: { "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.10.nix b/pkgs/development/haskell-modules/configuration-lts-1.10.nix index 90a8e2daf9b5..ccd32b161ed1 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.10.nix @@ -1180,10 +1180,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; @@ -1360,6 +1362,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = dontDistribute super."apiary"; @@ -1386,6 +1389,7 @@ self: super: { "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; "applicative-quoters" = dontDistribute super."applicative-quoters"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1611,6 +1615,7 @@ self: super: { "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1793,6 +1798,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2197,6 +2203,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2523,6 +2530,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -4857,6 +4865,9 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -5731,6 +5742,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_1"; @@ -6335,6 +6347,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6555,6 +6568,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_1_7"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6788,12 +6802,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "presburger" = dontDistribute super."presburger"; @@ -7416,6 +7432,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7841,6 +7858,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7958,7 +7976,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -9187,6 +9207,7 @@ self: super: { "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.11.nix b/pkgs/development/haskell-modules/configuration-lts-1.11.nix index e4b68356bb8f..3ba65450a7bc 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.11.nix @@ -1180,10 +1180,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; @@ -1360,6 +1362,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = dontDistribute super."apiary"; @@ -1386,6 +1389,7 @@ self: super: { "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; "applicative-quoters" = dontDistribute super."applicative-quoters"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1611,6 +1615,7 @@ self: super: { "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1793,6 +1798,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2197,6 +2203,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2523,6 +2530,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -4856,6 +4864,9 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -5727,6 +5738,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_1"; @@ -6331,6 +6343,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6551,6 +6564,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_1_7"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6784,12 +6798,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "presburger" = dontDistribute super."presburger"; @@ -7412,6 +7428,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7837,6 +7854,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7954,7 +7972,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -9183,6 +9203,7 @@ self: super: { "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.12.nix b/pkgs/development/haskell-modules/configuration-lts-1.12.nix index 0d516ef3b00b..5f128b69c41b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.12.nix @@ -1180,10 +1180,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; @@ -1360,6 +1362,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = dontDistribute super."apiary"; @@ -1386,6 +1389,7 @@ self: super: { "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; "applicative-quoters" = dontDistribute super."applicative-quoters"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1611,6 +1615,7 @@ self: super: { "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1793,6 +1798,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2197,6 +2203,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2523,6 +2530,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -4855,6 +4863,9 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -5726,6 +5737,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_1"; @@ -6330,6 +6342,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6550,6 +6563,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_1_7"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6783,12 +6797,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "presburger" = dontDistribute super."presburger"; @@ -7411,6 +7427,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7836,6 +7853,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7953,7 +7971,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -9182,6 +9202,7 @@ self: super: { "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.13.nix b/pkgs/development/haskell-modules/configuration-lts-1.13.nix index 23f248767de0..64693d1c9105 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.13.nix @@ -1180,10 +1180,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; @@ -1360,6 +1362,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = dontDistribute super."apiary"; @@ -1386,6 +1389,7 @@ self: super: { "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; "applicative-quoters" = dontDistribute super."applicative-quoters"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1611,6 +1615,7 @@ self: super: { "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1793,6 +1798,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2197,6 +2203,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2523,6 +2530,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -4854,6 +4862,9 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -5725,6 +5736,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_1"; @@ -6329,6 +6341,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6549,6 +6562,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_2"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6782,12 +6796,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "presburger" = dontDistribute super."presburger"; @@ -7410,6 +7426,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7835,6 +7852,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7952,7 +7970,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -9180,6 +9200,7 @@ self: super: { "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.14.nix b/pkgs/development/haskell-modules/configuration-lts-1.14.nix index 546298ae5816..bf0899555001 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.14.nix @@ -1179,10 +1179,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; @@ -1359,6 +1361,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = dontDistribute super."apiary"; @@ -1385,6 +1388,7 @@ self: super: { "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; "applicative-quoters" = dontDistribute super."applicative-quoters"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1609,6 +1613,7 @@ self: super: { "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1791,6 +1796,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2195,6 +2201,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2520,6 +2527,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -4851,6 +4859,9 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -5722,6 +5733,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_1"; @@ -6325,6 +6337,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6545,6 +6558,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_2"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6778,12 +6792,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "presburger" = dontDistribute super."presburger"; @@ -7405,6 +7421,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7830,6 +7847,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7947,7 +7965,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -9175,6 +9195,7 @@ self: super: { "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.15.nix b/pkgs/development/haskell-modules/configuration-lts-1.15.nix index 83357e85a480..647c141ef7f1 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.15.nix @@ -1178,10 +1178,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; @@ -1358,6 +1360,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = dontDistribute super."apiary"; @@ -1384,6 +1387,7 @@ self: super: { "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; "applicative-quoters" = dontDistribute super."applicative-quoters"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1608,6 +1612,7 @@ self: super: { "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1790,6 +1795,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2193,6 +2199,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2517,6 +2524,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -4847,6 +4855,9 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -5718,6 +5729,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_1"; @@ -6319,6 +6331,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6539,6 +6552,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_2"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6772,12 +6786,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "presburger" = dontDistribute super."presburger"; @@ -7398,6 +7414,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7823,6 +7840,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7939,7 +7957,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -9165,6 +9185,7 @@ self: super: { "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.2.nix b/pkgs/development/haskell-modules/configuration-lts-1.2.nix index 805787d79cc8..42c898fadf4e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.2.nix @@ -1181,10 +1181,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; @@ -1361,6 +1363,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = dontDistribute super."apiary"; @@ -1387,6 +1390,7 @@ self: super: { "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; "applicative-quoters" = dontDistribute super."applicative-quoters"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1612,6 +1616,7 @@ self: super: { "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1794,6 +1799,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2199,6 +2205,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2525,6 +2532,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -4865,6 +4873,9 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -5745,6 +5756,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_1"; @@ -6351,6 +6363,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6571,6 +6584,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_1_4"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6804,12 +6818,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "presburger" = dontDistribute super."presburger"; @@ -7432,6 +7448,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7858,6 +7875,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7975,7 +7993,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -9211,6 +9231,7 @@ self: super: { "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.4.nix b/pkgs/development/haskell-modules/configuration-lts-1.4.nix index 51c417a9f812..4cf1b11f75d0 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.4.nix @@ -1180,10 +1180,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; @@ -1360,6 +1362,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = dontDistribute super."apiary"; @@ -1386,6 +1389,7 @@ self: super: { "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; "applicative-quoters" = dontDistribute super."applicative-quoters"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1611,6 +1615,7 @@ self: super: { "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1793,6 +1798,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2198,6 +2204,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2524,6 +2531,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -4862,6 +4870,9 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -5742,6 +5753,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_1"; @@ -6347,6 +6359,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6567,6 +6580,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_1_4"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6800,12 +6814,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "presburger" = dontDistribute super."presburger"; @@ -7428,6 +7444,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7854,6 +7871,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7971,7 +7989,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -9206,6 +9226,7 @@ self: super: { "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.5.nix b/pkgs/development/haskell-modules/configuration-lts-1.5.nix index 81f9a63bb683..44c6245033cf 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.5.nix @@ -1180,10 +1180,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; @@ -1360,6 +1362,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = dontDistribute super."apiary"; @@ -1386,6 +1389,7 @@ self: super: { "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; "applicative-quoters" = dontDistribute super."applicative-quoters"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1611,6 +1615,7 @@ self: super: { "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1793,6 +1798,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2197,6 +2203,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2523,6 +2530,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -4861,6 +4869,9 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -5741,6 +5752,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_1"; @@ -6346,6 +6358,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6566,6 +6579,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_1_4"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6799,12 +6813,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "presburger" = dontDistribute super."presburger"; @@ -7427,6 +7443,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7853,6 +7870,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7970,7 +7988,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -9203,6 +9223,7 @@ self: super: { "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.7.nix b/pkgs/development/haskell-modules/configuration-lts-1.7.nix index 5b1f3e1dcf34..34799a77d6bb 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.7.nix @@ -1180,10 +1180,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; @@ -1360,6 +1362,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = dontDistribute super."apiary"; @@ -1386,6 +1389,7 @@ self: super: { "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; "applicative-quoters" = dontDistribute super."applicative-quoters"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1611,6 +1615,7 @@ self: super: { "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1793,6 +1798,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2197,6 +2203,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2523,6 +2530,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -4861,6 +4869,9 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -5736,6 +5747,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_1"; @@ -6341,6 +6353,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6561,6 +6574,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_1_4"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6794,12 +6808,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "presburger" = dontDistribute super."presburger"; @@ -7422,6 +7438,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7848,6 +7865,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7965,7 +7983,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -9198,6 +9218,7 @@ self: super: { "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.8.nix b/pkgs/development/haskell-modules/configuration-lts-1.8.nix index ac4010b02ce7..3b19bb0c58d2 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.8.nix @@ -1180,10 +1180,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; @@ -1360,6 +1362,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = dontDistribute super."apiary"; @@ -1386,6 +1389,7 @@ self: super: { "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; "applicative-quoters" = dontDistribute super."applicative-quoters"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1611,6 +1615,7 @@ self: super: { "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1793,6 +1798,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2197,6 +2203,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2523,6 +2530,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -4858,6 +4866,9 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -5732,6 +5743,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_1"; @@ -6337,6 +6349,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6557,6 +6570,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_1_4"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6790,12 +6804,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "presburger" = dontDistribute super."presburger"; @@ -7418,6 +7434,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7844,6 +7861,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7961,7 +7979,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -9193,6 +9213,7 @@ self: super: { "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.9.nix b/pkgs/development/haskell-modules/configuration-lts-1.9.nix index 88c8976fcdeb..ecdfc50ad916 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.9.nix @@ -1180,10 +1180,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; @@ -1360,6 +1362,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = dontDistribute super."apiary"; @@ -1386,6 +1389,7 @@ self: super: { "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; "applicative-quoters" = dontDistribute super."applicative-quoters"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1611,6 +1615,7 @@ self: super: { "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1793,6 +1798,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2197,6 +2203,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2523,6 +2530,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -4857,6 +4865,9 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -5731,6 +5742,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_1"; @@ -6336,6 +6348,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6556,6 +6569,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_1_4"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6789,12 +6803,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "presburger" = dontDistribute super."presburger"; @@ -7417,6 +7433,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7843,6 +7860,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7960,7 +7978,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -9192,6 +9212,7 @@ self: super: { "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.0.nix b/pkgs/development/haskell-modules/configuration-lts-2.0.nix index 71aaba0f7c79..6575165571f1 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.0.nix @@ -1172,10 +1172,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; @@ -1352,6 +1354,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = dontDistribute super."apiary"; @@ -1377,6 +1380,7 @@ self: super: { "applicative-fail" = dontDistribute super."applicative-fail"; "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1600,6 +1604,7 @@ self: super: { "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1759,6 +1764,7 @@ self: super: { "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html" = doDistribute super."blaze-html_0_8_0_2"; @@ -1780,6 +1786,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2182,6 +2189,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2504,6 +2512,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -4766,6 +4775,7 @@ self: super: { "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" = doDistribute super."http-client-openssl_0_2_0_1"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; @@ -4827,6 +4837,9 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -5685,6 +5698,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_1"; @@ -6277,6 +6291,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6496,6 +6511,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_2"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6728,12 +6744,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = doDistribute super."present_2_2"; @@ -7354,6 +7372,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7774,6 +7793,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7890,7 +7910,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -9107,6 +9129,7 @@ self: super: { "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.1.nix b/pkgs/development/haskell-modules/configuration-lts-2.1.nix index b99a3578e26d..cb85183a364e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.1.nix @@ -1172,10 +1172,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; @@ -1352,6 +1354,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = dontDistribute super."apiary"; @@ -1377,6 +1380,7 @@ self: super: { "applicative-fail" = dontDistribute super."applicative-fail"; "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1600,6 +1604,7 @@ self: super: { "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1759,6 +1764,7 @@ self: super: { "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html" = doDistribute super."blaze-html_0_8_0_2"; @@ -1780,6 +1786,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2181,6 +2188,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2503,6 +2511,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -4765,6 +4774,7 @@ self: super: { "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" = doDistribute super."http-client-openssl_0_2_0_1"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; @@ -4826,6 +4836,9 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -5684,6 +5697,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_1"; @@ -6276,6 +6290,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6495,6 +6510,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_2"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6727,12 +6743,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = doDistribute super."present_2_2"; @@ -7353,6 +7371,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7773,6 +7792,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7889,7 +7909,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -9105,6 +9127,7 @@ self: super: { "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.10.nix b/pkgs/development/haskell-modules/configuration-lts-2.10.nix index 168ea0349229..ede06c7477c1 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.10.nix @@ -1167,10 +1167,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; @@ -1347,6 +1349,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = dontDistribute super."apiary"; @@ -1372,6 +1375,7 @@ self: super: { "applicative-fail" = dontDistribute super."applicative-fail"; "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1592,6 +1596,7 @@ self: super: { "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1750,6 +1755,7 @@ self: super: { "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html" = doDistribute super."blaze-html_0_8_0_2"; @@ -1771,6 +1777,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2170,6 +2177,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2491,6 +2499,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -4745,6 +4754,7 @@ self: super: { "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" = doDistribute super."http-client-openssl_0_2_0_1"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; @@ -4805,6 +4815,9 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -5659,6 +5672,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -6251,6 +6265,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6469,6 +6484,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_5"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6700,12 +6716,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = doDistribute super."present_2_2"; @@ -7323,6 +7341,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7742,6 +7761,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7853,7 +7873,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -9063,6 +9085,7 @@ self: super: { "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.11.nix b/pkgs/development/haskell-modules/configuration-lts-2.11.nix index 0458c7f6fa58..d54a1f5c3e5a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.11.nix @@ -1167,10 +1167,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; @@ -1346,6 +1348,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = dontDistribute super."apiary"; @@ -1371,6 +1374,7 @@ self: super: { "applicative-fail" = dontDistribute super."applicative-fail"; "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1591,6 +1595,7 @@ self: super: { "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1749,6 +1754,7 @@ self: super: { "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html" = doDistribute super."blaze-html_0_8_0_2"; @@ -1770,6 +1776,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2169,6 +2176,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2490,6 +2498,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -4742,6 +4751,7 @@ self: super: { "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" = doDistribute super."http-client-openssl_0_2_0_1"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; @@ -4802,6 +4812,9 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -5655,6 +5668,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -6246,6 +6260,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6463,6 +6478,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_6"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6694,12 +6710,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = doDistribute super."present_2_2"; @@ -7316,6 +7334,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7735,6 +7754,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7845,7 +7865,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -9054,6 +9076,7 @@ self: super: { "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.12.nix b/pkgs/development/haskell-modules/configuration-lts-2.12.nix index baf1df1a41c8..91703369a405 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.12.nix @@ -1167,10 +1167,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; @@ -1346,6 +1348,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = dontDistribute super."apiary"; @@ -1371,6 +1374,7 @@ self: super: { "applicative-fail" = dontDistribute super."applicative-fail"; "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1591,6 +1595,7 @@ self: super: { "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1749,6 +1754,7 @@ self: super: { "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html" = doDistribute super."blaze-html_0_8_0_2"; @@ -1770,6 +1776,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2169,6 +2176,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2490,6 +2498,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -4742,6 +4751,7 @@ self: super: { "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" = doDistribute super."http-client-openssl_0_2_0_1"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; @@ -4802,6 +4812,9 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -5655,6 +5668,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -6246,6 +6260,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6463,6 +6478,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_6"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6694,12 +6710,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = doDistribute super."present_2_2"; @@ -7316,6 +7334,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7734,6 +7753,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7844,7 +7864,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -9053,6 +9075,7 @@ self: super: { "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.13.nix b/pkgs/development/haskell-modules/configuration-lts-2.13.nix index 539dce09b7e6..30375d21722a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.13.nix @@ -1167,10 +1167,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; @@ -1346,6 +1348,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = dontDistribute super."apiary"; @@ -1371,6 +1374,7 @@ self: super: { "applicative-fail" = dontDistribute super."applicative-fail"; "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1591,6 +1595,7 @@ self: super: { "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1749,6 +1754,7 @@ self: super: { "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html" = doDistribute super."blaze-html_0_8_0_2"; @@ -1770,6 +1776,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2169,6 +2176,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2490,6 +2498,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -4741,6 +4750,7 @@ self: super: { "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" = doDistribute super."http-client-openssl_0_2_0_1"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; @@ -4801,6 +4811,9 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -5653,6 +5666,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -6244,6 +6258,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6461,6 +6476,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_6"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6692,12 +6708,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = doDistribute super."present_2_2"; @@ -7314,6 +7332,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7732,6 +7751,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7842,7 +7862,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -9051,6 +9073,7 @@ self: super: { "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.14.nix b/pkgs/development/haskell-modules/configuration-lts-2.14.nix index bc153d27d4d2..c2d4495820d2 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.14.nix @@ -1167,10 +1167,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; @@ -1346,6 +1348,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = dontDistribute super."apiary"; @@ -1371,6 +1374,7 @@ self: super: { "applicative-fail" = dontDistribute super."applicative-fail"; "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1591,6 +1595,7 @@ self: super: { "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1749,6 +1754,7 @@ self: super: { "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html" = doDistribute super."blaze-html_0_8_0_2"; @@ -1770,6 +1776,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2169,6 +2176,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2490,6 +2498,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -4739,6 +4748,7 @@ self: super: { "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" = doDistribute super."http-client-openssl_0_2_0_1"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; @@ -4799,6 +4809,9 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -5651,6 +5664,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -6242,6 +6256,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6459,6 +6474,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_6"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6690,12 +6706,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = doDistribute super."present_2_2"; @@ -7312,6 +7330,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7729,6 +7748,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7839,7 +7859,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -9017,6 +9039,7 @@ self: super: { "yesod-auth-basic" = dontDistribute super."yesod-auth-basic"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-fb" = doDistribute super."yesod-auth-fb_1_6_6"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "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"; @@ -9046,6 +9069,7 @@ self: super: { "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.15.nix b/pkgs/development/haskell-modules/configuration-lts-2.15.nix index 25f1ebb4746e..e396fc6a9088 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.15.nix @@ -1167,10 +1167,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; @@ -1346,6 +1348,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = dontDistribute super."apiary"; @@ -1371,6 +1374,7 @@ self: super: { "applicative-fail" = dontDistribute super."applicative-fail"; "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1591,6 +1595,7 @@ self: super: { "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1749,6 +1754,7 @@ self: super: { "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html" = doDistribute super."blaze-html_0_8_0_2"; @@ -1770,6 +1776,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2169,6 +2176,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2490,6 +2498,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -4738,6 +4747,7 @@ self: super: { "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" = doDistribute super."http-client-openssl_0_2_0_1"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; @@ -4798,6 +4808,9 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -5650,6 +5663,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -6240,6 +6254,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6457,6 +6472,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_6"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6688,12 +6704,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = doDistribute super."present_2_2"; @@ -7310,6 +7328,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7727,6 +7746,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7836,7 +7856,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -9014,6 +9036,7 @@ self: super: { "yesod-auth-basic" = dontDistribute super."yesod-auth-basic"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-fb" = doDistribute super."yesod-auth-fb_1_6_6"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "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"; @@ -9043,6 +9066,7 @@ self: super: { "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.16.nix b/pkgs/development/haskell-modules/configuration-lts-2.16.nix index 28ce1c139ed7..a34eb76a309d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.16.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.16.nix @@ -1167,10 +1167,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; @@ -1346,6 +1348,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = dontDistribute super."apiary"; @@ -1371,6 +1374,7 @@ self: super: { "applicative-fail" = dontDistribute super."applicative-fail"; "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1591,6 +1595,7 @@ self: super: { "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1749,6 +1754,7 @@ self: super: { "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html" = doDistribute super."blaze-html_0_8_0_2"; @@ -1770,6 +1776,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2168,6 +2175,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2488,6 +2496,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -4734,6 +4743,7 @@ self: super: { "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" = doDistribute super."http-client-openssl_0_2_0_1"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; @@ -4794,6 +4804,9 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -5645,6 +5658,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -6235,6 +6249,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6452,6 +6467,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_6"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6683,12 +6699,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = doDistribute super."present_2_2"; @@ -7305,6 +7323,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7722,6 +7741,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7831,7 +7851,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -9009,6 +9031,7 @@ self: super: { "yesod-auth-basic" = dontDistribute super."yesod-auth-basic"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-fb" = doDistribute super."yesod-auth-fb_1_6_6"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "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"; @@ -9038,6 +9061,7 @@ self: super: { "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.17.nix b/pkgs/development/haskell-modules/configuration-lts-2.17.nix index 6285c0d2fc99..c0365589afde 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.17.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.17.nix @@ -1167,10 +1167,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; @@ -1346,6 +1348,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = dontDistribute super."apiary"; @@ -1371,6 +1374,7 @@ self: super: { "applicative-fail" = dontDistribute super."applicative-fail"; "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1590,6 +1594,7 @@ self: super: { "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1748,6 +1753,7 @@ self: super: { "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html" = doDistribute super."blaze-html_0_8_0_2"; @@ -1768,6 +1774,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2166,6 +2173,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2486,6 +2494,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -4730,6 +4739,7 @@ self: super: { "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" = doDistribute super."http-client-openssl_0_2_0_1"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; @@ -4790,6 +4800,9 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -5641,6 +5654,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -6230,6 +6244,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6447,6 +6462,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_6"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6678,12 +6694,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = doDistribute super."present_2_2"; @@ -7300,6 +7318,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7717,6 +7736,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7826,7 +7846,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -9004,6 +9026,7 @@ self: super: { "yesod-auth-basic" = dontDistribute super."yesod-auth-basic"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-fb" = doDistribute super."yesod-auth-fb_1_6_6"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "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"; @@ -9033,6 +9056,7 @@ self: super: { "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.18.nix b/pkgs/development/haskell-modules/configuration-lts-2.18.nix index 485cb290ded6..d7768a5ed469 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.18.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.18.nix @@ -1167,10 +1167,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; @@ -1346,6 +1348,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = dontDistribute super."apiary"; @@ -1371,6 +1374,7 @@ self: super: { "applicative-fail" = dontDistribute super."applicative-fail"; "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1590,6 +1594,7 @@ self: super: { "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1748,6 +1753,7 @@ self: super: { "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html" = doDistribute super."blaze-html_0_8_0_2"; @@ -1768,6 +1774,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2165,6 +2172,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2485,6 +2493,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -4728,6 +4737,7 @@ self: super: { "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" = doDistribute super."http-client-openssl_0_2_0_1"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; @@ -4788,6 +4798,9 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -5639,6 +5652,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -6227,6 +6241,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6444,6 +6459,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_6"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6675,12 +6691,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = doDistribute super."present_2_2"; @@ -7297,6 +7315,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7714,6 +7733,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7823,7 +7843,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -8999,6 +9021,7 @@ self: super: { "yesod-auth-basic" = dontDistribute super."yesod-auth-basic"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-fb" = doDistribute super."yesod-auth-fb_1_6_6"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "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"; @@ -9028,6 +9051,7 @@ self: super: { "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.19.nix b/pkgs/development/haskell-modules/configuration-lts-2.19.nix index f8db93c6968e..44b5e76deb65 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.19.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.19.nix @@ -1167,10 +1167,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; @@ -1346,6 +1348,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = dontDistribute super."apiary"; @@ -1371,6 +1374,7 @@ self: super: { "applicative-fail" = dontDistribute super."applicative-fail"; "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1590,6 +1594,7 @@ self: super: { "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1748,6 +1753,7 @@ self: super: { "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html" = doDistribute super."blaze-html_0_8_0_2"; @@ -1768,6 +1774,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2165,6 +2172,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2485,6 +2493,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -4727,6 +4736,7 @@ self: super: { "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" = doDistribute super."http-client-openssl_0_2_0_1"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; @@ -4787,6 +4797,9 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -5638,6 +5651,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -6225,6 +6239,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6442,6 +6457,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_6"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6673,12 +6689,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = doDistribute super."present_2_2"; @@ -7295,6 +7313,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7711,6 +7730,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7820,7 +7840,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -8995,6 +9017,7 @@ self: super: { "yesod-auth-basic" = dontDistribute super."yesod-auth-basic"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-fb" = doDistribute super."yesod-auth-fb_1_6_6"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "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"; @@ -9024,6 +9047,7 @@ self: super: { "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.2.nix b/pkgs/development/haskell-modules/configuration-lts-2.2.nix index e3c531543f49..7fe581e10da5 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.2.nix @@ -1171,10 +1171,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; @@ -1351,6 +1353,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = dontDistribute super."apiary"; @@ -1376,6 +1379,7 @@ self: super: { "applicative-fail" = dontDistribute super."applicative-fail"; "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1599,6 +1603,7 @@ self: super: { "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1758,6 +1763,7 @@ self: super: { "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html" = doDistribute super."blaze-html_0_8_0_2"; @@ -1779,6 +1785,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2178,6 +2185,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2500,6 +2508,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -4762,6 +4771,7 @@ self: super: { "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" = doDistribute super."http-client-openssl_0_2_0_1"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; @@ -4823,6 +4833,9 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -5681,6 +5694,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_1"; @@ -6273,6 +6287,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6492,6 +6507,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_2"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6724,12 +6740,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = doDistribute super."present_2_2"; @@ -7350,6 +7368,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7770,6 +7789,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7886,7 +7906,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -9101,6 +9123,7 @@ self: super: { "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.20.nix b/pkgs/development/haskell-modules/configuration-lts-2.20.nix index 4e691183c72e..6e6ca82e27d4 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.20.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.20.nix @@ -1167,10 +1167,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; @@ -1346,6 +1348,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = dontDistribute super."apiary"; @@ -1371,6 +1374,7 @@ self: super: { "applicative-fail" = dontDistribute super."applicative-fail"; "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1590,6 +1594,7 @@ self: super: { "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1748,6 +1753,7 @@ self: super: { "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html" = doDistribute super."blaze-html_0_8_0_2"; @@ -1768,6 +1774,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2165,6 +2172,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2484,6 +2492,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -4726,6 +4735,7 @@ self: super: { "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" = doDistribute super."http-client-openssl_0_2_0_1"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; @@ -4786,6 +4796,9 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -5637,6 +5650,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -6224,6 +6238,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6441,6 +6456,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_6"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6671,12 +6687,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = doDistribute super."present_2_2"; @@ -7293,6 +7311,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7708,6 +7727,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7817,7 +7837,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -8992,6 +9014,7 @@ self: super: { "yesod-auth-basic" = dontDistribute super."yesod-auth-basic"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-fb" = doDistribute super."yesod-auth-fb_1_6_6"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "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"; @@ -9021,6 +9044,7 @@ self: super: { "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.21.nix b/pkgs/development/haskell-modules/configuration-lts-2.21.nix index 78b6bc0f7fb1..16154f7dbb99 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.21.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.21.nix @@ -1167,10 +1167,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; @@ -1346,6 +1348,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = dontDistribute super."apiary"; @@ -1371,6 +1374,7 @@ self: super: { "applicative-fail" = dontDistribute super."applicative-fail"; "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1590,6 +1594,7 @@ self: super: { "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1748,6 +1753,7 @@ self: super: { "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html" = doDistribute super."blaze-html_0_8_1_0"; @@ -1768,6 +1774,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2165,6 +2172,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2484,6 +2492,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -4726,6 +4735,7 @@ self: super: { "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" = doDistribute super."http-client-openssl_0_2_0_1"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; @@ -4786,6 +4796,9 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -5637,6 +5650,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -6224,6 +6238,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6441,6 +6456,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_6"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6670,12 +6686,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = doDistribute super."present_2_2"; @@ -7292,6 +7310,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7707,6 +7726,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7816,7 +7836,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -8990,6 +9012,7 @@ self: super: { "yesod-auth-basic" = dontDistribute super."yesod-auth-basic"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-fb" = doDistribute super."yesod-auth-fb_1_6_6"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "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"; @@ -9019,6 +9042,7 @@ self: super: { "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.22.nix b/pkgs/development/haskell-modules/configuration-lts-2.22.nix index dce3be779b82..1a8df55704d9 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.22.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.22.nix @@ -1167,10 +1167,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; @@ -1346,6 +1348,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = dontDistribute super."apiary"; @@ -1371,6 +1374,7 @@ self: super: { "applicative-fail" = dontDistribute super."applicative-fail"; "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1590,6 +1594,7 @@ self: super: { "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1748,6 +1753,7 @@ self: super: { "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html" = doDistribute super."blaze-html_0_8_1_0"; @@ -1768,6 +1774,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2165,6 +2172,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2484,6 +2492,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -4725,6 +4734,7 @@ self: super: { "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" = doDistribute super."http-client-openssl_0_2_0_1"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; @@ -4785,6 +4795,9 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -5636,6 +5649,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -6223,6 +6237,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6440,6 +6455,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_6"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6669,12 +6685,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = doDistribute super."present_2_2"; @@ -7291,6 +7309,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7706,6 +7725,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7815,7 +7835,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -8989,6 +9011,7 @@ self: super: { "yesod-auth-basic" = dontDistribute super."yesod-auth-basic"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-fb" = doDistribute super."yesod-auth-fb_1_6_6"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "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"; @@ -9018,6 +9041,7 @@ self: super: { "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.3.nix b/pkgs/development/haskell-modules/configuration-lts-2.3.nix index 8d75abce9056..2000c0c997c0 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.3.nix @@ -1171,10 +1171,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; @@ -1351,6 +1353,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = dontDistribute super."apiary"; @@ -1376,6 +1379,7 @@ self: super: { "applicative-fail" = dontDistribute super."applicative-fail"; "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1599,6 +1603,7 @@ self: super: { "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1758,6 +1763,7 @@ self: super: { "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html" = doDistribute super."blaze-html_0_8_0_2"; @@ -1779,6 +1785,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2178,6 +2185,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2500,6 +2508,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -4761,6 +4770,7 @@ self: super: { "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" = doDistribute super."http-client-openssl_0_2_0_1"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; @@ -4822,6 +4832,9 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -5679,6 +5692,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_1"; @@ -6271,6 +6285,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6490,6 +6505,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_2"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6722,12 +6738,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = doDistribute super."present_2_2"; @@ -7348,6 +7366,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7768,6 +7787,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7884,7 +7904,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -9099,6 +9121,7 @@ self: super: { "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.4.nix b/pkgs/development/haskell-modules/configuration-lts-2.4.nix index df9e812a624a..3f2c842fadda 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.4.nix @@ -1171,10 +1171,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; @@ -1351,6 +1353,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = dontDistribute super."apiary"; @@ -1376,6 +1379,7 @@ self: super: { "applicative-fail" = dontDistribute super."applicative-fail"; "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1599,6 +1603,7 @@ self: super: { "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1757,6 +1762,7 @@ self: super: { "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html" = doDistribute super."blaze-html_0_8_0_2"; @@ -1778,6 +1784,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2177,6 +2184,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2499,6 +2507,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -4760,6 +4769,7 @@ self: super: { "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" = doDistribute super."http-client-openssl_0_2_0_1"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; @@ -4821,6 +4831,9 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -5678,6 +5691,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_1"; @@ -6270,6 +6284,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6488,6 +6503,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_2"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6720,12 +6736,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = doDistribute super."present_2_2"; @@ -7345,6 +7363,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7765,6 +7784,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7881,7 +7901,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -9096,6 +9118,7 @@ self: super: { "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.5.nix b/pkgs/development/haskell-modules/configuration-lts-2.5.nix index 4be1a01459d4..2f1c3f48a19d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.5.nix @@ -1171,10 +1171,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; @@ -1351,6 +1353,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = dontDistribute super."apiary"; @@ -1376,6 +1379,7 @@ self: super: { "applicative-fail" = dontDistribute super."applicative-fail"; "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1599,6 +1603,7 @@ self: super: { "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1757,6 +1762,7 @@ self: super: { "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html" = doDistribute super."blaze-html_0_8_0_2"; @@ -1778,6 +1784,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2177,6 +2184,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2498,6 +2506,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -4759,6 +4768,7 @@ self: super: { "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" = doDistribute super."http-client-openssl_0_2_0_1"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; @@ -4820,6 +4830,9 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -5677,6 +5690,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_1"; @@ -6269,6 +6283,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6487,6 +6502,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_3"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6719,12 +6735,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = doDistribute super."present_2_2"; @@ -7344,6 +7362,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7764,6 +7783,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7880,7 +7900,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -9095,6 +9117,7 @@ self: super: { "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.6.nix b/pkgs/development/haskell-modules/configuration-lts-2.6.nix index 05fb1073481b..57c1e6077e4a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.6.nix @@ -1169,10 +1169,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; @@ -1349,6 +1351,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = dontDistribute super."apiary"; @@ -1374,6 +1377,7 @@ self: super: { "applicative-fail" = dontDistribute super."applicative-fail"; "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1596,6 +1600,7 @@ self: super: { "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1754,6 +1759,7 @@ self: super: { "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html" = doDistribute super."blaze-html_0_8_0_2"; @@ -1775,6 +1781,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2174,6 +2181,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2495,6 +2503,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -4754,6 +4763,7 @@ self: super: { "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" = doDistribute super."http-client-openssl_0_2_0_1"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; @@ -4815,6 +4825,9 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -5672,6 +5685,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_1"; @@ -6263,6 +6277,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6481,6 +6496,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_3"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6713,12 +6729,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = doDistribute super."present_2_2"; @@ -7338,6 +7356,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7758,6 +7777,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7874,7 +7894,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -9087,6 +9109,7 @@ self: super: { "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.7.nix b/pkgs/development/haskell-modules/configuration-lts-2.7.nix index 0efc62933c26..2516bf13e663 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.7.nix @@ -1168,10 +1168,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; @@ -1348,6 +1350,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = dontDistribute super."apiary"; @@ -1373,6 +1376,7 @@ self: super: { "applicative-fail" = dontDistribute super."applicative-fail"; "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1595,6 +1599,7 @@ self: super: { "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1753,6 +1758,7 @@ self: super: { "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html" = doDistribute super."blaze-html_0_8_0_2"; @@ -1774,6 +1780,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2173,6 +2180,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2494,6 +2502,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -4753,6 +4762,7 @@ self: super: { "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" = doDistribute super."http-client-openssl_0_2_0_1"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; @@ -4814,6 +4824,9 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -5671,6 +5684,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_1"; @@ -6263,6 +6277,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6481,6 +6496,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_3"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6713,12 +6729,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = doDistribute super."present_2_2"; @@ -7338,6 +7356,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7758,6 +7777,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7874,7 +7894,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -9087,6 +9109,7 @@ self: super: { "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.8.nix b/pkgs/development/haskell-modules/configuration-lts-2.8.nix index 58baca112876..3d9ad22a9fa3 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.8.nix @@ -1167,10 +1167,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; @@ -1347,6 +1349,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = dontDistribute super."apiary"; @@ -1372,6 +1375,7 @@ self: super: { "applicative-fail" = dontDistribute super."applicative-fail"; "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1594,6 +1598,7 @@ self: super: { "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1752,6 +1757,7 @@ self: super: { "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html" = doDistribute super."blaze-html_0_8_0_2"; @@ -1773,6 +1779,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2172,6 +2179,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2493,6 +2501,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -4751,6 +4760,7 @@ self: super: { "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" = doDistribute super."http-client-openssl_0_2_0_1"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; @@ -4812,6 +4822,9 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -5669,6 +5682,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_1"; @@ -6261,6 +6275,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6479,6 +6494,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_3"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6711,12 +6727,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = doDistribute super."present_2_2"; @@ -7335,6 +7353,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7754,6 +7773,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7868,7 +7888,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -9081,6 +9103,7 @@ self: super: { "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.9.nix b/pkgs/development/haskell-modules/configuration-lts-2.9.nix index 525aa9a24b3f..fc5d94955c96 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.9.nix @@ -1167,10 +1167,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; @@ -1347,6 +1349,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = dontDistribute super."apiary"; @@ -1372,6 +1375,7 @@ self: super: { "applicative-fail" = dontDistribute super."applicative-fail"; "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1592,6 +1596,7 @@ self: super: { "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1750,6 +1755,7 @@ self: super: { "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html" = doDistribute super."blaze-html_0_8_0_2"; @@ -1771,6 +1777,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2170,6 +2177,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2491,6 +2499,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -4746,6 +4755,7 @@ self: super: { "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" = doDistribute super."http-client-openssl_0_2_0_1"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; @@ -4806,6 +4816,9 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -5662,6 +5675,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -6254,6 +6268,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6472,6 +6487,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_5"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6704,12 +6720,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = doDistribute super."present_2_2"; @@ -7328,6 +7346,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7747,6 +7766,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7859,7 +7879,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -9069,6 +9091,7 @@ self: super: { "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.0.nix b/pkgs/development/haskell-modules/configuration-lts-3.0.nix index 2f6306126129..95dd9bd6479d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.0.nix @@ -1146,10 +1146,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; "aeson-qq" = doDistribute super."aeson-qq_0_8_0"; "aeson-schema" = doDistribute super."aeson-schema_0_3_0_7"; "aeson-serialize" = dontDistribute super."aeson-serialize"; @@ -1322,6 +1324,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = doDistribute super."apiary_1_4_3"; @@ -1337,6 +1340,7 @@ self: super: { "applicative-fail" = dontDistribute super."applicative-fail"; "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1550,6 +1554,7 @@ self: super: { "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1703,6 +1708,7 @@ self: super: { "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html" = doDistribute super."blaze-html_0_8_1_0"; @@ -1722,6 +1728,7 @@ self: super: { "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2110,6 +2117,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2426,6 +2434,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -2717,6 +2726,7 @@ self: super: { "docker" = dontDistribute super."docker"; "dockercook" = dontDistribute super."dockercook"; "docopt" = dontDistribute super."docopt"; + "doctest" = doDistribute super."doctest_0_10_1"; "doctest-discover" = dontDistribute super."doctest-discover"; "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; "doctest-prop" = dontDistribute super."doctest-prop"; @@ -4686,6 +4696,9 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = doDistribute super."hvect_0_2_0_0"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -4879,6 +4892,7 @@ self: super: { "iothread" = dontDistribute super."iothread"; "iotransaction" = dontDistribute super."iotransaction"; "ip-quoter" = dontDistribute super."ip-quoter"; + "ip6addr" = doDistribute super."ip6addr_0_5_0_1"; "ipatch" = dontDistribute super."ipatch"; "ipc" = dontDistribute super."ipc"; "ipcvar" = dontDistribute super."ipcvar"; @@ -5501,6 +5515,7 @@ self: super: { "mangopay" = doDistribute super."mangopay_1_11_4"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -6070,6 +6085,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6111,6 +6127,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "option" = dontDistribute super."option"; "optional" = dontDistribute super."optional"; + "optional-args" = doDistribute super."optional-args_1_0_0"; "options-time" = dontDistribute super."options-time"; "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; @@ -6281,6 +6298,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6502,12 +6520,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = dontDistribute super."present"; @@ -7123,6 +7143,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7243,6 +7264,7 @@ self: super: { "shadowsocks" = dontDistribute super."shadowsocks"; "shady-gen" = dontDistribute super."shady-gen"; "shady-graphics" = dontDistribute super."shady-graphics"; + "shake" = doDistribute super."shake_0_15_5"; "shake-cabal-build" = dontDistribute super."shake-cabal-build"; "shake-extras" = dontDistribute super."shake-extras"; "shake-language-c" = doDistribute super."shake-language-c_0_8_0"; @@ -7531,6 +7553,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7633,7 +7656,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -8780,6 +8805,7 @@ self: super: { "yesod-auth" = doDistribute super."yesod-auth_1_4_6"; "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "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"; @@ -8805,6 +8831,7 @@ self: super: { "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.1.nix b/pkgs/development/haskell-modules/configuration-lts-3.1.nix index 71f470495ebb..d6292298ad90 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.1.nix @@ -1146,10 +1146,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; "aeson-schema" = doDistribute super."aeson-schema_0_3_0_7"; "aeson-serialize" = dontDistribute super."aeson-serialize"; "aeson-smart" = dontDistribute super."aeson-smart"; @@ -1321,6 +1323,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = doDistribute super."apiary_1_4_3"; @@ -1336,6 +1339,7 @@ self: super: { "applicative-fail" = dontDistribute super."applicative-fail"; "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1549,6 +1553,7 @@ self: super: { "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1702,6 +1707,7 @@ self: super: { "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html" = doDistribute super."blaze-html_0_8_1_0"; @@ -1721,6 +1727,7 @@ self: super: { "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2109,6 +2116,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2425,6 +2433,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -2716,6 +2725,7 @@ self: super: { "docker" = dontDistribute super."docker"; "dockercook" = dontDistribute super."dockercook"; "docopt" = dontDistribute super."docopt"; + "doctest" = doDistribute super."doctest_0_10_1"; "doctest-discover" = dontDistribute super."doctest-discover"; "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; "doctest-prop" = dontDistribute super."doctest-prop"; @@ -4684,6 +4694,9 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = doDistribute super."hvect_0_2_0_0"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -4877,6 +4890,7 @@ self: super: { "iothread" = dontDistribute super."iothread"; "iotransaction" = dontDistribute super."iotransaction"; "ip-quoter" = dontDistribute super."ip-quoter"; + "ip6addr" = doDistribute super."ip6addr_0_5_0_1"; "ipatch" = dontDistribute super."ipatch"; "ipc" = dontDistribute super."ipc"; "ipcvar" = dontDistribute super."ipcvar"; @@ -5498,6 +5512,7 @@ self: super: { "mangopay" = doDistribute super."mangopay_1_11_4"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -6066,6 +6081,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6107,6 +6123,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "option" = dontDistribute super."option"; "optional" = dontDistribute super."optional"; + "optional-args" = doDistribute super."optional-args_1_0_0"; "options-time" = dontDistribute super."options-time"; "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; @@ -6277,6 +6294,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6497,12 +6515,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = dontDistribute super."present"; @@ -7117,6 +7137,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7237,6 +7258,7 @@ self: super: { "shadowsocks" = dontDistribute super."shadowsocks"; "shady-gen" = dontDistribute super."shady-gen"; "shady-graphics" = dontDistribute super."shady-graphics"; + "shake" = doDistribute super."shake_0_15_5"; "shake-cabal-build" = dontDistribute super."shake-cabal-build"; "shake-extras" = dontDistribute super."shake-extras"; "shake-language-c" = doDistribute super."shake-language-c_0_8_0"; @@ -7525,6 +7547,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7627,7 +7650,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -8773,6 +8798,7 @@ self: super: { "yesod-auth" = doDistribute super."yesod-auth_1_4_6"; "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "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"; @@ -8798,6 +8824,7 @@ self: super: { "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.10.nix b/pkgs/development/haskell-modules/configuration-lts-3.10.nix index 780ff76271a4..63e0e4aee902 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.10.nix @@ -1143,10 +1143,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = doDistribute super."aeson-extra_0_2_1_0"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; "aeson-schema" = doDistribute super."aeson-schema_0_3_0_7"; "aeson-serialize" = dontDistribute super."aeson-serialize"; "aeson-smart" = dontDistribute super."aeson-smart"; @@ -1316,6 +1318,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = doDistribute super."apiary_1_4_5"; @@ -1331,6 +1334,7 @@ self: super: { "applicative-fail" = dontDistribute super."applicative-fail"; "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1542,6 +1546,7 @@ self: super: { "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1694,6 +1699,7 @@ self: super: { "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html-contrib" = dontDistribute super."blaze-html-contrib"; @@ -1711,6 +1717,7 @@ self: super: { "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2099,6 +2106,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2414,6 +2422,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -2700,6 +2709,7 @@ self: super: { "docker" = dontDistribute super."docker"; "dockercook" = dontDistribute super."dockercook"; "docopt" = dontDistribute super."docopt"; + "doctest" = doDistribute super."doctest_0_10_1"; "doctest-discover" = dontDistribute super."doctest-discover"; "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; "doctest-prop" = dontDistribute super."doctest-prop"; @@ -4657,6 +4667,9 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = doDistribute super."hvect_0_2_0_0"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -4848,6 +4861,7 @@ self: super: { "iothread" = dontDistribute super."iothread"; "iotransaction" = dontDistribute super."iotransaction"; "ip-quoter" = dontDistribute super."ip-quoter"; + "ip6addr" = doDistribute super."ip6addr_0_5_0_1"; "ipatch" = dontDistribute super."ipatch"; "ipc" = dontDistribute super."ipc"; "ipcvar" = dontDistribute super."ipcvar"; @@ -5464,6 +5478,7 @@ self: super: { "mangopay" = doDistribute super."mangopay_1_11_5"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -6027,6 +6042,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6068,6 +6084,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "option" = dontDistribute super."option"; "optional" = dontDistribute super."optional"; + "optional-args" = doDistribute super."optional-args_1_0_0"; "options-time" = dontDistribute super."options-time"; "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; @@ -6237,6 +6254,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_1"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6454,12 +6472,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4_0_2"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = dontDistribute super."present"; @@ -7070,6 +7090,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7190,6 +7211,7 @@ self: super: { "shadowsocks" = dontDistribute super."shadowsocks"; "shady-gen" = dontDistribute super."shady-gen"; "shady-graphics" = dontDistribute super."shady-graphics"; + "shake" = doDistribute super."shake_0_15_5"; "shake-cabal-build" = dontDistribute super."shake-cabal-build"; "shake-extras" = dontDistribute super."shake-extras"; "shake-language-c" = doDistribute super."shake-language-c_0_8_4"; @@ -7475,6 +7497,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7576,7 +7599,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -8708,6 +8733,7 @@ self: super: { "yesod-auth" = doDistribute super."yesod-auth_1_4_8"; "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "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"; @@ -8733,6 +8759,7 @@ self: super: { "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.11.nix b/pkgs/development/haskell-modules/configuration-lts-3.11.nix index 219ce8c5bca6..eb489c0e4ae1 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.11.nix @@ -1143,10 +1143,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = doDistribute super."aeson-extra_0_2_1_0"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; "aeson-schema" = doDistribute super."aeson-schema_0_3_0_7"; "aeson-serialize" = dontDistribute super."aeson-serialize"; "aeson-smart" = dontDistribute super."aeson-smart"; @@ -1316,6 +1318,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = doDistribute super."apiary_1_4_5"; @@ -1331,6 +1334,7 @@ self: super: { "applicative-fail" = dontDistribute super."applicative-fail"; "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1542,6 +1546,7 @@ self: super: { "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1694,6 +1699,7 @@ self: super: { "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html-contrib" = dontDistribute super."blaze-html-contrib"; @@ -1711,6 +1717,7 @@ self: super: { "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2098,6 +2105,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2413,6 +2421,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -2699,6 +2708,7 @@ self: super: { "docker" = dontDistribute super."docker"; "dockercook" = dontDistribute super."dockercook"; "docopt" = dontDistribute super."docopt"; + "doctest" = doDistribute super."doctest_0_10_1"; "doctest-discover" = dontDistribute super."doctest-discover"; "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; "doctest-prop" = dontDistribute super."doctest-prop"; @@ -4655,6 +4665,9 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = doDistribute super."hvect_0_2_0_0"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -4846,6 +4859,7 @@ self: super: { "iothread" = dontDistribute super."iothread"; "iotransaction" = dontDistribute super."iotransaction"; "ip-quoter" = dontDistribute super."ip-quoter"; + "ip6addr" = doDistribute super."ip6addr_0_5_0_1"; "ipatch" = dontDistribute super."ipatch"; "ipc" = dontDistribute super."ipc"; "ipcvar" = dontDistribute super."ipcvar"; @@ -5462,6 +5476,7 @@ self: super: { "mangopay" = doDistribute super."mangopay_1_11_5"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -6025,6 +6040,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6066,6 +6082,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "option" = dontDistribute super."option"; "optional" = dontDistribute super."optional"; + "optional-args" = doDistribute super."optional-args_1_0_0"; "options-time" = dontDistribute super."options-time"; "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; @@ -6235,6 +6252,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_2"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6451,12 +6469,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4_0_2"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = dontDistribute super."present"; @@ -7067,6 +7087,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7187,6 +7208,7 @@ self: super: { "shadowsocks" = dontDistribute super."shadowsocks"; "shady-gen" = dontDistribute super."shady-gen"; "shady-graphics" = dontDistribute super."shady-graphics"; + "shake" = doDistribute super."shake_0_15_5"; "shake-cabal-build" = dontDistribute super."shake-cabal-build"; "shake-extras" = dontDistribute super."shake-extras"; "shake-language-c" = doDistribute super."shake-language-c_0_8_4"; @@ -7472,6 +7494,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7573,7 +7596,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -8705,6 +8730,7 @@ self: super: { "yesod-auth" = doDistribute super."yesod-auth_1_4_8"; "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "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"; @@ -8730,6 +8756,7 @@ self: super: { "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.12.nix b/pkgs/development/haskell-modules/configuration-lts-3.12.nix index ae199402bb83..34063daafaa2 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.12.nix @@ -1143,10 +1143,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = doDistribute super."aeson-extra_0_2_1_0"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; "aeson-schema" = doDistribute super."aeson-schema_0_3_0_7"; "aeson-serialize" = dontDistribute super."aeson-serialize"; "aeson-smart" = dontDistribute super."aeson-smart"; @@ -1316,6 +1318,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = doDistribute super."apiary_1_4_5"; @@ -1331,6 +1334,7 @@ self: super: { "applicative-fail" = dontDistribute super."applicative-fail"; "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1542,6 +1546,7 @@ self: super: { "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1694,6 +1699,7 @@ self: super: { "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html-contrib" = dontDistribute super."blaze-html-contrib"; @@ -1711,6 +1717,7 @@ self: super: { "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2097,6 +2104,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2412,6 +2420,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -2698,6 +2707,7 @@ self: super: { "docker" = dontDistribute super."docker"; "dockercook" = dontDistribute super."dockercook"; "docopt" = dontDistribute super."docopt"; + "doctest" = doDistribute super."doctest_0_10_1"; "doctest-discover" = dontDistribute super."doctest-discover"; "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; "doctest-prop" = dontDistribute super."doctest-prop"; @@ -4653,6 +4663,9 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = doDistribute super."hvect_0_2_0_0"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -4844,6 +4857,7 @@ self: super: { "iothread" = dontDistribute super."iothread"; "iotransaction" = dontDistribute super."iotransaction"; "ip-quoter" = dontDistribute super."ip-quoter"; + "ip6addr" = doDistribute super."ip6addr_0_5_0_1"; "ipatch" = dontDistribute super."ipatch"; "ipc" = dontDistribute super."ipc"; "ipcvar" = dontDistribute super."ipcvar"; @@ -5460,6 +5474,7 @@ self: super: { "mangopay" = doDistribute super."mangopay_1_11_5"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -6023,6 +6038,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6064,6 +6080,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "option" = dontDistribute super."option"; "optional" = dontDistribute super."optional"; + "optional-args" = doDistribute super."optional-args_1_0_0"; "options-time" = dontDistribute super."options-time"; "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; @@ -6232,6 +6249,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_2"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6448,12 +6466,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4_0_2"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = dontDistribute super."present"; @@ -7064,6 +7084,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7184,6 +7205,7 @@ self: super: { "shadowsocks" = dontDistribute super."shadowsocks"; "shady-gen" = dontDistribute super."shady-gen"; "shady-graphics" = dontDistribute super."shady-graphics"; + "shake" = doDistribute super."shake_0_15_5"; "shake-cabal-build" = dontDistribute super."shake-cabal-build"; "shake-extras" = dontDistribute super."shake-extras"; "shake-language-c" = doDistribute super."shake-language-c_0_8_4"; @@ -7469,6 +7491,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7570,7 +7593,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -8700,6 +8725,7 @@ self: super: { "yesod-auth" = doDistribute super."yesod-auth_1_4_8"; "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "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"; @@ -8725,6 +8751,7 @@ self: super: { "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.13.nix b/pkgs/development/haskell-modules/configuration-lts-3.13.nix index 4650f41cec95..341e86d265d4 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.13.nix @@ -1143,10 +1143,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = doDistribute super."aeson-extra_0_2_1_0"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; "aeson-schema" = doDistribute super."aeson-schema_0_3_0_7"; "aeson-serialize" = dontDistribute super."aeson-serialize"; "aeson-smart" = dontDistribute super."aeson-smart"; @@ -1316,6 +1318,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = doDistribute super."apiary_1_4_5"; @@ -1331,6 +1334,7 @@ self: super: { "applicative-fail" = dontDistribute super."applicative-fail"; "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1542,6 +1546,7 @@ self: super: { "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1694,6 +1699,7 @@ self: super: { "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html-contrib" = dontDistribute super."blaze-html-contrib"; @@ -1711,6 +1717,7 @@ self: super: { "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2097,6 +2104,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2412,6 +2420,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -2698,6 +2707,7 @@ self: super: { "docker" = dontDistribute super."docker"; "dockercook" = dontDistribute super."dockercook"; "docopt" = dontDistribute super."docopt"; + "doctest" = doDistribute super."doctest_0_10_1"; "doctest-discover" = dontDistribute super."doctest-discover"; "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; "doctest-prop" = dontDistribute super."doctest-prop"; @@ -4652,6 +4662,9 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = doDistribute super."hvect_0_2_0_0"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -4843,6 +4856,7 @@ self: super: { "iothread" = dontDistribute super."iothread"; "iotransaction" = dontDistribute super."iotransaction"; "ip-quoter" = dontDistribute super."ip-quoter"; + "ip6addr" = doDistribute super."ip6addr_0_5_0_1"; "ipatch" = dontDistribute super."ipatch"; "ipc" = dontDistribute super."ipc"; "ipcvar" = dontDistribute super."ipcvar"; @@ -5458,6 +5472,7 @@ self: super: { "mangopay" = doDistribute super."mangopay_1_11_5"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -6021,6 +6036,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6062,6 +6078,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "option" = dontDistribute super."option"; "optional" = dontDistribute super."optional"; + "optional-args" = doDistribute super."optional-args_1_0_0"; "options-time" = dontDistribute super."options-time"; "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; @@ -6229,6 +6246,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_2"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6445,12 +6463,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4_0_2"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = dontDistribute super."present"; @@ -7061,6 +7081,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7181,6 +7202,7 @@ self: super: { "shadowsocks" = dontDistribute super."shadowsocks"; "shady-gen" = dontDistribute super."shady-gen"; "shady-graphics" = dontDistribute super."shady-graphics"; + "shake" = doDistribute super."shake_0_15_5"; "shake-cabal-build" = dontDistribute super."shake-cabal-build"; "shake-extras" = dontDistribute super."shake-extras"; "shake-language-c" = doDistribute super."shake-language-c_0_8_4"; @@ -7466,6 +7488,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7567,7 +7590,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -8696,6 +8721,7 @@ self: super: { "yesod-auth" = doDistribute super."yesod-auth_1_4_8"; "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "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"; @@ -8721,6 +8747,7 @@ self: super: { "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.14.nix b/pkgs/development/haskell-modules/configuration-lts-3.14.nix index bc556968a5e2..89d339d21686 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.14.nix @@ -1141,10 +1141,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = doDistribute super."aeson-extra_0_2_2_0"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; "aeson-schema" = doDistribute super."aeson-schema_0_3_0_7"; "aeson-serialize" = dontDistribute super."aeson-serialize"; "aeson-smart" = dontDistribute super."aeson-smart"; @@ -1314,6 +1316,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = doDistribute super."apiary_1_4_5"; @@ -1329,6 +1332,7 @@ self: super: { "applicative-fail" = dontDistribute super."applicative-fail"; "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1540,6 +1544,7 @@ self: super: { "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1692,6 +1697,7 @@ self: super: { "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html-contrib" = dontDistribute super."blaze-html-contrib"; @@ -1709,6 +1715,7 @@ self: super: { "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2094,6 +2101,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2408,6 +2416,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -2692,6 +2701,7 @@ self: super: { "docker" = dontDistribute super."docker"; "dockercook" = dontDistribute super."dockercook"; "docopt" = dontDistribute super."docopt"; + "doctest" = doDistribute super."doctest_0_10_1"; "doctest-discover" = dontDistribute super."doctest-discover"; "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; "doctest-prop" = dontDistribute super."doctest-prop"; @@ -4645,6 +4655,9 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = doDistribute super."hvect_0_2_0_0"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -4836,6 +4849,7 @@ self: super: { "iothread" = dontDistribute super."iothread"; "iotransaction" = dontDistribute super."iotransaction"; "ip-quoter" = dontDistribute super."ip-quoter"; + "ip6addr" = doDistribute super."ip6addr_0_5_0_1"; "ipatch" = dontDistribute super."ipatch"; "ipc" = dontDistribute super."ipc"; "ipcvar" = dontDistribute super."ipcvar"; @@ -5451,6 +5465,7 @@ self: super: { "mangopay" = doDistribute super."mangopay_1_11_5"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -6014,6 +6029,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6055,6 +6071,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "option" = dontDistribute super."option"; "optional" = dontDistribute super."optional"; + "optional-args" = doDistribute super."optional-args_1_0_0"; "options-time" = dontDistribute super."options-time"; "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; @@ -6222,6 +6239,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_2_1"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6438,12 +6456,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4_0_2"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = dontDistribute super."present"; @@ -7054,6 +7074,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7174,6 +7195,7 @@ self: super: { "shadowsocks" = dontDistribute super."shadowsocks"; "shady-gen" = dontDistribute super."shady-gen"; "shady-graphics" = dontDistribute super."shady-graphics"; + "shake" = doDistribute super."shake_0_15_5"; "shake-cabal-build" = dontDistribute super."shake-cabal-build"; "shake-extras" = dontDistribute super."shake-extras"; "shake-language-c" = doDistribute super."shake-language-c_0_8_4"; @@ -7459,6 +7481,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7560,7 +7583,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -8688,6 +8713,7 @@ self: super: { "yesod-auth" = doDistribute super."yesod-auth_1_4_8"; "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "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"; @@ -8713,6 +8739,7 @@ self: super: { "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.15.nix b/pkgs/development/haskell-modules/configuration-lts-3.15.nix index 1ac8a09b7bc5..8eff983280c0 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.15.nix @@ -1141,10 +1141,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = doDistribute super."aeson-extra_0_2_2_0"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; "aeson-schema" = doDistribute super."aeson-schema_0_3_0_7"; "aeson-serialize" = dontDistribute super."aeson-serialize"; "aeson-smart" = dontDistribute super."aeson-smart"; @@ -1314,6 +1316,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = doDistribute super."apiary_1_4_5"; @@ -1329,6 +1332,7 @@ self: super: { "applicative-fail" = dontDistribute super."applicative-fail"; "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1540,6 +1544,7 @@ self: super: { "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1692,6 +1697,7 @@ self: super: { "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html-contrib" = dontDistribute super."blaze-html-contrib"; @@ -1709,6 +1715,7 @@ self: super: { "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2094,6 +2101,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2408,6 +2416,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -2692,6 +2701,7 @@ self: super: { "docker" = dontDistribute super."docker"; "dockercook" = dontDistribute super."dockercook"; "docopt" = dontDistribute super."docopt"; + "doctest" = doDistribute super."doctest_0_10_1"; "doctest-discover" = dontDistribute super."doctest-discover"; "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; "doctest-prop" = dontDistribute super."doctest-prop"; @@ -4642,6 +4652,9 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = doDistribute super."hvect_0_2_0_0"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -4833,6 +4846,7 @@ self: super: { "iothread" = dontDistribute super."iothread"; "iotransaction" = dontDistribute super."iotransaction"; "ip-quoter" = dontDistribute super."ip-quoter"; + "ip6addr" = doDistribute super."ip6addr_0_5_0_1"; "ipatch" = dontDistribute super."ipatch"; "ipc" = dontDistribute super."ipc"; "ipcvar" = dontDistribute super."ipcvar"; @@ -5448,6 +5462,7 @@ self: super: { "mangopay" = doDistribute super."mangopay_1_11_5"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -6011,6 +6026,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6052,6 +6068,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "option" = dontDistribute super."option"; "optional" = dontDistribute super."optional"; + "optional-args" = doDistribute super."optional-args_1_0_0"; "options-time" = dontDistribute super."options-time"; "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; @@ -6219,6 +6236,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_2_1"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6435,12 +6453,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4_0_2"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = dontDistribute super."present"; @@ -7051,6 +7071,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7170,6 +7191,7 @@ self: super: { "shadowsocks" = dontDistribute super."shadowsocks"; "shady-gen" = dontDistribute super."shady-gen"; "shady-graphics" = dontDistribute super."shady-graphics"; + "shake" = doDistribute super."shake_0_15_5"; "shake-cabal-build" = dontDistribute super."shake-cabal-build"; "shake-extras" = dontDistribute super."shake-extras"; "shake-language-c" = doDistribute super."shake-language-c_0_8_4"; @@ -7455,6 +7477,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7556,7 +7579,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -8684,6 +8709,7 @@ self: super: { "yesod-auth" = doDistribute super."yesod-auth_1_4_8"; "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "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"; @@ -8709,6 +8735,7 @@ self: super: { "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.16.nix b/pkgs/development/haskell-modules/configuration-lts-3.16.nix index 3cea49933c49..c548282e21b9 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.16.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.16.nix @@ -1140,10 +1140,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = doDistribute super."aeson-extra_0_2_2_0"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; "aeson-schema" = doDistribute super."aeson-schema_0_3_0_7"; "aeson-serialize" = dontDistribute super."aeson-serialize"; "aeson-smart" = dontDistribute super."aeson-smart"; @@ -1313,6 +1315,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = doDistribute super."apiary_1_4_5"; @@ -1328,6 +1331,7 @@ self: super: { "applicative-fail" = dontDistribute super."applicative-fail"; "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1539,6 +1543,7 @@ self: super: { "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1691,6 +1696,7 @@ self: super: { "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html-contrib" = dontDistribute super."blaze-html-contrib"; @@ -1708,6 +1714,7 @@ self: super: { "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2093,6 +2100,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2407,6 +2415,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -2691,6 +2700,7 @@ self: super: { "docker" = dontDistribute super."docker"; "dockercook" = dontDistribute super."dockercook"; "docopt" = dontDistribute super."docopt"; + "doctest" = doDistribute super."doctest_0_10_1"; "doctest-discover" = dontDistribute super."doctest-discover"; "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; "doctest-prop" = dontDistribute super."doctest-prop"; @@ -4639,6 +4649,9 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = doDistribute super."hvect_0_2_0_0"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -4830,6 +4843,7 @@ self: super: { "iothread" = dontDistribute super."iothread"; "iotransaction" = dontDistribute super."iotransaction"; "ip-quoter" = dontDistribute super."ip-quoter"; + "ip6addr" = doDistribute super."ip6addr_0_5_0_1"; "ipatch" = dontDistribute super."ipatch"; "ipc" = dontDistribute super."ipc"; "ipcvar" = dontDistribute super."ipcvar"; @@ -5444,6 +5458,7 @@ self: super: { "mangopay" = doDistribute super."mangopay_1_11_5"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -6006,6 +6021,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6047,6 +6063,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "option" = dontDistribute super."option"; "optional" = dontDistribute super."optional"; + "optional-args" = doDistribute super."optional-args_1_0_0"; "options-time" = dontDistribute super."options-time"; "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; @@ -6214,6 +6231,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_2_1"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6429,12 +6447,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4_0_2"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = dontDistribute super."present"; @@ -7044,6 +7064,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7163,6 +7184,7 @@ self: super: { "shadowsocks" = dontDistribute super."shadowsocks"; "shady-gen" = dontDistribute super."shady-gen"; "shady-graphics" = dontDistribute super."shady-graphics"; + "shake" = doDistribute super."shake_0_15_5"; "shake-cabal-build" = dontDistribute super."shake-cabal-build"; "shake-extras" = dontDistribute super."shake-extras"; "shake-language-c" = doDistribute super."shake-language-c_0_8_4"; @@ -7448,6 +7470,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7549,7 +7572,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -8674,6 +8699,7 @@ self: super: { "yesod-auth" = doDistribute super."yesod-auth_1_4_8"; "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "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"; @@ -8699,6 +8725,7 @@ self: super: { "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.17.nix b/pkgs/development/haskell-modules/configuration-lts-3.17.nix index fa7a46da9d76..6b0cb8f9d20b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.17.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.17.nix @@ -1140,10 +1140,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = doDistribute super."aeson-extra_0_2_2_0"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; "aeson-schema" = doDistribute super."aeson-schema_0_3_0_7"; "aeson-serialize" = dontDistribute super."aeson-serialize"; "aeson-smart" = dontDistribute super."aeson-smart"; @@ -1313,6 +1315,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = doDistribute super."apiary_1_4_5"; @@ -1328,6 +1331,7 @@ self: super: { "applicative-fail" = dontDistribute super."applicative-fail"; "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1538,6 +1542,7 @@ self: super: { "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1690,6 +1695,7 @@ self: super: { "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html-contrib" = dontDistribute super."blaze-html-contrib"; @@ -1707,6 +1713,7 @@ self: super: { "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2092,6 +2099,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2406,6 +2414,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -2690,6 +2699,7 @@ self: super: { "docker" = dontDistribute super."docker"; "dockercook" = dontDistribute super."dockercook"; "docopt" = dontDistribute super."docopt"; + "doctest" = doDistribute super."doctest_0_10_1"; "doctest-discover" = dontDistribute super."doctest-discover"; "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; "doctest-prop" = dontDistribute super."doctest-prop"; @@ -4637,6 +4647,9 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = doDistribute super."hvect_0_2_0_0"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -4827,6 +4840,7 @@ self: super: { "iothread" = dontDistribute super."iothread"; "iotransaction" = dontDistribute super."iotransaction"; "ip-quoter" = dontDistribute super."ip-quoter"; + "ip6addr" = doDistribute super."ip6addr_0_5_0_1"; "ipatch" = dontDistribute super."ipatch"; "ipc" = dontDistribute super."ipc"; "ipcvar" = dontDistribute super."ipcvar"; @@ -5440,6 +5454,7 @@ self: super: { "mangopay" = doDistribute super."mangopay_1_11_5"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -6001,6 +6016,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6042,6 +6058,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "option" = dontDistribute super."option"; "optional" = dontDistribute super."optional"; + "optional-args" = doDistribute super."optional-args_1_0_0"; "options-time" = dontDistribute super."options-time"; "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; @@ -6209,6 +6226,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_3"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6424,12 +6442,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4_0_2"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = dontDistribute super."present"; @@ -7039,6 +7059,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7158,6 +7179,7 @@ self: super: { "shadowsocks" = dontDistribute super."shadowsocks"; "shady-gen" = dontDistribute super."shady-gen"; "shady-graphics" = dontDistribute super."shady-graphics"; + "shake" = doDistribute super."shake_0_15_5"; "shake-cabal-build" = dontDistribute super."shake-cabal-build"; "shake-extras" = dontDistribute super."shake-extras"; "shake-language-c" = doDistribute super."shake-language-c_0_8_4"; @@ -7443,6 +7465,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7544,7 +7567,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -8669,6 +8694,7 @@ self: super: { "yesod-auth" = doDistribute super."yesod-auth_1_4_11"; "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "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"; @@ -8694,6 +8720,7 @@ self: super: { "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.18.nix b/pkgs/development/haskell-modules/configuration-lts-3.18.nix index 90a553ae7f6a..cfcdee16b155 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.18.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.18.nix @@ -1140,10 +1140,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = doDistribute super."aeson-extra_0_2_3_0"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; "aeson-schema" = doDistribute super."aeson-schema_0_3_0_7"; "aeson-serialize" = dontDistribute super."aeson-serialize"; "aeson-smart" = dontDistribute super."aeson-smart"; @@ -1313,6 +1315,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = doDistribute super."apiary_1_4_5"; @@ -1328,6 +1331,7 @@ self: super: { "applicative-fail" = dontDistribute super."applicative-fail"; "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1538,6 +1542,7 @@ self: super: { "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1690,6 +1695,7 @@ self: super: { "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html-contrib" = dontDistribute super."blaze-html-contrib"; @@ -1707,6 +1713,7 @@ self: super: { "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2091,6 +2098,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2405,6 +2413,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -2689,6 +2698,7 @@ self: super: { "docker" = dontDistribute super."docker"; "dockercook" = dontDistribute super."dockercook"; "docopt" = dontDistribute super."docopt"; + "doctest" = doDistribute super."doctest_0_10_1"; "doctest-discover" = dontDistribute super."doctest-discover"; "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; "doctest-prop" = dontDistribute super."doctest-prop"; @@ -4631,6 +4641,9 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = doDistribute super."hvect_0_2_0_0"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -4821,6 +4834,7 @@ self: super: { "iothread" = dontDistribute super."iothread"; "iotransaction" = dontDistribute super."iotransaction"; "ip-quoter" = dontDistribute super."ip-quoter"; + "ip6addr" = doDistribute super."ip6addr_0_5_0_1"; "ipatch" = dontDistribute super."ipatch"; "ipc" = dontDistribute super."ipc"; "ipcvar" = dontDistribute super."ipcvar"; @@ -5434,6 +5448,7 @@ self: super: { "mangopay" = doDistribute super."mangopay_1_11_5"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -5995,6 +6010,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6036,6 +6052,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "option" = dontDistribute super."option"; "optional" = dontDistribute super."optional"; + "optional-args" = doDistribute super."optional-args_1_0_0"; "options-time" = dontDistribute super."options-time"; "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; @@ -6202,6 +6219,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_3"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6417,12 +6435,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4_0_2"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = dontDistribute super."present"; @@ -7032,6 +7052,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7151,6 +7172,7 @@ self: super: { "shadowsocks" = dontDistribute super."shadowsocks"; "shady-gen" = dontDistribute super."shady-gen"; "shady-graphics" = dontDistribute super."shady-graphics"; + "shake" = doDistribute super."shake_0_15_5"; "shake-cabal-build" = dontDistribute super."shake-cabal-build"; "shake-extras" = dontDistribute super."shake-extras"; "shake-language-c" = doDistribute super."shake-language-c_0_8_4"; @@ -7435,6 +7457,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7536,7 +7559,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -8661,6 +8686,7 @@ self: super: { "yesod-auth" = doDistribute super."yesod-auth_1_4_11"; "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "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"; @@ -8686,6 +8712,7 @@ self: super: { "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.19.nix b/pkgs/development/haskell-modules/configuration-lts-3.19.nix index b188b36981fa..31b01ea1cd42 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.19.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.19.nix @@ -72,6 +72,7 @@ self: super: { "Advgame" = dontDistribute super."Advgame"; "AesonBson" = dontDistribute super."AesonBson"; "Agata" = dontDistribute super."Agata"; + "Agda" = doDistribute super."Agda_2_4_2_5"; "Agda-executable" = dontDistribute super."Agda-executable"; "AhoCorasick" = dontDistribute super."AhoCorasick"; "AlgorithmW" = dontDistribute super."AlgorithmW"; @@ -1139,10 +1140,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = doDistribute super."aeson-extra_0_2_3_0"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; "aeson-schema" = doDistribute super."aeson-schema_0_3_0_7"; "aeson-serialize" = dontDistribute super."aeson-serialize"; "aeson-smart" = dontDistribute super."aeson-smart"; @@ -1312,6 +1315,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = doDistribute super."apiary_1_4_5"; @@ -1327,6 +1331,7 @@ self: super: { "applicative-fail" = dontDistribute super."applicative-fail"; "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1535,6 +1540,7 @@ self: super: { "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1687,6 +1693,7 @@ self: super: { "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html-contrib" = dontDistribute super."blaze-html-contrib"; @@ -1704,6 +1711,7 @@ self: super: { "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2086,6 +2094,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2399,6 +2408,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -2683,6 +2693,7 @@ self: super: { "docker" = dontDistribute super."docker"; "dockercook" = dontDistribute super."dockercook"; "docopt" = dontDistribute super."docopt"; + "doctest" = doDistribute super."doctest_0_10_1"; "doctest-discover" = dontDistribute super."doctest-discover"; "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; "doctest-prop" = dontDistribute super."doctest-prop"; @@ -4623,6 +4634,9 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = doDistribute super."hvect_0_2_0_0"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -4813,6 +4827,7 @@ self: super: { "iothread" = dontDistribute super."iothread"; "iotransaction" = dontDistribute super."iotransaction"; "ip-quoter" = dontDistribute super."ip-quoter"; + "ip6addr" = doDistribute super."ip6addr_0_5_0_1"; "ipatch" = dontDistribute super."ipatch"; "ipc" = dontDistribute super."ipc"; "ipcvar" = dontDistribute super."ipcvar"; @@ -5424,6 +5439,7 @@ self: super: { "mangopay" = doDistribute super."mangopay_1_11_5"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -5984,6 +6000,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6025,6 +6042,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "option" = dontDistribute super."option"; "optional" = dontDistribute super."optional"; + "optional-args" = doDistribute super."optional-args_1_0_0"; "options-time" = dontDistribute super."options-time"; "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; @@ -6191,6 +6209,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_4"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6406,12 +6425,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4_0_2"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = dontDistribute super."present"; @@ -7021,6 +7042,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7140,6 +7162,7 @@ self: super: { "shadowsocks" = dontDistribute super."shadowsocks"; "shady-gen" = dontDistribute super."shady-gen"; "shady-graphics" = dontDistribute super."shady-graphics"; + "shake" = doDistribute super."shake_0_15_5"; "shake-cabal-build" = dontDistribute super."shake-cabal-build"; "shake-extras" = dontDistribute super."shake-extras"; "shake-language-c" = doDistribute super."shake-language-c_0_8_4"; @@ -7423,6 +7446,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7524,7 +7548,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -8648,6 +8674,7 @@ self: super: { "yesod-auth" = doDistribute super."yesod-auth_1_4_11"; "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "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"; @@ -8673,6 +8700,7 @@ self: super: { "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.2.nix b/pkgs/development/haskell-modules/configuration-lts-3.2.nix index 2cc191947844..fa09ae7b064a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.2.nix @@ -1145,10 +1145,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; "aeson-schema" = doDistribute super."aeson-schema_0_3_0_7"; "aeson-serialize" = dontDistribute super."aeson-serialize"; "aeson-smart" = dontDistribute super."aeson-smart"; @@ -1319,6 +1321,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = doDistribute super."apiary_1_4_3"; @@ -1334,6 +1337,7 @@ self: super: { "applicative-fail" = dontDistribute super."applicative-fail"; "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1547,6 +1551,7 @@ self: super: { "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1700,6 +1705,7 @@ self: super: { "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html" = doDistribute super."blaze-html_0_8_1_0"; @@ -1719,6 +1725,7 @@ self: super: { "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2107,6 +2114,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2423,6 +2431,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -2713,6 +2722,7 @@ self: super: { "docker" = dontDistribute super."docker"; "dockercook" = dontDistribute super."dockercook"; "docopt" = dontDistribute super."docopt"; + "doctest" = doDistribute super."doctest_0_10_1"; "doctest-discover" = dontDistribute super."doctest-discover"; "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; "doctest-prop" = dontDistribute super."doctest-prop"; @@ -4680,6 +4690,9 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = doDistribute super."hvect_0_2_0_0"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -4873,6 +4886,7 @@ self: super: { "iothread" = dontDistribute super."iothread"; "iotransaction" = dontDistribute super."iotransaction"; "ip-quoter" = dontDistribute super."ip-quoter"; + "ip6addr" = doDistribute super."ip6addr_0_5_0_1"; "ipatch" = dontDistribute super."ipatch"; "ipc" = dontDistribute super."ipc"; "ipcvar" = dontDistribute super."ipcvar"; @@ -5492,6 +5506,7 @@ self: super: { "mangopay" = doDistribute super."mangopay_1_11_4"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -6060,6 +6075,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6101,6 +6117,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "option" = dontDistribute super."option"; "optional" = dontDistribute super."optional"; + "optional-args" = doDistribute super."optional-args_1_0_0"; "options-time" = dontDistribute super."options-time"; "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; @@ -6271,6 +6288,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6491,12 +6509,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = dontDistribute super."present"; @@ -7110,6 +7130,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7230,6 +7251,7 @@ self: super: { "shadowsocks" = dontDistribute super."shadowsocks"; "shady-gen" = dontDistribute super."shady-gen"; "shady-graphics" = dontDistribute super."shady-graphics"; + "shake" = doDistribute super."shake_0_15_5"; "shake-cabal-build" = dontDistribute super."shake-cabal-build"; "shake-extras" = dontDistribute super."shake-extras"; "shake-language-c" = doDistribute super."shake-language-c_0_8_0"; @@ -7517,6 +7539,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7619,7 +7642,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -8765,6 +8790,7 @@ self: super: { "yesod-auth" = doDistribute super."yesod-auth_1_4_6"; "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "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"; @@ -8790,6 +8816,7 @@ self: super: { "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.20.nix b/pkgs/development/haskell-modules/configuration-lts-3.20.nix index 1e73dfd57538..534c62479b02 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.20.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.20.nix @@ -72,6 +72,7 @@ self: super: { "Advgame" = dontDistribute super."Advgame"; "AesonBson" = dontDistribute super."AesonBson"; "Agata" = dontDistribute super."Agata"; + "Agda" = doDistribute super."Agda_2_4_2_5"; "Agda-executable" = dontDistribute super."Agda-executable"; "AhoCorasick" = dontDistribute super."AhoCorasick"; "AlgorithmW" = dontDistribute super."AlgorithmW"; @@ -1138,10 +1139,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = doDistribute super."aeson-extra_0_2_3_0"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; "aeson-schema" = doDistribute super."aeson-schema_0_3_0_7"; "aeson-serialize" = dontDistribute super."aeson-serialize"; "aeson-smart" = dontDistribute super."aeson-smart"; @@ -1311,6 +1314,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = doDistribute super."apiary_1_4_5"; @@ -1326,6 +1330,7 @@ self: super: { "applicative-fail" = dontDistribute super."applicative-fail"; "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1534,6 +1539,7 @@ self: super: { "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1686,6 +1692,7 @@ self: super: { "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html-contrib" = dontDistribute super."blaze-html-contrib"; @@ -1703,6 +1710,7 @@ self: super: { "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2085,6 +2093,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2398,6 +2407,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -2682,6 +2692,7 @@ self: super: { "docker" = dontDistribute super."docker"; "dockercook" = dontDistribute super."dockercook"; "docopt" = dontDistribute super."docopt"; + "doctest" = doDistribute super."doctest_0_10_1"; "doctest-discover" = dontDistribute super."doctest-discover"; "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; "doctest-prop" = dontDistribute super."doctest-prop"; @@ -4622,6 +4633,9 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = doDistribute super."hvect_0_2_0_0"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -4812,6 +4826,7 @@ self: super: { "iothread" = dontDistribute super."iothread"; "iotransaction" = dontDistribute super."iotransaction"; "ip-quoter" = dontDistribute super."ip-quoter"; + "ip6addr" = doDistribute super."ip6addr_0_5_0_1"; "ipatch" = dontDistribute super."ipatch"; "ipc" = dontDistribute super."ipc"; "ipcvar" = dontDistribute super."ipcvar"; @@ -5423,6 +5438,7 @@ self: super: { "mangopay" = doDistribute super."mangopay_1_11_5"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -5983,6 +5999,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6024,6 +6041,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "option" = dontDistribute super."option"; "optional" = dontDistribute super."optional"; + "optional-args" = doDistribute super."optional-args_1_0_0"; "options-time" = dontDistribute super."options-time"; "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; @@ -6190,6 +6208,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_4"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6405,12 +6424,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4_0_2"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = dontDistribute super."present"; @@ -7019,6 +7040,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7138,6 +7160,7 @@ self: super: { "shadowsocks" = dontDistribute super."shadowsocks"; "shady-gen" = dontDistribute super."shady-gen"; "shady-graphics" = dontDistribute super."shady-graphics"; + "shake" = doDistribute super."shake_0_15_5"; "shake-cabal-build" = dontDistribute super."shake-cabal-build"; "shake-extras" = dontDistribute super."shake-extras"; "shake-language-c" = doDistribute super."shake-language-c_0_8_4"; @@ -7421,6 +7444,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7521,7 +7545,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -8644,6 +8670,7 @@ self: super: { "yesod-auth" = doDistribute super."yesod-auth_1_4_11"; "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "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"; @@ -8669,6 +8696,7 @@ self: super: { "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.21.nix b/pkgs/development/haskell-modules/configuration-lts-3.21.nix index b6e3b1ef503c..6acbf9860154 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.21.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.21.nix @@ -72,6 +72,7 @@ self: super: { "Advgame" = dontDistribute super."Advgame"; "AesonBson" = dontDistribute super."AesonBson"; "Agata" = dontDistribute super."Agata"; + "Agda" = doDistribute super."Agda_2_4_2_5"; "Agda-executable" = dontDistribute super."Agda-executable"; "AhoCorasick" = dontDistribute super."AhoCorasick"; "AlgorithmW" = dontDistribute super."AlgorithmW"; @@ -1138,10 +1139,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = doDistribute super."aeson-extra_0_2_3_0"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; "aeson-schema" = doDistribute super."aeson-schema_0_3_0_7"; "aeson-serialize" = dontDistribute super."aeson-serialize"; "aeson-smart" = dontDistribute super."aeson-smart"; @@ -1311,6 +1314,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = doDistribute super."apiary_1_4_5"; @@ -1326,6 +1330,7 @@ self: super: { "applicative-fail" = dontDistribute super."applicative-fail"; "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1534,6 +1539,7 @@ self: super: { "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1686,6 +1692,7 @@ self: super: { "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html-contrib" = dontDistribute super."blaze-html-contrib"; @@ -1703,6 +1710,7 @@ self: super: { "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2085,6 +2093,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2397,6 +2406,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -2681,6 +2691,7 @@ self: super: { "docker" = dontDistribute super."docker"; "dockercook" = dontDistribute super."dockercook"; "docopt" = dontDistribute super."docopt"; + "doctest" = doDistribute super."doctest_0_10_1"; "doctest-discover" = dontDistribute super."doctest-discover"; "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; "doctest-prop" = dontDistribute super."doctest-prop"; @@ -4619,6 +4630,9 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = doDistribute super."hvect_0_2_0_0"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -4807,6 +4821,7 @@ self: super: { "iothread" = dontDistribute super."iothread"; "iotransaction" = dontDistribute super."iotransaction"; "ip-quoter" = dontDistribute super."ip-quoter"; + "ip6addr" = doDistribute super."ip6addr_0_5_0_1"; "ipatch" = dontDistribute super."ipatch"; "ipc" = dontDistribute super."ipc"; "ipcvar" = dontDistribute super."ipcvar"; @@ -5418,6 +5433,7 @@ self: super: { "mangopay" = doDistribute super."mangopay_1_11_5"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -5977,6 +5993,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6018,6 +6035,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "option" = dontDistribute super."option"; "optional" = dontDistribute super."optional"; + "optional-args" = doDistribute super."optional-args_1_0_0"; "options-time" = dontDistribute super."options-time"; "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; @@ -6183,6 +6201,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_4"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6397,12 +6416,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4_0_2"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = dontDistribute super."present"; @@ -7009,6 +7030,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7125,6 +7147,7 @@ self: super: { "shadowsocks" = dontDistribute super."shadowsocks"; "shady-gen" = dontDistribute super."shady-gen"; "shady-graphics" = dontDistribute super."shady-graphics"; + "shake" = doDistribute super."shake_0_15_5"; "shake-cabal-build" = dontDistribute super."shake-cabal-build"; "shake-extras" = dontDistribute super."shake-extras"; "shake-language-c" = doDistribute super."shake-language-c_0_8_4"; @@ -7407,6 +7430,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7507,7 +7531,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -8626,6 +8652,7 @@ self: super: { "yesod-auth" = doDistribute super."yesod-auth_1_4_11"; "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "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"; @@ -8651,6 +8678,7 @@ self: super: { "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.22.nix b/pkgs/development/haskell-modules/configuration-lts-3.22.nix index 1c35577c40bf..008e4ca41561 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.22.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.22.nix @@ -72,6 +72,7 @@ self: super: { "Advgame" = dontDistribute super."Advgame"; "AesonBson" = dontDistribute super."AesonBson"; "Agata" = dontDistribute super."Agata"; + "Agda" = doDistribute super."Agda_2_4_2_5"; "Agda-executable" = dontDistribute super."Agda-executable"; "AhoCorasick" = dontDistribute super."AhoCorasick"; "AlgorithmW" = dontDistribute super."AlgorithmW"; @@ -1138,10 +1139,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = doDistribute super."aeson-extra_0_2_3_0"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; "aeson-schema" = doDistribute super."aeson-schema_0_3_0_7"; "aeson-serialize" = dontDistribute super."aeson-serialize"; "aeson-smart" = dontDistribute super."aeson-smart"; @@ -1311,6 +1314,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = doDistribute super."apiary_1_4_5"; @@ -1326,6 +1330,7 @@ self: super: { "applicative-fail" = dontDistribute super."applicative-fail"; "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1534,6 +1539,7 @@ self: super: { "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1686,6 +1692,7 @@ self: super: { "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html-contrib" = dontDistribute super."blaze-html-contrib"; @@ -1703,6 +1710,7 @@ self: super: { "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2085,6 +2093,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2397,6 +2406,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -2681,6 +2691,7 @@ self: super: { "docker" = dontDistribute super."docker"; "dockercook" = dontDistribute super."dockercook"; "docopt" = dontDistribute super."docopt"; + "doctest" = doDistribute super."doctest_0_10_1"; "doctest-discover" = dontDistribute super."doctest-discover"; "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; "doctest-prop" = dontDistribute super."doctest-prop"; @@ -4616,6 +4627,9 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = doDistribute super."hvect_0_2_0_0"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -4801,6 +4815,7 @@ self: super: { "iothread" = dontDistribute super."iothread"; "iotransaction" = dontDistribute super."iotransaction"; "ip-quoter" = dontDistribute super."ip-quoter"; + "ip6addr" = doDistribute super."ip6addr_0_5_0_1"; "ipatch" = dontDistribute super."ipatch"; "ipc" = dontDistribute super."ipc"; "ipcvar" = dontDistribute super."ipcvar"; @@ -5412,6 +5427,7 @@ self: super: { "mangopay" = doDistribute super."mangopay_1_11_5"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -5971,6 +5987,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6012,6 +6029,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "option" = dontDistribute super."option"; "optional" = dontDistribute super."optional"; + "optional-args" = doDistribute super."optional-args_1_0_0"; "options-time" = dontDistribute super."options-time"; "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; @@ -6177,6 +6195,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_4"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6391,12 +6410,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4_0_2"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = dontDistribute super."present"; @@ -7003,6 +7024,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7119,6 +7141,7 @@ self: super: { "shadowsocks" = dontDistribute super."shadowsocks"; "shady-gen" = dontDistribute super."shady-gen"; "shady-graphics" = dontDistribute super."shady-graphics"; + "shake" = doDistribute super."shake_0_15_5"; "shake-cabal-build" = dontDistribute super."shake-cabal-build"; "shake-extras" = dontDistribute super."shake-extras"; "shake-language-c" = doDistribute super."shake-language-c_0_8_4"; @@ -7401,6 +7424,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7501,7 +7525,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -8620,6 +8646,7 @@ self: super: { "yesod-auth" = doDistribute super."yesod-auth_1_4_11"; "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "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"; @@ -8645,6 +8672,7 @@ self: super: { "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.3.nix b/pkgs/development/haskell-modules/configuration-lts-3.3.nix index cc729839b38e..abe5cc4f36d3 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.3.nix @@ -1145,10 +1145,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; "aeson-schema" = doDistribute super."aeson-schema_0_3_0_7"; "aeson-serialize" = dontDistribute super."aeson-serialize"; "aeson-smart" = dontDistribute super."aeson-smart"; @@ -1319,6 +1321,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = doDistribute super."apiary_1_4_5"; @@ -1334,6 +1337,7 @@ self: super: { "applicative-fail" = dontDistribute super."applicative-fail"; "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1547,6 +1551,7 @@ self: super: { "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1700,6 +1705,7 @@ self: super: { "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html" = doDistribute super."blaze-html_0_8_1_0"; @@ -1719,6 +1725,7 @@ self: super: { "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2107,6 +2114,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2423,6 +2431,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -2713,6 +2722,7 @@ self: super: { "docker" = dontDistribute super."docker"; "dockercook" = dontDistribute super."dockercook"; "docopt" = dontDistribute super."docopt"; + "doctest" = doDistribute super."doctest_0_10_1"; "doctest-discover" = dontDistribute super."doctest-discover"; "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; "doctest-prop" = dontDistribute super."doctest-prop"; @@ -4678,6 +4688,9 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = doDistribute super."hvect_0_2_0_0"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -4871,6 +4884,7 @@ self: super: { "iothread" = dontDistribute super."iothread"; "iotransaction" = dontDistribute super."iotransaction"; "ip-quoter" = dontDistribute super."ip-quoter"; + "ip6addr" = doDistribute super."ip6addr_0_5_0_1"; "ipatch" = dontDistribute super."ipatch"; "ipc" = dontDistribute super."ipc"; "ipcvar" = dontDistribute super."ipcvar"; @@ -5490,6 +5504,7 @@ self: super: { "mangopay" = doDistribute super."mangopay_1_11_4"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -6058,6 +6073,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6099,6 +6115,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "option" = dontDistribute super."option"; "optional" = dontDistribute super."optional"; + "optional-args" = doDistribute super."optional-args_1_0_0"; "options-time" = dontDistribute super."options-time"; "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; @@ -6269,6 +6286,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6489,12 +6507,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = dontDistribute super."present"; @@ -7107,6 +7127,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7227,6 +7248,7 @@ self: super: { "shadowsocks" = dontDistribute super."shadowsocks"; "shady-gen" = dontDistribute super."shady-gen"; "shady-graphics" = dontDistribute super."shady-graphics"; + "shake" = doDistribute super."shake_0_15_5"; "shake-cabal-build" = dontDistribute super."shake-cabal-build"; "shake-extras" = dontDistribute super."shake-extras"; "shake-language-c" = doDistribute super."shake-language-c_0_8_0"; @@ -7513,6 +7535,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7615,7 +7638,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -8760,6 +8785,7 @@ self: super: { "yesod-auth" = doDistribute super."yesod-auth_1_4_6"; "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "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"; @@ -8785,6 +8811,7 @@ self: super: { "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.4.nix b/pkgs/development/haskell-modules/configuration-lts-3.4.nix index 01a9caafa271..8e4b16f193ff 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.4.nix @@ -1145,10 +1145,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; "aeson-schema" = doDistribute super."aeson-schema_0_3_0_7"; "aeson-serialize" = dontDistribute super."aeson-serialize"; "aeson-smart" = dontDistribute super."aeson-smart"; @@ -1319,6 +1321,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = doDistribute super."apiary_1_4_5"; @@ -1334,6 +1337,7 @@ self: super: { "applicative-fail" = dontDistribute super."applicative-fail"; "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1547,6 +1551,7 @@ self: super: { "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1700,6 +1705,7 @@ self: super: { "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html" = doDistribute super."blaze-html_0_8_1_0"; @@ -1719,6 +1725,7 @@ self: super: { "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2107,6 +2114,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2423,6 +2431,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -2713,6 +2722,7 @@ self: super: { "docker" = dontDistribute super."docker"; "dockercook" = dontDistribute super."dockercook"; "docopt" = dontDistribute super."docopt"; + "doctest" = doDistribute super."doctest_0_10_1"; "doctest-discover" = dontDistribute super."doctest-discover"; "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; "doctest-prop" = dontDistribute super."doctest-prop"; @@ -4678,6 +4688,9 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = doDistribute super."hvect_0_2_0_0"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -4871,6 +4884,7 @@ self: super: { "iothread" = dontDistribute super."iothread"; "iotransaction" = dontDistribute super."iotransaction"; "ip-quoter" = dontDistribute super."ip-quoter"; + "ip6addr" = doDistribute super."ip6addr_0_5_0_1"; "ipatch" = dontDistribute super."ipatch"; "ipc" = dontDistribute super."ipc"; "ipcvar" = dontDistribute super."ipcvar"; @@ -5490,6 +5504,7 @@ self: super: { "mangopay" = doDistribute super."mangopay_1_11_4"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -6058,6 +6073,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6099,6 +6115,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "option" = dontDistribute super."option"; "optional" = dontDistribute super."optional"; + "optional-args" = doDistribute super."optional-args_1_0_0"; "options-time" = dontDistribute super."options-time"; "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; @@ -6269,6 +6286,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6489,12 +6507,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = dontDistribute super."present"; @@ -7107,6 +7127,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7227,6 +7248,7 @@ self: super: { "shadowsocks" = dontDistribute super."shadowsocks"; "shady-gen" = dontDistribute super."shady-gen"; "shady-graphics" = dontDistribute super."shady-graphics"; + "shake" = doDistribute super."shake_0_15_5"; "shake-cabal-build" = dontDistribute super."shake-cabal-build"; "shake-extras" = dontDistribute super."shake-extras"; "shake-language-c" = doDistribute super."shake-language-c_0_8_1"; @@ -7513,6 +7535,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7614,7 +7637,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -8758,6 +8783,7 @@ self: super: { "yesod-auth" = doDistribute super."yesod-auth_1_4_6"; "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "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"; @@ -8783,6 +8809,7 @@ self: super: { "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.5.nix b/pkgs/development/haskell-modules/configuration-lts-3.5.nix index d427bfbcde7e..3ced8008f73e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.5.nix @@ -1145,10 +1145,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; "aeson-schema" = doDistribute super."aeson-schema_0_3_0_7"; "aeson-serialize" = dontDistribute super."aeson-serialize"; "aeson-smart" = dontDistribute super."aeson-smart"; @@ -1318,6 +1320,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = doDistribute super."apiary_1_4_5"; @@ -1333,6 +1336,7 @@ self: super: { "applicative-fail" = dontDistribute super."applicative-fail"; "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1546,6 +1550,7 @@ self: super: { "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1699,6 +1704,7 @@ self: super: { "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html" = doDistribute super."blaze-html_0_8_1_0"; @@ -1718,6 +1724,7 @@ self: super: { "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2106,6 +2113,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2422,6 +2430,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -2712,6 +2721,7 @@ self: super: { "docker" = dontDistribute super."docker"; "dockercook" = dontDistribute super."dockercook"; "docopt" = dontDistribute super."docopt"; + "doctest" = doDistribute super."doctest_0_10_1"; "doctest-discover" = dontDistribute super."doctest-discover"; "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; "doctest-prop" = dontDistribute super."doctest-prop"; @@ -4674,6 +4684,9 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = doDistribute super."hvect_0_2_0_0"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -4865,6 +4878,7 @@ self: super: { "iothread" = dontDistribute super."iothread"; "iotransaction" = dontDistribute super."iotransaction"; "ip-quoter" = dontDistribute super."ip-quoter"; + "ip6addr" = doDistribute super."ip6addr_0_5_0_1"; "ipatch" = dontDistribute super."ipatch"; "ipc" = dontDistribute super."ipc"; "ipcvar" = dontDistribute super."ipcvar"; @@ -5484,6 +5498,7 @@ self: super: { "mangopay" = doDistribute super."mangopay_1_11_4"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -6051,6 +6066,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6092,6 +6108,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "option" = dontDistribute super."option"; "optional" = dontDistribute super."optional"; + "optional-args" = doDistribute super."optional-args_1_0_0"; "options-time" = dontDistribute super."options-time"; "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; @@ -6261,6 +6278,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6480,12 +6498,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4_0_2"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = dontDistribute super."present"; @@ -7098,6 +7118,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7218,6 +7239,7 @@ self: super: { "shadowsocks" = dontDistribute super."shadowsocks"; "shady-gen" = dontDistribute super."shady-gen"; "shady-graphics" = dontDistribute super."shady-graphics"; + "shake" = doDistribute super."shake_0_15_5"; "shake-cabal-build" = dontDistribute super."shake-cabal-build"; "shake-extras" = dontDistribute super."shake-extras"; "shake-language-c" = doDistribute super."shake-language-c_0_8_1"; @@ -7504,6 +7526,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7605,7 +7628,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -8745,6 +8770,7 @@ self: super: { "yesod-auth" = doDistribute super."yesod-auth_1_4_6_1"; "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "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"; @@ -8770,6 +8796,7 @@ self: super: { "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.6.nix b/pkgs/development/haskell-modules/configuration-lts-3.6.nix index 00eeb284498f..686ebe66539f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.6.nix @@ -1145,10 +1145,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; "aeson-schema" = doDistribute super."aeson-schema_0_3_0_7"; "aeson-serialize" = dontDistribute super."aeson-serialize"; "aeson-smart" = dontDistribute super."aeson-smart"; @@ -1318,6 +1320,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = doDistribute super."apiary_1_4_5"; @@ -1333,6 +1336,7 @@ self: super: { "applicative-fail" = dontDistribute super."applicative-fail"; "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1546,6 +1550,7 @@ self: super: { "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1699,6 +1704,7 @@ self: super: { "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html" = doDistribute super."blaze-html_0_8_1_0"; @@ -1718,6 +1724,7 @@ self: super: { "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2106,6 +2113,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2422,6 +2430,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -2712,6 +2721,7 @@ self: super: { "docker" = dontDistribute super."docker"; "dockercook" = dontDistribute super."dockercook"; "docopt" = dontDistribute super."docopt"; + "doctest" = doDistribute super."doctest_0_10_1"; "doctest-discover" = dontDistribute super."doctest-discover"; "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; "doctest-prop" = dontDistribute super."doctest-prop"; @@ -4671,6 +4681,9 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = doDistribute super."hvect_0_2_0_0"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -4862,6 +4875,7 @@ self: super: { "iothread" = dontDistribute super."iothread"; "iotransaction" = dontDistribute super."iotransaction"; "ip-quoter" = dontDistribute super."ip-quoter"; + "ip6addr" = doDistribute super."ip6addr_0_5_0_1"; "ipatch" = dontDistribute super."ipatch"; "ipc" = dontDistribute super."ipc"; "ipcvar" = dontDistribute super."ipcvar"; @@ -5478,6 +5492,7 @@ self: super: { "mangopay" = doDistribute super."mangopay_1_11_4"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -6045,6 +6060,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6086,6 +6102,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "option" = dontDistribute super."option"; "optional" = dontDistribute super."optional"; + "optional-args" = doDistribute super."optional-args_1_0_0"; "options-time" = dontDistribute super."options-time"; "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; @@ -6255,6 +6272,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6474,12 +6492,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4_0_2"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = dontDistribute super."present"; @@ -7092,6 +7112,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7212,6 +7233,7 @@ self: super: { "shadowsocks" = dontDistribute super."shadowsocks"; "shady-gen" = dontDistribute super."shady-gen"; "shady-graphics" = dontDistribute super."shady-graphics"; + "shake" = doDistribute super."shake_0_15_5"; "shake-cabal-build" = dontDistribute super."shake-cabal-build"; "shake-extras" = dontDistribute super."shake-extras"; "shake-language-c" = doDistribute super."shake-language-c_0_8_1"; @@ -7498,6 +7520,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7599,7 +7622,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -8737,6 +8762,7 @@ self: super: { "yesod-auth" = doDistribute super."yesod-auth_1_4_6_1"; "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "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"; @@ -8762,6 +8788,7 @@ self: super: { "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.7.nix b/pkgs/development/haskell-modules/configuration-lts-3.7.nix index fe0bb9ea9237..82b01af5b5bb 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.7.nix @@ -1145,10 +1145,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; "aeson-schema" = doDistribute super."aeson-schema_0_3_0_7"; "aeson-serialize" = dontDistribute super."aeson-serialize"; "aeson-smart" = dontDistribute super."aeson-smart"; @@ -1318,6 +1320,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = doDistribute super."apiary_1_4_5"; @@ -1333,6 +1336,7 @@ self: super: { "applicative-fail" = dontDistribute super."applicative-fail"; "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1544,6 +1548,7 @@ self: super: { "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1697,6 +1702,7 @@ self: super: { "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html" = doDistribute super."blaze-html_0_8_1_0"; @@ -1716,6 +1722,7 @@ self: super: { "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2104,6 +2111,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2419,6 +2427,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -2709,6 +2718,7 @@ self: super: { "docker" = dontDistribute super."docker"; "dockercook" = dontDistribute super."dockercook"; "docopt" = dontDistribute super."docopt"; + "doctest" = doDistribute super."doctest_0_10_1"; "doctest-discover" = dontDistribute super."doctest-discover"; "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; "doctest-prop" = dontDistribute super."doctest-prop"; @@ -4667,6 +4677,9 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = doDistribute super."hvect_0_2_0_0"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -4858,6 +4871,7 @@ self: super: { "iothread" = dontDistribute super."iothread"; "iotransaction" = dontDistribute super."iotransaction"; "ip-quoter" = dontDistribute super."ip-quoter"; + "ip6addr" = doDistribute super."ip6addr_0_5_0_1"; "ipatch" = dontDistribute super."ipatch"; "ipc" = dontDistribute super."ipc"; "ipcvar" = dontDistribute super."ipcvar"; @@ -5474,6 +5488,7 @@ self: super: { "mangopay" = doDistribute super."mangopay_1_11_5"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -6041,6 +6056,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6082,6 +6098,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "option" = dontDistribute super."option"; "optional" = dontDistribute super."optional"; + "optional-args" = doDistribute super."optional-args_1_0_0"; "options-time" = dontDistribute super."options-time"; "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; @@ -6251,6 +6268,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6469,12 +6487,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4_0_2"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = dontDistribute super."present"; @@ -7086,6 +7106,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7206,6 +7227,7 @@ self: super: { "shadowsocks" = dontDistribute super."shadowsocks"; "shady-gen" = dontDistribute super."shady-gen"; "shady-graphics" = dontDistribute super."shady-graphics"; + "shake" = doDistribute super."shake_0_15_5"; "shake-cabal-build" = dontDistribute super."shake-cabal-build"; "shake-extras" = dontDistribute super."shake-extras"; "shake-language-c" = doDistribute super."shake-language-c_0_8_1"; @@ -7491,6 +7513,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7592,7 +7615,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -8728,6 +8753,7 @@ self: super: { "yesod-auth" = doDistribute super."yesod-auth_1_4_6_1"; "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "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"; @@ -8753,6 +8779,7 @@ self: super: { "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.8.nix b/pkgs/development/haskell-modules/configuration-lts-3.8.nix index 164e06229bf5..12e1101c9719 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.8.nix @@ -1145,10 +1145,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; "aeson-schema" = doDistribute super."aeson-schema_0_3_0_7"; "aeson-serialize" = dontDistribute super."aeson-serialize"; "aeson-smart" = dontDistribute super."aeson-smart"; @@ -1318,6 +1320,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = doDistribute super."apiary_1_4_5"; @@ -1333,6 +1336,7 @@ self: super: { "applicative-fail" = dontDistribute super."applicative-fail"; "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1544,6 +1548,7 @@ self: super: { "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1697,6 +1702,7 @@ self: super: { "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html-contrib" = dontDistribute super."blaze-html-contrib"; @@ -1714,6 +1720,7 @@ self: super: { "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2102,6 +2109,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2417,6 +2425,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -2703,6 +2712,7 @@ self: super: { "docker" = dontDistribute super."docker"; "dockercook" = dontDistribute super."dockercook"; "docopt" = dontDistribute super."docopt"; + "doctest" = doDistribute super."doctest_0_10_1"; "doctest-discover" = dontDistribute super."doctest-discover"; "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; "doctest-prop" = dontDistribute super."doctest-prop"; @@ -4661,6 +4671,9 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = doDistribute super."hvect_0_2_0_0"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -4852,6 +4865,7 @@ self: super: { "iothread" = dontDistribute super."iothread"; "iotransaction" = dontDistribute super."iotransaction"; "ip-quoter" = dontDistribute super."ip-quoter"; + "ip6addr" = doDistribute super."ip6addr_0_5_0_1"; "ipatch" = dontDistribute super."ipatch"; "ipc" = dontDistribute super."ipc"; "ipcvar" = dontDistribute super."ipcvar"; @@ -5468,6 +5482,7 @@ self: super: { "mangopay" = doDistribute super."mangopay_1_11_5"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -6034,6 +6049,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6075,6 +6091,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "option" = dontDistribute super."option"; "optional" = dontDistribute super."optional"; + "optional-args" = doDistribute super."optional-args_1_0_0"; "options-time" = dontDistribute super."options-time"; "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; @@ -6244,6 +6261,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_1"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6461,12 +6479,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4_0_2"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = dontDistribute super."present"; @@ -7078,6 +7098,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7198,6 +7219,7 @@ self: super: { "shadowsocks" = dontDistribute super."shadowsocks"; "shady-gen" = dontDistribute super."shady-gen"; "shady-graphics" = dontDistribute super."shady-graphics"; + "shake" = doDistribute super."shake_0_15_5"; "shake-cabal-build" = dontDistribute super."shake-cabal-build"; "shake-extras" = dontDistribute super."shake-extras"; "shake-language-c" = doDistribute super."shake-language-c_0_8_1"; @@ -7483,6 +7505,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7584,7 +7607,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -8719,6 +8744,7 @@ self: super: { "yesod-auth" = doDistribute super."yesod-auth_1_4_6_1"; "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "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"; @@ -8744,6 +8770,7 @@ self: super: { "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.9.nix b/pkgs/development/haskell-modules/configuration-lts-3.9.nix index 9d6b3a0a81f2..740e11523e71 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.9.nix @@ -1143,10 +1143,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = doDistribute super."aeson-extra_0_2_1_0"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; "aeson-schema" = doDistribute super."aeson-schema_0_3_0_7"; "aeson-serialize" = dontDistribute super."aeson-serialize"; "aeson-smart" = dontDistribute super."aeson-smart"; @@ -1316,6 +1318,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = doDistribute super."apiary_1_4_5"; @@ -1331,6 +1334,7 @@ self: super: { "applicative-fail" = dontDistribute super."applicative-fail"; "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1542,6 +1546,7 @@ self: super: { "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1694,6 +1699,7 @@ self: super: { "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html-contrib" = dontDistribute super."blaze-html-contrib"; @@ -1711,6 +1717,7 @@ self: super: { "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2099,6 +2106,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2414,6 +2422,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -2700,6 +2709,7 @@ self: super: { "docker" = dontDistribute super."docker"; "dockercook" = dontDistribute super."dockercook"; "docopt" = dontDistribute super."docopt"; + "doctest" = doDistribute super."doctest_0_10_1"; "doctest-discover" = dontDistribute super."doctest-discover"; "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; "doctest-prop" = dontDistribute super."doctest-prop"; @@ -4657,6 +4667,9 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = doDistribute super."hvect_0_2_0_0"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -4848,6 +4861,7 @@ self: super: { "iothread" = dontDistribute super."iothread"; "iotransaction" = dontDistribute super."iotransaction"; "ip-quoter" = dontDistribute super."ip-quoter"; + "ip6addr" = doDistribute super."ip6addr_0_5_0_1"; "ipatch" = dontDistribute super."ipatch"; "ipc" = dontDistribute super."ipc"; "ipcvar" = dontDistribute super."ipcvar"; @@ -5464,6 +5478,7 @@ self: super: { "mangopay" = doDistribute super."mangopay_1_11_5"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -6029,6 +6044,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6070,6 +6086,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "option" = dontDistribute super."option"; "optional" = dontDistribute super."optional"; + "optional-args" = doDistribute super."optional-args_1_0_0"; "options-time" = dontDistribute super."options-time"; "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; @@ -6239,6 +6256,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_1"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6456,12 +6474,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4_0_2"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = dontDistribute super."present"; @@ -7073,6 +7093,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7193,6 +7214,7 @@ self: super: { "shadowsocks" = dontDistribute super."shadowsocks"; "shady-gen" = dontDistribute super."shady-gen"; "shady-graphics" = dontDistribute super."shady-graphics"; + "shake" = doDistribute super."shake_0_15_5"; "shake-cabal-build" = dontDistribute super."shake-cabal-build"; "shake-extras" = dontDistribute super."shake-extras"; "shake-language-c" = doDistribute super."shake-language-c_0_8_3"; @@ -7478,6 +7500,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7579,7 +7602,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -8714,6 +8739,7 @@ self: super: { "yesod-auth" = doDistribute super."yesod-auth_1_4_7"; "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "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"; @@ -8739,6 +8765,7 @@ self: super: { "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-4.0.nix b/pkgs/development/haskell-modules/configuration-lts-4.0.nix index 36b97d7d686a..5d757751aae0 100644 --- a/pkgs/development/haskell-modules/configuration-lts-4.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-4.0.nix @@ -72,6 +72,7 @@ self: super: { "Advgame" = dontDistribute super."Advgame"; "AesonBson" = dontDistribute super."AesonBson"; "Agata" = dontDistribute super."Agata"; + "Agda" = doDistribute super."Agda_2_4_2_5"; "Agda-executable" = dontDistribute super."Agda-executable"; "AhoCorasick" = dontDistribute super."AhoCorasick"; "AlgorithmW" = dontDistribute super."AlgorithmW"; @@ -1114,10 +1115,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = doDistribute super."aeson-extra_0_3_0_0"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; "aeson-smart" = dontDistribute super."aeson-smart"; @@ -1286,6 +1289,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = doDistribute super."apiary_1_4_5"; @@ -1301,6 +1305,7 @@ self: super: { "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; "applicative-quoters" = dontDistribute super."applicative-quoters"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = doDistribute super."apply-refact_0_1_0_0"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1342,6 +1347,7 @@ self: super: { "arxiv" = dontDistribute super."arxiv"; "ascetic" = dontDistribute super."ascetic"; "ascii" = dontDistribute super."ascii"; + "ascii-progress" = doDistribute super."ascii-progress_0_3_2_0"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; @@ -1502,6 +1508,7 @@ self: super: { "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1648,6 +1655,7 @@ self: super: { "blas-hs" = dontDistribute super."blas-hs"; "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html-contrib" = dontDistribute super."blaze-html-contrib"; @@ -1665,6 +1673,7 @@ self: super: { "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_10_0_0"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2038,6 +2047,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2073,6 +2083,7 @@ self: super: { "complexity" = dontDistribute super."complexity"; "compose-ltr" = dontDistribute super."compose-ltr"; "compose-trans" = dontDistribute super."compose-trans"; + "composition-tree" = doDistribute super."composition-tree_0_2_0_1"; "compression" = dontDistribute super."compression"; "compstrat" = dontDistribute super."compstrat"; "comptrans" = dontDistribute super."comptrans"; @@ -2340,6 +2351,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -2614,6 +2626,7 @@ self: super: { "docidx" = dontDistribute super."docidx"; "docker" = dontDistribute super."docker"; "dockercook" = dontDistribute super."dockercook"; + "doctest" = doDistribute super."doctest_0_10_1"; "doctest-discover" = dontDistribute super."doctest-discover"; "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; "doctest-prop" = dontDistribute super."doctest-prop"; @@ -4055,6 +4068,7 @@ self: super: { "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; + "hindent" = doDistribute super."hindent_4_6_1"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -4438,6 +4452,7 @@ self: super: { "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" = doDistribute super."http-client-openssl_0_2_0_1"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; @@ -4491,6 +4506,9 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hws" = dontDistribute super."hws"; @@ -4672,6 +4690,7 @@ self: super: { "iothread" = dontDistribute super."iothread"; "iotransaction" = dontDistribute super."iotransaction"; "ip-quoter" = dontDistribute super."ip-quoter"; + "ip6addr" = doDistribute super."ip6addr_0_5_0_1"; "ipatch" = dontDistribute super."ipatch"; "ipc" = dontDistribute super."ipc"; "ipcvar" = dontDistribute super."ipcvar"; @@ -5270,6 +5289,7 @@ self: super: { "mandulia" = dontDistribute super."mandulia"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -5806,6 +5826,7 @@ self: super: { "opaleye-trans" = dontDistribute super."opaleye-trans"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -5847,6 +5868,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "option" = dontDistribute super."option"; "optional" = dontDistribute super."optional"; + "optional-args" = doDistribute super."optional-args_1_0_0"; "options-time" = dontDistribute super."options-time"; "optparse-applicative" = doDistribute super."optparse-applicative_0_12_0_0"; "optparse-declarative" = dontDistribute super."optparse-declarative"; @@ -6005,6 +6027,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_4"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6208,12 +6231,14 @@ self: super: { "prednote-test" = dontDistribute super."prednote-test"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4_0_2"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = dontDistribute super."present"; @@ -6796,6 +6821,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -6908,6 +6934,7 @@ self: super: { "shadowsocks" = dontDistribute super."shadowsocks"; "shady-gen" = dontDistribute super."shady-gen"; "shady-graphics" = dontDistribute super."shady-graphics"; + "shake" = doDistribute super."shake_0_15_5"; "shake-cabal-build" = dontDistribute super."shake-cabal-build"; "shake-extras" = dontDistribute super."shake-extras"; "shake-language-c" = doDistribute super."shake-language-c_0_8_4"; @@ -6943,6 +6970,7 @@ self: super: { "shortcircuit" = dontDistribute super."shortcircuit"; "shortcut-links" = doDistribute super."shortcut-links_0_4_1_0"; "shorten-strings" = dontDistribute super."shorten-strings"; + "should-not-typecheck" = doDistribute super."should-not-typecheck_2_0_1"; "show" = dontDistribute super."show"; "show-type" = dontDistribute super."show-type"; "showdown" = dontDistribute super."showdown"; @@ -7031,6 +7059,7 @@ self: super: { "sloth" = dontDistribute super."sloth"; "slug" = doDistribute super."slug_0_1_1"; "smallarray" = dontDistribute super."smallarray"; + "smallcaps" = doDistribute super."smallcaps_0_6_0_1"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; "smallcheck-lens" = dontDistribute super."smallcheck-lens"; "smallcheck-series" = dontDistribute super."smallcheck-series"; @@ -7180,6 +7209,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7278,7 +7308,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -8336,6 +8368,7 @@ self: super: { "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_11"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "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"; @@ -8361,6 +8394,7 @@ self: super: { "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-4.1.nix b/pkgs/development/haskell-modules/configuration-lts-4.1.nix index 8825b25d688e..3104f83dbf8c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-4.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-4.1.nix @@ -72,6 +72,7 @@ self: super: { "Advgame" = dontDistribute super."Advgame"; "AesonBson" = dontDistribute super."AesonBson"; "Agata" = dontDistribute super."Agata"; + "Agda" = doDistribute super."Agda_2_4_2_5"; "Agda-executable" = dontDistribute super."Agda-executable"; "AhoCorasick" = dontDistribute super."AhoCorasick"; "AlgorithmW" = dontDistribute super."AlgorithmW"; @@ -1113,10 +1114,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = doDistribute super."aeson-extra_0_3_0_0"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; "aeson-smart" = dontDistribute super."aeson-smart"; @@ -1284,6 +1287,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = doDistribute super."apiary_1_4_5"; @@ -1299,6 +1303,7 @@ self: super: { "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; "applicative-quoters" = dontDistribute super."applicative-quoters"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = doDistribute super."apply-refact_0_1_0_0"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1340,6 +1345,7 @@ self: super: { "arxiv" = dontDistribute super."arxiv"; "ascetic" = dontDistribute super."ascetic"; "ascii" = dontDistribute super."ascii"; + "ascii-progress" = doDistribute super."ascii-progress_0_3_2_0"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; @@ -1500,6 +1506,7 @@ self: super: { "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1646,6 +1653,7 @@ self: super: { "blas-hs" = dontDistribute super."blas-hs"; "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html-contrib" = dontDistribute super."blaze-html-contrib"; @@ -1663,6 +1671,7 @@ self: super: { "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_10_0_0"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2036,6 +2045,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2071,6 +2081,7 @@ self: super: { "complexity" = dontDistribute super."complexity"; "compose-ltr" = dontDistribute super."compose-ltr"; "compose-trans" = dontDistribute super."compose-trans"; + "composition-tree" = doDistribute super."composition-tree_0_2_0_1"; "compression" = dontDistribute super."compression"; "compstrat" = dontDistribute super."compstrat"; "comptrans" = dontDistribute super."comptrans"; @@ -2338,6 +2349,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -2612,6 +2624,7 @@ self: super: { "docidx" = dontDistribute super."docidx"; "docker" = dontDistribute super."docker"; "dockercook" = dontDistribute super."dockercook"; + "doctest" = doDistribute super."doctest_0_10_1"; "doctest-discover" = dontDistribute super."doctest-discover"; "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; "doctest-prop" = dontDistribute super."doctest-prop"; @@ -4048,6 +4061,7 @@ self: super: { "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; + "hindent" = doDistribute super."hindent_4_6_1"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -4431,6 +4445,7 @@ self: super: { "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" = doDistribute super."http-client-openssl_0_2_0_1"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; @@ -4484,6 +4499,9 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hws" = dontDistribute super."hws"; @@ -4660,6 +4678,7 @@ self: super: { "iothread" = dontDistribute super."iothread"; "iotransaction" = dontDistribute super."iotransaction"; "ip-quoter" = dontDistribute super."ip-quoter"; + "ip6addr" = doDistribute super."ip6addr_0_5_0_1"; "ipatch" = dontDistribute super."ipatch"; "ipc" = dontDistribute super."ipc"; "ipcvar" = dontDistribute super."ipcvar"; @@ -5255,6 +5274,7 @@ self: super: { "mandulia" = dontDistribute super."mandulia"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -5791,6 +5811,7 @@ self: super: { "opaleye-trans" = dontDistribute super."opaleye-trans"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -5832,6 +5853,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "option" = dontDistribute super."option"; "optional" = dontDistribute super."optional"; + "optional-args" = doDistribute super."optional-args_1_0_0"; "options-time" = dontDistribute super."options-time"; "optparse-applicative" = doDistribute super."optparse-applicative_0_12_0_0"; "optparse-declarative" = dontDistribute super."optparse-declarative"; @@ -5937,6 +5959,7 @@ self: super: { "pasty" = dontDistribute super."pasty"; "patch-combinators" = dontDistribute super."patch-combinators"; "patch-image" = dontDistribute super."patch-image"; + "patches-vector" = doDistribute super."patches-vector_0_1_5_1"; "path" = doDistribute super."path_0_5_3"; "path-io" = dontDistribute super."path-io"; "pathfinding" = dontDistribute super."pathfinding"; @@ -5989,6 +6012,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_4"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6191,12 +6215,14 @@ self: super: { "prednote-test" = dontDistribute super."prednote-test"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4_0_2"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = dontDistribute super."present"; @@ -6779,6 +6805,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -6891,6 +6918,7 @@ self: super: { "shadowsocks" = dontDistribute super."shadowsocks"; "shady-gen" = dontDistribute super."shady-gen"; "shady-graphics" = dontDistribute super."shady-graphics"; + "shake" = doDistribute super."shake_0_15_5"; "shake-cabal-build" = dontDistribute super."shake-cabal-build"; "shake-extras" = dontDistribute super."shake-extras"; "shake-language-c" = doDistribute super."shake-language-c_0_8_4"; @@ -6926,6 +6954,7 @@ self: super: { "shortcircuit" = dontDistribute super."shortcircuit"; "shortcut-links" = doDistribute super."shortcut-links_0_4_1_0"; "shorten-strings" = dontDistribute super."shorten-strings"; + "should-not-typecheck" = doDistribute super."should-not-typecheck_2_0_1"; "show" = dontDistribute super."show"; "show-type" = dontDistribute super."show-type"; "showdown" = dontDistribute super."showdown"; @@ -7014,6 +7043,7 @@ self: super: { "sloth" = dontDistribute super."sloth"; "slug" = doDistribute super."slug_0_1_1"; "smallarray" = dontDistribute super."smallarray"; + "smallcaps" = doDistribute super."smallcaps_0_6_0_1"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; "smallcheck-lens" = dontDistribute super."smallcheck-lens"; "smallcheck-series" = dontDistribute super."smallcheck-series"; @@ -7163,6 +7193,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7261,7 +7292,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -8083,6 +8116,7 @@ self: super: { "wai-routing" = doDistribute super."wai-routing_0_12_2"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-postgresql" = doDistribute super."wai-session-postgresql_0_2_0_4"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; "wai-static-pages" = dontDistribute super."wai-static-pages"; @@ -8318,6 +8352,7 @@ self: super: { "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_11"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "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"; @@ -8343,6 +8378,7 @@ self: super: { "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-4.2.nix b/pkgs/development/haskell-modules/configuration-lts-4.2.nix index a1f662912d2b..1e63fc7ecdba 100644 --- a/pkgs/development/haskell-modules/configuration-lts-4.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-4.2.nix @@ -72,6 +72,7 @@ self: super: { "Advgame" = dontDistribute super."Advgame"; "AesonBson" = dontDistribute super."AesonBson"; "Agata" = dontDistribute super."Agata"; + "Agda" = doDistribute super."Agda_2_4_2_5"; "Agda-executable" = dontDistribute super."Agda-executable"; "AhoCorasick" = dontDistribute super."AhoCorasick"; "AlgorithmW" = dontDistribute super."AlgorithmW"; @@ -1112,10 +1113,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = doDistribute super."aeson-extra_0_3_0_0"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; "aeson-smart" = dontDistribute super."aeson-smart"; @@ -1283,6 +1286,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = doDistribute super."apiary_1_4_5"; @@ -1298,6 +1302,7 @@ self: super: { "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; "applicative-quoters" = dontDistribute super."applicative-quoters"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = doDistribute super."apply-refact_0_1_0_0"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1339,6 +1344,7 @@ self: super: { "arxiv" = dontDistribute super."arxiv"; "ascetic" = dontDistribute super."ascetic"; "ascii" = dontDistribute super."ascii"; + "ascii-progress" = doDistribute super."ascii-progress_0_3_2_0"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; @@ -1499,6 +1505,7 @@ self: super: { "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1645,6 +1652,7 @@ self: super: { "blas-hs" = dontDistribute super."blas-hs"; "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html-contrib" = dontDistribute super."blaze-html-contrib"; @@ -1662,6 +1670,7 @@ self: super: { "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_10_0_0"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2031,6 +2040,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2066,6 +2076,7 @@ self: super: { "complexity" = dontDistribute super."complexity"; "compose-ltr" = dontDistribute super."compose-ltr"; "compose-trans" = dontDistribute super."compose-trans"; + "composition-tree" = doDistribute super."composition-tree_0_2_0_1"; "compression" = dontDistribute super."compression"; "compstrat" = dontDistribute super."compstrat"; "comptrans" = dontDistribute super."comptrans"; @@ -2332,6 +2343,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -2605,6 +2617,7 @@ self: super: { "docidx" = dontDistribute super."docidx"; "docker" = dontDistribute super."docker"; "dockercook" = dontDistribute super."dockercook"; + "doctest" = doDistribute super."doctest_0_10_1"; "doctest-discover" = dontDistribute super."doctest-discover"; "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; "doctest-prop" = dontDistribute super."doctest-prop"; @@ -4029,6 +4042,7 @@ self: super: { "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; + "hindent" = doDistribute super."hindent_4_6_1"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -4410,6 +4424,7 @@ self: super: { "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" = doDistribute super."http-client-openssl_0_2_0_1"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; @@ -4463,6 +4478,9 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hws" = dontDistribute super."hws"; @@ -4636,6 +4654,7 @@ self: super: { "iothread" = dontDistribute super."iothread"; "iotransaction" = dontDistribute super."iotransaction"; "ip-quoter" = dontDistribute super."ip-quoter"; + "ip6addr" = doDistribute super."ip6addr_0_5_0_1"; "ipatch" = dontDistribute super."ipatch"; "ipc" = dontDistribute super."ipc"; "ipcvar" = dontDistribute super."ipcvar"; @@ -5230,6 +5249,7 @@ self: super: { "mandulia" = dontDistribute super."mandulia"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -5763,6 +5783,7 @@ self: super: { "opaleye-trans" = dontDistribute super."opaleye-trans"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -5804,6 +5825,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "option" = dontDistribute super."option"; "optional" = dontDistribute super."optional"; + "optional-args" = doDistribute super."optional-args_1_0_0"; "options-time" = dontDistribute super."options-time"; "optparse-applicative" = doDistribute super."optparse-applicative_0_12_0_0"; "optparse-declarative" = dontDistribute super."optparse-declarative"; @@ -5909,6 +5931,7 @@ self: super: { "pasty" = dontDistribute super."pasty"; "patch-combinators" = dontDistribute super."patch-combinators"; "patch-image" = dontDistribute super."patch-image"; + "patches-vector" = doDistribute super."patches-vector_0_1_5_1"; "path" = doDistribute super."path_0_5_3"; "path-io" = dontDistribute super."path-io"; "pathfinding" = dontDistribute super."pathfinding"; @@ -5961,6 +5984,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_4"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6161,11 +6185,13 @@ self: super: { "prednote-test" = dontDistribute super."prednote-test"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = dontDistribute super."present"; @@ -6744,6 +6770,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -6855,6 +6882,7 @@ self: super: { "shadowsocks" = dontDistribute super."shadowsocks"; "shady-gen" = dontDistribute super."shady-gen"; "shady-graphics" = dontDistribute super."shady-graphics"; + "shake" = doDistribute super."shake_0_15_5"; "shake-cabal-build" = dontDistribute super."shake-cabal-build"; "shake-extras" = dontDistribute super."shake-extras"; "shake-language-c" = doDistribute super."shake-language-c_0_8_4"; @@ -6890,6 +6918,7 @@ self: super: { "shortcircuit" = dontDistribute super."shortcircuit"; "shortcut-links" = doDistribute super."shortcut-links_0_4_1_0"; "shorten-strings" = dontDistribute super."shorten-strings"; + "should-not-typecheck" = doDistribute super."should-not-typecheck_2_0_1"; "show" = dontDistribute super."show"; "show-type" = dontDistribute super."show-type"; "showdown" = dontDistribute super."showdown"; @@ -6974,6 +7003,7 @@ self: super: { "sloth" = dontDistribute super."sloth"; "slug" = doDistribute super."slug_0_1_1"; "smallarray" = dontDistribute super."smallarray"; + "smallcaps" = doDistribute super."smallcaps_0_6_0_1"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; "smallcheck-lens" = dontDistribute super."smallcheck-lens"; "smallcheck-series" = dontDistribute super."smallcheck-series"; @@ -7121,6 +7151,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7219,7 +7250,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -8039,6 +8072,7 @@ self: super: { "wai-routing" = doDistribute super."wai-routing_0_12_2"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-postgresql" = doDistribute super."wai-session-postgresql_0_2_0_4"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; "wai-static-pages" = dontDistribute super."wai-static-pages"; @@ -8274,6 +8308,7 @@ self: super: { "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_11"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "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"; @@ -8299,6 +8334,7 @@ self: super: { "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.0.nix b/pkgs/development/haskell-modules/configuration-lts-5.0.nix index adb715748e7b..63ad44a14080 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.0.nix @@ -72,6 +72,7 @@ self: super: { "Advgame" = dontDistribute super."Advgame"; "AesonBson" = dontDistribute super."AesonBson"; "Agata" = dontDistribute super."Agata"; + "Agda" = doDistribute super."Agda_2_4_2_5"; "Agda-executable" = dontDistribute super."Agda-executable"; "AhoCorasick" = dontDistribute super."AhoCorasick"; "AlgorithmW" = dontDistribute super."AlgorithmW"; @@ -1100,10 +1101,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = doDistribute super."aeson-extra_0_3_0_0"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; "aeson-smart" = dontDistribute super."aeson-smart"; @@ -1271,6 +1274,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = doDistribute super."apiary_1_4_5"; @@ -1286,6 +1290,7 @@ self: super: { "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; "applicative-quoters" = dontDistribute super."applicative-quoters"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = doDistribute super."apply-refact_0_1_0_0"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1327,6 +1332,7 @@ self: super: { "arxiv" = dontDistribute super."arxiv"; "ascetic" = dontDistribute super."ascetic"; "ascii" = dontDistribute super."ascii"; + "ascii-progress" = doDistribute super."ascii-progress_0_3_2_0"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; @@ -1486,6 +1492,7 @@ self: super: { "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1626,6 +1633,7 @@ self: super: { "blas-hs" = dontDistribute super."blas-hs"; "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html-contrib" = dontDistribute super."blaze-html-contrib"; @@ -1643,6 +1651,7 @@ self: super: { "blogination" = dontDistribute super."blogination"; "bloodhound" = dontDistribute super."bloodhound"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2006,6 +2015,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2041,6 +2051,7 @@ self: super: { "complexity" = dontDistribute super."complexity"; "compose-ltr" = dontDistribute super."compose-ltr"; "compose-trans" = dontDistribute super."compose-trans"; + "composition-tree" = doDistribute super."composition-tree_0_2_0_1"; "compression" = dontDistribute super."compression"; "compstrat" = dontDistribute super."compstrat"; "comptrans" = dontDistribute super."comptrans"; @@ -2301,6 +2312,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -2568,6 +2580,7 @@ self: super: { "docidx" = dontDistribute super."docidx"; "docker" = dontDistribute super."docker"; "dockercook" = dontDistribute super."dockercook"; + "doctest" = doDistribute super."doctest_0_10_1"; "doctest-discover" = dontDistribute super."doctest-discover"; "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; "doctest-prop" = dontDistribute super."doctest-prop"; @@ -3975,6 +3988,7 @@ self: super: { "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; + "hindent" = doDistribute super."hindent_4_6_1"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -4356,6 +4370,7 @@ self: super: { "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" = doDistribute super."http-client-openssl_0_2_0_1"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; @@ -4407,6 +4422,9 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hws" = dontDistribute super."hws"; @@ -4579,6 +4597,7 @@ self: super: { "iothread" = dontDistribute super."iothread"; "iotransaction" = dontDistribute super."iotransaction"; "ip-quoter" = dontDistribute super."ip-quoter"; + "ip6addr" = doDistribute super."ip6addr_0_5_0_1"; "ipatch" = dontDistribute super."ipatch"; "ipc" = dontDistribute super."ipc"; "ipcvar" = dontDistribute super."ipcvar"; @@ -5169,6 +5188,7 @@ self: super: { "mandulia" = dontDistribute super."mandulia"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -5697,6 +5717,7 @@ self: super: { "opaleye-trans" = dontDistribute super."opaleye-trans"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -5738,6 +5759,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "option" = dontDistribute super."option"; "optional" = dontDistribute super."optional"; + "optional-args" = doDistribute super."optional-args_1_0_0"; "options-time" = dontDistribute super."options-time"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "optparse-generic" = dontDistribute super."optparse-generic"; @@ -5841,6 +5863,7 @@ self: super: { "pasty" = dontDistribute super."pasty"; "patch-combinators" = dontDistribute super."patch-combinators"; "patch-image" = dontDistribute super."patch-image"; + "patches-vector" = doDistribute super."patches-vector_0_1_5_1"; "path" = doDistribute super."path_0_5_3"; "path-io" = doDistribute super."path-io_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; @@ -5893,6 +5916,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_4"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6088,11 +6112,13 @@ self: super: { "prednote-test" = dontDistribute super."prednote-test"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = dontDistribute super."present"; @@ -6662,6 +6688,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -6772,6 +6799,7 @@ self: super: { "shadowsocks" = dontDistribute super."shadowsocks"; "shady-gen" = dontDistribute super."shady-gen"; "shady-graphics" = dontDistribute super."shady-graphics"; + "shake" = doDistribute super."shake_0_15_5"; "shake-cabal-build" = dontDistribute super."shake-cabal-build"; "shake-extras" = dontDistribute super."shake-extras"; "shake-language-c" = doDistribute super."shake-language-c_0_8_4"; @@ -6806,6 +6834,7 @@ self: super: { "shortcircuit" = dontDistribute super."shortcircuit"; "shortcut-links" = doDistribute super."shortcut-links_0_4_1_0"; "shorten-strings" = dontDistribute super."shorten-strings"; + "should-not-typecheck" = doDistribute super."should-not-typecheck_2_0_1"; "show" = dontDistribute super."show"; "show-type" = dontDistribute super."show-type"; "showdown" = dontDistribute super."showdown"; @@ -6889,6 +6918,7 @@ self: super: { "sloth" = dontDistribute super."sloth"; "slug" = doDistribute super."slug_0_1_2"; "smallarray" = dontDistribute super."smallarray"; + "smallcaps" = doDistribute super."smallcaps_0_6_0_1"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; "smallcheck-lens" = dontDistribute super."smallcheck-lens"; "smallcheck-series" = dontDistribute super."smallcheck-series"; @@ -7036,6 +7066,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7131,7 +7162,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -7941,6 +7974,7 @@ self: super: { "wai-routing" = doDistribute super."wai-routing_0_12_2"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-postgresql" = doDistribute super."wai-session-postgresql_0_2_0_4"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; "wai-static-pages" = dontDistribute super."wai-static-pages"; @@ -8174,6 +8208,7 @@ self: super: { "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_12"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "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"; @@ -8199,6 +8234,7 @@ self: super: { "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.1.nix b/pkgs/development/haskell-modules/configuration-lts-5.1.nix index 15ca4c2b748e..ed02c06a840b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.1.nix @@ -72,6 +72,7 @@ self: super: { "Advgame" = dontDistribute super."Advgame"; "AesonBson" = dontDistribute super."AesonBson"; "Agata" = dontDistribute super."Agata"; + "Agda" = doDistribute super."Agda_2_4_2_5"; "Agda-executable" = dontDistribute super."Agda-executable"; "AhoCorasick" = dontDistribute super."AhoCorasick"; "AlgorithmW" = dontDistribute super."AlgorithmW"; @@ -1099,10 +1100,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = doDistribute super."aeson-extra_0_3_1_0"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; "aeson-smart" = dontDistribute super."aeson-smart"; @@ -1269,6 +1272,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = doDistribute super."apiary_1_4_5"; @@ -1284,6 +1288,7 @@ self: super: { "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; "applicative-quoters" = dontDistribute super."applicative-quoters"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = doDistribute super."apply-refact_0_1_0_0"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1325,6 +1330,7 @@ self: super: { "arxiv" = dontDistribute super."arxiv"; "ascetic" = dontDistribute super."ascetic"; "ascii" = dontDistribute super."ascii"; + "ascii-progress" = doDistribute super."ascii-progress_0_3_2_0"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; @@ -1484,6 +1490,7 @@ self: super: { "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1624,6 +1631,7 @@ self: super: { "blas-hs" = dontDistribute super."blas-hs"; "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html-contrib" = dontDistribute super."blaze-html-contrib"; @@ -1640,6 +1648,7 @@ self: super: { "blogination" = dontDistribute super."blogination"; "bloodhound" = dontDistribute super."bloodhound"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2001,6 +2010,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2036,6 +2046,7 @@ self: super: { "complexity" = dontDistribute super."complexity"; "compose-ltr" = dontDistribute super."compose-ltr"; "compose-trans" = dontDistribute super."compose-trans"; + "composition-tree" = doDistribute super."composition-tree_0_2_0_1"; "compression" = dontDistribute super."compression"; "compstrat" = dontDistribute super."compstrat"; "comptrans" = dontDistribute super."comptrans"; @@ -2295,6 +2306,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -2562,6 +2574,7 @@ self: super: { "docidx" = dontDistribute super."docidx"; "docker" = dontDistribute super."docker"; "dockercook" = dontDistribute super."dockercook"; + "doctest" = doDistribute super."doctest_0_10_1"; "doctest-discover" = dontDistribute super."doctest-discover"; "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; "doctest-prop" = dontDistribute super."doctest-prop"; @@ -3969,6 +3982,7 @@ self: super: { "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; + "hindent" = doDistribute super."hindent_4_6_1"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -4350,6 +4364,7 @@ self: super: { "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" = doDistribute super."http-client-openssl_0_2_0_1"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; @@ -4401,6 +4416,9 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hws" = dontDistribute super."hws"; @@ -4572,6 +4590,7 @@ self: super: { "iothread" = dontDistribute super."iothread"; "iotransaction" = dontDistribute super."iotransaction"; "ip-quoter" = dontDistribute super."ip-quoter"; + "ip6addr" = doDistribute super."ip6addr_0_5_0_1"; "ipatch" = dontDistribute super."ipatch"; "ipc" = dontDistribute super."ipc"; "ipcvar" = dontDistribute super."ipcvar"; @@ -5162,6 +5181,7 @@ self: super: { "mandulia" = dontDistribute super."mandulia"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -5689,6 +5709,7 @@ self: super: { "opaleye-trans" = dontDistribute super."opaleye-trans"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -5730,6 +5751,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "option" = dontDistribute super."option"; "optional" = dontDistribute super."optional"; + "optional-args" = doDistribute super."optional-args_1_0_0"; "options-time" = dontDistribute super."options-time"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "optparse-generic" = dontDistribute super."optparse-generic"; @@ -5833,6 +5855,7 @@ self: super: { "pasty" = dontDistribute super."pasty"; "patch-combinators" = dontDistribute super."patch-combinators"; "patch-image" = dontDistribute super."patch-image"; + "patches-vector" = doDistribute super."patches-vector_0_1_5_1"; "path" = doDistribute super."path_0_5_3"; "path-io" = doDistribute super."path-io_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; @@ -5885,6 +5908,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_4"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6080,11 +6104,13 @@ self: super: { "prednote-test" = dontDistribute super."prednote-test"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = dontDistribute super."present"; @@ -6653,6 +6679,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -6762,6 +6789,7 @@ self: super: { "shadowsocks" = dontDistribute super."shadowsocks"; "shady-gen" = dontDistribute super."shady-gen"; "shady-graphics" = dontDistribute super."shady-graphics"; + "shake" = doDistribute super."shake_0_15_5"; "shake-cabal-build" = dontDistribute super."shake-cabal-build"; "shake-extras" = dontDistribute super."shake-extras"; "shake-language-c" = doDistribute super."shake-language-c_0_8_4"; @@ -6796,6 +6824,7 @@ self: super: { "shortcircuit" = dontDistribute super."shortcircuit"; "shortcut-links" = doDistribute super."shortcut-links_0_4_1_0"; "shorten-strings" = dontDistribute super."shorten-strings"; + "should-not-typecheck" = doDistribute super."should-not-typecheck_2_0_1"; "show" = dontDistribute super."show"; "show-type" = dontDistribute super."show-type"; "showdown" = dontDistribute super."showdown"; @@ -6879,6 +6908,7 @@ self: super: { "sloth" = dontDistribute super."sloth"; "slug" = doDistribute super."slug_0_1_2"; "smallarray" = dontDistribute super."smallarray"; + "smallcaps" = doDistribute super."smallcaps_0_6_0_1"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; "smallcheck-lens" = dontDistribute super."smallcheck-lens"; "smallcheck-series" = dontDistribute super."smallcheck-series"; @@ -7026,6 +7056,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7121,7 +7152,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -7929,6 +7962,7 @@ self: super: { "wai-routing" = doDistribute super."wai-routing_0_12_2"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-postgresql" = doDistribute super."wai-session-postgresql_0_2_0_4"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; "wai-static-pages" = dontDistribute super."wai-static-pages"; @@ -8162,6 +8196,7 @@ self: super: { "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_12"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "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"; @@ -8187,6 +8222,7 @@ self: super: { "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.10.nix b/pkgs/development/haskell-modules/configuration-lts-5.10.nix index d239e71ac766..82d33cfb45d9 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.10.nix @@ -72,6 +72,7 @@ self: super: { "Advgame" = dontDistribute super."Advgame"; "AesonBson" = dontDistribute super."AesonBson"; "Agata" = dontDistribute super."Agata"; + "Agda" = doDistribute super."Agda_2_4_2_5"; "Agda-executable" = dontDistribute super."Agda-executable"; "AhoCorasick" = dontDistribute super."AhoCorasick"; "AlgorithmW" = dontDistribute super."AlgorithmW"; @@ -1087,10 +1088,12 @@ self: super: { "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; "aeson-smart" = dontDistribute super."aeson-smart"; @@ -1257,6 +1260,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = doDistribute super."apiary_1_4_5"; @@ -1272,6 +1276,7 @@ self: super: { "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; "applicative-quoters" = dontDistribute super."applicative-quoters"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = doDistribute super."apply-refact_0_1_0_0"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1312,6 +1317,7 @@ self: super: { "arxiv" = dontDistribute super."arxiv"; "ascetic" = dontDistribute super."ascetic"; "ascii" = dontDistribute super."ascii"; + "ascii-progress" = doDistribute super."ascii-progress_0_3_2_0"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; @@ -1468,6 +1474,7 @@ self: super: { "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1606,6 +1613,7 @@ self: super: { "blas-hs" = dontDistribute super."blas-hs"; "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html-contrib" = dontDistribute super."blaze-html-contrib"; @@ -1622,6 +1630,7 @@ self: super: { "blogination" = dontDistribute super."blogination"; "bloodhound" = dontDistribute super."bloodhound"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1971,6 +1980,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2006,6 +2016,7 @@ self: super: { "complexity" = dontDistribute super."complexity"; "compose-ltr" = dontDistribute super."compose-ltr"; "compose-trans" = dontDistribute super."compose-trans"; + "composition-tree" = doDistribute super."composition-tree_0_2_0_1"; "compression" = dontDistribute super."compression"; "compstrat" = dontDistribute super."compstrat"; "comptrans" = dontDistribute super."comptrans"; @@ -2259,6 +2270,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -2516,6 +2528,7 @@ self: super: { "docidx" = dontDistribute super."docidx"; "docker" = dontDistribute super."docker"; "dockercook" = dontDistribute super."dockercook"; + "doctest" = doDistribute super."doctest_0_10_1"; "doctest-discover" = dontDistribute super."doctest-discover"; "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; "doctest-prop" = dontDistribute super."doctest-prop"; @@ -3893,6 +3906,7 @@ self: super: { "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; + "hindent" = doDistribute super."hindent_4_6_1"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -4019,6 +4033,7 @@ self: super: { "hoovie" = dontDistribute super."hoovie"; "hopencc" = dontDistribute super."hopencc"; "hopencl" = dontDistribute super."hopencl"; + "hopenpgp-tools" = doDistribute super."hopenpgp-tools_0_17_1"; "hopfield" = dontDistribute super."hopfield"; "hopfield-networks" = dontDistribute super."hopfield-networks"; "hopfli" = dontDistribute super."hopfli"; @@ -4265,6 +4280,7 @@ self: super: { "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" = doDistribute super."http-client-openssl_0_2_0_1"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; @@ -4315,6 +4331,9 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hws" = dontDistribute super."hws"; @@ -4482,6 +4501,7 @@ self: super: { "iothread" = dontDistribute super."iothread"; "iotransaction" = dontDistribute super."iotransaction"; "ip-quoter" = dontDistribute super."ip-quoter"; + "ip6addr" = doDistribute super."ip6addr_0_5_0_1"; "ipatch" = dontDistribute super."ipatch"; "ipc" = dontDistribute super."ipc"; "ipcvar" = dontDistribute super."ipcvar"; @@ -5061,6 +5081,7 @@ self: super: { "mandulia" = dontDistribute super."mandulia"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -5570,6 +5591,7 @@ self: super: { "opaleye-trans" = dontDistribute super."opaleye-trans"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -5611,6 +5633,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "option" = dontDistribute super."option"; "optional" = dontDistribute super."optional"; + "optional-args" = doDistribute super."optional-args_1_0_0"; "options-time" = dontDistribute super."options-time"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "optparse-generic" = dontDistribute super."optparse-generic"; @@ -5710,6 +5733,7 @@ self: super: { "pasty" = dontDistribute super."pasty"; "patch-combinators" = dontDistribute super."patch-combinators"; "patch-image" = dontDistribute super."patch-image"; + "patches-vector" = doDistribute super."patches-vector_0_1_5_1"; "path-io" = doDistribute super."path-io_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; @@ -5756,6 +5780,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -5946,11 +5971,13 @@ self: super: { "prednote-test" = dontDistribute super."prednote-test"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = dontDistribute super."present"; @@ -6334,6 +6361,7 @@ self: super: { "restricted-workers" = dontDistribute super."restricted-workers"; "restyle" = dontDistribute super."restyle"; "resumable-exceptions" = dontDistribute super."resumable-exceptions"; + "rethinkdb" = doDistribute super."rethinkdb_2_2_0_3"; "rethinkdb-model" = dontDistribute super."rethinkdb-model"; "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retryer" = dontDistribute super."retryer"; @@ -6509,6 +6537,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -6612,6 +6641,7 @@ self: super: { "shadowsocks" = dontDistribute super."shadowsocks"; "shady-gen" = dontDistribute super."shady-gen"; "shady-graphics" = dontDistribute super."shady-graphics"; + "shake" = doDistribute super."shake_0_15_5"; "shake-cabal-build" = dontDistribute super."shake-cabal-build"; "shake-extras" = dontDistribute super."shake-extras"; "shake-language-c" = doDistribute super."shake-language-c_0_8_4"; @@ -6619,6 +6649,7 @@ self: super: { "shake-pack" = dontDistribute super."shake-pack"; "shake-persist" = dontDistribute super."shake-persist"; "shaker" = dontDistribute super."shaker"; + "shakespeare" = doDistribute super."shakespeare_2_0_8"; "shakespeare-babel" = dontDistribute super."shakespeare-babel"; "shakespeare-css" = dontDistribute super."shakespeare-css"; "shakespeare-i18n" = dontDistribute super."shakespeare-i18n"; @@ -6644,6 +6675,7 @@ self: super: { "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; "shorten-strings" = dontDistribute super."shorten-strings"; + "should-not-typecheck" = doDistribute super."should-not-typecheck_2_0_1"; "show" = dontDistribute super."show"; "show-type" = dontDistribute super."show-type"; "showdown" = dontDistribute super."showdown"; @@ -6726,6 +6758,7 @@ self: super: { "sloth" = dontDistribute super."sloth"; "slug" = doDistribute super."slug_0_1_2"; "smallarray" = dontDistribute super."smallarray"; + "smallcaps" = doDistribute super."smallcaps_0_6_0_1"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; "smallcheck-lens" = dontDistribute super."smallcheck-lens"; "smallcheck-series" = dontDistribute super."smallcheck-series"; @@ -6870,6 +6903,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -6964,7 +6998,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -7751,6 +7787,7 @@ self: super: { "wai-router" = dontDistribute super."wai-router"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-postgresql" = doDistribute super."wai-session-postgresql_0_2_0_4"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; "wai-static-pages" = dontDistribute super."wai-static-pages"; @@ -7981,6 +8018,7 @@ self: super: { "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_12"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "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"; @@ -8005,6 +8043,7 @@ self: super: { "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.11.nix b/pkgs/development/haskell-modules/configuration-lts-5.11.nix index 5c828e8e63e3..382e9af2de61 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.11.nix @@ -72,6 +72,7 @@ self: super: { "Advgame" = dontDistribute super."Advgame"; "AesonBson" = dontDistribute super."AesonBson"; "Agata" = dontDistribute super."Agata"; + "Agda" = doDistribute super."Agda_2_4_2_5"; "Agda-executable" = dontDistribute super."Agda-executable"; "AhoCorasick" = dontDistribute super."AhoCorasick"; "AlgorithmW" = dontDistribute super."AlgorithmW"; @@ -1086,10 +1087,12 @@ self: super: { "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; "aeson-smart" = dontDistribute super."aeson-smart"; @@ -1255,6 +1258,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = doDistribute super."apiary_1_4_5"; @@ -1270,6 +1274,7 @@ self: super: { "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; "applicative-quoters" = dontDistribute super."applicative-quoters"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = doDistribute super."apply-refact_0_1_0_0"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1310,6 +1315,7 @@ self: super: { "arxiv" = dontDistribute super."arxiv"; "ascetic" = dontDistribute super."ascetic"; "ascii" = dontDistribute super."ascii"; + "ascii-progress" = doDistribute super."ascii-progress_0_3_2_0"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; @@ -1463,6 +1469,7 @@ self: super: { "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1600,6 +1607,7 @@ self: super: { "blas-hs" = dontDistribute super."blas-hs"; "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html-contrib" = dontDistribute super."blaze-html-contrib"; @@ -1616,6 +1624,7 @@ self: super: { "blogination" = dontDistribute super."blogination"; "bloodhound" = dontDistribute super."bloodhound"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1964,6 +1973,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -1999,6 +2009,7 @@ self: super: { "complexity" = dontDistribute super."complexity"; "compose-ltr" = dontDistribute super."compose-ltr"; "compose-trans" = dontDistribute super."compose-trans"; + "composition-tree" = doDistribute super."composition-tree_0_2_0_1"; "compression" = dontDistribute super."compression"; "compstrat" = dontDistribute super."compstrat"; "comptrans" = dontDistribute super."comptrans"; @@ -2251,6 +2262,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -2508,6 +2520,7 @@ self: super: { "docidx" = dontDistribute super."docidx"; "docker" = dontDistribute super."docker"; "dockercook" = dontDistribute super."dockercook"; + "doctest" = doDistribute super."doctest_0_10_1"; "doctest-discover" = dontDistribute super."doctest-discover"; "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; "doctest-prop" = dontDistribute super."doctest-prop"; @@ -3883,6 +3896,7 @@ self: super: { "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; + "hindent" = doDistribute super."hindent_4_6_1"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -4009,6 +4023,7 @@ self: super: { "hoovie" = dontDistribute super."hoovie"; "hopencc" = dontDistribute super."hopencc"; "hopencl" = dontDistribute super."hopencl"; + "hopenpgp-tools" = doDistribute super."hopenpgp-tools_0_17_1"; "hopfield" = dontDistribute super."hopfield"; "hopfield-networks" = dontDistribute super."hopfield-networks"; "hopfli" = dontDistribute super."hopfli"; @@ -4251,6 +4266,7 @@ self: super: { "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" = doDistribute super."http-client-openssl_0_2_0_1"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; @@ -4301,6 +4317,9 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hws" = dontDistribute super."hws"; @@ -4467,6 +4486,7 @@ self: super: { "iothread" = dontDistribute super."iothread"; "iotransaction" = dontDistribute super."iotransaction"; "ip-quoter" = dontDistribute super."ip-quoter"; + "ip6addr" = doDistribute super."ip6addr_0_5_0_1"; "ipatch" = dontDistribute super."ipatch"; "ipc" = dontDistribute super."ipc"; "ipcvar" = dontDistribute super."ipcvar"; @@ -5045,6 +5065,7 @@ self: super: { "mandulia" = dontDistribute super."mandulia"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -5554,6 +5575,7 @@ self: super: { "opaleye-trans" = dontDistribute super."opaleye-trans"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -5595,6 +5617,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "option" = dontDistribute super."option"; "optional" = dontDistribute super."optional"; + "optional-args" = doDistribute super."optional-args_1_0_0"; "options-time" = dontDistribute super."options-time"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "optparse-generic" = dontDistribute super."optparse-generic"; @@ -5694,6 +5717,7 @@ self: super: { "pasty" = dontDistribute super."pasty"; "patch-combinators" = dontDistribute super."patch-combinators"; "patch-image" = dontDistribute super."patch-image"; + "patches-vector" = doDistribute super."patches-vector_0_1_5_1"; "path-io" = doDistribute super."path-io_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; @@ -5740,6 +5764,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -5929,11 +5954,13 @@ self: super: { "prednote-test" = dontDistribute super."prednote-test"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = dontDistribute super."present"; @@ -6317,6 +6344,7 @@ self: super: { "restricted-workers" = dontDistribute super."restricted-workers"; "restyle" = dontDistribute super."restyle"; "resumable-exceptions" = dontDistribute super."resumable-exceptions"; + "rethinkdb" = doDistribute super."rethinkdb_2_2_0_3"; "rethinkdb-model" = dontDistribute super."rethinkdb-model"; "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retryer" = dontDistribute super."retryer"; @@ -6492,6 +6520,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -6595,6 +6624,7 @@ self: super: { "shadowsocks" = dontDistribute super."shadowsocks"; "shady-gen" = dontDistribute super."shady-gen"; "shady-graphics" = dontDistribute super."shady-graphics"; + "shake" = doDistribute super."shake_0_15_5"; "shake-cabal-build" = dontDistribute super."shake-cabal-build"; "shake-extras" = dontDistribute super."shake-extras"; "shake-language-c" = doDistribute super."shake-language-c_0_8_4"; @@ -6602,6 +6632,7 @@ self: super: { "shake-pack" = dontDistribute super."shake-pack"; "shake-persist" = dontDistribute super."shake-persist"; "shaker" = dontDistribute super."shaker"; + "shakespeare" = doDistribute super."shakespeare_2_0_8"; "shakespeare-babel" = dontDistribute super."shakespeare-babel"; "shakespeare-css" = dontDistribute super."shakespeare-css"; "shakespeare-i18n" = dontDistribute super."shakespeare-i18n"; @@ -6627,6 +6658,7 @@ self: super: { "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; "shorten-strings" = dontDistribute super."shorten-strings"; + "should-not-typecheck" = doDistribute super."should-not-typecheck_2_0_1"; "show" = dontDistribute super."show"; "show-type" = dontDistribute super."show-type"; "showdown" = dontDistribute super."showdown"; @@ -6709,6 +6741,7 @@ self: super: { "sloth" = dontDistribute super."sloth"; "slug" = doDistribute super."slug_0_1_2"; "smallarray" = dontDistribute super."smallarray"; + "smallcaps" = doDistribute super."smallcaps_0_6_0_1"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; "smallcheck-lens" = dontDistribute super."smallcheck-lens"; "smallcheck-series" = dontDistribute super."smallcheck-series"; @@ -6853,6 +6886,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -6947,7 +6981,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -7690,6 +7726,7 @@ self: super: { "vulkan" = dontDistribute super."vulkan"; "wacom-daemon" = dontDistribute super."wacom-daemon"; "waddle" = dontDistribute super."waddle"; + "wai" = doDistribute super."wai_3_2_0_1"; "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-devel" = dontDistribute super."wai-devel"; @@ -7725,6 +7762,7 @@ self: super: { "wai-router" = dontDistribute super."wai-router"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-postgresql" = doDistribute super."wai-session-postgresql_0_2_0_4"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; "wai-static-pages" = dontDistribute super."wai-static-pages"; @@ -7955,6 +7993,7 @@ self: super: { "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_13"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "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"; @@ -7977,6 +8016,7 @@ self: super: { "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.12.nix b/pkgs/development/haskell-modules/configuration-lts-5.12.nix index d5dbd2eed589..517485ffb712 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.12.nix @@ -72,6 +72,7 @@ self: super: { "Advgame" = dontDistribute super."Advgame"; "AesonBson" = dontDistribute super."AesonBson"; "Agata" = dontDistribute super."Agata"; + "Agda" = doDistribute super."Agda_2_4_2_5"; "Agda-executable" = dontDistribute super."Agda-executable"; "AhoCorasick" = dontDistribute super."AhoCorasick"; "AlgorithmW" = dontDistribute super."AlgorithmW"; @@ -1085,10 +1086,12 @@ self: super: { "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; "aeson-smart" = dontDistribute super."aeson-smart"; @@ -1254,6 +1257,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = doDistribute super."apiary_1_4_5"; @@ -1269,6 +1273,7 @@ self: super: { "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; "applicative-quoters" = dontDistribute super."applicative-quoters"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = doDistribute super."apply-refact_0_1_0_0"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1309,6 +1314,7 @@ self: super: { "arxiv" = dontDistribute super."arxiv"; "ascetic" = dontDistribute super."ascetic"; "ascii" = dontDistribute super."ascii"; + "ascii-progress" = doDistribute super."ascii-progress_0_3_2_0"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; @@ -1462,6 +1468,7 @@ self: super: { "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1599,6 +1606,7 @@ self: super: { "blas-hs" = dontDistribute super."blas-hs"; "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html-contrib" = dontDistribute super."blaze-html-contrib"; @@ -1615,6 +1623,7 @@ self: super: { "blogination" = dontDistribute super."blogination"; "bloodhound" = dontDistribute super."bloodhound"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1959,6 +1968,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -1994,6 +2004,7 @@ self: super: { "complexity" = dontDistribute super."complexity"; "compose-ltr" = dontDistribute super."compose-ltr"; "compose-trans" = dontDistribute super."compose-trans"; + "composition-tree" = doDistribute super."composition-tree_0_2_0_1"; "compression" = dontDistribute super."compression"; "compstrat" = dontDistribute super."compstrat"; "comptrans" = dontDistribute super."comptrans"; @@ -2246,6 +2257,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -2503,6 +2515,7 @@ self: super: { "docidx" = dontDistribute super."docidx"; "docker" = dontDistribute super."docker"; "dockercook" = dontDistribute super."dockercook"; + "doctest" = doDistribute super."doctest_0_10_1"; "doctest-discover" = dontDistribute super."doctest-discover"; "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; "doctest-prop" = dontDistribute super."doctest-prop"; @@ -3873,6 +3886,7 @@ self: super: { "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; + "hindent" = doDistribute super."hindent_4_6_1"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -3999,6 +4013,7 @@ self: super: { "hoovie" = dontDistribute super."hoovie"; "hopencc" = dontDistribute super."hopencc"; "hopencl" = dontDistribute super."hopencl"; + "hopenpgp-tools" = doDistribute super."hopenpgp-tools_0_17_1"; "hopfield" = dontDistribute super."hopfield"; "hopfield-networks" = dontDistribute super."hopfield-networks"; "hopfli" = dontDistribute super."hopfli"; @@ -4240,6 +4255,7 @@ self: super: { "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" = doDistribute super."http-client-openssl_0_2_0_1"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; @@ -4290,6 +4306,9 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hws" = dontDistribute super."hws"; @@ -4456,6 +4475,7 @@ self: super: { "iothread" = dontDistribute super."iothread"; "iotransaction" = dontDistribute super."iotransaction"; "ip-quoter" = dontDistribute super."ip-quoter"; + "ip6addr" = doDistribute super."ip6addr_0_5_0_1"; "ipatch" = dontDistribute super."ipatch"; "ipc" = dontDistribute super."ipc"; "ipcvar" = dontDistribute super."ipcvar"; @@ -5031,6 +5051,7 @@ self: super: { "mandulia" = dontDistribute super."mandulia"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown-kate" = dontDistribute super."markdown-kate"; @@ -5536,6 +5557,7 @@ self: super: { "opaleye-trans" = dontDistribute super."opaleye-trans"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -5577,6 +5599,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "option" = dontDistribute super."option"; "optional" = dontDistribute super."optional"; + "optional-args" = doDistribute super."optional-args_1_0_0"; "options-time" = dontDistribute super."options-time"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "optparse-generic" = dontDistribute super."optparse-generic"; @@ -5676,6 +5699,7 @@ self: super: { "pasty" = dontDistribute super."pasty"; "patch-combinators" = dontDistribute super."patch-combinators"; "patch-image" = dontDistribute super."patch-image"; + "patches-vector" = doDistribute super."patches-vector_0_1_5_1"; "path-io" = doDistribute super."path-io_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; @@ -5722,6 +5746,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -5909,11 +5934,13 @@ self: super: { "prednote-test" = dontDistribute super."prednote-test"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = dontDistribute super."present"; @@ -6297,6 +6324,7 @@ self: super: { "restricted-workers" = dontDistribute super."restricted-workers"; "restyle" = dontDistribute super."restyle"; "resumable-exceptions" = dontDistribute super."resumable-exceptions"; + "rethinkdb" = doDistribute super."rethinkdb_2_2_0_3"; "rethinkdb-model" = dontDistribute super."rethinkdb-model"; "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retryer" = dontDistribute super."retryer"; @@ -6472,6 +6500,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -6574,6 +6603,7 @@ self: super: { "shadowsocks" = dontDistribute super."shadowsocks"; "shady-gen" = dontDistribute super."shady-gen"; "shady-graphics" = dontDistribute super."shady-graphics"; + "shake" = doDistribute super."shake_0_15_5"; "shake-cabal-build" = dontDistribute super."shake-cabal-build"; "shake-extras" = dontDistribute super."shake-extras"; "shake-language-c" = doDistribute super."shake-language-c_0_8_6"; @@ -6581,6 +6611,7 @@ self: super: { "shake-pack" = dontDistribute super."shake-pack"; "shake-persist" = dontDistribute super."shake-persist"; "shaker" = dontDistribute super."shaker"; + "shakespeare" = doDistribute super."shakespeare_2_0_8"; "shakespeare-babel" = dontDistribute super."shakespeare-babel"; "shakespeare-css" = dontDistribute super."shakespeare-css"; "shakespeare-i18n" = dontDistribute super."shakespeare-i18n"; @@ -6606,6 +6637,7 @@ self: super: { "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; "shorten-strings" = dontDistribute super."shorten-strings"; + "should-not-typecheck" = doDistribute super."should-not-typecheck_2_0_1"; "show" = dontDistribute super."show"; "show-type" = dontDistribute super."show-type"; "showdown" = dontDistribute super."showdown"; @@ -6687,6 +6719,7 @@ self: super: { "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; "smallarray" = dontDistribute super."smallarray"; + "smallcaps" = doDistribute super."smallcaps_0_6_0_1"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; "smallcheck-lens" = dontDistribute super."smallcheck-lens"; "smallcheck-series" = dontDistribute super."smallcheck-series"; @@ -6831,6 +6864,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -6925,7 +6959,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -7664,6 +7700,7 @@ self: super: { "vulkan" = dontDistribute super."vulkan"; "wacom-daemon" = dontDistribute super."wacom-daemon"; "waddle" = dontDistribute super."waddle"; + "wai" = doDistribute super."wai_3_2_0_1"; "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-devel" = dontDistribute super."wai-devel"; @@ -7699,6 +7736,7 @@ self: super: { "wai-router" = dontDistribute super."wai-router"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-postgresql" = doDistribute super."wai-session-postgresql_0_2_0_4"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; "wai-static-pages" = dontDistribute super."wai-static-pages"; @@ -7838,10 +7876,12 @@ self: super: { "xinput-conduit" = dontDistribute super."xinput-conduit"; "xkbcommon" = dontDistribute super."xkbcommon"; "xkcd" = dontDistribute super."xkcd"; + "xlsx" = doDistribute super."xlsx_0_2_1_1"; "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; + "xml-conduit" = doDistribute super."xml-conduit_1_3_4_1"; "xml-enumerator" = dontDistribute super."xml-enumerator"; "xml-enumerator-combinators" = dontDistribute super."xml-enumerator-combinators"; "xml-extractors" = dontDistribute super."xml-extractors"; @@ -7927,6 +7967,7 @@ self: super: { "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_13"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "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"; @@ -7949,6 +7990,7 @@ self: super: { "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.13.nix b/pkgs/development/haskell-modules/configuration-lts-5.13.nix new file mode 100644 index 000000000000..8d104da5586a --- /dev/null +++ b/pkgs/development/haskell-modules/configuration-lts-5.13.nix @@ -0,0 +1,8056 @@ +{ 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-5.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"; + "AFSM" = dontDistribute super."AFSM"; + "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" = doDistribute super."Agda_2_4_2_5"; + "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"; + "BiobaseNewick" = dontDistribute super."BiobaseNewick"; + "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"; + "ChannelT" = dontDistribute super."ChannelT"; + "Chart" = doDistribute super."Chart_1_5_4"; + "Chart-cairo" = doDistribute super."Chart-cairo_1_5_4"; + "Chart-diagrams" = dontDistribute super."Chart-diagrams"; + "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"; + "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"; + "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_10_1_0"; + "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"; + "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"; + "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"; + "ForestStructures" = dontDistribute super."ForestStructures"; + "ForkableT" = dontDistribute super."ForkableT"; + "FormalGrammars" = dontDistribute super."FormalGrammars"; + "Foster" = dontDistribute super."Foster"; + "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; + "Fractaler" = dontDistribute super."Fractaler"; + "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-demo" = dontDistribute super."GLFW-b-demo"; + "GLFW-task" = dontDistribute super."GLFW-task"; + "GLHUI" = dontDistribute super."GLHUI"; + "GLM" = dontDistribute super."GLM"; + "GLMatrix" = dontDistribute super."GLMatrix"; + "GLUtil" = dontDistribute super."GLUtil"; + "GPX" = dontDistribute super."GPX"; + "GPipe-Collada" = dontDistribute super."GPipe-Collada"; + "GPipe-Examples" = dontDistribute super."GPipe-Examples"; + "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"; + "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"; + "Gifcurry" = dontDistribute super."Gifcurry"; + "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"; + "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-mysql" = dontDistribute super."HDBC-mysql"; + "HDBC-odbc" = dontDistribute super."HDBC-odbc"; + "HDBC-postgresql-hstore" = dontDistribute super."HDBC-postgresql-hstore"; + "HDBC-session" = dontDistribute super."HDBC-session"; + "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"; + "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"; + "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"; + "HaskellTorrent" = dontDistribute super."HaskellTorrent"; + "HaskellTutorials" = dontDistribute super."HaskellTutorials"; + "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; + "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"; + "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"; + "IOSpec" = dontDistribute super."IOSpec"; + "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"; + "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"; + "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"; + "Kriens" = dontDistribute super."Kriens"; + "KyotoCabinet" = dontDistribute super."KyotoCabinet"; + "L-seed" = dontDistribute super."L-seed"; + "LATS" = dontDistribute super."LATS"; + "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"; + "Lambdajudge" = dontDistribute super."Lambdajudge"; + "Lambdaya" = dontDistribute super."Lambdaya"; + "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; + "Lastik" = dontDistribute super."Lastik"; + "Lattices" = dontDistribute super."Lattices"; + "Lazy-Pbkdf2" = dontDistribute super."Lazy-Pbkdf2"; + "LazyVault" = dontDistribute super."LazyVault"; + "Level0" = dontDistribute super."Level0"; + "LibClang" = dontDistribute super."LibClang"; + "Limit" = dontDistribute super."Limit"; + "LinearSplit" = dontDistribute super."LinearSplit"; + "LinguisticsTypes" = dontDistribute super."LinguisticsTypes"; + "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"; + "MASMGen" = dontDistribute super."MASMGen"; + "MC-Fold-DP" = dontDistribute super."MC-Fold-DP"; + "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-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"; + "NumberTheory" = dontDistribute super."NumberTheory"; + "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"; + "Obsidian" = dontDistribute super."Obsidian"; + "OddWord" = dontDistribute super."OddWord"; + "Omega" = dontDistribute super."Omega"; + "OneTuple" = dontDistribute super."OneTuple"; + "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"; + "OpenGLCheck" = dontDistribute super."OpenGLCheck"; + "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"; + "PUH-Project" = dontDistribute super."PUH-Project"; + "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"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; + "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"; + "Quelea" = dontDistribute super."Quelea"; + "QuickAnnotate" = dontDistribute super."QuickAnnotate"; + "QuickCheck" = doDistribute super."QuickCheck_2_8_1"; + "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; + "QuickCheck-safe" = dontDistribute super."QuickCheck-safe"; + "QuickPlot" = dontDistribute super."QuickPlot"; + "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" = doDistribute super."RNAlien_1_0_0"; + "RNAwolf" = dontDistribute super."RNAwolf"; + "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"; + "SVGFonts" = dontDistribute super."SVGFonts"; + "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"; + "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"; + "SimpleServer" = dontDistribute super."SimpleServer"; + "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-auth" = dontDistribute super."Spock-auth"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; + "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; + "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"; + "StrappedTemplates" = dontDistribute super."StrappedTemplates"; + "StrategyLib" = dontDistribute super."StrategyLib"; + "Stream" = dontDistribute super."Stream"; + "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"; + "Tahin" = dontDistribute super."Tahin"; + "Tainted" = dontDistribute super."Tainted"; + "Takusen" = dontDistribute super."Takusen"; + "Tape" = dontDistribute super."Tape"; + "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"; + "Verba" = dontDistribute super."Verba"; + "ViennaRNA-bindings" = dontDistribute super."ViennaRNA-bindings"; + "Vulkan" = dontDistribute super."Vulkan"; + "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-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"; + "WordAlignment" = dontDistribute super."WordAlignment"; + "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"; + "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-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-left-pad" = dontDistribute super."acme-left-pad"; + "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"; + "adler32" = dontDistribute super."adler32"; + "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_9_0_1"; + "aeson-applicative" = dontDistribute super."aeson-applicative"; + "aeson-bson" = dontDistribute super."aeson-bson"; + "aeson-diff" = dontDistribute super."aeson-diff"; + "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; + "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-lens" = dontDistribute super."aeson-lens"; + "aeson-native" = dontDistribute super."aeson-native"; + "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; + "aeson-schema" = dontDistribute super."aeson-schema"; + "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"; + "ag-pictgen" = dontDistribute super."ag-pictgen"; + "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" = doDistribute super."airship_0_4_3_0"; + "aivika" = dontDistribute super."aivika"; + "aivika-branches" = dontDistribute super."aivika-branches"; + "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"; + "alga" = dontDistribute super."alga"; + "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_1_3_7"; + "amazonka-apigateway" = doDistribute super."amazonka-apigateway_1_3_7"; + "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_1_3_7"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; + "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_1_3_7"; + "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_1_3_7"; + "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_1_3_7"; + "amazonka-cloudsearch" = doDistribute super."amazonka-cloudsearch_1_3_7"; + "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_1_3_7"; + "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_1_3_7"; + "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_1_3_7"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; + "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_1_3_7"; + "amazonka-codecommit" = doDistribute super."amazonka-codecommit_1_3_7"; + "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_1_3_7"; + "amazonka-codepipeline" = doDistribute super."amazonka-codepipeline_1_3_7"; + "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_1_3_7"; + "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_1_3_7"; + "amazonka-config" = doDistribute super."amazonka-config_1_3_7"; + "amazonka-core" = doDistribute super."amazonka-core_1_3_7"; + "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_1_3_7"; + "amazonka-devicefarm" = doDistribute super."amazonka-devicefarm_1_3_7"; + "amazonka-directconnect" = doDistribute super."amazonka-directconnect_1_3_7"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; + "amazonka-ds" = doDistribute super."amazonka-ds_1_3_7"; + "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_1_3_7"; + "amazonka-dynamodb-streams" = doDistribute super."amazonka-dynamodb-streams_1_3_7"; + "amazonka-ec2" = doDistribute super."amazonka-ec2_1_3_7"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; + "amazonka-ecs" = doDistribute super."amazonka-ecs_1_3_7"; + "amazonka-efs" = doDistribute super."amazonka-efs_1_3_7"; + "amazonka-elasticache" = doDistribute super."amazonka-elasticache_1_3_7"; + "amazonka-elasticbeanstalk" = doDistribute super."amazonka-elasticbeanstalk_1_3_7"; + "amazonka-elasticsearch" = doDistribute super."amazonka-elasticsearch_1_3_7"; + "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_1_3_7"; + "amazonka-elb" = doDistribute super."amazonka-elb_1_3_7"; + "amazonka-emr" = doDistribute super."amazonka-emr_1_3_7"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; + "amazonka-glacier" = doDistribute super."amazonka-glacier_1_3_7"; + "amazonka-iam" = doDistribute super."amazonka-iam_1_3_7"; + "amazonka-importexport" = doDistribute super."amazonka-importexport_1_3_7"; + "amazonka-inspector" = doDistribute super."amazonka-inspector_1_3_7"; + "amazonka-iot" = doDistribute super."amazonka-iot_1_3_7"; + "amazonka-iot-dataplane" = doDistribute super."amazonka-iot-dataplane_1_3_7"; + "amazonka-kinesis" = doDistribute super."amazonka-kinesis_1_3_7"; + "amazonka-kinesis-firehose" = doDistribute super."amazonka-kinesis-firehose_1_3_7"; + "amazonka-kms" = doDistribute super."amazonka-kms_1_3_7"; + "amazonka-lambda" = doDistribute super."amazonka-lambda_1_3_7"; + "amazonka-marketplace-analytics" = doDistribute super."amazonka-marketplace-analytics_1_3_7"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; + "amazonka-ml" = doDistribute super."amazonka-ml_1_3_7"; + "amazonka-opsworks" = doDistribute super."amazonka-opsworks_1_3_7"; + "amazonka-rds" = doDistribute super."amazonka-rds_1_3_7"; + "amazonka-redshift" = doDistribute super."amazonka-redshift_1_3_7"; + "amazonka-route53" = doDistribute super."amazonka-route53_1_3_7"; + "amazonka-route53-domains" = doDistribute super."amazonka-route53-domains_1_3_7"; + "amazonka-s3" = doDistribute super."amazonka-s3_1_3_7"; + "amazonka-sdb" = doDistribute super."amazonka-sdb_1_3_7"; + "amazonka-ses" = doDistribute super."amazonka-ses_1_3_7"; + "amazonka-sns" = doDistribute super."amazonka-sns_1_3_7"; + "amazonka-sqs" = doDistribute super."amazonka-sqs_1_3_7"; + "amazonka-ssm" = doDistribute super."amazonka-ssm_1_3_7"; + "amazonka-storagegateway" = doDistribute super."amazonka-storagegateway_1_3_7"; + "amazonka-sts" = doDistribute super."amazonka-sts_1_3_7"; + "amazonka-support" = doDistribute super."amazonka-support_1_3_7"; + "amazonka-swf" = doDistribute super."amazonka-swf_1_3_7"; + "amazonka-test" = doDistribute super."amazonka-test_1_3_7"; + "amazonka-waf" = doDistribute super."amazonka-waf_1_3_7"; + "amazonka-workspaces" = doDistribute super."amazonka-workspaces_1_3_7"; + "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"; + "annihilator" = dontDistribute super."annihilator"; + "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-field-json-th" = dontDistribute super."api-field-json-th"; + "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; + "api-tools" = dontDistribute super."api-tools"; + "apiary" = doDistribute super."apiary_1_4_5"; + "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; + "apiary-purescript" = dontDistribute super."apiary-purescript"; + "apis" = dontDistribute super."apis"; + "apotiki" = dontDistribute super."apotiki"; + "app-lens" = dontDistribute super."app-lens"; + "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"; + "applicative-quoters" = dontDistribute super."applicative-quoters"; + "applicative-splice" = dontDistribute super."applicative-splice"; + "apply-refact" = doDistribute super."apply-refact_0_1_0_0"; + "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"; + "arena" = dontDistribute super."arena"; + "arff" = dontDistribute super."arff"; + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; + "argon" = doDistribute super."argon_0_4_0_0"; + "argon2" = dontDistribute super."argon2"; + "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"; + "arrows" = dontDistribute super."arrows"; + "artery" = dontDistribute super."artery"; + "arx" = dontDistribute super."arx"; + "arxiv" = dontDistribute super."arxiv"; + "ascetic" = dontDistribute super."ascetic"; + "ascii" = dontDistribute super."ascii"; + "ascii-progress" = doDistribute super."ascii-progress_0_3_2_0"; + "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; + "ascii85-conduit" = dontDistribute super."ascii85-conduit"; + "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; + "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"; + "atndapi" = dontDistribute super."atndapi"; + "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"; + "atp-haskell" = dontDistribute super."atp-haskell"; + "atrans" = dontDistribute super."atrans"; + "attempt" = dontDistribute super."attempt"; + "atto-lisp" = dontDistribute super."atto-lisp"; + "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"; + "autoexporter" = dontDistribute super."autoexporter"; + "automitive-cse" = dontDistribute super."automitive-cse"; + "automotive-cse" = dontDistribute super."automotive-cse"; + "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"; + "avl-static" = dontDistribute super."avl-static"; + "avr-shake" = dontDistribute super."avr-shake"; + "awesome-prelude" = dontDistribute super."awesome-prelude"; + "awesomium" = dontDistribute super."awesomium"; + "awesomium-glut" = dontDistribute super."awesomium-glut"; + "awesomium-raw" = dontDistribute super."awesomium-raw"; + "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"; + "bank-holiday-usa" = dontDistribute super."bank-holiday-usa"; + "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-monad" = dontDistribute super."barrier-monad"; + "base-generics" = dontDistribute super."base-generics"; + "base-io-access" = dontDistribute super."base-io-access"; + "base-prelude" = doDistribute super."base-prelude_0_1_21"; + "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"; + "bbi" = dontDistribute super."bbi"; + "bdd" = dontDistribute super."bdd"; + "bdelta" = dontDistribute super."bdelta"; + "bdo" = dontDistribute super."bdo"; + "beam" = dontDistribute super."beam"; + "beamable" = dontDistribute super."beamable"; + "beautifHOL" = dontDistribute super."beautifHOL"; + "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; + "bein" = dontDistribute super."bein"; + "bench" = dontDistribute super."bench"; + "benchmark-function" = dontDistribute super."benchmark-function"; + "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; + "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"; + "bibdb" = dontDistribute super."bibdb"; + "bibtex" = dontDistribute super."bibtex"; + "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; + "bidispec" = dontDistribute super."bidispec"; + "bidispec-extras" = dontDistribute super."bidispec-extras"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; + "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"; + "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"; + "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-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-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-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-wlc" = dontDistribute super."bindings-wlc"; + "bindings-yices" = dontDistribute super."bindings-yices"; + "bindynamic" = dontDistribute super."bindynamic"; + "binembed" = dontDistribute super."binembed"; + "binembed-example" = dontDistribute super."binembed-example"; + "bini" = dontDistribute super."bini"; + "bio" = dontDistribute super."bio"; + "biohazard" = dontDistribute super."biohazard"; + "bioinformatics-toolkit" = dontDistribute super."bioinformatics-toolkit"; + "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-bytestring" = dontDistribute super."bits-bytestring"; + "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"; + "blas" = dontDistribute super."blas"; + "blas-hs" = dontDistribute super."blas-hs"; + "blatex" = dontDistribute super."blatex"; + "blaze" = dontDistribute super."blaze"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; + "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" = dontDistribute super."bloodhound"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; + "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"; + "bond" = dontDistribute super."bond"; + "bond-haskell" = dontDistribute super."bond-haskell"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; + "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"; + "boombox" = dontDistribute super."boombox"; + "boomslang" = dontDistribute super."boomslang"; + "borel" = dontDistribute super."borel"; + "bot" = dontDistribute super."bot"; + "botpp" = dontDistribute super."botpp"; + "bound-gen" = dontDistribute super."bound-gen"; + "bounded-tchan" = dontDistribute super."bounded-tchan"; + "boundingboxes" = dontDistribute super."boundingboxes"; + "bower-json" = doDistribute super."bower-json_0_7_0_0"; + "bowntz" = dontDistribute super."bowntz"; + "bpann" = dontDistribute super."bpann"; + "braid" = dontDistribute super."braid"; + "brainfuck" = dontDistribute super."brainfuck"; + "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"; + "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-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"; + "buffer-pipe" = dontDistribute super."buffer-pipe"; + "buffon" = dontDistribute super."buffon"; + "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"; + "butterflies" = dontDistribute super."butterflies"; + "bv" = dontDistribute super."bv"; + "byline" = dontDistribute super."byline"; + "bytable" = dontDistribute super."bytable"; + "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"; + "bytestring-tree-builder" = dontDistribute super."bytestring-tree-builder"; + "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_27_1"; + "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-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-info" = dontDistribute super."cabal-info"; + "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-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" = doDistribute super."cacophony_0_4_0"; + "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"; + "caldims" = dontDistribute super."caldims"; + "caledon" = dontDistribute super."caledon"; + "call" = dontDistribute super."call"; + "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; + "camh" = dontDistribute super."camh"; + "campfire" = dontDistribute super."campfire"; + "canonical-filepath" = dontDistribute super."canonical-filepath"; + "canteven-config" = dontDistribute super."canteven-config"; + "canteven-listen-http" = dontDistribute super."canteven-listen-http"; + "canteven-log" = dontDistribute super."canteven-log"; + "canteven-template" = dontDistribute super."canteven-template"; + "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"; + "cartel" = doDistribute super."cartel_0_14_2_8"; + "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms"; + "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"; + "cash" = dontDistribute super."cash"; + "casing" = dontDistribute super."casing"; + "casr-logbook" = dontDistribute super."casr-logbook"; + "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"; + "category-traced" = dontDistribute super."category-traced"; + "cayley-dickson" = dontDistribute super."cayley-dickson"; + "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"; + "cerberus" = dontDistribute super."cerberus"; + "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" = doDistribute super."cgi_3001_2_2_3"; + "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"; + "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-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; + "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; + "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"; + "chorale" = dontDistribute super."chorale"; + "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"; + "clarifai" = dontDistribute super."clarifai"; + "clash" = dontDistribute super."clash"; + "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck"; + "classify" = dontDistribute super."classify"; + "classy-parallel" = dontDistribute super."classy-parallel"; + "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-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"; + "clock" = doDistribute super."clock_0_6_0_1"; + "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"; + "clumpiness" = dontDistribute super."clumpiness"; + "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"; + "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"; + "color-counter" = dontDistribute super."color-counter"; + "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"; + "commander" = dontDistribute super."commander"; + "commodities" = dontDistribute super."commodities"; + "commsec" = dontDistribute super."commsec"; + "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; + "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"; + "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-tree" = doDistribute super."composition-tree_0_2_0_1"; + "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-extra" = dontDistribute super."concurrent-extra"; + "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-rpc" = dontDistribute super."concurrent-rpc"; + "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"; + "cond" = dontDistribute super."cond"; + "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-network-stream" = dontDistribute super."conduit-network-stream"; + "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; + "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; + "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; + "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"; + "constraint-classes" = dontDistribute super."constraint-classes"; + "constructible" = dontDistribute super."constructible"; + "constructive-algebra" = dontDistribute super."constructive-algebra"; + "consumers" = dontDistribute super."consumers"; + "container" = dontDistribute super."container"; + "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"; + "cplex-hs" = dontDistribute super."cplex-hs"; + "cplusplus-th" = dontDistribute super."cplusplus-th"; + "cpphs" = doDistribute super."cpphs_1_19_3"; + "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"; + "craze" = dontDistribute super."craze"; + "crc" = dontDistribute super."crc"; + "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_2"; + "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"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; + "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; + "cryptonite" = doDistribute super."cryptonite_0_10"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; + "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"; + "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"; + "cube" = dontDistribute super."cube"; + "cubical" = dontDistribute super."cubical"; + "cubicbezier" = dontDistribute super."cubicbezier"; + "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"; + "danibot" = dontDistribute super."danibot"; + "dao" = dontDistribute super."dao"; + "dapi" = dontDistribute super."dapi"; + "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-base" = dontDistribute super."data-base"; + "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-construction" = dontDistribute super."data-construction"; + "data-cycle" = dontDistribute super."data-cycle"; + "data-default-extra" = dontDistribute super."data-default-extra"; + "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; + "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; + "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; + "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; + "data-default-instances-text" = dontDistribute super."data-default-instances-text"; + "data-default-instances-unordered-containers" = dontDistribute super."data-default-instances-unordered-containers"; + "data-default-instances-vector" = dontDistribute super."data-default-instances-vector"; + "data-dispersal" = dontDistribute super."data-dispersal"; + "data-dword" = dontDistribute super."data-dword"; + "data-easy" = dontDistribute super."data-easy"; + "data-embed" = dontDistribute super."data-embed"; + "data-endian" = dontDistribute super."data-endian"; + "data-extend-generic" = dontDistribute super."data-extend-generic"; + "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-json-token" = dontDistribute super."data-json-token"; + "data-kiln" = dontDistribute super."data-kiln"; + "data-layer" = dontDistribute super."data-layer"; + "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-result" = dontDistribute super."data-result"; + "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"; + "dawdle" = dontDistribute super."dawdle"; + "dawg" = dontDistribute super."dawg"; + "dbcleaner" = dontDistribute super."dbcleaner"; + "dbf" = dontDistribute super."dbf"; + "dbjava" = dontDistribute super."dbjava"; + "dbmigrations" = doDistribute super."dbmigrations_1_0"; + "dbus-client" = dontDistribute super."dbus-client"; + "dbus-core" = dontDistribute super."dbus-core"; + "dbus-qq" = dontDistribute super."dbus-qq"; + "dbus-th" = dontDistribute super."dbus-th"; + "dbus-th-introspection" = dontDistribute super."dbus-th-introspection"; + "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-binary" = dontDistribute super."debian-binary"; + "debian-build" = dontDistribute super."debian-build"; + "debug-diff" = dontDistribute super."debug-diff"; + "debug-time" = dontDistribute super."debug-time"; + "decepticons" = dontDistribute super."decepticons"; + "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"; + "deka" = dontDistribute super."deka"; + "deka-tests" = dontDistribute super."deka-tests"; + "delaunay" = dontDistribute super."delaunay"; + "delay" = dontDistribute super."delay"; + "delicious" = dontDistribute super."delicious"; + "delimited-text" = dontDistribute super."delimited-text"; + "delimiter-separated" = dontDistribute super."delimiter-separated"; + "delta" = dontDistribute super."delta"; + "delta-h" = dontDistribute super."delta-h"; + "demarcate" = dontDistribute super."demarcate"; + "denominate" = dontDistribute super."denominate"; + "dependent-state" = dontDistribute super."dependent-state"; + "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-monoid" = dontDistribute super."derive-monoid"; + "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-graphviz" = dontDistribute super."diagrams-graphviz"; + "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-reflex" = dontDistribute super."diagrams-reflex"; + "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; + "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "diagrams-wx" = dontDistribute super."diagrams-wx"; + "dialog" = dontDistribute super."dialog"; + "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-foundation-lucid" = dontDistribute super."digestive-foundation-lucid"; + "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-codata" = dontDistribute super."dimensional-codata"; + "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"; + "directory-listing-webpage-parser" = dontDistribute super."directory-listing-webpage-parser"; + "dirfiles" = dontDistribute super."dirfiles"; + "dirstream" = dontDistribute super."dirstream"; + "disassembler" = dontDistribute super."disassembler"; + "discogs-haskell" = dontDistribute super."discogs-haskell"; + "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-closure" = dontDistribute super."distributed-closure"; + "distributed-process" = doDistribute super."distributed-process_0_5_5_1"; + "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-ekg" = dontDistribute super."distributed-process-ekg"; + "distributed-process-execution" = dontDistribute super."distributed-process-execution"; + "distributed-process-extras" = dontDistribute super."distributed-process-extras"; + "distributed-process-lifted" = dontDistribute super."distributed-process-lifted"; + "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"; + "distribution" = dontDistribute super."distribution"; + "distribution-plot" = dontDistribute super."distribution-plot"; + "dixi" = doDistribute super."dixi_0_6_0_5"; + "djembe" = dontDistribute super."djembe"; + "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"; + "doctest" = doDistribute super."doctest_0_10_1"; + "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-parser" = dontDistribute super."dom-parser"; + "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" = doDistribute super."dotenv_0_1_0_9"; + "dotfs" = dontDistribute super."dotfs"; + "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; + "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"; + "dpor" = dontDistribute super."dpor"; + "drClickOn" = dontDistribute super."drClickOn"; + "draw-poker" = dontDistribute super."draw-poker"; + "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; + "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"; + "dynobud" = dontDistribute super."dynobud"; + "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"; + "edis" = dontDistribute super."edis"; + "edit-lenses" = dontDistribute super."edit-lenses"; + "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; + "editable" = dontDistribute super."editable"; + "editline" = dontDistribute super."editline"; + "editpipe" = dontDistribute super."editpipe"; + "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"; + "eithers" = dontDistribute super."eithers"; + "ekg-bosun" = dontDistribute super."ekg-bosun"; + "ekg-carbon" = dontDistribute super."ekg-carbon"; + "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"; + "elision" = dontDistribute super."elision"; + "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-growler" = dontDistribute super."engine-io-growler"; + "engine-io-snap" = dontDistribute super."engine-io-snap"; + "engineering-units" = dontDistribute super."engineering-units"; + "enumerable" = dontDistribute super."enumerable"; + "enumerate" = dontDistribute super."enumerate"; + "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"; + "envelope" = dontDistribute super."envelope"; + "envparse" = dontDistribute super."envparse"; + "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"; + "error-util" = dontDistribute super."error-util"; + "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"; + "eternal" = dontDistribute super."eternal"; + "ether" = doDistribute super."ether_0_3_1_1"; + "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" = doDistribute super."eventstore_0_10_0_2"; + "every-bit-counts" = dontDistribute super."every-bit-counts"; + "ewe" = dontDistribute super."ewe"; + "ex-pool" = dontDistribute super."ex-pool"; + "exact-combinatorics" = dontDistribute super."exact-combinatorics"; + "exception-hierarchy" = dontDistribute super."exception-hierarchy"; + "exception-mailer" = dontDistribute super."exception-mailer"; + "exception-monads-fd" = dontDistribute super."exception-monads-fd"; + "exception-monads-tf" = dontDistribute super."exception-monads-tf"; + "exception-mtl" = dontDistribute super."exception-mtl"; + "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"; + "existential" = dontDistribute super."existential"; + "exists" = dontDistribute super."exists"; + "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; + "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-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"; + "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"; + "fadno-braids" = dontDistribute super."fadno-braids"; + "failable-list" = dontDistribute super."failable-list"; + "failure" = dontDistribute super."failure"; + "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; + "faker" = dontDistribute super."faker"; + "falling-turnip" = dontDistribute super."falling-turnip"; + "fallingblocks" = dontDistribute super."fallingblocks"; + "family-tree" = dontDistribute super."family-tree"; + "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"; + "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"; + "fcache" = dontDistribute super."fcache"; + "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"; + "fftwRaw" = dontDistribute super."fftwRaw"; + "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"; + "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-clumpiness" = dontDistribute super."find-clumpiness"; + "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"; + "fixfile" = dontDistribute super."fixfile"; + "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-maybe" = dontDistribute super."flat-maybe"; + "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-demos" = dontDistribute super."fltkhs-demos"; + "fltkhs-fluid-demos" = dontDistribute super."fltkhs-fluid-demos"; + "fltkhs-fluid-examples" = dontDistribute super."fltkhs-fluid-examples"; + "fltkhs-hello-world" = dontDistribute super."fltkhs-hello-world"; + "fluent-logger" = dontDistribute super."fluent-logger"; + "fluent-logger-conduit" = dontDistribute super."fluent-logger-conduit"; + "fluidsynth" = dontDistribute super."fluidsynth"; + "fmark" = dontDistribute super."fmark"; + "fn" = doDistribute super."fn_0_2_0_2"; + "fn-extra" = doDistribute super."fn-extra_0_2_0_1"; + "fold-debounce" = dontDistribute super."fold-debounce"; + "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit"; + "foldl" = doDistribute super."foldl_1_1_6"; + "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"; + "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"; + "formura" = dontDistribute super."formura"; + "forth-hll" = dontDistribute super."forth-hll"; + "foscam-directory" = dontDistribute super."foscam-directory"; + "foscam-filename" = dontDistribute super."foscam-filename"; + "foscam-sort" = dontDistribute super."foscam-sort"; + "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-concurrent" = dontDistribute super."free-concurrent"; + "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"; + "free-vl" = dontDistribute super."free-vl"; + "freekick2" = dontDistribute super."freekick2"; + "freer" = dontDistribute super."freer"; + "freesect" = dontDistribute super."freesect"; + "freesound" = dontDistribute super."freesound"; + "freetype-simple" = dontDistribute super."freetype-simple"; + "freetype2" = dontDistribute super."freetype2"; + "fresco-binding" = dontDistribute super."fresco-binding"; + "fresh" = dontDistribute super."fresh"; + "friday" = dontDistribute super."friday"; + "friday-devil" = dontDistribute super."friday-devil"; + "friday-juicypixels" = dontDistribute super."friday-juicypixels"; + "friday-scale-dct" = dontDistribute super."friday-scale-dct"; + "friendly-time" = dontDistribute super."friendly-time"; + "frown" = dontDistribute super."frown"; + "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"; + "funcons-tools" = dontDistribute super."funcons-tools"; + "function-combine" = dontDistribute super."function-combine"; + "function-instances-algebra" = dontDistribute super."function-instances-algebra"; + "functional-arrow" = dontDistribute super."functional-arrow"; + "functional-kmp" = dontDistribute super."functional-kmp"; + "functor-apply" = dontDistribute super."functor-apply"; + "functor-combo" = dontDistribute super."functor-combo"; + "functor-infix" = dontDistribute super."functor-infix"; + "functor-monadic" = dontDistribute super."functor-monadic"; + "functor-utils" = dontDistribute super."functor-utils"; + "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"; + "gdo" = dontDistribute super."gdo"; + "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-deriving" = doDistribute super."generic-deriving_1_9_0"; + "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-xml" = dontDistribute super."generic-xml"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; + "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"; + "geo-uk" = dontDistribute super."geo-uk"; + "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-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-dump-tree" = dontDistribute super."ghc-dump-tree"; + "ghc-dup" = dontDistribute super."ghc-dup"; + "ghc-events-analyze" = dontDistribute super."ghc-events-analyze"; + "ghc-events-parallel" = dontDistribute super."ghc-events-parallel"; + "ghc-gc-tune" = dontDistribute super."ghc-gc-tune"; + "ghc-generic-instances" = dontDistribute super."ghc-generic-instances"; + "ghc-imported-from" = dontDistribute super."ghc-imported-from"; + "ghc-make" = dontDistribute super."ghc-make"; + "ghc-man-completion" = dontDistribute super."ghc-man-completion"; + "ghc-options" = dontDistribute super."ghc-options"; + "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-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-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"; + "ghcid" = doDistribute super."ghcid_0_5_1"; + "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; + "ghcjs-dom" = dontDistribute super."ghcjs-dom"; + "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; + "ghcjs-hplay" = dontDistribute super."ghcjs-hplay"; + "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-girepository" = dontDistribute super."gi-girepository"; + "gi-glib" = dontDistribute super."gi-glib"; + "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gst" = dontDistribute super."gi-gst"; + "gi-gstaudio" = dontDistribute super."gi-gstaudio"; + "gi-gstbase" = dontDistribute super."gi-gstbase"; + "gi-gstvideo" = dontDistribute super."gi-gstvideo"; + "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-poppler" = dontDistribute super."gi-poppler"; + "gi-soup" = dontDistribute super."gi-soup"; + "gi-vte" = dontDistribute super."gi-vte"; + "gi-webkit" = dontDistribute super."gi-webkit"; + "gi-webkit2" = dontDistribute super."gi-webkit2"; + "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "gimlh" = dontDistribute super."gimlh"; + "ginger" = dontDistribute super."ginger"; + "ginsu" = dontDistribute super."ginsu"; + "giphy-api" = dontDistribute super."giphy-api"; + "gist" = dontDistribute super."gist"; + "git-all" = dontDistribute super."git-all"; + "git-annex" = doDistribute super."git-annex_6_20160114"; + "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"; + "gitHUD" = dontDistribute super."gitHUD"; + "gitcache" = dontDistribute super."gitcache"; + "gitdo" = dontDistribute super."gitdo"; + "github-backup" = dontDistribute super."github-backup"; + "github-post-receive" = dontDistribute super."github-post-receive"; + "github-utils" = dontDistribute super."github-utils"; + "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"; + "gitter" = dontDistribute super."gitter"; + "givegif" = dontDistribute super."givegif"; + "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"; + "glicko" = dontDistribute super."glicko"; + "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"; + "gnss-converters" = dontDistribute super."gnss-converters"; + "gnuplot" = dontDistribute super."gnuplot"; + "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; + "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-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"; + "googleplus" = dontDistribute super."googleplus"; + "googlepolyline" = dontDistribute super."googlepolyline"; + "gopherbot" = dontDistribute super."gopherbot"; + "gore-and-ash" = dontDistribute super."gore-and-ash"; + "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; + "gore-and-ash-async" = dontDistribute super."gore-and-ash-async"; + "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-glfw" = dontDistribute super."gore-and-ash-glfw"; + "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; + "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; + "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; + "gore-and-ash-sync" = dontDistribute super."gore-and-ash-sync"; + "gpah" = dontDistribute super."gpah"; + "gpcsets" = dontDistribute super."gpcsets"; + "gpio" = dontDistribute super."gpio"; + "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-core" = doDistribute super."graph-core_0_2_2_0"; + "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"; + "grasp" = dontDistribute super."grasp"; + "gray-code" = dontDistribute super."gray-code"; + "gray-extended" = dontDistribute super."gray-extended"; + "graylog" = dontDistribute super."graylog"; + "greencard" = dontDistribute super."greencard"; + "greencard-lib" = dontDistribute super."greencard-lib"; + "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; + "greplicate" = dontDistribute super."greplicate"; + "grid" = dontDistribute super."grid"; + "gridfs" = dontDistribute super."gridfs"; + "gridland" = dontDistribute super."gridland"; + "grm" = dontDistribute super."grm"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; + "groundhog-inspector" = dontDistribute super."groundhog-inspector"; + "group-with" = dontDistribute super."group-with"; + "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"; + "guid" = dontDistribute super."guid"; + "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"; + "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"; + "hackport" = dontDistribute super."hackport"; + "hactor" = dontDistribute super."hactor"; + "hactors" = dontDistribute super."hactors"; + "haddock" = dontDistribute super."haddock"; + "haddock-leksah" = dontDistribute super."haddock-leksah"; + "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"; + "hahp" = dontDistribute super."hahp"; + "haiji" = dontDistribute super."haiji"; + "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-filestore" = dontDistribute super."hakyll-filestore"; + "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"; + "handa-opengl" = dontDistribute super."handa-opengl"; + "handle-like" = dontDistribute super."handle-like"; + "handsy" = dontDistribute super."handsy"; + "handwriting" = dontDistribute super."handwriting"; + "hangman" = dontDistribute super."hangman"; + "hannahci" = dontDistribute super."hannahci"; + "hans" = dontDistribute super."hans"; + "hans-pcap" = dontDistribute super."hans-pcap"; + "hans-pfq" = dontDistribute super."hans-pfq"; + "haphviz" = dontDistribute super."haphviz"; + "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-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-hstringtemplate" = dontDistribute super."happstack-hstringtemplate"; + "happstack-ixset" = dontDistribute super."happstack-ixset"; + "happstack-lite" = dontDistribute super."happstack-lite"; + "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; + "happstack-plugins" = dontDistribute super."happstack-plugins"; + "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"; + "hapstone" = dontDistribute super."hapstone"; + "har" = dontDistribute super."har"; + "harchive" = dontDistribute super."harchive"; + "hardware-edsl" = dontDistribute super."hardware-edsl"; + "hark" = dontDistribute super."hark"; + "harmony" = dontDistribute super."harmony"; + "haroonga" = dontDistribute super."haroonga"; + "haroonga-httpd" = dontDistribute super."haroonga-httpd"; + "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"; + "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_2"; + "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-kubernetes" = dontDistribute super."haskell-kubernetes"; + "haskell-modbus" = dontDistribute super."haskell-modbus"; + "haskell-mpfr" = dontDistribute super."haskell-mpfr"; + "haskell-mpi" = dontDistribute super."haskell-mpi"; + "haskell-names" = dontDistribute super."haskell-names"; + "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-tor" = dontDistribute super."haskell-tor"; + "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"; + "haskmon" = dontDistribute super."haskmon"; + "haskoin" = dontDistribute super."haskoin"; + "haskoin-core" = dontDistribute super."haskoin-core"; + "haskoin-crypto" = dontDistribute super."haskoin-crypto"; + "haskoin-node" = dontDistribute super."haskoin-node"; + "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" = doDistribute super."hasql_0_19_6"; + "hasql-optparse-applicative" = dontDistribute super."hasql-optparse-applicative"; + "hasql-pool" = dontDistribute super."hasql-pool"; + "hasql-postgres" = dontDistribute super."hasql-postgres"; + "hasql-postgres-options" = dontDistribute super."hasql-postgres-options"; + "hasql-th" = dontDistribute super."hasql-th"; + "hasql-transaction" = dontDistribute super."hasql-transaction"; + "hastache-aeson" = dontDistribute super."hastache-aeson"; + "haste" = dontDistribute super."haste"; + "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-gapi" = dontDistribute super."haste-gapi"; + "haste-markup" = dontDistribute super."haste-markup"; + "haste-perch" = dontDistribute super."haste-perch"; + "hastily" = dontDistribute super."hastily"; + "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-amazonka" = dontDistribute super."haxl-amazonka"; + "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"; + "hcoap" = dontDistribute super."hcoap"; + "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"; + "hdr-histogram" = dontDistribute super."hdr-histogram"; + "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"; + "helix" = dontDistribute super."helix"; + "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"; + "herf-time" = dontDistribute super."herf-time"; + "hermit" = dontDistribute super."hermit"; + "hermit-syb" = dontDistribute super."hermit-syb"; + "hero-club-five-tenets" = dontDistribute super."hero-club-five-tenets"; + "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"; + "hesh" = dontDistribute super."hesh"; + "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"; + "hformat" = dontDistribute super."hformat"; + "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"; + "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"; + "hi3status" = dontDistribute super."hi3status"; + "hiccup" = dontDistribute super."hiccup"; + "hichi" = dontDistribute super."hichi"; + "hieraclus" = dontDistribute super."hieraclus"; + "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"; + "hindent" = doDistribute super."hindent_4_6_1"; + "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" = doDistribute super."hint_0_4_3"; + "hint-server" = dontDistribute super."hint-server"; + "hinvaders" = dontDistribute super."hinvaders"; + "hinze-streams" = dontDistribute super."hinze-streams"; + "hip" = dontDistribute super."hip"; + "hipbot" = dontDistribute super."hipbot"; + "hipchat-hs" = dontDistribute super."hipchat-hs"; + "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"; + "hit-graph" = dontDistribute super."hit-graph"; + "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"; + "hkdf" = dontDistribute super."hkdf"; + "hlatex" = dontDistribute super."hlatex"; + "hlbfgsb" = dontDistribute super."hlbfgsb"; + "hlcm" = dontDistribute super."hlcm"; + "hleap" = dontDistribute super."hleap"; + "hledger-chart" = dontDistribute super."hledger-chart"; + "hledger-diff" = dontDistribute super."hledger-diff"; + "hledger-irr" = dontDistribute super."hledger-irr"; + "hledger-vty" = dontDistribute super."hledger-vty"; + "hlibBladeRF" = dontDistribute super."hlibBladeRF"; + "hlibev" = dontDistribute super."hlibev"; + "hlibfam" = dontDistribute super."hlibfam"; + "hlint" = doDistribute super."hlint_1_9_31"; + "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-banded" = dontDistribute super."hmatrix-banded"; + "hmatrix-csv" = dontDistribute super."hmatrix-csv"; + "hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; + "hmatrix-mmap" = dontDistribute super."hmatrix-mmap"; + "hmatrix-nipals" = dontDistribute super."hmatrix-nipals"; + "hmatrix-quadprogpp" = dontDistribute super."hmatrix-quadprogpp"; + "hmatrix-repa" = dontDistribute super."hmatrix-repa"; + "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" = doDistribute super."hopenpgp-tools_0_17_1"; + "hopfield" = dontDistribute super."hopfield"; + "hopfield-networks" = dontDistribute super."hopfield-networks"; + "hopfli" = dontDistribute super."hopfli"; + "hoppy-generator" = dontDistribute super."hoppy-generator"; + "hoppy-runtime" = dontDistribute super."hoppy-runtime"; + "hoppy-std" = dontDistribute super."hoppy-std"; + "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-strobe" = dontDistribute super."hpc-strobe"; + "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hpdft" = dontDistribute super."hpdft"; + "hplayground" = dontDistribute super."hplayground"; + "hplaylist" = dontDistribute super."hplaylist"; + "hpodder" = dontDistribute super."hpodder"; + "hpp" = dontDistribute super."hpp"; + "hpqtypes" = dontDistribute super."hpqtypes"; + "hprotoc" = doDistribute super."hprotoc_2_1_12"; + "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"; + "hscolour" = doDistribute super."hscolour_1_23"; + "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"; + "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"; + "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-storablevector" = dontDistribute super."hsndfile-storablevector"; + "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-cgi" = dontDistribute super."hsp-cgi"; + "hsparklines" = dontDistribute super."hsparklines"; + "hsparql" = dontDistribute super."hsparql"; + "hspear" = dontDistribute super."hspear"; + "hspec-checkers" = dontDistribute super."hspec-checkers"; + "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-experimental" = dontDistribute super."hspec-experimental"; + "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-monad-control" = dontDistribute super."hspec-monad-control"; + "hspec-server" = dontDistribute super."hspec-server"; + "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "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-wai" = doDistribute super."hspec-wai_0_6_5"; + "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"; + "hsseccomp" = dontDistribute super."hsseccomp"; + "hsshellscript" = dontDistribute super."hsshellscript"; + "hssourceinfo" = dontDistribute super."hssourceinfo"; + "hssqlppp" = dontDistribute super."hssqlppp"; + "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-xhtml" = dontDistribute super."hsx-xhtml"; + "hsyscall" = dontDistribute super."hsyscall"; + "hszephyr" = dontDistribute super."hszephyr"; + "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-parse" = dontDistribute super."html-parse"; + "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-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-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-session" = dontDistribute super."http-client-session"; + "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-kinder" = dontDistribute super."http-kinder"; + "http-kit" = dontDistribute super."http-kit"; + "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-response-decoder" = dontDistribute super."http-response-decoder"; + "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_4_5"; + "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"; + "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"; + "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; + "hw-succinct" = dontDistribute super."hw-succinct"; + "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; + "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"; + "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"; + "hylogen" = dontDistribute super."hylogen"; + "hylolib" = dontDistribute super."hylolib"; + "hylotab" = dontDistribute super."hylotab"; + "hyloutils" = dontDistribute super."hyloutils"; + "hyperdrive" = dontDistribute super."hyperdrive"; + "hyperfunctions" = dontDistribute super."hyperfunctions"; + "hyperpublic" = dontDistribute super."hyperpublic"; + "hyphenate" = dontDistribute super."hyphenate"; + "hypher" = dontDistribute super."hypher"; + "hzaif" = dontDistribute super."hzaif"; + "hzk" = dontDistribute super."hzk"; + "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"; + "ibus-hs" = dontDistribute super."ibus-hs"; + "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" = doDistribute super."ig_0_6_1"; + "ige-mac-integration" = dontDistribute super."ige-mac-integration"; + "igraph" = dontDistribute super."igraph"; + "igrf" = dontDistribute super."igrf"; + "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"; + "imap" = dontDistribute super."imap"; + "imapget" = dontDistribute super."imapget"; + "imbib" = dontDistribute super."imbib"; + "imgurder" = dontDistribute super."imgurder"; + "imm" = dontDistribute super."imm"; + "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; + "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; + "implicit" = dontDistribute super."implicit"; + "implicit-logging" = dontDistribute super."implicit-logging"; + "implicit-params" = dontDistribute super."implicit-params"; + "imports" = dontDistribute super."imports"; + "impossible" = dontDistribute super."impossible"; + "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"; + "inf-interval" = dontDistribute super."inf-interval"; + "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-win32" = dontDistribute super."inline-c-win32"; + "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; + "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"; + "interruptible" = dontDistribute super."interruptible"; + "interspersed" = dontDistribute super."interspersed"; + "intricacy" = dontDistribute super."intricacy"; + "intset" = dontDistribute super."intset"; + "invertible-syntax" = dontDistribute super."invertible-syntax"; + "io-capture" = dontDistribute super."io-capture"; + "io-machine" = dontDistribute super."io-machine"; + "io-reactive" = dontDistribute super."io-reactive"; + "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"; + "iptables-helpers" = dontDistribute super."iptables-helpers"; + "iptadmin" = dontDistribute super."iptadmin"; + "irc-bytestring" = dontDistribute super."irc-bytestring"; + "irc-colors" = dontDistribute super."irc-colors"; + "irc-core" = dontDistribute super."irc-core"; + "irc-dcc" = dontDistribute super."irc-dcc"; + "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"; + "irc-fun-types" = dontDistribute super."irc-fun-types"; + "ircbot" = dontDistribute super."ircbot"; + "ircbouncer" = dontDistribute super."ircbouncer"; + "ireal" = dontDistribute super."ireal"; + "iridium" = dontDistribute super."iridium"; + "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"; + "isohunt" = dontDistribute super."isohunt"; + "ispositive" = dontDistribute super."ispositive"; + "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-artifact" = dontDistribute super."ivory-artifact"; + "ivory-backend-c" = dontDistribute super."ivory-backend-c"; + "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-eval" = dontDistribute super."ivory-eval"; + "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-serialize" = dontDistribute super."ivory-serialize"; + "ivory-stdlib" = dontDistribute super."ivory-stdlib"; + "ivy-web" = dontDistribute super."ivy-web"; + "ixdopp" = dontDistribute super."ixdopp"; + "ixmonad" = dontDistribute super."ixmonad"; + "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-poker" = dontDistribute super."java-poker"; + "java-reflect" = dontDistribute super."java-reflect"; + "javaclass" = dontDistribute super."javaclass"; + "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"; + "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-ast" = dontDistribute super."json-ast"; + "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; + "json-b" = dontDistribute super."json-b"; + "json-encoder" = dontDistribute super."json-encoder"; + "json-enumerator" = dontDistribute super."json-enumerator"; + "json-extra" = dontDistribute super."json-extra"; + "json-fu" = dontDistribute super."json-fu"; + "json-incremental-decoder" = dontDistribute super."json-incremental-decoder"; + "json-litobj" = dontDistribute super."json-litobj"; + "json-pointer" = dontDistribute super."json-pointer"; + "json-pointer-hasql" = dontDistribute super."json-pointer-hasql"; + "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"; + "juandelacosa" = dontDistribute super."juandelacosa"; + "judy" = dontDistribute super."judy"; + "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; + "jumpthefive" = dontDistribute super."jumpthefive"; + "jvm-parser" = dontDistribute super."jvm-parser"; + "jwt" = doDistribute super."jwt_0_6_0"; + "kademlia" = dontDistribute super."kademlia"; + "kafka-client" = dontDistribute super."kafka-client"; + "kangaroo" = dontDistribute super."kangaroo"; + "kanji" = dontDistribute super."kanji"; + "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"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; + "katt" = dontDistribute super."katt"; + "kazura-queue" = dontDistribute super."kazura-queue"; + "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"; + "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" = dontDistribute super."lambdabot"; + "lambdabot-core" = dontDistribute super."lambdabot-core"; + "lambdabot-haskell-plugins" = dontDistribute super."lambdabot-haskell-plugins"; + "lambdabot-irc-plugins" = dontDistribute super."lambdabot-irc-plugins"; + "lambdabot-misc-plugins" = dontDistribute super."lambdabot-misc-plugins"; + "lambdabot-novelty-plugins" = dontDistribute super."lambdabot-novelty-plugins"; + "lambdabot-reference-plugins" = dontDistribute super."lambdabot-reference-plugins"; + "lambdabot-social-plugins" = dontDistribute super."lambdabot-social-plugins"; + "lambdabot-trusted" = dontDistribute super."lambdabot-trusted"; + "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-compiler" = dontDistribute super."lambdacube-compiler"; + "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-ir" = dontDistribute super."lambdacube-ir"; + "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; + "lambdatwit" = dontDistribute super."lambdatwit"; + "lambdaya-bus" = dontDistribute super."lambdaya-bus"; + "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" = doDistribute super."language-c_0_4_7"; + "language-c-comments" = dontDistribute super."language-c-comments"; + "language-c-inline" = dontDistribute super."language-c-inline"; + "language-c-quote" = dontDistribute super."language-c-quote"; + "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-mixal" = dontDistribute super."language-mixal"; + "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" = doDistribute super."language-thrift_0_7_0_1"; + "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"; + "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"; + "lazysmallcheck" = dontDistribute super."lazysmallcheck"; + "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"; + "leancheck" = dontDistribute super."leancheck"; + "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-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"; + "lens-utils" = dontDistribute super."lens-utils"; + "lenses" = dontDistribute super."lenses"; + "lensref" = dontDistribute super."lensref"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; + "level-monad" = dontDistribute super."level-monad"; + "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; + "levmar" = dontDistribute super."levmar"; + "levmar-chart" = dontDistribute super."levmar-chart"; + "lfst" = dontDistribute super."lfst"; + "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"; + "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"; + "libtagc" = dontDistribute super."libtagc"; + "libvirt-hs" = dontDistribute super."libvirt-hs"; + "libvorbis" = dontDistribute super."libvorbis"; + "libxls" = dontDistribute super."libxls"; + "libxml" = dontDistribute super."libxml"; + "libxml-enumerator" = dontDistribute super."libxml-enumerator"; + "libxslt" = dontDistribute super."libxslt"; + "life" = dontDistribute super."life"; + "lift-generics" = dontDistribute super."lift-generics"; + "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"; + "link-relations" = dontDistribute super."link-relations"; + "linkchk" = dontDistribute super."linkchk"; + "linkcore" = dontDistribute super."linkcore"; + "linkedhashmap" = dontDistribute super."linkedhashmap"; + "linklater" = dontDistribute super."linklater"; + "linode" = dontDistribute super."linode"; + "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"; + "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "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"; + "list-zip-def" = dontDistribute super."list-zip-def"; + "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"; + "lmonad" = dontDistribute super."lmonad"; + "lmonad-yesod" = dontDistribute super."lmonad-yesod"; + "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"; + "locked-poll" = dontDistribute super."locked-poll"; + "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-effect" = dontDistribute super."logging-effect"; + "logging-facade-journald" = dontDistribute super."logging-facade-journald"; + "logic-TPTP" = dontDistribute super."logic-TPTP"; + "logic-classes" = dontDistribute super."logic-classes"; + "logicst" = dontDistribute super."logicst"; + "logict-state" = dontDistribute super."logict-state"; + "logplex-parse" = dontDistribute super."logplex-parse"; + "logsink" = dontDistribute super."logsink"; + "lojban" = dontDistribute super."lojban"; + "lojbanParser" = dontDistribute super."lojbanParser"; + "lojbanXiragan" = dontDistribute super."lojbanXiragan"; + "lojysamban" = dontDistribute super."lojysamban"; + "lol" = dontDistribute super."lol"; + "lol-apps" = dontDistribute super."lol-apps"; + "loli" = dontDistribute super."loli"; + "lookup-tables" = dontDistribute super."lookup-tables"; + "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"; + "lp-diagrams" = dontDistribute super."lp-diagrams"; + "lp-diagrams-svg" = dontDistribute super."lp-diagrams-svg"; + "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"; + "luis-client" = dontDistribute super."luis-client"; + "luka" = dontDistribute super."luka"; + "luminance" = doDistribute super."luminance_0_9_1_2"; + "luminance-samples" = doDistribute super."luminance-samples_0_9_1"; + "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"; + "macbeth-lib" = dontDistribute super."macbeth-lib"; + "maccatcher" = dontDistribute super."maccatcher"; + "machinecell" = dontDistribute super."machinecell"; + "machines-binary" = dontDistribute super."machines-binary"; + "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"; + "mainland-pretty" = dontDistribute super."mainland-pretty"; + "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"; + "mandulia" = dontDistribute super."mandulia"; + "manifold-random" = dontDistribute super."manifold-random"; + "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; + "mappy" = dontDistribute super."mappy"; + "marionetta" = dontDistribute super."marionetta"; + "markdown-kate" = dontDistribute super."markdown-kate"; + "markdown-pap" = dontDistribute super."markdown-pap"; + "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-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"; + "matcher" = dontDistribute super."matcher"; + "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"; + "mcpi" = dontDistribute super."mcpi"; + "mdapi" = dontDistribute super."mdapi"; + "mdcat" = dontDistribute super."mdcat"; + "mdo" = dontDistribute super."mdo"; + "mdp" = dontDistribute super."mdp"; + "mecab" = dontDistribute super."mecab"; + "mecha" = dontDistribute super."mecha"; + "mediawiki" = dontDistribute super."mediawiki"; + "mediawiki2latex" = dontDistribute super."mediawiki2latex"; + "medium-sdk-haskell" = dontDistribute super."medium-sdk-haskell"; + "meep" = dontDistribute super."meep"; + "mega-sdist" = dontDistribute super."mega-sdist"; + "megaparsec" = doDistribute super."megaparsec_4_3_0"; + "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"; + "memory" = doDistribute super."memory_0_11"; + "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-types" = dontDistribute super."microformats2-types"; + "microlens" = doDistribute super."microlens_0_4_2_1"; + "microlens-each" = dontDistribute super."microlens-each"; + "microlens-ghc" = doDistribute super."microlens-ghc_0_4_2_1"; + "microlens-platform" = doDistribute super."microlens-platform_0_2_3_1"; + "microlens-th" = doDistribute super."microlens-th_0_3_0_2"; + "microtimer" = dontDistribute super."microtimer"; + "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; + "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"; + "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"; + "minilens" = dontDistribute super."minilens"; + "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"; + "mnist-idx" = dontDistribute super."mnist-idx"; + "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"; + "mohws" = dontDistribute super."mohws"; + "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-connect" = dontDistribute super."monad-connect"; + "monad-exception" = dontDistribute super."monad-exception"; + "monad-fork" = dontDistribute super."monad-fork"; + "monad-gen" = dontDistribute super."monad-gen"; + "monad-hash" = dontDistribute super."monad-hash"; + "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-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"; + "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-pp" = dontDistribute super."monadloc-pp"; + "monadplus" = dontDistribute super."monadplus"; + "monads-fd" = dontDistribute super."monads-fd"; + "monadtransform" = dontDistribute super."monadtransform"; + "monarch" = dontDistribute super."monarch"; + "mondo" = dontDistribute super."mondo"; + "mongodb-queue" = dontDistribute super."mongodb-queue"; + "mongrel2-handler" = dontDistribute super."mongrel2-handler"; + "monitor" = dontDistribute super."monitor"; + "mono-foldable" = dontDistribute super."mono-foldable"; + "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" = doDistribute super."morte_1_4_2"; + "mosaico-lib" = dontDistribute super."mosaico-lib"; + "mount" = dontDistribute super."mount"; + "mountpoints" = dontDistribute super."mountpoints"; + "mp" = dontDistribute super."mp"; + "mp3decoder" = dontDistribute super."mp3decoder"; + "mpdmate" = dontDistribute super."mpdmate"; + "mpppc" = dontDistribute super."mpppc"; + "mpretty" = dontDistribute super."mpretty"; + "mpris" = dontDistribute super."mpris"; + "mprover" = dontDistribute super."mprover"; + "mps" = dontDistribute super."mps"; + "mpvguihs" = dontDistribute super."mpvguihs"; + "mqtt-hs" = dontDistribute super."mqtt-hs"; + "mrm" = dontDistribute super."mrm"; + "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"; + "mueval" = dontDistribute super."mueval"; + "mulang" = dontDistribute super."mulang"; + "multext-east-msd" = dontDistribute super."multext-east-msd"; + "multi-cabal" = dontDistribute super."multi-cabal"; + "multiaddr" = dontDistribute super."multiaddr"; + "multifocal" = dontDistribute super."multifocal"; + "multihash" = dontDistribute super."multihash"; + "multipart-names" = dontDistribute super."multipart-names"; + "multipass" = dontDistribute super."multipass"; + "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"; + "murmur" = dontDistribute super."murmur"; + "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-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" = doDistribute super."mwc-probability_1_0_3"; + "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-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-erl" = dontDistribute super."nano-erl"; + "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"; + "nanovg" = dontDistribute super."nanovg"; + "nanq" = dontDistribute super."nanq"; + "narc" = dontDistribute super."narc"; + "nat" = dontDistribute super."nat"; + "nats-queue" = dontDistribute super."nats-queue"; + "natural-number" = dontDistribute super."natural-number"; + "natural-numbers" = dontDistribute super."natural-numbers"; + "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-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-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-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-inmemory" = dontDistribute super."network-transport-inmemory"; + "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_2"; + "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"; + "niagra" = dontDistribute super."niagra"; + "nibblestring" = dontDistribute super."nibblestring"; + "nicify" = dontDistribute super."nicify"; + "nicovideo-translator" = dontDistribute super."nicovideo-translator"; + "nikepub" = dontDistribute super."nikepub"; + "nimber" = dontDistribute super."nimber"; + "nist-beacon" = dontDistribute super."nist-beacon"; + "nitro" = dontDistribute super."nitro"; + "nix-eval" = dontDistribute super."nix-eval"; + "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-analyse" = dontDistribute super."nofib-analyse"; + "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"; + "nonempty-alternative" = dontDistribute super."nonempty-alternative"; + "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"; + "number-length" = dontDistribute super."number-length"; + "numbering" = dontDistribute super."numbering"; + "numerals" = dontDistribute super."numerals"; + "numerals-base" = dontDistribute super."numerals-base"; + "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-ranges" = dontDistribute super."numeric-ranges"; + "numeric-tools" = dontDistribute super."numeric-tools"; + "numericpeano" = dontDistribute super."numericpeano"; + "nums" = dontDistribute super."nums"; + "numtype" = dontDistribute super."numtype"; + "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"; + "oanda-rest-api" = dontDistribute super."oanda-rest-api"; + "oauthenticated" = dontDistribute super."oauthenticated"; + "obdd" = dontDistribute super."obdd"; + "oberon0" = dontDistribute super."oberon0"; + "obj" = dontDistribute super."obj"; + "objectid" = dontDistribute super."objectid"; + "objective" = doDistribute super."objective_1_0_5"; + "observable-sharing" = dontDistribute super."observable-sharing"; + "octane" = dontDistribute super."octane"; + "octohat" = dontDistribute super."octohat"; + "octopus" = dontDistribute super."octopus"; + "oculus" = dontDistribute super."oculus"; + "oden-go-packages" = dontDistribute super."oden-go-packages"; + "oeis" = dontDistribute super."oeis"; + "off-simple" = dontDistribute super."off-simple"; + "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"; + "opaleye-classy" = dontDistribute super."opaleye-classy"; + "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; + "opaleye-trans" = dontDistribute super."opaleye-trans"; + "open-haddock" = dontDistribute super."open-haddock"; + "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; + "open-symbology" = dontDistribute super."open-symbology"; + "open-typerep" = dontDistribute super."open-typerep"; + "open-union" = dontDistribute super."open-union"; + "open-witness" = dontDistribute super."open-witness"; + "opencog-atomspace" = dontDistribute super."opencog-atomspace"; + "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"; + "operational-extra" = dontDistribute super."operational-extra"; + "opml" = dontDistribute super."opml"; + "opml-conduit" = doDistribute super."opml-conduit_0_4_0_1"; + "opn" = dontDistribute super."opn"; + "optimal-blocks" = dontDistribute super."optimal-blocks"; + "optimization" = dontDistribute super."optimization"; + "optimusprime" = dontDistribute super."optimusprime"; + "option" = dontDistribute super."option"; + "optional" = dontDistribute super."optional"; + "options-time" = dontDistribute super."options-time"; + "optparse-declarative" = dontDistribute super."optparse-declarative"; + "optparse-generic" = dontDistribute super."optparse-generic"; + "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-statistic-tree" = dontDistribute super."order-statistic-tree"; + "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-conduit" = dontDistribute super."osm-conduit"; + "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"; + "overloaded-records" = dontDistribute super."overloaded-records"; + "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"; + "packman" = dontDistribute super."packman"; + "packunused" = dontDistribute super."packunused"; + "pacman-memcache" = dontDistribute super."pacman-memcache"; + "padKONTROL" = dontDistribute super."padKONTROL"; + "pagarme" = dontDistribute super."pagarme"; + "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_16_0_2"; + "pandoc-citeproc-preamble" = dontDistribute super."pandoc-citeproc-preamble"; + "pandoc-crossref" = dontDistribute super."pandoc-crossref"; + "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; + "pandoc-include" = dontDistribute super."pandoc-include"; + "pandoc-japanese-filters" = dontDistribute super."pandoc-japanese-filters"; + "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"; + "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"; + "partage" = dontDistribute super."partage"; + "partial" = dontDistribute super."partial"; + "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" = doDistribute super."patches-vector_0_1_5_1"; + "path-io" = doDistribute super."path-io_0_2_0"; + "pathfinding" = dontDistribute super."pathfinding"; + "pathfindingcore" = dontDistribute super."pathfindingcore"; + "pathtype" = dontDistribute super."pathtype"; + "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-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-less" = dontDistribute super."pcre-less"; + "pcre-light-extra" = dontDistribute super."pcre-light-extra"; + "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"; + "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; + "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; + "persistent-equivalence" = dontDistribute super."persistent-equivalence"; + "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; + "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; + "persistent-iproute" = dontDistribute super."persistent-iproute"; + "persistent-map" = dontDistribute super."persistent-map"; + "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"; + "pgsql-simple" = dontDistribute super."pgsql-simple"; + "pgstream" = dontDistribute super."pgstream"; + "phasechange" = dontDistribute super."phasechange"; + "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; + "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"; + "pinchot" = doDistribute super."pinchot_0_6_0_0"; + "pipe-enumerator" = dontDistribute super."pipe-enumerator"; + "pipeclip" = dontDistribute super."pipeclip"; + "pipes-async" = dontDistribute super."pipes-async"; + "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; + "pipes-bzip" = dontDistribute super."pipes-bzip"; + "pipes-cacophony" = doDistribute super."pipes-cacophony_0_1_3"; + "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-errors" = dontDistribute super."pipes-errors"; + "pipes-extra" = dontDistribute super."pipes-extra"; + "pipes-files" = dontDistribute super."pipes-files"; + "pipes-interleave" = dontDistribute super."pipes-interleave"; + "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; + "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-transduce" = dontDistribute super."pipes-transduce"; + "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"; + "plan-b" = dontDistribute super."plan-b"; + "planar-graph" = dontDistribute super."planar-graph"; + "plat" = dontDistribute super."plat"; + "playlists" = dontDistribute super."playlists"; + "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; + "plivo" = dontDistribute super."plivo"; + "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"; + "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"; + "poly-control" = dontDistribute super."poly-control"; + "polyToMonoid" = dontDistribute super."polyToMonoid"; + "polymap" = dontDistribute super."polymap"; + "polynom" = dontDistribute super."polynom"; + "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"; + "pong-server" = dontDistribute super."pong-server"; + "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"; + "postcodes" = dontDistribute super."postcodes"; + "postgresql-binary" = doDistribute super."postgresql-binary_0_7_9"; + "postgresql-config" = dontDistribute super."postgresql-config"; + "postgresql-connector" = dontDistribute super."postgresql-connector"; + "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; + "postgresql-cube" = dontDistribute super."postgresql-cube"; + "postgresql-error-codes" = dontDistribute super."postgresql-error-codes"; + "postgresql-query" = dontDistribute super."postgresql-query"; + "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"; + "predicates" = dontDistribute super."predicates"; + "prednote-test" = dontDistribute super."prednote-test"; + "prefork" = dontDistribute super."prefork"; + "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; + "prelude-edsl" = dontDistribute super."prelude-edsl"; + "prelude-generalize" = dontDistribute super."prelude-generalize"; + "prelude-plus" = dontDistribute super."prelude-plus"; + "prelude-prime" = dontDistribute super."prelude-prime"; + "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; + "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"; + "primitive-simd" = dontDistribute super."primitive-simd"; + "primula-board" = dontDistribute super."primula-board"; + "primula-bot" = dontDistribute super."primula-bot"; + "print-debugger" = dontDistribute super."print-debugger"; + "printf-mauke" = dontDistribute super."printf-mauke"; + "printf-safe" = dontDistribute super."printf-safe"; + "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-extras" = doDistribute super."process-extras_0_3_3_7"; + "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"; + "product-profunctors" = doDistribute super."product-profunctors_0_6_3_1"; + "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"; + "prometheus" = dontDistribute super."prometheus"; + "promise" = dontDistribute super."promise"; + "promises" = dontDistribute super."promises"; + "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-native" = dontDistribute super."protobuf-native"; + "protocol-buffers" = doDistribute super."protocol-buffers_2_1_12"; + "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_12"; + "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; + "protocol-buffers-fork" = dontDistribute super."protocol-buffers-fork"; + "protolude" = dontDistribute super."protolude"; + "proton-haskell" = dontDistribute super."proton-haskell"; + "prototype" = dontDistribute super."prototype"; + "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; + "proxied" = dontDistribute super."proxied"; + "proxy-kindness" = dontDistribute super."proxy-kindness"; + "psc-ide" = doDistribute super."psc-ide_0_5_0"; + "pseudo-boolean" = dontDistribute super."pseudo-boolean"; + "pseudo-trie" = dontDistribute super."pseudo-trie"; + "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; + "pub" = dontDistribute super."pub"; + "publicsuffix" = doDistribute super."publicsuffix_0_20151212"; + "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-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" = doDistribute super."purescript_0_7_6_1"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; + "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"; + "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"; + "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"; + "queue" = dontDistribute super."queue"; + "queuelike" = dontDistribute super."queuelike"; + "quick-generator" = dontDistribute super."quick-generator"; + "quick-schema" = dontDistribute super."quick-schema"; + "quickcheck-combinators" = dontDistribute super."quickcheck-combinators"; + "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-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-binary" = dontDistribute super."quiver-binary"; + "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-groups" = dontDistribute super."quiver-groups"; + "quiver-http" = dontDistribute super."quiver-http"; + "quiver-instances" = dontDistribute super."quiver-instances"; + "quiver-interleave" = dontDistribute super."quiver-interleave"; + "quiver-sort" = dontDistribute super."quiver-sort"; + "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" = doDistribute super."rainbow_0_26_0_6"; + "rainbow-tests" = dontDistribute super."rainbow-tests"; + "rainbox" = doDistribute super."rainbox_0_18_0_4"; + "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-tree" = dontDistribute super."random-tree"; + "random-variates" = dontDistribute super."random-variates"; + "randomgen" = dontDistribute super."randomgen"; + "randproc" = dontDistribute super."randproc"; + "randsolid" = dontDistribute super."randsolid"; + "range-space" = dontDistribute super."range-space"; + "rangemin" = dontDistribute super."rangemin"; + "ranges" = dontDistribute super."ranges"; + "rascal" = dontDistribute super."rascal"; + "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_2"; + "rate-limit" = dontDistribute super."rate-limit"; + "ratel" = dontDistribute super."ratel"; + "ratel-wai" = dontDistribute super."ratel-wai"; + "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"; + "react-tutorial-haskell-server" = dontDistribute super."react-tutorial-haskell-server"; + "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-sdl2" = dontDistribute super."reactive-banana-sdl2"; + "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"; + "reactivity" = dontDistribute super."reactivity"; + "reactor" = dontDistribute super."reactor"; + "read-bounded" = dontDistribute super."read-bounded"; + "read-env-var" = dontDistribute super."read-env-var"; + "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"; + "rebase" = dontDistribute super."rebase"; + "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"; + "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-io" = doDistribute super."redis-io_0_5_2"; + "redis-job-queue" = dontDistribute super."redis-job-queue"; + "redis-resp" = doDistribute super."redis-resp_0_3_2"; + "redis-simple" = dontDistribute super."redis-simple"; + "redo" = dontDistribute super."redo"; + "reedsolomon" = dontDistribute super."reedsolomon"; + "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-orphans" = dontDistribute super."reflex-orphans"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; + "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-unittest" = dontDistribute super."regex-tdfa-unittest"; + "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; + "regex-tre" = dontDistribute super."regex-tre"; + "regex-type" = dontDistribute super."regex-type"; + "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"; + "register-machine-typelevel" = dontDistribute super."register-machine-typelevel"; + "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"; + "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"; + "remote-json" = dontDistribute super."remote-json"; + "remote-json-client" = dontDistribute super."remote-json-client"; + "remote-json-server" = dontDistribute super."remote-json-server"; + "remote-monad" = dontDistribute super."remote-monad"; + "remotion" = dontDistribute super."remotion"; + "renderable" = dontDistribute super."renderable"; + "reord" = dontDistribute super."reord"; + "reorderable" = dontDistribute super."reorderable"; + "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-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"; + "reqcatcher" = dontDistribute super."reqcatcher"; + "request-monad" = dontDistribute super."request-monad"; + "reserve" = dontDistribute super."reserve"; + "resistor-cube" = dontDistribute super."resistor-cube"; + "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_37"; + "rest-example" = dontDistribute super."rest-example"; + "rest-gen" = doDistribute super."rest-gen_0_19_0_1"; + "restful-snap" = dontDistribute super."restful-snap"; + "restricted-workers" = dontDistribute super."restricted-workers"; + "restyle" = dontDistribute super."restyle"; + "resumable-exceptions" = dontDistribute super."resumable-exceptions"; + "rethinkdb" = doDistribute super."rethinkdb_2_2_0_3"; + "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-arguments" = dontDistribute super."reverse-arguments"; + "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" = doDistribute super."riak_0_9_1_1"; + "riak-protobuf" = doDistribute super."riak-protobuf_0_20_0_0"; + "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"; + "rlist" = dontDistribute super."rlist"; + "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-trie" = dontDistribute super."rose-trie"; + "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"; + "rss-conduit" = dontDistribute super."rss-conduit"; + "rss2irc" = dontDistribute super."rss2irc"; + "rtcm" = dontDistribute super."rtcm"; + "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"; + "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"; + "sampling" = dontDistribute super."sampling"; + "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"; + "sarasvati" = dontDistribute super."sarasvati"; + "sarsi" = dontDistribute super."sarsi"; + "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"; + "sbvPlugin" = dontDistribute super."sbvPlugin"; + "sc3-rdu" = dontDistribute super."sc3-rdu"; + "scalable-server" = dontDistribute super."scalable-server"; + "scaleimage" = dontDistribute super."scaleimage"; + "scalp-webhooks" = dontDistribute super."scalp-webhooks"; + "scalpel" = doDistribute super."scalpel_0_2_1_1"; + "scan" = dontDistribute super."scan"; + "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scanner" = dontDistribute super."scanner"; + "scanner-attoparsec" = dontDistribute super."scanner-attoparsec"; + "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" = doDistribute super."scotty_0_10_2"; + "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-params-parser" = dontDistribute super."scotty-params-parser"; + "scotty-resource" = dontDistribute super."scotty-resource"; + "scotty-rest" = dontDistribute super."scotty-rest"; + "scotty-session" = dontDistribute super."scotty-session"; + "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; + "scp-streams" = dontDistribute super."scp-streams"; + "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrape-changes" = dontDistribute super."scrape-changes"; + "scrobble" = dontDistribute super."scrobble"; + "scroll" = dontDistribute super."scroll"; + "scrz" = dontDistribute super."scrz"; + "scyther-proof" = dontDistribute super."scyther-proof"; + "sde-solver" = dontDistribute super."sde-solver"; + "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; + "sdl2-cairo" = dontDistribute super."sdl2-cairo"; + "sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image"; + "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_7_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"; + "sensei" = dontDistribute super."sensei"; + "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"; + "serv" = dontDistribute super."serv"; + "serv-wai" = dontDistribute super."serv-wai"; + "servant-cassava" = dontDistribute super."servant-cassava"; + "servant-ede" = dontDistribute super."servant-ede"; + "servant-elm" = dontDistribute super."servant-elm"; + "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; + "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; + "servant-js" = dontDistribute super."servant-js"; + "servant-lucid" = dontDistribute super."servant-lucid"; + "servant-mock" = dontDistribute super."servant-mock"; + "servant-pandoc" = dontDistribute super."servant-pandoc"; + "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" = doDistribute super."servant-swagger_0_1_2"; + "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; + "sessions" = dontDistribute super."sessions"; + "set-cover" = dontDistribute super."set-cover"; + "set-extra" = doDistribute super."set-extra_1_3_2"; + "set-with" = dontDistribute super."set-with"; + "setdown" = dontDistribute super."setdown"; + "setgame" = dontDistribute super."setgame"; + "setops" = dontDistribute super."setops"; + "setters" = dontDistribute super."setters"; + "settings" = dontDistribute super."settings"; + "sexp" = dontDistribute super."sexp"; + "sexp-grammar" = dontDistribute super."sexp-grammar"; + "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" = doDistribute super."shake_0_15_5"; + "shake-cabal-build" = dontDistribute super."shake-cabal-build"; + "shake-extras" = dontDistribute super."shake-extras"; + "shake-language-c" = doDistribute super."shake-language-c_0_8_6"; + "shake-minify" = dontDistribute super."shake-minify"; + "shake-pack" = dontDistribute super."shake-pack"; + "shake-persist" = dontDistribute super."shake-persist"; + "shaker" = dontDistribute super."shaker"; + "shakespeare-babel" = dontDistribute super."shakespeare-babel"; + "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" = doDistribute super."should-not-typecheck_2_0_1"; + "show" = dontDistribute super."show"; + "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"; + "signals" = dontDistribute super."signals"; + "signed-multiset" = dontDistribute super."signed-multiset"; + "simd" = dontDistribute super."simd"; + "simgi" = dontDistribute super."simgi"; + "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-rope" = dontDistribute super."simple-rope"; + "simple-server" = dontDistribute super."simple-server"; + "simple-sessions" = dontDistribute super."simple-sessions"; + "simple-sql-parser" = dontDistribute super."simple-sql-parser"; + "simple-stacked-vm" = dontDistribute super."simple-stacked-vm"; + "simple-tabular" = dontDistribute super."simple-tabular"; + "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"; + "simplest-sqlite" = dontDistribute super."simplest-sqlite"; + "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"; + "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"; + "skell" = dontDistribute super."skell"; + "skemmtun" = dontDistribute super."skemmtun"; + "skulk" = dontDistribute super."skulk"; + "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"; + "sleep" = dontDistribute super."sleep"; + "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" = doDistribute super."smallcaps_0_6_0_1"; + "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"; + "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-language" = dontDistribute super."snap-language"; + "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"; + "sock2stream" = dontDistribute super."sock2stream"; + "sockaddr" = dontDistribute super."sockaddr"; + "socket" = doDistribute super."socket_0_5_3_1"; + "socket-activation" = dontDistribute super."socket-activation"; + "socket-sctp" = dontDistribute super."socket-sctp"; + "socketio" = dontDistribute super."socketio"; + "socketson" = dontDistribute super."socketson"; + "soegtk" = dontDistribute super."soegtk"; + "solr" = dontDistribute super."solr"; + "sonic-visualiser" = dontDistribute super."sonic-visualiser"; + "sophia" = dontDistribute super."sophia"; + "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; + "sorted" = dontDistribute super."sorted"; + "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"; + "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"; + "sproxy" = dontDistribute super."sproxy"; + "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-marriage" = dontDistribute super."stable-marriage"; + "stable-memo" = dontDistribute super."stable-memo"; + "stable-tree" = dontDistribute super."stable-tree"; + "stack" = doDistribute super."stack_1_0_2"; + "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; + "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; + "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-record" = dontDistribute super."state-record"; + "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-client" = dontDistribute super."statsd-client"; + "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-conduit" = doDistribute super."stm-conduit_2_7_0"; + "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"; + "stratosphere" = dontDistribute super."stratosphere"; + "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; + "stream-fusion" = dontDistribute super."stream-fusion"; + "stream-monad" = dontDistribute super."stream-monad"; + "streamed" = dontDistribute super."streamed"; + "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-png" = dontDistribute super."streaming-png"; + "streaming-utils" = dontDistribute super."streaming-utils"; + "streaming-wai" = dontDistribute super."streaming-wai"; + "strict-base-types" = doDistribute super."strict-base-types_0_4_0"; + "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-quote" = dontDistribute super."string-quote"; + "string-similarity" = dontDistribute super."string-similarity"; + "string-typelits" = dontDistribute super."string-typelits"; + "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-http-streams" = doDistribute super."stripe-http-streams_2_0_2"; + "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"; + "sump" = dontDistribute super."sump"; + "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"; + "supplemented" = dontDistribute super."supplemented"; + "suspend" = dontDistribute super."suspend"; + "svg-builder" = dontDistribute super."svg-builder"; + "svg-tree" = doDistribute super."svg-tree_0_3_2"; + "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" = doDistribute super."swagger2_1_2_1"; + "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-instances-text" = dontDistribute super."syb-with-class-instances-text"; + "sylvia" = dontDistribute super."sylvia"; + "sym" = dontDistribute super."sym"; + "sym-plot" = dontDistribute super."sym-plot"; + "symbol" = dontDistribute super."symbol"; + "symengine-hs" = dontDistribute super."symengine-hs"; + "sync" = dontDistribute super."sync"; + "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"; + "t-regex" = dontDistribute super."t-regex"; + "t3-client" = dontDistribute super."t3-client"; + "t3-game" = dontDistribute super."t3-game"; + "t3-server" = dontDistribute super."t3-server"; + "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-timers" = dontDistribute super."tagged-timers"; + "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"; + "task-distribution" = dontDistribute super."task-distribution"; + "taskpool" = dontDistribute super."taskpool"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; + "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"; + "tateti-tateti" = dontDistribute super."tateti-tateti"; + "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"; + "telegram-api" = dontDistribute super."telegram-api"; + "teleport" = dontDistribute super."teleport"; + "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"; + "tempo" = dontDistribute super."tempo"; + "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_2"; + "terminfo-hs" = dontDistribute super."terminfo-hs"; + "termplot" = dontDistribute super."termplot"; + "terntup" = dontDistribute super."terntup"; + "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-testing-feat" = dontDistribute super."test-framework-testing-feat"; + "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"; + "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-postgresql" = dontDistribute super."text-postgresql"; + "text-printer" = dontDistribute super."text-printer"; + "text-regex-replace" = dontDistribute super."text-regex-replace"; + "text-region" = dontDistribute super."text-region"; + "text-register-machine" = dontDistribute super."text-register-machine"; + "text-render" = dontDistribute super."text-render"; + "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"; + "text1" = dontDistribute super."text1"; + "textPlot" = dontDistribute super."textPlot"; + "textmatetags" = dontDistribute super."textmatetags"; + "textocat-api" = dontDistribute super."textocat-api"; + "texts" = dontDistribute super."texts"; + "textual" = dontDistribute super."textual"; + "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-cas" = dontDistribute super."th-cas"; + "th-context" = dontDistribute super."th-context"; + "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; + "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-kinds-fork" = dontDistribute super."th-kinds-fork"; + "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"; + "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-cache" = dontDistribute super."time-cache"; + "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-out" = dontDistribute super."time-out"; + "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-w3c" = dontDistribute super."time-w3c"; + "timecalc" = dontDistribute super."timecalc"; + "timeconsole" = dontDistribute super."timeconsole"; + "timeless" = dontDistribute super."timeless"; + "timelike" = dontDistribute super."timelike"; + "timelike-clock" = dontDistribute super."timelike-clock"; + "timelike-time" = dontDistribute super."timelike-time"; + "timemap" = dontDistribute super."timemap"; + "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"; + "tinylog" = doDistribute super."tinylog_0_12_1"; + "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend"; + "tip-lib" = dontDistribute super."tip-lib"; + "tiphys" = dontDistribute super."tiphys"; + "titlecase" = dontDistribute super."titlecase"; + "tkhs" = dontDistribute super."tkhs"; + "tkyprof" = dontDistribute super."tkyprof"; + "tld" = dontDistribute super."tld"; + "tls" = doDistribute super."tls_1_3_4"; + "tls-debug" = doDistribute super."tls-debug_0_4_1"; + "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-alternative" = dontDistribute super."total-alternative"; + "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"; + "transient-universe" = dontDistribute super."transient-universe"; + "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-fun" = dontDistribute super."tree-fun"; + "tree-monad" = dontDistribute super."tree-monad"; + "treemap-html" = dontDistribute super."treemap-html"; + "treemap-html-tools" = dontDistribute super."treemap-html-tools"; + "treersec" = dontDistribute super."treersec"; + "treeviz" = dontDistribute super."treeviz"; + "tremulous-query" = dontDistribute super."tremulous-query"; + "trhsx" = dontDistribute super."trhsx"; + "triangulation" = dontDistribute super."triangulation"; + "trimpolya" = dontDistribute super."trimpolya"; + "tripLL" = dontDistribute super."tripLL"; + "trivia" = dontDistribute super."trivia"; + "trivial-constraint" = dontDistribute super."trivial-constraint"; + "tropical" = dontDistribute super."tropical"; + "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"; + "tslib" = dontDistribute super."tslib"; + "tslogger" = dontDistribute super."tslogger"; + "tsp-viz" = dontDistribute super."tsp-viz"; + "tsparse" = dontDistribute super."tsparse"; + "tst" = dontDistribute super."tst"; + "tsvsql" = dontDistribute super."tsvsql"; + "tttool" = doDistribute super."tttool_1_5_1"; + "tubes" = dontDistribute super."tubes"; + "tuntap" = dontDistribute super."tuntap"; + "tup-functor" = dontDistribute super."tup-functor"; + "tuple" = dontDistribute super."tuple"; + "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"; + "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-options" = dontDistribute super."turtle-options"; + "tweak" = dontDistribute super."tweak"; + "twee" = dontDistribute super."twee"; + "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"; + "twentyseven" = dontDistribute super."twentyseven"; + "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" = doDistribute super."twitter-conduit_0_1_3"; + "twitter-enumerator" = dontDistribute super."twitter-enumerator"; + "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-booleans" = dontDistribute super."type-booleans"; + "type-cache" = dontDistribute super."type-cache"; + "type-cereal" = dontDistribute super."type-cereal"; + "type-combinators" = dontDistribute super."type-combinators"; + "type-combinators-quote" = dontDistribute super."type-combinators-quote"; + "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-natural" = dontDistribute super."type-natural"; + "type-operators" = dontDistribute super."type-operators"; + "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-spreadsheet" = dontDistribute super."typed-spreadsheet"; + "typed-wire" = dontDistribute super."typed-wire"; + "typed-wire-utils" = dontDistribute super."typed-wire-utils"; + "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"; + "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"; + "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"; + "unbreak" = dontDistribute super."unbreak"; + "unfoldable" = dontDistribute super."unfoldable"; + "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; + "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-show" = dontDistribute super."unicode-show"; + "unicode-symbols" = dontDistribute super."unicode-symbols"; + "unicoder" = dontDistribute super."unicoder"; + "uniform-io" = dontDistribute super."uniform-io"; + "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; + "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"; + "unit-constraint" = dontDistribute super."unit-constraint"; + "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-th" = dontDistribute super."universe-th"; + "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"; + "unlambda" = dontDistribute super."unlambda"; + "unlit" = dontDistribute super."unlit"; + "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; + "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"; + "unsequential" = dontDistribute super."unsequential"; + "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-bytestring" = doDistribute super."uri-bytestring_0_1_9_2"; + "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"; + "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"; + "users" = doDistribute super."users_0_4_0_0"; + "users-persistent" = doDistribute super."users-persistent_0_4_0_0"; + "users-postgresql-simple" = doDistribute super."users-postgresql-simple_0_4_0_0"; + "users-test" = doDistribute super."users-test_0_4_0_0"; + "utc" = dontDistribute super."utc"; + "utf8-env" = dontDistribute super."utf8-env"; + "utf8-prelude" = dontDistribute super."utf8-prelude"; + "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-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"; + "validated-literals" = dontDistribute super."validated-literals"; + "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-binary" = dontDistribute super."vector-binary"; + "vector-bytestring" = dontDistribute super."vector-bytestring"; + "vector-clock" = dontDistribute super."vector-clock"; + "vector-conduit" = dontDistribute super."vector-conduit"; + "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-sized" = dontDistribute super."vector-sized"; + "vector-space-map" = dontDistribute super."vector-space-map"; + "vector-space-opengl" = dontDistribute super."vector-space-opengl"; + "vector-space-points" = dontDistribute super."vector-space-points"; + "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-gl" = dontDistribute super."vinyl-gl"; + "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; + "vinyl-utils" = dontDistribute super."vinyl-utils"; + "vinyl-vectors" = dontDistribute super."vinyl-vectors"; + "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; + "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"; + "vrpn" = dontDistribute super."vrpn"; + "vte" = dontDistribute super."vte"; + "vtegtk3" = dontDistribute super."vtegtk3"; + "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"; + "vulkan" = dontDistribute super."vulkan"; + "wacom-daemon" = dontDistribute super."wacom-daemon"; + "waddle" = dontDistribute super."waddle"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; + "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-preprocessor" = dontDistribute super."wai-middleware-preprocessor"; + "wai-middleware-route" = dontDistribute super."wai-middleware-route"; + "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-session-alt" = dontDistribute super."wai-session-alt"; + "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-postgresql" = doDistribute super."wai-session-postgresql_0_2_0_4"; + "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"; + "wait-handle" = dontDistribute super."wait-handle"; + "waitfree" = dontDistribute super."waitfree"; + "warc" = dontDistribute super."warc"; + "warp" = doDistribute super."warp_3_2_2"; + "warp-dynamic" = dontDistribute super."warp-dynamic"; + "warp-static" = dontDistribute super."warp-static"; + "warp-tls-uid" = dontDistribute super."warp-tls-uid"; + "watchdog" = dontDistribute super."watchdog"; + "watcher" = dontDistribute super."watcher"; + "watchit" = dontDistribute super."watchit"; + "wavconvert" = dontDistribute super."wavconvert"; + "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-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-transformers" = dontDistribute super."web-routes-transformers"; + "webapi" = dontDistribute super."webapi"; + "webapp" = dontDistribute super."webapp"; + "webcrank" = dontDistribute super."webcrank"; + "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; + "webcrank-wai" = dontDistribute super."webcrank-wai"; + "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; + "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"; + "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"; + "werewolf" = dontDistribute super."werewolf"; + "werewolf-slack" = dontDistribute super."werewolf-slack"; + "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"; + "with-location" = doDistribute super."with-location_0_0_0"; + "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"; + "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"; + "wsdl" = dontDistribute super."wsdl"; + "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"; + "xdcc" = dontDistribute super."xdcc"; + "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" = doDistribute super."xlsx_0_2_1_1"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; + "xlsx-templater" = dontDistribute super."xlsx-templater"; + "xml-basic" = dontDistribute super."xml-basic"; + "xml-catalog" = dontDistribute super."xml-catalog"; + "xml-conduit" = doDistribute super."xml-conduit_1_3_4_1"; + "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"; + "xml-query" = dontDistribute super."xml-query"; + "xml-query-xml-conduit" = dontDistribute super."xml-query-xml-conduit"; + "xml-query-xml-types" = dontDistribute super."xml-query-xml-types"; + "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-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-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"; + "yaml-union" = dontDistribute super."yaml-union"; + "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"; + "yeshql" = dontDistribute super."yeshql"; + "yesod-angular" = dontDistribute super."yesod-angular"; + "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; + "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; + "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-oauth" = dontDistribute super."yesod-auth-oauth"; + "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-csp" = dontDistribute super."yesod-csp"; + "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-form-richtext" = dontDistribute super."yesod-form-richtext"; + "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; + "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_5"; + "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-tableview" = dontDistribute super."yesod-tableview"; + "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-contrib" = dontDistribute super."yi-contrib"; + "yi-emacs-colours" = dontDistribute super."yi-emacs-colours"; + "yi-gtk" = dontDistribute super."yi-gtk"; + "yi-monokai" = dontDistribute super."yi-monokai"; + "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"; + "yoctoparsec" = dontDistribute super."yoctoparsec"; + "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" = doDistribute super."zim-parser_0_1_0_0"; + "zip" = dontDistribute super."zip"; + "zip-conduit" = dontDistribute super."zip-conduit"; + "zipedit" = dontDistribute super."zipedit"; + "zipkin" = dontDistribute super."zipkin"; + "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-5.2.nix b/pkgs/development/haskell-modules/configuration-lts-5.2.nix index 6cfa27dc5f57..dac1d3017ef8 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.2.nix @@ -72,6 +72,7 @@ self: super: { "Advgame" = dontDistribute super."Advgame"; "AesonBson" = dontDistribute super."AesonBson"; "Agata" = dontDistribute super."Agata"; + "Agda" = doDistribute super."Agda_2_4_2_5"; "Agda-executable" = dontDistribute super."Agda-executable"; "AhoCorasick" = dontDistribute super."AhoCorasick"; "AlgorithmW" = dontDistribute super."AlgorithmW"; @@ -1098,10 +1099,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = doDistribute super."aeson-extra_0_3_1_0"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; "aeson-smart" = dontDistribute super."aeson-smart"; @@ -1268,6 +1271,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = doDistribute super."apiary_1_4_5"; @@ -1283,6 +1287,7 @@ self: super: { "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; "applicative-quoters" = dontDistribute super."applicative-quoters"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = doDistribute super."apply-refact_0_1_0_0"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1324,6 +1329,7 @@ self: super: { "arxiv" = dontDistribute super."arxiv"; "ascetic" = dontDistribute super."ascetic"; "ascii" = dontDistribute super."ascii"; + "ascii-progress" = doDistribute super."ascii-progress_0_3_2_0"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; @@ -1483,6 +1489,7 @@ self: super: { "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1623,6 +1630,7 @@ self: super: { "blas-hs" = dontDistribute super."blas-hs"; "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html-contrib" = dontDistribute super."blaze-html-contrib"; @@ -1639,6 +1647,7 @@ self: super: { "blogination" = dontDistribute super."blogination"; "bloodhound" = dontDistribute super."bloodhound"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2000,6 +2009,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2035,6 +2045,7 @@ self: super: { "complexity" = dontDistribute super."complexity"; "compose-ltr" = dontDistribute super."compose-ltr"; "compose-trans" = dontDistribute super."compose-trans"; + "composition-tree" = doDistribute super."composition-tree_0_2_0_1"; "compression" = dontDistribute super."compression"; "compstrat" = dontDistribute super."compstrat"; "comptrans" = dontDistribute super."comptrans"; @@ -2294,6 +2305,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -2560,6 +2572,7 @@ self: super: { "docidx" = dontDistribute super."docidx"; "docker" = dontDistribute super."docker"; "dockercook" = dontDistribute super."dockercook"; + "doctest" = doDistribute super."doctest_0_10_1"; "doctest-discover" = dontDistribute super."doctest-discover"; "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; "doctest-prop" = dontDistribute super."doctest-prop"; @@ -3962,6 +3975,7 @@ self: super: { "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; + "hindent" = doDistribute super."hindent_4_6_1"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -4343,6 +4357,7 @@ self: super: { "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" = doDistribute super."http-client-openssl_0_2_0_1"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; @@ -4393,6 +4408,9 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hws" = dontDistribute super."hws"; @@ -4563,6 +4581,7 @@ self: super: { "iothread" = dontDistribute super."iothread"; "iotransaction" = dontDistribute super."iotransaction"; "ip-quoter" = dontDistribute super."ip-quoter"; + "ip6addr" = doDistribute super."ip6addr_0_5_0_1"; "ipatch" = dontDistribute super."ipatch"; "ipc" = dontDistribute super."ipc"; "ipcvar" = dontDistribute super."ipcvar"; @@ -5153,6 +5172,7 @@ self: super: { "mandulia" = dontDistribute super."mandulia"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -5674,6 +5694,7 @@ self: super: { "opaleye-trans" = dontDistribute super."opaleye-trans"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -5715,6 +5736,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "option" = dontDistribute super."option"; "optional" = dontDistribute super."optional"; + "optional-args" = doDistribute super."optional-args_1_0_0"; "options-time" = dontDistribute super."options-time"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "optparse-generic" = dontDistribute super."optparse-generic"; @@ -5818,6 +5840,7 @@ self: super: { "pasty" = dontDistribute super."pasty"; "patch-combinators" = dontDistribute super."patch-combinators"; "patch-image" = dontDistribute super."patch-image"; + "patches-vector" = doDistribute super."patches-vector_0_1_5_1"; "path" = doDistribute super."path_0_5_3"; "path-io" = doDistribute super."path-io_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; @@ -5867,6 +5890,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_4"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6061,11 +6085,13 @@ self: super: { "prednote-test" = dontDistribute super."prednote-test"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = dontDistribute super."present"; @@ -6631,6 +6657,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -6740,6 +6767,7 @@ self: super: { "shadowsocks" = dontDistribute super."shadowsocks"; "shady-gen" = dontDistribute super."shady-gen"; "shady-graphics" = dontDistribute super."shady-graphics"; + "shake" = doDistribute super."shake_0_15_5"; "shake-cabal-build" = dontDistribute super."shake-cabal-build"; "shake-extras" = dontDistribute super."shake-extras"; "shake-language-c" = doDistribute super."shake-language-c_0_8_4"; @@ -6774,6 +6802,7 @@ self: super: { "shortcircuit" = dontDistribute super."shortcircuit"; "shortcut-links" = doDistribute super."shortcut-links_0_4_1_0"; "shorten-strings" = dontDistribute super."shorten-strings"; + "should-not-typecheck" = doDistribute super."should-not-typecheck_2_0_1"; "show" = dontDistribute super."show"; "show-type" = dontDistribute super."show-type"; "showdown" = dontDistribute super."showdown"; @@ -6857,6 +6886,7 @@ self: super: { "sloth" = dontDistribute super."sloth"; "slug" = doDistribute super."slug_0_1_2"; "smallarray" = dontDistribute super."smallarray"; + "smallcaps" = doDistribute super."smallcaps_0_6_0_1"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; "smallcheck-lens" = dontDistribute super."smallcheck-lens"; "smallcheck-series" = dontDistribute super."smallcheck-series"; @@ -7004,6 +7034,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7099,7 +7130,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -7906,6 +7939,7 @@ self: super: { "wai-routing" = doDistribute super."wai-routing_0_12_2"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-postgresql" = doDistribute super."wai-session-postgresql_0_2_0_4"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; "wai-static-pages" = dontDistribute super."wai-static-pages"; @@ -8139,6 +8173,7 @@ self: super: { "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_12"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "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"; @@ -8164,6 +8199,7 @@ self: super: { "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.3.nix b/pkgs/development/haskell-modules/configuration-lts-5.3.nix index 63f0dd7e6e0d..0ded8b1b3988 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.3.nix @@ -72,6 +72,7 @@ self: super: { "Advgame" = dontDistribute super."Advgame"; "AesonBson" = dontDistribute super."AesonBson"; "Agata" = dontDistribute super."Agata"; + "Agda" = doDistribute super."Agda_2_4_2_5"; "Agda-executable" = dontDistribute super."Agda-executable"; "AhoCorasick" = dontDistribute super."AhoCorasick"; "AlgorithmW" = dontDistribute super."AlgorithmW"; @@ -1095,10 +1096,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = doDistribute super."aeson-extra_0_3_1_0"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; "aeson-smart" = dontDistribute super."aeson-smart"; @@ -1265,6 +1268,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = doDistribute super."apiary_1_4_5"; @@ -1280,6 +1284,7 @@ self: super: { "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; "applicative-quoters" = dontDistribute super."applicative-quoters"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = doDistribute super."apply-refact_0_1_0_0"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1320,6 +1325,7 @@ self: super: { "arxiv" = dontDistribute super."arxiv"; "ascetic" = dontDistribute super."ascetic"; "ascii" = dontDistribute super."ascii"; + "ascii-progress" = doDistribute super."ascii-progress_0_3_2_0"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; @@ -1479,6 +1485,7 @@ self: super: { "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1618,6 +1625,7 @@ self: super: { "blas-hs" = dontDistribute super."blas-hs"; "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html-contrib" = dontDistribute super."blaze-html-contrib"; @@ -1634,6 +1642,7 @@ self: super: { "blogination" = dontDistribute super."blogination"; "bloodhound" = dontDistribute super."bloodhound"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1994,6 +2003,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2029,6 +2039,7 @@ self: super: { "complexity" = dontDistribute super."complexity"; "compose-ltr" = dontDistribute super."compose-ltr"; "compose-trans" = dontDistribute super."compose-trans"; + "composition-tree" = doDistribute super."composition-tree_0_2_0_1"; "compression" = dontDistribute super."compression"; "compstrat" = dontDistribute super."compstrat"; "comptrans" = dontDistribute super."comptrans"; @@ -2286,6 +2297,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -2550,6 +2562,7 @@ self: super: { "docidx" = dontDistribute super."docidx"; "docker" = dontDistribute super."docker"; "dockercook" = dontDistribute super."dockercook"; + "doctest" = doDistribute super."doctest_0_10_1"; "doctest-discover" = dontDistribute super."doctest-discover"; "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; "doctest-prop" = dontDistribute super."doctest-prop"; @@ -3944,6 +3957,7 @@ self: super: { "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; + "hindent" = doDistribute super."hindent_4_6_1"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -4325,6 +4339,7 @@ self: super: { "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" = doDistribute super."http-client-openssl_0_2_0_1"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; @@ -4375,6 +4390,9 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hws" = dontDistribute super."hws"; @@ -4544,6 +4562,7 @@ self: super: { "iothread" = dontDistribute super."iothread"; "iotransaction" = dontDistribute super."iotransaction"; "ip-quoter" = dontDistribute super."ip-quoter"; + "ip6addr" = doDistribute super."ip6addr_0_5_0_1"; "ipatch" = dontDistribute super."ipatch"; "ipc" = dontDistribute super."ipc"; "ipcvar" = dontDistribute super."ipcvar"; @@ -5132,6 +5151,7 @@ self: super: { "mandulia" = dontDistribute super."mandulia"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -5652,6 +5672,7 @@ self: super: { "opaleye-trans" = dontDistribute super."opaleye-trans"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -5693,6 +5714,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "option" = dontDistribute super."option"; "optional" = dontDistribute super."optional"; + "optional-args" = doDistribute super."optional-args_1_0_0"; "options-time" = dontDistribute super."options-time"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "optparse-generic" = dontDistribute super."optparse-generic"; @@ -5795,6 +5817,7 @@ self: super: { "pasty" = dontDistribute super."pasty"; "patch-combinators" = dontDistribute super."patch-combinators"; "patch-image" = dontDistribute super."patch-image"; + "patches-vector" = doDistribute super."patches-vector_0_1_5_1"; "path" = doDistribute super."path_0_5_3"; "path-io" = doDistribute super."path-io_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; @@ -5844,6 +5867,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_4"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6038,11 +6062,13 @@ self: super: { "prednote-test" = dontDistribute super."prednote-test"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = dontDistribute super."present"; @@ -6428,6 +6454,7 @@ self: super: { "restricted-workers" = dontDistribute super."restricted-workers"; "restyle" = dontDistribute super."restyle"; "resumable-exceptions" = dontDistribute super."resumable-exceptions"; + "rethinkdb" = doDistribute super."rethinkdb_2_2_0_3"; "rethinkdb-model" = dontDistribute super."rethinkdb-model"; "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retryer" = dontDistribute super."retryer"; @@ -6604,6 +6631,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -6713,6 +6741,7 @@ self: super: { "shadowsocks" = dontDistribute super."shadowsocks"; "shady-gen" = dontDistribute super."shady-gen"; "shady-graphics" = dontDistribute super."shady-graphics"; + "shake" = doDistribute super."shake_0_15_5"; "shake-cabal-build" = dontDistribute super."shake-cabal-build"; "shake-extras" = dontDistribute super."shake-extras"; "shake-language-c" = doDistribute super."shake-language-c_0_8_4"; @@ -6747,6 +6776,7 @@ self: super: { "shortcircuit" = dontDistribute super."shortcircuit"; "shortcut-links" = doDistribute super."shortcut-links_0_4_1_0"; "shorten-strings" = dontDistribute super."shorten-strings"; + "should-not-typecheck" = doDistribute super."should-not-typecheck_2_0_1"; "show" = dontDistribute super."show"; "show-type" = dontDistribute super."show-type"; "showdown" = dontDistribute super."showdown"; @@ -6829,6 +6859,7 @@ self: super: { "sloth" = dontDistribute super."sloth"; "slug" = doDistribute super."slug_0_1_2"; "smallarray" = dontDistribute super."smallarray"; + "smallcaps" = doDistribute super."smallcaps_0_6_0_1"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; "smallcheck-lens" = dontDistribute super."smallcheck-lens"; "smallcheck-series" = dontDistribute super."smallcheck-series"; @@ -6974,6 +7005,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7068,7 +7100,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -7871,6 +7905,7 @@ self: super: { "wai-router" = dontDistribute super."wai-router"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-postgresql" = doDistribute super."wai-session-postgresql_0_2_0_4"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; "wai-static-pages" = dontDistribute super."wai-static-pages"; @@ -8104,6 +8139,7 @@ self: super: { "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_12"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "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"; @@ -8129,6 +8165,7 @@ self: super: { "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.4.nix b/pkgs/development/haskell-modules/configuration-lts-5.4.nix index 0fa6ca794070..19a29cacb64e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.4.nix @@ -72,6 +72,7 @@ self: super: { "Advgame" = dontDistribute super."Advgame"; "AesonBson" = dontDistribute super."AesonBson"; "Agata" = dontDistribute super."Agata"; + "Agda" = doDistribute super."Agda_2_4_2_5"; "Agda-executable" = dontDistribute super."Agda-executable"; "AhoCorasick" = dontDistribute super."AhoCorasick"; "AlgorithmW" = dontDistribute super."AlgorithmW"; @@ -1093,10 +1094,12 @@ self: super: { "aeson-compat" = doDistribute super."aeson-compat_0_3_1_0"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; "aeson-smart" = dontDistribute super."aeson-smart"; @@ -1263,6 +1266,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = doDistribute super."apiary_1_4_5"; @@ -1278,6 +1282,7 @@ self: super: { "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; "applicative-quoters" = dontDistribute super."applicative-quoters"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = doDistribute super."apply-refact_0_1_0_0"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1318,6 +1323,7 @@ self: super: { "arxiv" = dontDistribute super."arxiv"; "ascetic" = dontDistribute super."ascetic"; "ascii" = dontDistribute super."ascii"; + "ascii-progress" = doDistribute super."ascii-progress_0_3_2_0"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; @@ -1477,6 +1483,7 @@ self: super: { "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1616,6 +1623,7 @@ self: super: { "blas-hs" = dontDistribute super."blas-hs"; "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html-contrib" = dontDistribute super."blaze-html-contrib"; @@ -1632,6 +1640,7 @@ self: super: { "blogination" = dontDistribute super."blogination"; "bloodhound" = dontDistribute super."bloodhound"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1991,6 +2000,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2026,6 +2036,7 @@ self: super: { "complexity" = dontDistribute super."complexity"; "compose-ltr" = dontDistribute super."compose-ltr"; "compose-trans" = dontDistribute super."compose-trans"; + "composition-tree" = doDistribute super."composition-tree_0_2_0_1"; "compression" = dontDistribute super."compression"; "compstrat" = dontDistribute super."compstrat"; "comptrans" = dontDistribute super."comptrans"; @@ -2282,6 +2293,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -2541,6 +2553,7 @@ self: super: { "docidx" = dontDistribute super."docidx"; "docker" = dontDistribute super."docker"; "dockercook" = dontDistribute super."dockercook"; + "doctest" = doDistribute super."doctest_0_10_1"; "doctest-discover" = dontDistribute super."doctest-discover"; "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; "doctest-prop" = dontDistribute super."doctest-prop"; @@ -3930,6 +3943,7 @@ self: super: { "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; + "hindent" = doDistribute super."hindent_4_6_1"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -4308,6 +4322,7 @@ self: super: { "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" = doDistribute super."http-client-openssl_0_2_0_1"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; @@ -4358,6 +4373,9 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hws" = dontDistribute super."hws"; @@ -4527,6 +4545,7 @@ self: super: { "iothread" = dontDistribute super."iothread"; "iotransaction" = dontDistribute super."iotransaction"; "ip-quoter" = dontDistribute super."ip-quoter"; + "ip6addr" = doDistribute super."ip6addr_0_5_0_1"; "ipatch" = dontDistribute super."ipatch"; "ipc" = dontDistribute super."ipc"; "ipcvar" = dontDistribute super."ipcvar"; @@ -5113,6 +5132,7 @@ self: super: { "mandulia" = dontDistribute super."mandulia"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -5629,6 +5649,7 @@ self: super: { "opaleye-trans" = dontDistribute super."opaleye-trans"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -5670,6 +5691,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "option" = dontDistribute super."option"; "optional" = dontDistribute super."optional"; + "optional-args" = doDistribute super."optional-args_1_0_0"; "options-time" = dontDistribute super."options-time"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "optparse-generic" = dontDistribute super."optparse-generic"; @@ -5771,6 +5793,7 @@ self: super: { "pasty" = dontDistribute super."pasty"; "patch-combinators" = dontDistribute super."patch-combinators"; "patch-image" = dontDistribute super."patch-image"; + "patches-vector" = doDistribute super."patches-vector_0_1_5_1"; "path" = doDistribute super."path_0_5_3"; "path-io" = doDistribute super."path-io_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; @@ -5820,6 +5843,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_4"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6013,11 +6037,13 @@ self: super: { "prednote-test" = dontDistribute super."prednote-test"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = dontDistribute super."present"; @@ -6402,6 +6428,7 @@ self: super: { "restricted-workers" = dontDistribute super."restricted-workers"; "restyle" = dontDistribute super."restyle"; "resumable-exceptions" = dontDistribute super."resumable-exceptions"; + "rethinkdb" = doDistribute super."rethinkdb_2_2_0_3"; "rethinkdb-model" = dontDistribute super."rethinkdb-model"; "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retryer" = dontDistribute super."retryer"; @@ -6578,6 +6605,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -6687,6 +6715,7 @@ self: super: { "shadowsocks" = dontDistribute super."shadowsocks"; "shady-gen" = dontDistribute super."shady-gen"; "shady-graphics" = dontDistribute super."shady-graphics"; + "shake" = doDistribute super."shake_0_15_5"; "shake-cabal-build" = dontDistribute super."shake-cabal-build"; "shake-extras" = dontDistribute super."shake-extras"; "shake-language-c" = doDistribute super."shake-language-c_0_8_4"; @@ -6721,6 +6750,7 @@ self: super: { "shortcircuit" = dontDistribute super."shortcircuit"; "shortcut-links" = doDistribute super."shortcut-links_0_4_1_0"; "shorten-strings" = dontDistribute super."shorten-strings"; + "should-not-typecheck" = doDistribute super."should-not-typecheck_2_0_1"; "show" = dontDistribute super."show"; "show-type" = dontDistribute super."show-type"; "showdown" = dontDistribute super."showdown"; @@ -6803,6 +6833,7 @@ self: super: { "sloth" = dontDistribute super."sloth"; "slug" = doDistribute super."slug_0_1_2"; "smallarray" = dontDistribute super."smallarray"; + "smallcaps" = doDistribute super."smallcaps_0_6_0_1"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; "smallcheck-lens" = dontDistribute super."smallcheck-lens"; "smallcheck-series" = dontDistribute super."smallcheck-series"; @@ -6948,6 +6979,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7042,7 +7074,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -7843,6 +7877,7 @@ self: super: { "wai-router" = dontDistribute super."wai-router"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-postgresql" = doDistribute super."wai-session-postgresql_0_2_0_4"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; "wai-static-pages" = dontDistribute super."wai-static-pages"; @@ -8076,6 +8111,7 @@ self: super: { "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_12"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "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"; @@ -8101,6 +8137,7 @@ self: super: { "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.5.nix b/pkgs/development/haskell-modules/configuration-lts-5.5.nix index 0bcc38b47924..0f03cc418aca 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.5.nix @@ -72,6 +72,7 @@ self: super: { "Advgame" = dontDistribute super."Advgame"; "AesonBson" = dontDistribute super."AesonBson"; "Agata" = dontDistribute super."Agata"; + "Agda" = doDistribute super."Agda_2_4_2_5"; "Agda-executable" = dontDistribute super."Agda-executable"; "AhoCorasick" = dontDistribute super."AhoCorasick"; "AlgorithmW" = dontDistribute super."AlgorithmW"; @@ -1093,10 +1094,12 @@ self: super: { "aeson-compat" = doDistribute super."aeson-compat_0_3_1_0"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; "aeson-smart" = dontDistribute super."aeson-smart"; @@ -1263,6 +1266,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = doDistribute super."apiary_1_4_5"; @@ -1278,6 +1282,7 @@ self: super: { "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; "applicative-quoters" = dontDistribute super."applicative-quoters"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = doDistribute super."apply-refact_0_1_0_0"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1318,6 +1323,7 @@ self: super: { "arxiv" = dontDistribute super."arxiv"; "ascetic" = dontDistribute super."ascetic"; "ascii" = dontDistribute super."ascii"; + "ascii-progress" = doDistribute super."ascii-progress_0_3_2_0"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; @@ -1476,6 +1482,7 @@ self: super: { "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1615,6 +1622,7 @@ self: super: { "blas-hs" = dontDistribute super."blas-hs"; "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html-contrib" = dontDistribute super."blaze-html-contrib"; @@ -1631,6 +1639,7 @@ self: super: { "blogination" = dontDistribute super."blogination"; "bloodhound" = dontDistribute super."bloodhound"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1987,6 +1996,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2022,6 +2032,7 @@ self: super: { "complexity" = dontDistribute super."complexity"; "compose-ltr" = dontDistribute super."compose-ltr"; "compose-trans" = dontDistribute super."compose-trans"; + "composition-tree" = doDistribute super."composition-tree_0_2_0_1"; "compression" = dontDistribute super."compression"; "compstrat" = dontDistribute super."compstrat"; "comptrans" = dontDistribute super."comptrans"; @@ -2278,6 +2289,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -2537,6 +2549,7 @@ self: super: { "docidx" = dontDistribute super."docidx"; "docker" = dontDistribute super."docker"; "dockercook" = dontDistribute super."dockercook"; + "doctest" = doDistribute super."doctest_0_10_1"; "doctest-discover" = dontDistribute super."doctest-discover"; "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; "doctest-prop" = dontDistribute super."doctest-prop"; @@ -3925,6 +3938,7 @@ self: super: { "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; + "hindent" = doDistribute super."hindent_4_6_1"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -4302,6 +4316,7 @@ self: super: { "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" = doDistribute super."http-client-openssl_0_2_0_1"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; @@ -4352,6 +4367,9 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hws" = dontDistribute super."hws"; @@ -4521,6 +4539,7 @@ self: super: { "iothread" = dontDistribute super."iothread"; "iotransaction" = dontDistribute super."iotransaction"; "ip-quoter" = dontDistribute super."ip-quoter"; + "ip6addr" = doDistribute super."ip6addr_0_5_0_1"; "ipatch" = dontDistribute super."ipatch"; "ipc" = dontDistribute super."ipc"; "ipcvar" = dontDistribute super."ipcvar"; @@ -5107,6 +5126,7 @@ self: super: { "mandulia" = dontDistribute super."mandulia"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -5623,6 +5643,7 @@ self: super: { "opaleye-trans" = dontDistribute super."opaleye-trans"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -5664,6 +5685,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "option" = dontDistribute super."option"; "optional" = dontDistribute super."optional"; + "optional-args" = doDistribute super."optional-args_1_0_0"; "options-time" = dontDistribute super."options-time"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "optparse-generic" = dontDistribute super."optparse-generic"; @@ -5765,6 +5787,7 @@ self: super: { "pasty" = dontDistribute super."pasty"; "patch-combinators" = dontDistribute super."patch-combinators"; "patch-image" = dontDistribute super."patch-image"; + "patches-vector" = doDistribute super."patches-vector_0_1_5_1"; "path" = doDistribute super."path_0_5_3"; "path-io" = doDistribute super."path-io_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; @@ -5814,6 +5837,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_4"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6007,11 +6031,13 @@ self: super: { "prednote-test" = dontDistribute super."prednote-test"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = dontDistribute super."present"; @@ -6396,6 +6422,7 @@ self: super: { "restricted-workers" = dontDistribute super."restricted-workers"; "restyle" = dontDistribute super."restyle"; "resumable-exceptions" = dontDistribute super."resumable-exceptions"; + "rethinkdb" = doDistribute super."rethinkdb_2_2_0_3"; "rethinkdb-model" = dontDistribute super."rethinkdb-model"; "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retryer" = dontDistribute super."retryer"; @@ -6572,6 +6599,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -6681,6 +6709,7 @@ self: super: { "shadowsocks" = dontDistribute super."shadowsocks"; "shady-gen" = dontDistribute super."shady-gen"; "shady-graphics" = dontDistribute super."shady-graphics"; + "shake" = doDistribute super."shake_0_15_5"; "shake-cabal-build" = dontDistribute super."shake-cabal-build"; "shake-extras" = dontDistribute super."shake-extras"; "shake-language-c" = doDistribute super."shake-language-c_0_8_4"; @@ -6715,6 +6744,7 @@ self: super: { "shortcircuit" = dontDistribute super."shortcircuit"; "shortcut-links" = doDistribute super."shortcut-links_0_4_1_0"; "shorten-strings" = dontDistribute super."shorten-strings"; + "should-not-typecheck" = doDistribute super."should-not-typecheck_2_0_1"; "show" = dontDistribute super."show"; "show-type" = dontDistribute super."show-type"; "showdown" = dontDistribute super."showdown"; @@ -6797,6 +6827,7 @@ self: super: { "sloth" = dontDistribute super."sloth"; "slug" = doDistribute super."slug_0_1_2"; "smallarray" = dontDistribute super."smallarray"; + "smallcaps" = doDistribute super."smallcaps_0_6_0_1"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; "smallcheck-lens" = dontDistribute super."smallcheck-lens"; "smallcheck-series" = dontDistribute super."smallcheck-series"; @@ -6942,6 +6973,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7036,7 +7068,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -7835,6 +7869,7 @@ self: super: { "wai-router" = dontDistribute super."wai-router"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-postgresql" = doDistribute super."wai-session-postgresql_0_2_0_4"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; "wai-static-pages" = dontDistribute super."wai-static-pages"; @@ -8067,6 +8102,7 @@ self: super: { "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_12"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "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"; @@ -8092,6 +8128,7 @@ self: super: { "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.6.nix b/pkgs/development/haskell-modules/configuration-lts-5.6.nix index d9ee78123bfa..51178e9c80a4 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.6.nix @@ -72,6 +72,7 @@ self: super: { "Advgame" = dontDistribute super."Advgame"; "AesonBson" = dontDistribute super."AesonBson"; "Agata" = dontDistribute super."Agata"; + "Agda" = doDistribute super."Agda_2_4_2_5"; "Agda-executable" = dontDistribute super."Agda-executable"; "AhoCorasick" = dontDistribute super."AhoCorasick"; "AlgorithmW" = dontDistribute super."AlgorithmW"; @@ -1092,10 +1093,12 @@ self: super: { "aeson-compat" = doDistribute super."aeson-compat_0_3_1_0"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; "aeson-smart" = dontDistribute super."aeson-smart"; @@ -1262,6 +1265,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = doDistribute super."apiary_1_4_5"; @@ -1277,6 +1281,7 @@ self: super: { "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; "applicative-quoters" = dontDistribute super."applicative-quoters"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = doDistribute super."apply-refact_0_1_0_0"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1317,6 +1322,7 @@ self: super: { "arxiv" = dontDistribute super."arxiv"; "ascetic" = dontDistribute super."ascetic"; "ascii" = dontDistribute super."ascii"; + "ascii-progress" = doDistribute super."ascii-progress_0_3_2_0"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; @@ -1473,6 +1479,7 @@ self: super: { "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1611,6 +1618,7 @@ self: super: { "blas-hs" = dontDistribute super."blas-hs"; "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html-contrib" = dontDistribute super."blaze-html-contrib"; @@ -1627,6 +1635,7 @@ self: super: { "blogination" = dontDistribute super."blogination"; "bloodhound" = dontDistribute super."bloodhound"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1982,6 +1991,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2017,6 +2027,7 @@ self: super: { "complexity" = dontDistribute super."complexity"; "compose-ltr" = dontDistribute super."compose-ltr"; "compose-trans" = dontDistribute super."compose-trans"; + "composition-tree" = doDistribute super."composition-tree_0_2_0_1"; "compression" = dontDistribute super."compression"; "compstrat" = dontDistribute super."compstrat"; "comptrans" = dontDistribute super."comptrans"; @@ -2272,6 +2283,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -2531,6 +2543,7 @@ self: super: { "docidx" = dontDistribute super."docidx"; "docker" = dontDistribute super."docker"; "dockercook" = dontDistribute super."dockercook"; + "doctest" = doDistribute super."doctest_0_10_1"; "doctest-discover" = dontDistribute super."doctest-discover"; "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; "doctest-prop" = dontDistribute super."doctest-prop"; @@ -3914,6 +3927,7 @@ self: super: { "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; + "hindent" = doDistribute super."hindent_4_6_1"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -4291,6 +4305,7 @@ self: super: { "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" = doDistribute super."http-client-openssl_0_2_0_1"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; @@ -4341,6 +4356,9 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hws" = dontDistribute super."hws"; @@ -4510,6 +4528,7 @@ self: super: { "iothread" = dontDistribute super."iothread"; "iotransaction" = dontDistribute super."iotransaction"; "ip-quoter" = dontDistribute super."ip-quoter"; + "ip6addr" = doDistribute super."ip6addr_0_5_0_1"; "ipatch" = dontDistribute super."ipatch"; "ipc" = dontDistribute super."ipc"; "ipcvar" = dontDistribute super."ipcvar"; @@ -5094,6 +5113,7 @@ self: super: { "mandulia" = dontDistribute super."mandulia"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -5609,6 +5629,7 @@ self: super: { "opaleye-trans" = dontDistribute super."opaleye-trans"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -5650,6 +5671,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "option" = dontDistribute super."option"; "optional" = dontDistribute super."optional"; + "optional-args" = doDistribute super."optional-args_1_0_0"; "options-time" = dontDistribute super."options-time"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "optparse-generic" = dontDistribute super."optparse-generic"; @@ -5751,6 +5773,7 @@ self: super: { "pasty" = dontDistribute super."pasty"; "patch-combinators" = dontDistribute super."patch-combinators"; "patch-image" = dontDistribute super."patch-image"; + "patches-vector" = doDistribute super."patches-vector_0_1_5_1"; "path-io" = doDistribute super."path-io_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; @@ -5799,6 +5822,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_4"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -5991,11 +6015,13 @@ self: super: { "prednote-test" = dontDistribute super."prednote-test"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = dontDistribute super."present"; @@ -6379,6 +6405,7 @@ self: super: { "restricted-workers" = dontDistribute super."restricted-workers"; "restyle" = dontDistribute super."restyle"; "resumable-exceptions" = dontDistribute super."resumable-exceptions"; + "rethinkdb" = doDistribute super."rethinkdb_2_2_0_3"; "rethinkdb-model" = dontDistribute super."rethinkdb-model"; "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retryer" = dontDistribute super."retryer"; @@ -6555,6 +6582,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -6664,6 +6692,7 @@ self: super: { "shadowsocks" = dontDistribute super."shadowsocks"; "shady-gen" = dontDistribute super."shady-gen"; "shady-graphics" = dontDistribute super."shady-graphics"; + "shake" = doDistribute super."shake_0_15_5"; "shake-cabal-build" = dontDistribute super."shake-cabal-build"; "shake-extras" = dontDistribute super."shake-extras"; "shake-language-c" = doDistribute super."shake-language-c_0_8_4"; @@ -6698,6 +6727,7 @@ self: super: { "shortcircuit" = dontDistribute super."shortcircuit"; "shortcut-links" = doDistribute super."shortcut-links_0_4_1_0"; "shorten-strings" = dontDistribute super."shorten-strings"; + "should-not-typecheck" = doDistribute super."should-not-typecheck_2_0_1"; "show" = dontDistribute super."show"; "show-type" = dontDistribute super."show-type"; "showdown" = dontDistribute super."showdown"; @@ -6780,6 +6810,7 @@ self: super: { "sloth" = dontDistribute super."sloth"; "slug" = doDistribute super."slug_0_1_2"; "smallarray" = dontDistribute super."smallarray"; + "smallcaps" = doDistribute super."smallcaps_0_6_0_1"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; "smallcheck-lens" = dontDistribute super."smallcheck-lens"; "smallcheck-series" = dontDistribute super."smallcheck-series"; @@ -6925,6 +6956,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7019,7 +7051,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -7815,6 +7849,7 @@ self: super: { "wai-router" = dontDistribute super."wai-router"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-postgresql" = doDistribute super."wai-session-postgresql_0_2_0_4"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; "wai-static-pages" = dontDistribute super."wai-static-pages"; @@ -8046,6 +8081,7 @@ self: super: { "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_12"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "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"; @@ -8071,6 +8107,7 @@ self: super: { "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.7.nix b/pkgs/development/haskell-modules/configuration-lts-5.7.nix index 359afac3ca83..db8b19412979 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.7.nix @@ -72,6 +72,7 @@ self: super: { "Advgame" = dontDistribute super."Advgame"; "AesonBson" = dontDistribute super."AesonBson"; "Agata" = dontDistribute super."Agata"; + "Agda" = doDistribute super."Agda_2_4_2_5"; "Agda-executable" = dontDistribute super."Agda-executable"; "AhoCorasick" = dontDistribute super."AhoCorasick"; "AlgorithmW" = dontDistribute super."AlgorithmW"; @@ -1092,10 +1093,12 @@ self: super: { "aeson-compat" = doDistribute super."aeson-compat_0_3_1_0"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; "aeson-smart" = dontDistribute super."aeson-smart"; @@ -1262,6 +1265,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = doDistribute super."apiary_1_4_5"; @@ -1277,6 +1281,7 @@ self: super: { "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; "applicative-quoters" = dontDistribute super."applicative-quoters"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = doDistribute super."apply-refact_0_1_0_0"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1317,6 +1322,7 @@ self: super: { "arxiv" = dontDistribute super."arxiv"; "ascetic" = dontDistribute super."ascetic"; "ascii" = dontDistribute super."ascii"; + "ascii-progress" = doDistribute super."ascii-progress_0_3_2_0"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; @@ -1473,6 +1479,7 @@ self: super: { "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1611,6 +1618,7 @@ self: super: { "blas-hs" = dontDistribute super."blas-hs"; "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html-contrib" = dontDistribute super."blaze-html-contrib"; @@ -1627,6 +1635,7 @@ self: super: { "blogination" = dontDistribute super."blogination"; "bloodhound" = dontDistribute super."bloodhound"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1979,6 +1988,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2014,6 +2024,7 @@ self: super: { "complexity" = dontDistribute super."complexity"; "compose-ltr" = dontDistribute super."compose-ltr"; "compose-trans" = dontDistribute super."compose-trans"; + "composition-tree" = doDistribute super."composition-tree_0_2_0_1"; "compression" = dontDistribute super."compression"; "compstrat" = dontDistribute super."compstrat"; "comptrans" = dontDistribute super."comptrans"; @@ -2268,6 +2279,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -2527,6 +2539,7 @@ self: super: { "docidx" = dontDistribute super."docidx"; "docker" = dontDistribute super."docker"; "dockercook" = dontDistribute super."dockercook"; + "doctest" = doDistribute super."doctest_0_10_1"; "doctest-discover" = dontDistribute super."doctest-discover"; "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; "doctest-prop" = dontDistribute super."doctest-prop"; @@ -3909,6 +3922,7 @@ self: super: { "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; + "hindent" = doDistribute super."hindent_4_6_1"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -4285,6 +4299,7 @@ self: super: { "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" = doDistribute super."http-client-openssl_0_2_0_1"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; @@ -4335,6 +4350,9 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hws" = dontDistribute super."hws"; @@ -4504,6 +4522,7 @@ self: super: { "iothread" = dontDistribute super."iothread"; "iotransaction" = dontDistribute super."iotransaction"; "ip-quoter" = dontDistribute super."ip-quoter"; + "ip6addr" = doDistribute super."ip6addr_0_5_0_1"; "ipatch" = dontDistribute super."ipatch"; "ipc" = dontDistribute super."ipc"; "ipcvar" = dontDistribute super."ipcvar"; @@ -5088,6 +5107,7 @@ self: super: { "mandulia" = dontDistribute super."mandulia"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -5602,6 +5622,7 @@ self: super: { "opaleye-trans" = dontDistribute super."opaleye-trans"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -5643,6 +5664,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "option" = dontDistribute super."option"; "optional" = dontDistribute super."optional"; + "optional-args" = doDistribute super."optional-args_1_0_0"; "options-time" = dontDistribute super."options-time"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "optparse-generic" = dontDistribute super."optparse-generic"; @@ -5744,6 +5766,7 @@ self: super: { "pasty" = dontDistribute super."pasty"; "patch-combinators" = dontDistribute super."patch-combinators"; "patch-image" = dontDistribute super."patch-image"; + "patches-vector" = doDistribute super."patches-vector_0_1_5_1"; "path-io" = doDistribute super."path-io_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; @@ -5791,6 +5814,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -5981,11 +6005,13 @@ self: super: { "prednote-test" = dontDistribute super."prednote-test"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = dontDistribute super."present"; @@ -6369,6 +6395,7 @@ self: super: { "restricted-workers" = dontDistribute super."restricted-workers"; "restyle" = dontDistribute super."restyle"; "resumable-exceptions" = dontDistribute super."resumable-exceptions"; + "rethinkdb" = doDistribute super."rethinkdb_2_2_0_3"; "rethinkdb-model" = dontDistribute super."rethinkdb-model"; "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retryer" = dontDistribute super."retryer"; @@ -6544,6 +6571,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -6653,6 +6681,7 @@ self: super: { "shadowsocks" = dontDistribute super."shadowsocks"; "shady-gen" = dontDistribute super."shady-gen"; "shady-graphics" = dontDistribute super."shady-graphics"; + "shake" = doDistribute super."shake_0_15_5"; "shake-cabal-build" = dontDistribute super."shake-cabal-build"; "shake-extras" = dontDistribute super."shake-extras"; "shake-language-c" = doDistribute super."shake-language-c_0_8_4"; @@ -6687,6 +6716,7 @@ self: super: { "shortcircuit" = dontDistribute super."shortcircuit"; "shortcut-links" = doDistribute super."shortcut-links_0_4_1_0"; "shorten-strings" = dontDistribute super."shorten-strings"; + "should-not-typecheck" = doDistribute super."should-not-typecheck_2_0_1"; "show" = dontDistribute super."show"; "show-type" = dontDistribute super."show-type"; "showdown" = dontDistribute super."showdown"; @@ -6769,6 +6799,7 @@ self: super: { "sloth" = dontDistribute super."sloth"; "slug" = doDistribute super."slug_0_1_2"; "smallarray" = dontDistribute super."smallarray"; + "smallcaps" = doDistribute super."smallcaps_0_6_0_1"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; "smallcheck-lens" = dontDistribute super."smallcheck-lens"; "smallcheck-series" = dontDistribute super."smallcheck-series"; @@ -6914,6 +6945,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7008,7 +7040,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -7801,6 +7835,7 @@ self: super: { "wai-router" = dontDistribute super."wai-router"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-postgresql" = doDistribute super."wai-session-postgresql_0_2_0_4"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; "wai-static-pages" = dontDistribute super."wai-static-pages"; @@ -8032,6 +8067,7 @@ self: super: { "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_12"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "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"; @@ -8057,6 +8093,7 @@ self: super: { "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.8.nix b/pkgs/development/haskell-modules/configuration-lts-5.8.nix index 82f403de3dcd..e4c9eec1febc 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.8.nix @@ -72,6 +72,7 @@ self: super: { "Advgame" = dontDistribute super."Advgame"; "AesonBson" = dontDistribute super."AesonBson"; "Agata" = dontDistribute super."Agata"; + "Agda" = doDistribute super."Agda_2_4_2_5"; "Agda-executable" = dontDistribute super."Agda-executable"; "AhoCorasick" = dontDistribute super."AhoCorasick"; "AlgorithmW" = dontDistribute super."AlgorithmW"; @@ -1092,10 +1093,12 @@ self: super: { "aeson-compat" = doDistribute super."aeson-compat_0_3_1_0"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; "aeson-smart" = dontDistribute super."aeson-smart"; @@ -1262,6 +1265,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = doDistribute super."apiary_1_4_5"; @@ -1277,6 +1281,7 @@ self: super: { "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; "applicative-quoters" = dontDistribute super."applicative-quoters"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = doDistribute super."apply-refact_0_1_0_0"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1317,6 +1322,7 @@ self: super: { "arxiv" = dontDistribute super."arxiv"; "ascetic" = dontDistribute super."ascetic"; "ascii" = dontDistribute super."ascii"; + "ascii-progress" = doDistribute super."ascii-progress_0_3_2_0"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; @@ -1473,6 +1479,7 @@ self: super: { "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1611,6 +1618,7 @@ self: super: { "blas-hs" = dontDistribute super."blas-hs"; "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html-contrib" = dontDistribute super."blaze-html-contrib"; @@ -1627,6 +1635,7 @@ self: super: { "blogination" = dontDistribute super."blogination"; "bloodhound" = dontDistribute super."bloodhound"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1979,6 +1988,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2014,6 +2024,7 @@ self: super: { "complexity" = dontDistribute super."complexity"; "compose-ltr" = dontDistribute super."compose-ltr"; "compose-trans" = dontDistribute super."compose-trans"; + "composition-tree" = doDistribute super."composition-tree_0_2_0_1"; "compression" = dontDistribute super."compression"; "compstrat" = dontDistribute super."compstrat"; "comptrans" = dontDistribute super."comptrans"; @@ -2267,6 +2278,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -2526,6 +2538,7 @@ self: super: { "docidx" = dontDistribute super."docidx"; "docker" = dontDistribute super."docker"; "dockercook" = dontDistribute super."dockercook"; + "doctest" = doDistribute super."doctest_0_10_1"; "doctest-discover" = dontDistribute super."doctest-discover"; "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; "doctest-prop" = dontDistribute super."doctest-prop"; @@ -3908,6 +3921,7 @@ self: super: { "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; + "hindent" = doDistribute super."hindent_4_6_1"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -4284,6 +4298,7 @@ self: super: { "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" = doDistribute super."http-client-openssl_0_2_0_1"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; @@ -4334,6 +4349,9 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hws" = dontDistribute super."hws"; @@ -4503,6 +4521,7 @@ self: super: { "iothread" = dontDistribute super."iothread"; "iotransaction" = dontDistribute super."iotransaction"; "ip-quoter" = dontDistribute super."ip-quoter"; + "ip6addr" = doDistribute super."ip6addr_0_5_0_1"; "ipatch" = dontDistribute super."ipatch"; "ipc" = dontDistribute super."ipc"; "ipcvar" = dontDistribute super."ipcvar"; @@ -5087,6 +5106,7 @@ self: super: { "mandulia" = dontDistribute super."mandulia"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -5601,6 +5621,7 @@ self: super: { "opaleye-trans" = dontDistribute super."opaleye-trans"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -5642,6 +5663,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "option" = dontDistribute super."option"; "optional" = dontDistribute super."optional"; + "optional-args" = doDistribute super."optional-args_1_0_0"; "options-time" = dontDistribute super."options-time"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "optparse-generic" = dontDistribute super."optparse-generic"; @@ -5743,6 +5765,7 @@ self: super: { "pasty" = dontDistribute super."pasty"; "patch-combinators" = dontDistribute super."patch-combinators"; "patch-image" = dontDistribute super."patch-image"; + "patches-vector" = doDistribute super."patches-vector_0_1_5_1"; "path-io" = doDistribute super."path-io_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; @@ -5790,6 +5813,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -5980,11 +6004,13 @@ self: super: { "prednote-test" = dontDistribute super."prednote-test"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = dontDistribute super."present"; @@ -6368,6 +6394,7 @@ self: super: { "restricted-workers" = dontDistribute super."restricted-workers"; "restyle" = dontDistribute super."restyle"; "resumable-exceptions" = dontDistribute super."resumable-exceptions"; + "rethinkdb" = doDistribute super."rethinkdb_2_2_0_3"; "rethinkdb-model" = dontDistribute super."rethinkdb-model"; "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retryer" = dontDistribute super."retryer"; @@ -6543,6 +6570,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -6652,6 +6680,7 @@ self: super: { "shadowsocks" = dontDistribute super."shadowsocks"; "shady-gen" = dontDistribute super."shady-gen"; "shady-graphics" = dontDistribute super."shady-graphics"; + "shake" = doDistribute super."shake_0_15_5"; "shake-cabal-build" = dontDistribute super."shake-cabal-build"; "shake-extras" = dontDistribute super."shake-extras"; "shake-language-c" = doDistribute super."shake-language-c_0_8_4"; @@ -6686,6 +6715,7 @@ self: super: { "shortcircuit" = dontDistribute super."shortcircuit"; "shortcut-links" = doDistribute super."shortcut-links_0_4_1_0"; "shorten-strings" = dontDistribute super."shorten-strings"; + "should-not-typecheck" = doDistribute super."should-not-typecheck_2_0_1"; "show" = dontDistribute super."show"; "show-type" = dontDistribute super."show-type"; "showdown" = dontDistribute super."showdown"; @@ -6768,6 +6798,7 @@ self: super: { "sloth" = dontDistribute super."sloth"; "slug" = doDistribute super."slug_0_1_2"; "smallarray" = dontDistribute super."smallarray"; + "smallcaps" = doDistribute super."smallcaps_0_6_0_1"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; "smallcheck-lens" = dontDistribute super."smallcheck-lens"; "smallcheck-series" = dontDistribute super."smallcheck-series"; @@ -6913,6 +6944,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7007,7 +7039,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -7798,6 +7832,7 @@ self: super: { "wai-router" = dontDistribute super."wai-router"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-postgresql" = doDistribute super."wai-session-postgresql_0_2_0_4"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; "wai-static-pages" = dontDistribute super."wai-static-pages"; @@ -8029,6 +8064,7 @@ self: super: { "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_12"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "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"; @@ -8054,6 +8090,7 @@ self: super: { "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.9.nix b/pkgs/development/haskell-modules/configuration-lts-5.9.nix index 695213a886f6..20dfa12f481e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.9.nix @@ -72,6 +72,7 @@ self: super: { "Advgame" = dontDistribute super."Advgame"; "AesonBson" = dontDistribute super."AesonBson"; "Agata" = dontDistribute super."Agata"; + "Agda" = doDistribute super."Agda_2_4_2_5"; "Agda-executable" = dontDistribute super."Agda-executable"; "AhoCorasick" = dontDistribute super."AhoCorasick"; "AlgorithmW" = dontDistribute super."AlgorithmW"; @@ -1091,10 +1092,12 @@ self: super: { "aeson-compat" = doDistribute super."aeson-compat_0_3_1_0"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; "aeson-smart" = dontDistribute super."aeson-smart"; @@ -1261,6 +1264,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = doDistribute super."apiary_1_4_5"; @@ -1276,6 +1280,7 @@ self: super: { "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; "applicative-quoters" = dontDistribute super."applicative-quoters"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = doDistribute super."apply-refact_0_1_0_0"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1316,6 +1321,7 @@ self: super: { "arxiv" = dontDistribute super."arxiv"; "ascetic" = dontDistribute super."ascetic"; "ascii" = dontDistribute super."ascii"; + "ascii-progress" = doDistribute super."ascii-progress_0_3_2_0"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; @@ -1472,6 +1478,7 @@ self: super: { "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1610,6 +1617,7 @@ self: super: { "blas-hs" = dontDistribute super."blas-hs"; "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html-contrib" = dontDistribute super."blaze-html-contrib"; @@ -1626,6 +1634,7 @@ self: super: { "blogination" = dontDistribute super."blogination"; "bloodhound" = dontDistribute super."bloodhound"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1977,6 +1986,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2012,6 +2022,7 @@ self: super: { "complexity" = dontDistribute super."complexity"; "compose-ltr" = dontDistribute super."compose-ltr"; "compose-trans" = dontDistribute super."compose-trans"; + "composition-tree" = doDistribute super."composition-tree_0_2_0_1"; "compression" = dontDistribute super."compression"; "compstrat" = dontDistribute super."compstrat"; "comptrans" = dontDistribute super."comptrans"; @@ -2265,6 +2276,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -2523,6 +2535,7 @@ self: super: { "docidx" = dontDistribute super."docidx"; "docker" = dontDistribute super."docker"; "dockercook" = dontDistribute super."dockercook"; + "doctest" = doDistribute super."doctest_0_10_1"; "doctest-discover" = dontDistribute super."doctest-discover"; "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; "doctest-prop" = dontDistribute super."doctest-prop"; @@ -3901,6 +3914,7 @@ self: super: { "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; + "hindent" = doDistribute super."hindent_4_6_1"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -4277,6 +4291,7 @@ self: super: { "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" = doDistribute super."http-client-openssl_0_2_0_1"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; @@ -4327,6 +4342,9 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hws" = dontDistribute super."hws"; @@ -4494,6 +4512,7 @@ self: super: { "iothread" = dontDistribute super."iothread"; "iotransaction" = dontDistribute super."iotransaction"; "ip-quoter" = dontDistribute super."ip-quoter"; + "ip6addr" = doDistribute super."ip6addr_0_5_0_1"; "ipatch" = dontDistribute super."ipatch"; "ipc" = dontDistribute super."ipc"; "ipcvar" = dontDistribute super."ipcvar"; @@ -5076,6 +5095,7 @@ self: super: { "mandulia" = dontDistribute super."mandulia"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -5589,6 +5609,7 @@ self: super: { "opaleye-trans" = dontDistribute super."opaleye-trans"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -5630,6 +5651,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "option" = dontDistribute super."option"; "optional" = dontDistribute super."optional"; + "optional-args" = doDistribute super."optional-args_1_0_0"; "options-time" = dontDistribute super."options-time"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "optparse-generic" = dontDistribute super."optparse-generic"; @@ -5729,6 +5751,7 @@ self: super: { "pasty" = dontDistribute super."pasty"; "patch-combinators" = dontDistribute super."patch-combinators"; "patch-image" = dontDistribute super."patch-image"; + "patches-vector" = doDistribute super."patches-vector_0_1_5_1"; "path-io" = doDistribute super."path-io_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; @@ -5775,6 +5798,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -5965,11 +5989,13 @@ self: super: { "prednote-test" = dontDistribute super."prednote-test"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = dontDistribute super."present"; @@ -6353,6 +6379,7 @@ self: super: { "restricted-workers" = dontDistribute super."restricted-workers"; "restyle" = dontDistribute super."restyle"; "resumable-exceptions" = dontDistribute super."resumable-exceptions"; + "rethinkdb" = doDistribute super."rethinkdb_2_2_0_3"; "rethinkdb-model" = dontDistribute super."rethinkdb-model"; "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retryer" = dontDistribute super."retryer"; @@ -6528,6 +6555,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -6631,6 +6659,7 @@ self: super: { "shadowsocks" = dontDistribute super."shadowsocks"; "shady-gen" = dontDistribute super."shady-gen"; "shady-graphics" = dontDistribute super."shady-graphics"; + "shake" = doDistribute super."shake_0_15_5"; "shake-cabal-build" = dontDistribute super."shake-cabal-build"; "shake-extras" = dontDistribute super."shake-extras"; "shake-language-c" = doDistribute super."shake-language-c_0_8_4"; @@ -6664,6 +6693,7 @@ self: super: { "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; "shorten-strings" = dontDistribute super."shorten-strings"; + "should-not-typecheck" = doDistribute super."should-not-typecheck_2_0_1"; "show" = dontDistribute super."show"; "show-type" = dontDistribute super."show-type"; "showdown" = dontDistribute super."showdown"; @@ -6746,6 +6776,7 @@ self: super: { "sloth" = dontDistribute super."sloth"; "slug" = doDistribute super."slug_0_1_2"; "smallarray" = dontDistribute super."smallarray"; + "smallcaps" = doDistribute super."smallcaps_0_6_0_1"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; "smallcheck-lens" = dontDistribute super."smallcheck-lens"; "smallcheck-series" = dontDistribute super."smallcheck-series"; @@ -6890,6 +6921,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -6984,7 +7016,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -7773,6 +7807,7 @@ self: super: { "wai-router" = dontDistribute super."wai-router"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-postgresql" = doDistribute super."wai-session-postgresql_0_2_0_4"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; "wai-static-pages" = dontDistribute super."wai-static-pages"; @@ -8003,6 +8038,7 @@ self: super: { "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_12"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "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"; @@ -8027,6 +8063,7 @@ self: super: { "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix index e3d25a1427f2..be180605a655 100644 --- a/pkgs/development/haskell-modules/hackage-packages.nix +++ b/pkgs/development/haskell-modules/hackage-packages.nix @@ -776,7 +776,7 @@ self: { maintainers = with stdenv.lib.maintainers; [ abbradar ]; }) {inherit (pkgs) emacs;}; - "Agda" = callPackage + "Agda_2_4_2_5" = callPackage ({ mkDerivation, alex, array, base, binary, boxes, bytestring , containers, cpphs, data-hash, deepseq, directory, edit-distance , emacs, equivalence, filepath, geniplate-mirror, happy, hashable @@ -811,6 +811,47 @@ self: { homepage = "http://wiki.portal.chalmers.se/agda/"; description = "A dependently typed functional programming language and proof assistant"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + maintainers = with stdenv.lib.maintainers; [ abbradar ]; + }) {inherit (pkgs) emacs;}; + + "Agda" = callPackage + ({ mkDerivation, alex, array, base, binary, boxes, bytestring + , containers, cpphs, data-hash, deepseq, directory, EdisonAPI + , EdisonCore, edit-distance, emacs, equivalence, filemanip + , filepath, geniplate-mirror, happy, hashable, hashtables + , haskeline, haskell-src-exts, monadplus, mtl, parallel, pretty + , process, QuickCheck, strict, template-haskell, text, time + , transformers, transformers-compat, unordered-containers, xhtml + , zlib + }: + mkDerivation { + pname = "Agda"; + version = "2.5.1"; + sha256 = "ee4658eafb514460d598322fa98528d1af6e25e5aa51843bb473c0d8a325c0c8"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + array base binary boxes bytestring containers data-hash deepseq + directory EdisonAPI EdisonCore edit-distance equivalence filepath + geniplate-mirror hashable hashtables haskeline haskell-src-exts + monadplus mtl parallel pretty process QuickCheck strict + template-haskell text time transformers transformers-compat + unordered-containers xhtml zlib + ]; + libraryToolDepends = [ alex cpphs happy ]; + executableHaskellDepends = [ + base binary containers directory filemanip filepath + haskell-src-exts mtl process + ]; + executableToolDepends = [ emacs ]; + postInstall = '' + $out/bin/agda -c --no-main $(find $out/share -name Primitive.agda) + $out/bin/agda-mode compile + ''; + homepage = "http://wiki.portal.chalmers.se/agda/"; + description = "A dependently typed functional programming language and proof assistant"; + license = "unknown"; maintainers = with stdenv.lib.maintainers; [ abbradar ]; }) {inherit (pkgs) emacs;}; @@ -16520,10 +16561,9 @@ self: { ({ mkDerivation, base, mtl, QuickCheck, random }: mkDerivation { pname = "QuickCheck-GenT"; - version = "0.1.4"; - sha256 = "fdfc66a8d416b1c64c95b409552813f239c85bc829527759350f60956fb8fa1f"; + version = "0.2.0"; + sha256 = "2d33ca9912e9a04c21cbde7f11b2b233455fcead3e4e6aaba9700097f8276c6d"; libraryHaskellDepends = [ base mtl QuickCheck random ]; - jailbreak = true; homepage = "https://github.com/nikita-volkov/QuickCheck-GenT"; description = "A GenT monad transformer for QuickCheck library"; license = stdenv.lib.licenses.mit; @@ -22888,6 +22928,7 @@ self: { transformers ]; testHaskellDepends = [ base directory doctest filepath ]; + jailbreak = true; doCheck = false; homepage = "http://github.com/ekmett/ad"; description = "Automatic Differentiation"; @@ -22909,6 +22950,7 @@ self: { transformers ]; testHaskellDepends = [ base directory doctest filepath ]; + jailbreak = true; homepage = "http://github.com/ekmett/ad"; description = "Automatic Differentiation"; license = stdenv.lib.licenses.bsd3; @@ -22929,6 +22971,8 @@ self: { transformers ]; testHaskellDepends = [ base directory doctest filepath ]; + jailbreak = true; + doCheck = false; homepage = "http://github.com/ekmett/ad"; description = "Automatic Differentiation"; license = stdenv.lib.licenses.bsd3; @@ -23742,6 +23786,21 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "aeson-flatten" = callPackage + ({ mkDerivation, aeson, base, bytestring, hspec, text + , unordered-containers + }: + mkDerivation { + pname = "aeson-flatten"; + version = "0.1.0.1"; + sha256 = "e5376ef651b659fdc38274087fdd976da077a6317ec6cd44249e63bd85934bdd"; + libraryHaskellDepends = [ aeson base text unordered-containers ]; + testHaskellDepends = [ aeson base bytestring hspec ]; + homepage = "https://github.com/githubuser/aeson-flatten#readme"; + description = "JSON flatten for Aeson"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "aeson-iproute" = callPackage ({ mkDerivation, aeson, base, iproute, text }: mkDerivation { @@ -23810,6 +23869,23 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "aeson-prefix" = callPackage + ({ mkDerivation, aeson, base, bytestring, hspec, mtl, text + , unordered-containers, vector + }: + mkDerivation { + pname = "aeson-prefix"; + version = "0.1.0.2"; + sha256 = "4ba024dfcad59a90319eedf5d0a61e427fda29c3f0d3c2369ed1ad8790327ef9"; + libraryHaskellDepends = [ + aeson base mtl text unordered-containers vector + ]; + testHaskellDepends = [ aeson base bytestring hspec mtl text ]; + homepage = "https://github.com/j1r1k/aeson-prefix#readme"; + description = "Hiearchical prefixing for aeson"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "aeson-pretty" = callPackage ({ mkDerivation, aeson, attoparsec, base, bytestring, cmdargs, text , unordered-containers, vector @@ -24238,8 +24314,8 @@ self: { }: mkDerivation { pname = "agda-snippets"; - version = "2.4.2.5"; - sha256 = "f1e42f920bb4c4f43836d9844f13ac3942b1048c032b05b043716cd47d11ed22"; + version = "2.5.1"; + sha256 = "9dd2d5fe077df8e6f6af96615e653a4d147e4e51429f022fd69451054b2056d6"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -24258,13 +24334,30 @@ self: { }: mkDerivation { pname = "agda-snippets-hakyll"; - version = "0.1.1.1"; - sha256 = "d779e0b6b70eeba21efed698a6842873fb5ddc1de4fe5e91c40d761dceec514c"; + version = "0.1.2.0"; + sha256 = "83829a3599fe61a81747e7054659902fbf7258cf08fb61dd6fc47fae06e699d9"; + 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; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "agda-snippets-hakyll_0_1_2_1" = callPackage + ({ mkDerivation, agda-snippets, base, directory, filepath, hakyll + , network-uri, pandoc, pandoc-types + }: + mkDerivation { + pname = "agda-snippets-hakyll"; + version = "0.1.2.1"; + sha256 = "9f9b2e72b7c2d0aeed1cc8255c50464915f78665ae8c61e8466567ac22d3b6cf"; libraryHaskellDepends = [ agda-snippets base directory filepath hakyll network-uri pandoc pandoc-types ]; - jailbreak = true; homepage = "https://github.com/liamoc/agda-snippets#readme"; description = "Literate Agda support using agda-snippets, for Hakyll pages"; license = stdenv.lib.licenses.bsd3; @@ -30942,6 +31035,23 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "api-field-json-th" = callPackage + ({ mkDerivation, aeson, base, HUnit, lens, split, template-haskell + , text + }: + mkDerivation { + pname = "api-field-json-th"; + version = "0.1.0.1"; + sha256 = "88befb216037f0460950cd91960db2ba7789231b6ab829b04b2b9dd60a007626"; + libraryHaskellDepends = [ + aeson base lens split template-haskell text + ]; + testHaskellDepends = [ aeson base HUnit lens ]; + homepage = "https://github.com/nakaji-dayo/api-field-json-th"; + description = "option of aeson's deriveJSON"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "api-opentheory-unicode" = callPackage ({ mkDerivation, base, bytestring, directory, opentheory-unicode }: mkDerivation { @@ -31545,6 +31655,22 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "applicative-splice" = callPackage + ({ mkDerivation, base, haskell-src-exts, haskell-src-meta, mtl, syb + , template-haskell + }: + mkDerivation { + pname = "applicative-splice"; + version = "0.0.0.0"; + sha256 = "8a75dc608c12e1d33213fd7db7423ab545fa00dda300b804992b8de5cd12a32a"; + libraryHaskellDepends = [ + base haskell-src-exts haskell-src-meta mtl syb template-haskell + ]; + homepage = "https://github.com/takano-akio/applicative-splice"; + description = "Write applicative programs in direct style (generalizes idiom brackets)"; + license = stdenv.lib.licenses.publicDomain; + }) {}; + "apply-refact_0_1_0_0" = callPackage ({ mkDerivation, base, containers, directory, filemanip, filepath , ghc, ghc-exactprint, mtl, optparse-applicative, process, refact @@ -32537,12 +32663,12 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "array_0_5_1_0" = callPackage + "array_0_5_1_1" = callPackage ({ mkDerivation, base }: mkDerivation { pname = "array"; - version = "0.5.1.0"; - sha256 = "b84bc8a6cd4526888a165e111ed23ba7af6c743608774d41604636a8990c1fa2"; + version = "0.5.1.1"; + sha256 = "89c96958578da5051f684e38dacad7558ec023a7b08f97eb19876dba08ce2223"; libraryHaskellDepends = [ base ]; description = "Mutable and immutable arrays"; license = stdenv.lib.licenses.bsd3; @@ -32776,7 +32902,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "ascii-progress" = callPackage + "ascii-progress_0_3_2_0" = callPackage ({ mkDerivation, async, base, concurrent-output, data-default , hspec, QuickCheck, time }: @@ -32795,6 +32921,28 @@ self: { homepage = "https://github.com/yamadapc/haskell-ascii-progress"; description = "A simple progress bar for the console"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "ascii-progress" = callPackage + ({ mkDerivation, async, base, concurrent-output, data-default + , hspec, QuickCheck, time + }: + mkDerivation { + pname = "ascii-progress"; + version = "0.3.3.0"; + sha256 = "7e3fa6b80c09a83c9ba8a0644ef304ca92d65b76383b8dd023ff9f89ebec913e"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + async base concurrent-output data-default time + ]; + testHaskellDepends = [ + async base concurrent-output data-default hspec QuickCheck time + ]; + homepage = "https://github.com/yamadapc/haskell-ascii-progress"; + description = "A simple progress bar for the console"; + license = stdenv.lib.licenses.mit; }) {}; "ascii-vector-avc" = callPackage @@ -34232,8 +34380,8 @@ self: { }: mkDerivation { pname = "aur"; - version = "5.0.0"; - sha256 = "626b590839ca942a6453261deb2abc1f23bfc001fc73fa8fd1cc8161c7ed06e3"; + version = "5.0.1"; + sha256 = "84182e6288734890c02582814009185a6644760cc4ad0f2a83acc5c6f916227b"; libraryHaskellDepends = [ aeson base http-client http-client-tls mtl servant servant-client text transformers @@ -34480,14 +34628,14 @@ self: { }) {}; "autoexporter" = callPackage - ({ mkDerivation, base, directory, filepath }: + ({ mkDerivation, base, Cabal, directory, filepath }: mkDerivation { pname = "autoexporter"; - version = "0.1.4"; - sha256 = "b3b75b89e2d357a49df12b429cb7699932dd9b96bd1104ee9b1fcbe48a7e9b47"; + version = "0.2.0"; + sha256 = "e4c0145475197dd5dd61639d88c406090d472daa7bac28e9be70a230994bb8db"; isLibrary = true; isExecutable = true; - libraryHaskellDepends = [ base directory filepath ]; + libraryHaskellDepends = [ base Cabal directory filepath ]; executableHaskellDepends = [ base ]; homepage = "https://github.com/tfausak/autoexporter#readme"; description = "Automatically re-export modules"; @@ -34513,18 +34661,18 @@ self: { }) {}; "automotive-cse" = callPackage - ({ mkDerivation, base, bytestring, cereal, cryptonite, memory - , quickcheck-simple + ({ mkDerivation, base, bytestring, bytestring-short, cereal + , cryptonite, memory, QuickCheck, quickcheck-simple }: mkDerivation { pname = "automotive-cse"; - version = "0.0.1.1"; - sha256 = "d19d0458f01691d72d2a238dfbd925b02145e66c4a64f90dab665d038ed80915"; + version = "0.1.2.0"; + sha256 = "97873ddb30997908e2e82d30a8ffff21d16280efa3be2b9985d69794ccfc515a"; libraryHaskellDepends = [ - base bytestring cereal cryptonite memory + base bytestring bytestring-short cereal cryptonite memory ]; testHaskellDepends = [ - base bytestring cryptonite quickcheck-simple + base bytestring cryptonite QuickCheck quickcheck-simple ]; description = "Automotive CSE emulation"; license = stdenv.lib.licenses.bsd3; @@ -37583,6 +37731,18 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "bento" = callPackage + ({ mkDerivation, base }: + mkDerivation { + pname = "bento"; + version = "0.1.0"; + sha256 = "eba28420daba13af9de264ec0e3d605535496536b9aff9bc23798cdbcc209192"; + libraryHaskellDepends = [ base ]; + homepage = "https://github.com/tfausak/bento#readme"; + description = "🍱 Manage stateful components"; + license = stdenv.lib.licenses.mit; + }) {}; + "berkeleydb" = callPackage ({ mkDerivation, base, binary, bytestring, db }: mkDerivation { @@ -37796,8 +37956,8 @@ self: { }: mkDerivation { pname = "bibdb"; - version = "0.3.0"; - sha256 = "e90d5952020d7bfe6ba5ae8abc447377eff553ce0bf7d5cfa4ff52dcc74cd0a9"; + version = "0.4.2"; + sha256 = "6f741fe0e4b1adacee03f7ca2a71c5727709e105dee5a67431b2c298233ca446"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -37817,8 +37977,8 @@ self: { ({ mkDerivation, base, latex, parsec, utility-ht }: mkDerivation { pname = "bibtex"; - version = "0.1.0.5"; - sha256 = "dd06fbd5d597a558f059775b258ae526baa41c656a92e7d8a45646c64c1bc74b"; + version = "0.1.0.6"; + sha256 = "090a3b9589388bdf9d2bf60d8d1898aa0313a2874b551ba86cbbd049f3ee5f04"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base latex parsec utility-ht ]; @@ -40141,6 +40301,7 @@ self: { sha256 = "0c3ce1c19f6830a083b39590a8e9015b1fb430f4fb97dc5349c21c03eec72c14"; libraryHaskellDepends = [ base numeric-qq ]; testHaskellDepends = [ base directory doctest filepath ]; + jailbreak = true; homepage = "https://github.com/nikita-volkov/bit-array"; description = "A bit array (aka bitset, bitmap, bit vector) API for numeric types"; license = stdenv.lib.licenses.mit; @@ -40939,7 +41100,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "blaze-builder" = callPackage + "blaze-builder_0_4_0_1" = callPackage ({ mkDerivation, base, bytestring, deepseq, HUnit, QuickCheck , test-framework, test-framework-hunit, test-framework-quickcheck2 , text, utf8-string @@ -40956,6 +41117,26 @@ self: { homepage = "http://github.com/lpsmith/blaze-builder"; description = "Efficient buffered output"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "blaze-builder" = callPackage + ({ mkDerivation, base, bytestring, deepseq, HUnit, QuickCheck + , test-framework, test-framework-hunit, test-framework-quickcheck2 + , text, utf8-string + }: + mkDerivation { + pname = "blaze-builder"; + version = "0.4.0.2"; + sha256 = "9ad3e4661bf5556d650fb9aa56a3ad6e6eec7575e87d472e8ab6d15eaef163d4"; + libraryHaskellDepends = [ base bytestring deepseq text ]; + testHaskellDepends = [ + base bytestring HUnit QuickCheck test-framework + test-framework-hunit test-framework-quickcheck2 text utf8-string + ]; + homepage = "http://github.com/lpsmith/blaze-builder"; + description = "Efficient buffered output"; + license = stdenv.lib.licenses.bsd3; }) {}; "blaze-builder-conduit" = callPackage @@ -41732,6 +41913,26 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "bloomfilter-redis" = callPackage + ({ mkDerivation, arithmoi, base, binary, bytestring, hashable + , hedis, QuickCheck, tasty, tasty-hunit, tasty-quickcheck + , tasty-rerun + }: + mkDerivation { + pname = "bloomfilter-redis"; + version = "0.1.0.2"; + sha256 = "82cb0fc85eab0a2f661cad90eb5f6eab6380f5ecdff39299318af9a8193f4052"; + libraryHaskellDepends = [ + arithmoi base binary bytestring hashable hedis + ]; + testHaskellDepends = [ + base bytestring hashable hedis QuickCheck tasty tasty-hunit + tasty-quickcheck tasty-rerun + ]; + description = "Distributed bloom filters on Redis (using the Hedis client)"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "bloxorz" = callPackage ({ mkDerivation, base, GLFW, OpenGL }: mkDerivation { @@ -50409,6 +50610,7 @@ self: { integer-gmp lens QuickCheck singletons template-haskell th-lift ]; testHaskellDepends = [ base doctest Glob ]; + jailbreak = true; homepage = "http://www.clash-lang.org/"; description = "CAES Language for Synchronous Hardware - Prelude library"; license = stdenv.lib.licenses.bsd2; @@ -50431,6 +50633,7 @@ self: { singletons template-haskell th-lift ]; testHaskellDepends = [ base doctest Glob ]; + jailbreak = true; homepage = "http://www.clash-lang.org/"; description = "CAES Language for Synchronous Hardware - Prelude library"; license = stdenv.lib.licenses.bsd2; @@ -50452,6 +50655,7 @@ self: { singletons template-haskell th-lift ]; testHaskellDepends = [ base doctest ]; + jailbreak = true; homepage = "http://www.clash-lang.org/"; description = "CAES Language for Synchronous Hardware - Prelude library"; license = stdenv.lib.licenses.bsd2; @@ -50473,6 +50677,7 @@ self: { singletons template-haskell th-lift ]; testHaskellDepends = [ base doctest ]; + jailbreak = true; homepage = "http://www.clash-lang.org/"; description = "CAES Language for Synchronous Hardware - Prelude library"; license = stdenv.lib.licenses.bsd2; @@ -52491,12 +52696,12 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "clock_0_7_1_1" = callPackage + "clock_0_7_2" = callPackage ({ mkDerivation, base, tasty, tasty-quickcheck }: mkDerivation { pname = "clock"; - version = "0.7.1.1"; - sha256 = "6be612a15ede79fcc6c4f8272555e3890247e75ba211c88b1b02d856f3e0150d"; + version = "0.7.2"; + sha256 = "886601978898d3a91412fef895e864576a7125d661e1f8abc49a2a08840e691f"; libraryHaskellDepends = [ base ]; testHaskellDepends = [ base tasty tasty-quickcheck ]; homepage = "https://github.com/corsis/clock"; @@ -53058,8 +53263,8 @@ self: { ({ mkDerivation, array, base, bytestring, text }: mkDerivation { pname = "cndict"; - version = "0.7.3"; - sha256 = "80da1953813673d42dbfaaeb360c5a0d8146ec80e21c5ce6a678dc87f5ec265e"; + version = "0.7.4"; + sha256 = "1d066c7df8e3f789a1139fbed618c4fe633f4f4cc42e30198f80042f93b06c43"; libraryHaskellDepends = [ array base bytestring text ]; homepage = "https://github.com/Lemmih/cndict"; description = "Chinese/Mandarin <-> English dictionary, Chinese lexer"; @@ -53589,6 +53794,30 @@ self: { license = "LGPL"; }) {}; + "color-counter" = callPackage + ({ mkDerivation, aeson, base, cmdargs, colour, containers + , data-default, directory, friday, friday-devil, split, v4l2 + , vector, vector-space, yaml + }: + mkDerivation { + pname = "color-counter"; + version = "0.1.2.2"; + sha256 = "39c79b3aa79621505f343c9e5c9f9907a2b50aae385d5f86259ccb94cb96df6f"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson base colour containers data-default directory friday + friday-devil split v4l2 vector vector-space yaml + ]; + executableHaskellDepends = [ + aeson base cmdargs colour containers data-default directory friday + friday-devil split v4l2 vector vector-space yaml + ]; + homepage = "https://bitbucket.org/functionally/color-counter"; + description = "Count colors in images"; + license = stdenv.lib.licenses.mit; + }) {}; + "colorize-haskell" = callPackage ({ mkDerivation, ansi-terminal, base, haskell-lexer }: mkDerivation { @@ -54513,7 +54742,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "composition-tree" = callPackage + "composition-tree_0_2_0_1" = callPackage ({ mkDerivation, base, doctest, QuickCheck }: mkDerivation { pname = "composition-tree"; @@ -54521,6 +54750,22 @@ self: { sha256 = "6452868a10df2e5ac564a2c3ae53eafa746a3c8f8791e064b49b9b54d4746502"; libraryHaskellDepends = [ base ]; testHaskellDepends = [ base doctest QuickCheck ]; + jailbreak = true; + homepage = "https://github.com/liamoc/composition-tree"; + description = "Composition trees for arbitrary monoids"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "composition-tree" = callPackage + ({ mkDerivation, base, doctest, QuickCheck }: + mkDerivation { + pname = "composition-tree"; + version = "0.2.0.2"; + sha256 = "67d26787ad5e35d1840b5e1bd325bb12815bd151faa0f6e13aaeb55e63af9bd6"; + libraryHaskellDepends = [ base ]; + testHaskellDepends = [ base doctest QuickCheck ]; + doCheck = false; homepage = "https://github.com/liamoc/composition-tree"; description = "Composition trees for arbitrary monoids"; license = stdenv.lib.licenses.bsd3; @@ -57700,6 +57945,29 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "cookie_0_4_2" = callPackage + ({ mkDerivation, base, blaze-builder, bytestring + , data-default-class, deepseq, HUnit, old-locale, QuickCheck, tasty + , tasty-hunit, tasty-quickcheck, text, time + }: + mkDerivation { + pname = "cookie"; + version = "0.4.2"; + sha256 = "a97a1569a2400a9027f5cf2352d56ea62884d4a98431844456342447919fd95b"; + libraryHaskellDepends = [ + base blaze-builder bytestring data-default-class deepseq old-locale + text time + ]; + testHaskellDepends = [ + base blaze-builder bytestring HUnit QuickCheck tasty tasty-hunit + tasty-quickcheck text time + ]; + homepage = "http://github.com/snoyberg/cookie"; + description = "HTTP cookie parsing and rendering"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "coordinate" = callPackage ({ mkDerivation, base, directory, doctest, filepath, lens , QuickCheck, radian, tagged, template-haskell, transformers @@ -59068,8 +59336,8 @@ self: { }: mkDerivation { pname = "creatur"; - version = "5.9.10"; - sha256 = "d953d471c6dae5c10decf870103b01bd7a8f89d4f64a985951499c1d419ac9fd"; + version = "5.9.11"; + sha256 = "ad172f1372068a8b5a1cf831c5e315c475dd000b0fca34820a2af3266e0a6e3b"; libraryHaskellDepends = [ array base bytestring cereal cond directory exceptions filepath gray-extended hdaemonize hsyslog MonadRandom mtl old-locale process @@ -62033,6 +62301,25 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "data-default_0_6_0" = callPackage + ({ mkDerivation, base, data-default-class + , data-default-instances-base, data-default-instances-containers + , data-default-instances-dlist, data-default-instances-old-locale + }: + mkDerivation { + pname = "data-default"; + version = "0.6.0"; + sha256 = "1f84023990e44e4555ac54e6bc84e4efa3bb42a0851ce0bb7b3358ef5344386d"; + libraryHaskellDepends = [ + base data-default-class data-default-instances-base + data-default-instances-containers data-default-instances-dlist + data-default-instances-old-locale + ]; + description = "A class for types with a default value"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "data-default-class" = callPackage ({ mkDerivation, base }: mkDerivation { @@ -62067,6 +62354,7 @@ self: { data-default-instances-unordered-containers data-default-instances-vector ]; + jailbreak = true; homepage = "https://github.com/trskop/data-default-extra"; description = "A class for types with a default value"; license = stdenv.lib.licenses.bsd3; @@ -62093,7 +62381,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "data-default-instances-base" = callPackage + "data-default-instances-base_0_0_1" = callPackage ({ mkDerivation, base, data-default-class }: mkDerivation { pname = "data-default-instances-base"; @@ -62102,6 +62390,18 @@ self: { libraryHaskellDepends = [ base data-default-class ]; description = "Default instances for types in base"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "data-default-instances-base" = callPackage + ({ mkDerivation, base, data-default-class }: + mkDerivation { + pname = "data-default-instances-base"; + version = "0.1.0"; + sha256 = "9e00bc5dc8da3c53a2cb26c3c55d1ffea8272538aec678f65b7c238da09c4636"; + libraryHaskellDepends = [ base data-default-class ]; + description = "Default instances for types in base"; + license = stdenv.lib.licenses.bsd3; }) {}; "data-default-instances-bytestring" = callPackage @@ -62161,6 +62461,7 @@ self: { libraryHaskellDepends = [ base data-default-class data-default-instances-base ]; + jailbreak = true; homepage = "https://github.com/trskop/data-default-extra"; description = "Default instances for types in newer versions of base package"; license = stdenv.lib.licenses.bsd3; @@ -68116,8 +68417,8 @@ self: { }: mkDerivation { pname = "digit"; - version = "0.2.6"; - sha256 = "778670a01298e208ee0913e61749be40d99bc3559541b5f85bc698de1ce5eb1f"; + version = "0.2.7"; + sha256 = "527f2b342e14a09af8d1b327942aab5b104316f8d8793a21f3468620bf099641"; libraryHaskellDepends = [ base lens parsec parsers semigroups template-haskell ]; @@ -68528,12 +68829,12 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "directory_1_2_5_1" = callPackage + "directory_1_2_6_2" = callPackage ({ mkDerivation, base, filepath, time, unix }: mkDerivation { pname = "directory"; - version = "1.2.5.1"; - sha256 = "15f6d6c403755196617933ed165e6abd82340fcf172582577bb7ced86700ed7d"; + version = "1.2.6.2"; + sha256 = "4c860441ca249c8395a7e74743957b1064359ba3d3c30b1c18df11b9a0a413e0"; libraryHaskellDepends = [ base filepath time unix ]; testHaskellDepends = [ base filepath time unix ]; description = "Platform-agnostic library for filesystem operations"; @@ -69924,8 +70225,8 @@ self: { }: mkDerivation { pname = "dixi"; - version = "0.6.9.0"; - sha256 = "5bb30c107059f7475d6945d6e63ef9ce943e3f1f98df2c1b0f6e28ce369cd8b9"; + version = "0.6.9.1"; + sha256 = "938923def44d17f193907edc2e928fe63eeca685dd9f5527c791718e3e8e6c6a"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -70465,7 +70766,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "doctest" = callPackage + "doctest_0_10_1" = callPackage ({ mkDerivation, base, base-compat, deepseq, directory, filepath , ghc, ghc-paths, hspec, HUnit, process, QuickCheck, setenv , silently, stringbuilder, syb, transformers @@ -70489,9 +70790,10 @@ self: { homepage = "https://github.com/sol/doctest#readme"; description = "Test interactive Haskell examples"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "doctest_0_11_0" = callPackage + "doctest" = callPackage ({ mkDerivation, base, base-compat, deepseq, directory, filepath , ghc, ghc-paths, hspec, HUnit, process, QuickCheck, setenv , silently, stringbuilder, syb, transformers, with-location @@ -70515,7 +70817,6 @@ self: { homepage = "https://github.com/sol/doctest#readme"; description = "Test interactive Haskell examples"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "doctest-discover" = callPackage @@ -72330,6 +72631,7 @@ self: { testHaskellDepends = [ base bytestring directory doctest filepath hlint QuickCheck ]; + jailbreak = true; homepage = "http://thoughtpolice.github.com/hs-ed25519"; description = "Ed25519 cryptographic signatures"; license = stdenv.lib.licenses.mit; @@ -73225,13 +73527,12 @@ self: { }: mkDerivation { pname = "ekg-carbon"; - version = "1.0.4"; - sha256 = "e29c0dd46b7fb0966c728757d99d32731355cfe606ffaa59673bface47782f50"; + version = "1.0.5"; + sha256 = "a2617140efc624787954f73700a05a79aa466742ae054c50c415ddbb418ad661"; libraryHaskellDepends = [ base ekg-core network network-carbon text time unordered-containers vector ]; - jailbreak = true; homepage = "http://github.com/ocharles/ekg-carbon"; description = "An EKG backend to send statistics to Carbon (part of Graphite monitoring tools)"; license = stdenv.lib.licenses.bsd3; @@ -75569,6 +75870,8 @@ self: { pname = "esqueleto"; version = "2.4.3"; sha256 = "bf555cfb40519ed1573f7bb90c65f693b9639dfa93fc2222230d3ded6e897434"; + revision = "1"; + editedCabalFile = "651ee129d694aedefa6d6f54e4fd8950f1d8c817e2984141c2ef2fb9174b1e38"; libraryHaskellDepends = [ base blaze-html bytestring conduit monad-logger persistent resourcet tagged text transformers unordered-containers @@ -75734,8 +76037,10 @@ self: { }: mkDerivation { pname = "ether"; - version = "0.4.0.0"; - sha256 = "19470d47313c0fe2984010871c8d13398b9c13d4cdc799b9bd0e431bc9714d6e"; + version = "0.4.0.1"; + sha256 = "2dd65384c5dd884c23cad897bc8ee343015b21bcddc04aeca3fca58c4f12716a"; + revision = "1"; + editedCabalFile = "478e2aa8efec5d299370c8f3d982280ba45f9bfb3eda97adabe7e96eb8f61a1f"; libraryHaskellDepends = [ base exceptions mmorph monad-control mtl template-haskell transformers transformers-base transformers-lift @@ -76025,8 +76330,8 @@ self: { }: mkDerivation { pname = "eventloop"; - version = "0.7.0.1"; - sha256 = "4798d3a5ce6c2daf8f11b3f6aa8eed1ae411894da12a278dd7686b4b4c487b1e"; + version = "0.8.0.0"; + sha256 = "5fbdbe0201c18a2c9f82799f6367c1cb4c1554554677fc181018bca289077b01"; libraryHaskellDepends = [ aeson base bytestring concurrent-utilities deepseq network stm suspend text timers websockets @@ -76213,6 +76518,7 @@ self: { base checkers directory doctest filepath groups QuickCheck random tasty tasty-hunit tasty-quickcheck tasty-th ]; + jailbreak = true; homepage = "http://github.com/expipiplus1/exact-real"; description = "Exact real arithmetic"; license = stdenv.lib.licenses.mit; @@ -77741,6 +78047,25 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "fast-logger_2_4_5" = callPackage + ({ mkDerivation, array, auto-update, base, bytestring + , bytestring-builder, directory, easy-file, filepath, hspec, text + , unix, unix-time + }: + mkDerivation { + pname = "fast-logger"; + version = "2.4.5"; + sha256 = "6ff04558b53613033b7cfa2d629ea1ea423c2004fba0ced55dd4e2f3483376e5"; + libraryHaskellDepends = [ + array auto-update base bytestring bytestring-builder directory + easy-file filepath text unix unix-time + ]; + testHaskellDepends = [ base bytestring directory hspec ]; + description = "A fast logging system"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "fast-math" = callPackage ({ mkDerivation, base }: mkDerivation { @@ -80384,6 +80709,7 @@ self: { sha256 = "f25888d5530a969c40555d3f947d1f5b2254afe33787a040a32663b3e7d3f9da"; libraryHaskellDepends = [ base ]; testHaskellDepends = [ base doctest ]; + jailbreak = true; homepage = "https://github.com/markandrus/first-and-last"; description = "First and Last generalized to return up to n values"; license = stdenv.lib.licenses.bsd3; @@ -81169,6 +81495,7 @@ self: { sha256 = "1e45411e366ddf9c9def18ad3a7d274119bf5187e908f5b4beecf68f9cb82086"; libraryHaskellDepends = [ base ]; testHaskellDepends = [ base doctest QuickCheck template-haskell ]; + jailbreak = true; homepage = "http://taylor.fausak.me/flow/"; description = "Write more understandable Haskell"; license = stdenv.lib.licenses.mit; @@ -81183,6 +81510,7 @@ self: { sha256 = "20f09c7841b72a90f4dd986f0dd68b0f71f96f12ba84b2097c29eb8f16d256d0"; libraryHaskellDepends = [ base ]; testHaskellDepends = [ base doctest QuickCheck template-haskell ]; + jailbreak = true; homepage = "http://taylor.fausak.me/flow/"; description = "Write more understandable Haskell"; license = stdenv.lib.licenses.mit; @@ -81197,6 +81525,7 @@ self: { sha256 = "942cec5eb0430c9e3b147d75ed9246aff651a55afaee0735de3f3fec91266190"; libraryHaskellDepends = [ base ]; testHaskellDepends = [ base doctest QuickCheck template-haskell ]; + jailbreak = true; homepage = "https://github.com/tfausak/flow#readme"; description = "Write more understandable Haskell"; license = stdenv.lib.licenses.mit; @@ -82636,6 +82965,7 @@ self: { testHaskellDepends = [ base directory doctest filepath QuickCheck template-haskell ]; + jailbreak = true; homepage = "https://github.com/tonymorris/foscam-directory"; description = "Foscam File format"; license = stdenv.lib.licenses.bsd3; @@ -83333,8 +83663,8 @@ self: { }: mkDerivation { pname = "freer"; - version = "0.2.2.5"; - sha256 = "4ba63b5e1c0860458fe59f8d7370d25ddcf7a6a8442409b850108881a6644ef7"; + version = "0.2.2.6"; + sha256 = "0bad3ff57b7347ea50d031e6f6c05cf17311ee9fd3fab343130bd12282c36dc8"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base ]; @@ -87727,8 +88057,8 @@ self: { }: mkDerivation { pname = "ginger"; - version = "0.2.3.0"; - sha256 = "7a1246cf8eb32cadf750fb2e8bee630eb1d814408ce17fd584fd09b308a88cbe"; + version = "0.2.4.0"; + sha256 = "88671a03eed786add0fc982bca39aed74be98ae9cf50bfd470d4c578fd1370f7"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -88275,8 +88605,8 @@ self: { }: mkDerivation { pname = "git-annex"; - version = "6.20160412"; - sha256 = "6bbdabf279a7fd5252eed818018d546ed9326d5feb648e5573976b2d110f5406"; + version = "6.20160418"; + sha256 = "9d13586cc38d78bcd94c1f3a245d5283e67f43b0ea88033c40d54e78f6544fa2"; configureFlags = [ "-fassistant" "-fcryptonite" "-fdbus" "-fdesktopnotify" "-fdns" "-ffeed" "-finotify" "-fpairing" "-fproduction" "-fquvi" "-fs3" @@ -91767,14 +92097,13 @@ self: { }: mkDerivation { pname = "googlepolyline"; - version = "0.1.0.1"; - sha256 = "b16915544bfe4656fdf6104e769df8bac4a3e6c5f4ffd0c622d09fffb5f68717"; + version = "0.1.0.2"; + sha256 = "cd593a0c783733beb8300fc9141331fe29d9430f06b0282d75bdc18b4a785c85"; libraryHaskellDepends = [ base bytestring text ]; testHaskellDepends = [ base bytestring HUnit QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 text ]; - jailbreak = true; homepage = "https://github.com/lornap/googlepolyline"; description = "Google Polyline Encoder/Decoder"; license = stdenv.lib.licenses.mit; @@ -97323,6 +97652,46 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "hakyll_4_8_0_0" = callPackage + ({ mkDerivation, base, binary, blaze-html, blaze-markup, bytestring + , cmdargs, containers, cryptohash, data-default, deepseq, directory + , filepath, fsnotify, http-conduit, http-types, HUnit, lrucache + , mtl, network, network-uri, pandoc, pandoc-citeproc, parsec + , process, QuickCheck, random, regex-base, regex-tdfa, resourcet + , snap-core, snap-server, system-filepath, tagsoup, test-framework + , test-framework-hunit, test-framework-quickcheck2, text, time + , time-locale-compat, unordered-containers, vector, yaml + }: + mkDerivation { + pname = "hakyll"; + version = "4.8.0.0"; + sha256 = "5e150418e8dd4caef4f9eca372140c7d5b0791166760d011cc11df8f0c7a3fcb"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base binary blaze-html blaze-markup bytestring cmdargs containers + cryptohash data-default deepseq directory filepath fsnotify + http-conduit http-types lrucache mtl network network-uri pandoc + pandoc-citeproc parsec process random regex-base regex-tdfa + resourcet snap-core snap-server system-filepath tagsoup text time + time-locale-compat unordered-containers vector yaml + ]; + executableHaskellDepends = [ base directory filepath ]; + testHaskellDepends = [ + base binary blaze-html blaze-markup bytestring cmdargs containers + cryptohash data-default deepseq directory filepath fsnotify + http-conduit http-types HUnit lrucache mtl network network-uri + pandoc pandoc-citeproc parsec process QuickCheck random regex-base + regex-tdfa resourcet snap-core snap-server system-filepath tagsoup + test-framework test-framework-hunit test-framework-quickcheck2 text + time time-locale-compat unordered-containers vector yaml + ]; + homepage = "http://jaspervdj.be/hakyll"; + description = "A static website compiler library"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "hakyll-R" = callPackage ({ mkDerivation, base, directory, filepath, hakyll, pandoc, process }: @@ -97815,13 +98184,13 @@ self: { }: mkDerivation { pname = "handa-opengl"; - version = "0.1.13.0"; - sha256 = "b6b357f2795366758cec289a64109e7c6b9c9a54b53f8b24ea8c73dcfe0bbbd5"; + version = "0.1.13.1"; + sha256 = "2142f14c2193deeabb49743cce5dd9d1c2f5ac3b5a3effee293cee0ba5268b2a"; libraryHaskellDepends = [ aeson array base binary data-default GLUT OpenGL opengl-dlp-stereo split vector-space ]; - homepage = "https://bitbucket.org/bwbush/handa-opengl"; + homepage = "https://bitbucket.org/functionally/handa-opengl"; description = "Utility functions for OpenGL and GLUT"; license = stdenv.lib.licenses.mit; hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; @@ -100022,6 +100391,25 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "haskeline_0_7_2_3" = callPackage + ({ mkDerivation, base, bytestring, containers, directory, filepath + , terminfo, transformers, unix + }: + mkDerivation { + pname = "haskeline"; + version = "0.7.2.3"; + sha256 = "6d3ef986ffea93c999a7be1f8c19037351eec763c1c376e6edbd18fbba368d27"; + configureFlags = [ "-fterminfo" ]; + libraryHaskellDepends = [ + base bytestring containers directory filepath terminfo transformers + unix + ]; + homepage = "https://github.com/judah/haskeline"; + description = "A command-line interface for user input, written in Haskell"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "haskeline-class" = callPackage ({ mkDerivation, base, haskeline, mtl }: mkDerivation { @@ -107638,7 +108026,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "hindent" = callPackage + "hindent_4_6_1" = callPackage ({ mkDerivation, base, data-default, descriptive, directory , ghc-prim, haskell-src-exts, hspec, monad-loops, mtl, text , transformers @@ -107664,6 +108052,35 @@ self: { homepage = "http://www.github.com/chrisdone/hindent"; description = "Extensible Haskell pretty printer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "hindent" = callPackage + ({ mkDerivation, base, containers, data-default, descriptive + , directory, ghc-prim, haskell-src-exts, hspec, monad-loops, mtl + , text, transformers + }: + mkDerivation { + pname = "hindent"; + version = "4.6.3"; + sha256 = "6b8d9d4e0c6ea04115bb555964348350c7cea5e05e66aafa1d624e75c6d5bf8e"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base containers data-default haskell-src-exts monad-loops mtl text + transformers + ]; + executableHaskellDepends = [ + base descriptive directory ghc-prim haskell-src-exts text + ]; + testHaskellDepends = [ + base data-default directory haskell-src-exts hspec monad-loops mtl + text + ]; + doCheck = false; + homepage = "http://www.github.com/chrisdone/hindent"; + description = "Extensible Haskell pretty printer"; + license = stdenv.lib.licenses.bsd3; }) {}; "hinduce-associations-apriori" = callPackage @@ -107968,8 +108385,8 @@ self: { }: mkDerivation { pname = "hip"; - version = "1.0.1.1"; - sha256 = "e2b2eaf7786f56b50ac814c5ac8a2966c7bd0ee1c132dcca48234188f47f0101"; + version = "1.0.1.2"; + sha256 = "3fff4507cf53a979630d8e94d3dec05b18139007bc7e24ec122ce35d38292484"; libraryHaskellDepends = [ base bytestring Chart Chart-cairo colour deepseq filepath JuicyPixels netpbm primitive process repa temporary vector @@ -108008,17 +108425,20 @@ self: { }) {}; "hipchat-hs" = callPackage - ({ mkDerivation, aeson, async, base, bytestring, either, lens - , servant, servant-client, split, string-conversions, text, time + ({ mkDerivation, aeson, aeson-casing, async, base, bytestring + , either, http-client, lens, network-uri, servant, servant-client + , split, string-conversions, text, time }: mkDerivation { pname = "hipchat-hs"; - version = "0.0.2"; - sha256 = "42c61fccfe9e652ad8ed4d2d7c05e8c7acefe75d8ed1a577937fe132e55e23af"; + version = "0.0.3"; + sha256 = "f793fe60c119608a363a2ce7cc380a8f5c99adcfac4472b990e0726397db5dd5"; libraryHaskellDepends = [ - aeson async base bytestring either lens servant servant-client - split string-conversions text time + aeson aeson-casing async base bytestring either http-client lens + network-uri servant servant-client split string-conversions text + time ]; + jailbreak = true; description = "Hipchat API bindings in Haskell"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -108815,8 +109235,8 @@ self: { }: mkDerivation { pname = "hleap"; - version = "0.1.2.6"; - sha256 = "5a0612ff7a1f111ced1cff7b039b33d74909acede53053d702c0311abfd4389b"; + version = "0.1.2.7"; + sha256 = "4e539d4ed4ad9777c464639cfecb9a897dabf89fff0e9c80539fff96cce3eee2"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -108827,7 +109247,7 @@ self: { aeson base containers data-default mtl text unordered-containers websockets ]; - homepage = "https://bitbucket.org/bwbush/hleap"; + homepage = "https://bitbucket.org/functionally/hleap"; description = "Web Socket interface to Leap Motion controller"; license = stdenv.lib.licenses.mit; }) {}; @@ -112101,7 +112521,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "hopenpgp-tools" = callPackage + "hopenpgp-tools_0_17_1" = callPackage ({ mkDerivation, aeson, alex, ansi-wl-pprint, array, attoparsec , base, base16-bytestring, binary, binary-conduit, bytestring , conduit, conduit-extra, containers, crypto-pubkey, cryptohash @@ -112129,6 +112549,37 @@ self: { homepage = "http://floss.scru.org/hopenpgp-tools"; description = "hOpenPGP-based command-line tools"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "hopenpgp-tools" = callPackage + ({ mkDerivation, aeson, alex, ansi-wl-pprint, array, attoparsec + , base, base16-bytestring, binary, binary-conduit, bytestring + , conduit, conduit-extra, containers, crypto-pubkey, cryptohash + , directory, errors, fgl, graphviz, happy, hOpenPGP, ixset-typed + , lens, monad-loops, openpgp-asciiarmor, optparse-applicative + , resourcet, text, time, time-locale-compat, transformers + , unordered-containers, wl-pprint-extras, wl-pprint-terminfo, yaml + }: + mkDerivation { + pname = "hopenpgp-tools"; + version = "0.18"; + sha256 = "e13fa9cbf0f725f026e781c8d4d83b05a5b4bd126d276085152adc0a88c93f76"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + aeson ansi-wl-pprint array attoparsec base base16-bytestring binary + binary-conduit bytestring conduit conduit-extra containers + crypto-pubkey cryptohash directory errors fgl graphviz hOpenPGP + ixset-typed lens monad-loops openpgp-asciiarmor + optparse-applicative resourcet text time time-locale-compat + transformers unordered-containers wl-pprint-extras + wl-pprint-terminfo yaml + ]; + executableToolDepends = [ alex happy ]; + homepage = "http://floss.scru.org/hopenpgp-tools"; + description = "hOpenPGP-based command-line tools"; + license = "unknown"; }) {}; "hopenssl" = callPackage @@ -114300,15 +114751,16 @@ self: { }) {}; "hsc2hs" = callPackage - ({ mkDerivation, base, containers, directory, process }: + ({ mkDerivation, base, containers, directory, filepath, process }: mkDerivation { pname = "hsc2hs"; - version = "0.67.20120610"; - sha256 = "7f471d3912fd8432a5940e3dde0e92abf6743adb452d5c2ff79dea7795bedb4d"; + version = "0.68"; + sha256 = "13834608a7a768e4aeeefee0a79660b2fc7c91bb83e036f0c1cb7b0543c61fda"; isLibrary = false; isExecutable = true; - executableHaskellDepends = [ base containers directory process ]; - jailbreak = true; + executableHaskellDepends = [ + base containers directory filepath process + ]; description = "A preprocessor that helps with writing Haskell bindings to C code"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -118400,6 +118852,7 @@ self: { testHaskellDepends = [ base base-prelude directory doctest filepath ]; + jailbreak = true; homepage = "https://github.com/nikita-volkov/html-entities"; description = "A codec library for HTML-escaped text and HTML-entities"; license = stdenv.lib.licenses.mit; @@ -119573,8 +120026,8 @@ self: { }: mkDerivation { pname = "http-client"; - version = "0.4.27.1"; - sha256 = "e0c74065e7e138d8cbe477ba010c7bd352a7ffedd240d1ecaeee274d0ad0bde2"; + version = "0.4.28"; + sha256 = "24346facd4af7268d2c0d828b4865b9b8ba7351d458dd95a3e67094422dfe026"; libraryHaskellDepends = [ array base base64-bytestring blaze-builder bytestring case-insensitive containers cookie data-default-class deepseq @@ -119654,7 +120107,7 @@ self: { license = stdenv.lib.licenses.mit; }) {}; - "http-client-openssl" = callPackage + "http-client-openssl_0_2_0_1" = callPackage ({ mkDerivation, base, HsOpenSSL, hspec, http-client, http-types , network }: @@ -119666,6 +120119,26 @@ self: { testHaskellDepends = [ base HsOpenSSL hspec http-client http-types ]; + doCheck = false; + homepage = "https://github.com/snoyberg/http-client"; + description = "http-client backend using the OpenSSL library"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "http-client-openssl" = callPackage + ({ mkDerivation, base, HsOpenSSL, hspec, http-client, http-types + , network + }: + mkDerivation { + pname = "http-client-openssl"; + version = "0.2.0.2"; + sha256 = "e99682e3ec759b606c86a531127b17db30fdf016e16cfaaca543c5d0f7ca6581"; + libraryHaskellDepends = [ base HsOpenSSL http-client network ]; + testHaskellDepends = [ + base HsOpenSSL hspec http-client http-types + ]; + doCheck = false; homepage = "https://github.com/snoyberg/http-client"; description = "http-client backend using the OpenSSL library"; license = stdenv.lib.licenses.mit; @@ -119749,8 +120222,8 @@ self: { }: mkDerivation { pname = "http-client-tls"; - version = "0.2.3"; - sha256 = "7b2c7c2f3a68a2d8e069e1f5565b77ae8b8a9459e39b3ac5d5500705e2ff4f24"; + version = "0.2.4"; + sha256 = "da60ebd9c0eff1e7a44ce600b450da79a471dda648ae67503d34d69a49ff0921"; libraryHaskellDepends = [ base bytestring connection data-default-class http-client network tls @@ -119940,26 +120413,28 @@ self: { }) {}; "http-conduit" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring, case-insensitive - , conduit, conduit-extra, connection, cookie, data-default-class - , hspec, http-client, http-client-tls, http-types, HUnit - , lifted-base, monad-control, mtl, network, resourcet - , streaming-commons, text, time, transformers, utf8-string, wai - , wai-conduit, warp, warp-tls + ({ mkDerivation, aeson, base, blaze-builder, bytestring + , case-insensitive, conduit, conduit-extra, connection, cookie + , data-default-class, exceptions, hspec, http-client + , http-client-tls, http-types, HUnit, lifted-base, monad-control + , mtl, network, resourcet, streaming-commons, temporary, text, time + , transformers, utf8-string, wai, wai-conduit, warp, warp-tls }: mkDerivation { pname = "http-conduit"; - version = "2.1.9"; - sha256 = "61a33fce3630b3a7b0740213cc1a4ab7b756103d629bc35d5fd9298bf66481cd"; + version = "2.1.10"; + sha256 = "eb68fc0f012f177e6883f042bb2455317ea2b1961dbfeff87d122b0b24f9275f"; libraryHaskellDepends = [ - base bytestring conduit http-client http-client-tls http-types - lifted-base monad-control mtl resourcet transformers + aeson base bytestring conduit conduit-extra data-default-class + exceptions http-client http-client-tls http-types lifted-base + monad-control mtl resourcet transformers ]; testHaskellDepends = [ - base blaze-builder bytestring case-insensitive conduit + aeson base blaze-builder bytestring case-insensitive conduit conduit-extra connection cookie data-default-class hspec http-client http-types HUnit lifted-base network streaming-commons - text time transformers utf8-string wai wai-conduit warp warp-tls + temporary text time transformers utf8-string wai wai-conduit warp + warp-tls ]; doCheck = false; homepage = "http://www.yesodweb.com/book/http-conduit"; @@ -121412,20 +121887,20 @@ self: { "hw-bits" = callPackage ({ mkDerivation, array, attoparsec, base, bytestring, conduit - , criterion, deepseq, ghc-prim, hspec, lens, mmap, mono-traversable - , parsec, QuickCheck, random, resourcet, safe, text, transformers - , vector, word8 + , criterion, deepseq, ghc-prim, hspec, hw-prim, lens, mmap + , mono-traversable, parsec, QuickCheck, random, resourcet, safe + , text, transformers, vector, word8 }: mkDerivation { pname = "hw-bits"; - version = "0.0.0.3"; - sha256 = "b83fc49f63fd604fb9232ca1cae1fcfea6ad0badef1e6ff0811bced810d9c728"; + version = "0.0.0.5"; + sha256 = "a65a46718827efefcee0126b047eca6cc77561aebda3fb6e94d354b94f1d87a8"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - array attoparsec base bytestring conduit deepseq ghc-prim lens mmap - mono-traversable parsec QuickCheck random resourcet safe text - vector word8 + array attoparsec base bytestring conduit deepseq ghc-prim hw-prim + lens mmap mono-traversable parsec QuickCheck random resourcet safe + text vector word8 ]; executableHaskellDepends = [ base bytestring conduit criterion mmap resourcet vector @@ -121439,29 +121914,103 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "hw-conduit" = callPackage + ({ mkDerivation, array, attoparsec, base, bytestring, conduit + , criterion, deepseq, ghc-prim, hspec, hw-bits, hw-prim, lens, mmap + , mono-traversable, parsec, QuickCheck, random, resourcet, safe + , text, transformers, vector, word8 + }: + mkDerivation { + pname = "hw-conduit"; + version = "0.0.0.6"; + sha256 = "4099d43952a4555b18264c3da34b39983d3078375011d7458f978c1e2b17213e"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + array attoparsec base bytestring conduit deepseq ghc-prim hw-bits + hw-prim lens mmap mono-traversable parsec QuickCheck random + resourcet safe text vector word8 + ]; + executableHaskellDepends = [ + base bytestring conduit criterion hw-bits hw-prim mmap resourcet + vector + ]; + testHaskellDepends = [ + attoparsec base bytestring conduit hspec hw-bits hw-prim mmap + parsec QuickCheck resourcet transformers vector + ]; + homepage = "http://github.com/haskell-works/hw-conduit#readme"; + description = "Conduits for tokenizing streams"; + license = stdenv.lib.licenses.bsd3; + }) {}; + + "hw-diagnostics" = callPackage + ({ mkDerivation, array, attoparsec, base, bytestring, conduit + , criterion, deepseq, ghc-prim, hspec, lens, mmap, mono-traversable + , parsec, QuickCheck, random, resourcet, safe, text, vector, word8 + }: + mkDerivation { + pname = "hw-diagnostics"; + version = "0.0.0.1"; + sha256 = "109d2f419e8d8ebb4580863f84528c2d2b229a210d756f7ced7383136fed18b7"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + array attoparsec base bytestring conduit deepseq ghc-prim lens mmap + mono-traversable parsec QuickCheck random resourcet safe text + vector word8 + ]; + executableHaskellDepends = [ + base bytestring conduit criterion mmap resourcet vector + ]; + testHaskellDepends = [ base hspec QuickCheck ]; + homepage = "http://github.com/haskell-works/hw-diagnostics#readme"; + description = "Conduits for tokenizing streams"; + license = stdenv.lib.licenses.bsd3; + }) {}; + + "hw-prim" = callPackage + ({ mkDerivation, base, bytestring, hspec, QuickCheck, random + , vector + }: + mkDerivation { + pname = "hw-prim"; + version = "0.0.0.7"; + sha256 = "ea9c3334e62e4fdaeca3db78b877621750529fa23323b1a7bee8976c6b5ba4f6"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base bytestring random vector ]; + executableHaskellDepends = [ base ]; + testHaskellDepends = [ base hspec QuickCheck ]; + homepage = "http://github.com/haskell-works/hw-prim#readme"; + description = "Primitive functions and data types"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "hw-succinct" = callPackage ({ mkDerivation, array, attoparsec, base, bytestring, conduit - , criterion, deepseq, ghc-prim, hspec, hw-bits, lens, mmap + , criterion, deepseq, ghc-prim, hspec, hw-bits, hw-prim, lens, mmap , mono-traversable, parsec, QuickCheck, random, resourcet, safe , text, transformers, vector, word8 }: mkDerivation { pname = "hw-succinct"; - version = "0.0.0.5"; - sha256 = "b2b75ed9f82cabfa9ddb48b7fc4c76bb1bc3be5443fd1bfc6b25f334ca5563d7"; + version = "0.0.0.7"; + sha256 = "7bca3413676c9ada97feafd12ed174fc4be570a1b8eb00a258f2a240e6adeee1"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ array attoparsec base bytestring conduit deepseq ghc-prim hw-bits - lens mmap mono-traversable parsec QuickCheck random resourcet safe - text vector word8 + hw-prim lens mmap mono-traversable parsec QuickCheck random + resourcet safe text vector word8 ]; executableHaskellDepends = [ - base bytestring conduit criterion hw-bits mmap resourcet vector + base bytestring conduit criterion hw-bits hw-prim mmap resourcet + vector ]; testHaskellDepends = [ - attoparsec base bytestring conduit hspec hw-bits mmap parsec - QuickCheck resourcet transformers vector + attoparsec base bytestring conduit hspec hw-bits hw-prim mmap + parsec QuickCheck resourcet transformers vector ]; homepage = "http://github.com/haskell-works/hw-succinct#readme"; description = "Conduits for tokenizing streams"; @@ -122503,18 +123052,18 @@ self: { }) {}; "hylogen" = callPackage - ({ mkDerivation, base, bytestring, filepath, hinotify, network + ({ mkDerivation, base, bytestring, filepath, fsnotify, network , process, random, text, vector-space, websockets }: mkDerivation { pname = "hylogen"; - version = "0.1.0.6"; - sha256 = "12ea64085fb2c7bb81311ec899e2ac5c24dcb92ec050ba2237baf9a86a7e6ed8"; + version = "0.1.0.8"; + sha256 = "f2b3be1868b32af6d12b50be5ef5c7145d0e7aa7c9052a9d8b87fea2b686b08d"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base vector-space ]; executableHaskellDepends = [ - base bytestring filepath hinotify network process random text + base bytestring filepath fsnotify network process random text websockets ]; homepage = "https://github.com/sleexyz/hylogen"; @@ -126504,13 +127053,21 @@ self: { }) {}; "io-capture" = callPackage - ({ mkDerivation, base, unix }: + ({ mkDerivation, base, bytestring, hspec, hspec-core + , streaming-bytestring, unix + }: mkDerivation { pname = "io-capture"; - version = "0.3"; - sha256 = "ce809d6ff9c22bceb67c9bcd55477a209141da9fbb265c9fe5718718be96720e"; - libraryHaskellDepends = [ base unix ]; - description = "capture IO action's stdout and stderr"; + version = "1.0.0"; + sha256 = "86885b68cb9d198f3ebf80d8d5ea46a15976b8257bc86fae50d680c4eae5c847"; + libraryHaskellDepends = [ + base bytestring streaming-bytestring unix + ]; + testHaskellDepends = [ + base bytestring hspec hspec-core streaming-bytestring unix + ]; + homepage = "https://github.com/mitchellwrosen/io-capture#readme"; + description = "Capture IO actions' stdout and stderr"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -126834,7 +127391,7 @@ self: { license = stdenv.lib.licenses.mit; }) {}; - "ip6addr" = callPackage + "ip6addr_0_5_0_1" = callPackage ({ mkDerivation, base, cmdargs, IPv6Addr, text }: mkDerivation { pname = "ip6addr"; @@ -126846,6 +127403,21 @@ self: { homepage = "https://github.com/MichelBoucey/ip6addr"; description = "Commandline tool to generate IPv6 address text representations"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "ip6addr" = callPackage + ({ mkDerivation, base, cmdargs, IPv6Addr, text }: + mkDerivation { + pname = "ip6addr"; + version = "0.5.1.0"; + sha256 = "e6088c7208ad0f57d2ae5e92ca63232ccb4c9c9ee443e6f411ba611bb1768b50"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ base cmdargs IPv6Addr text ]; + homepage = "https://github.com/MichelBoucey/ip6addr"; + description = "Commandline tool to generate IPv6 address text representations"; + license = stdenv.lib.licenses.bsd3; }) {}; "ipatch" = callPackage @@ -132411,10 +132983,11 @@ self: { ({ mkDerivation, base, bytestring, cereal, kyotocabinet }: mkDerivation { pname = "kyotocabinet"; - version = "0.1.3"; - sha256 = "dfcfbd39122b17ff66738d5d997eb756f31af58a67424b5762a33301ababfcf3"; + version = "0.1.4"; + sha256 = "03f1943d7c0bb40d2e259a2ccc93efabe00bf9f7943d5d611921ba40a7af7973"; libraryHaskellDepends = [ base bytestring cereal ]; librarySystemDepends = [ kyotocabinet ]; + homepage = "https://github.com/bitonic/kyotocabinet"; description = "Mid level bindings to Kyoto Cabinet"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; @@ -134945,6 +135518,24 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "latex-formulae-hakyll_0_2_0_2" = callPackage + ({ mkDerivation, base, hakyll, latex-formulae-image + , latex-formulae-pandoc, lrucache, pandoc-types + }: + mkDerivation { + pname = "latex-formulae-hakyll"; + version = "0.2.0.2"; + sha256 = "82723a7eac09864eed8349b9b4cbef6f2eb85bb80950b427121c525e3c39bb65"; + 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; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "latex-formulae-image_0_1_1_0" = callPackage ({ mkDerivation, base, directory, errors, filepath, JuicyPixels , process, temporary, transformers @@ -135555,6 +136146,8 @@ self: { pname = "leksah"; version = "0.15.2.0"; sha256 = "44be854eb7091fb383ddfbf497772d9a9b27c033a4e9ba9994c6a9b36d4e9606"; + revision = "1"; + editedCabalFile = "b5498ba06634ac70bf2bb4d09b85324a95a3b1b8bff92430ad761ae8280e0f47"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -136163,6 +136756,7 @@ self: { sha256 = "66494550d66d4c62ea56d0184d118e302d3f1f12505c5c7c0a00e098e77272ab"; libraryHaskellDepends = [ base lens ]; testHaskellDepends = [ base doctest ]; + jailbreak = true; description = "Tutorial for the lens library"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -137885,6 +138479,7 @@ self: { base binary bytestring directory doctest filepath HUnit lens simple-reflect test-framework test-framework-hunit ]; + jailbreak = true; homepage = "http://github.com/ekmett/linear/"; description = "Linear Algebra"; license = stdenv.lib.licenses.bsd3; @@ -137916,6 +138511,8 @@ self: { base binary bytestring directory doctest filepath HUnit lens simple-reflect test-framework test-framework-hunit ]; + jailbreak = true; + doCheck = false; homepage = "http://github.com/ekmett/linear/"; description = "Linear Algebra"; license = stdenv.lib.licenses.bsd3; @@ -139552,8 +140149,8 @@ self: { }: mkDerivation { pname = "lmonad-yesod"; - version = "0.1.0.0"; - sha256 = "bd2389ecb5d8c734c72da1bb77f76824bacbabb42ae727d2c161184a4f9f508f"; + version = "1.0.0.0"; + sha256 = "b5bdffc143763460d2587d5d7dffe354622c3622f3068f4f62f5214c13d2ccb9"; libraryHaskellDepends = [ attoparsec base blaze-html blaze-markup containers esqueleto haskell-src-meta lifted-base lmonad mtl persistent shakespeare @@ -141630,8 +142227,8 @@ self: { }: mkDerivation { pname = "machinecell"; - version = "3.1.0"; - sha256 = "0dde8e806b5418ac6c5610a3ed65dcd54ddc5f7232c516be31a5b375f6e67feb"; + version = "3.2.0"; + sha256 = "507f367bd35ea9b0b2c81af1b1ec14f4aa68fae4309f71c69c9c58715405bddd"; libraryHaskellDepends = [ arrows base free mtl profunctors semigroups ]; @@ -143102,6 +143699,7 @@ self: { version = "0.1.1.0"; sha256 = "9979681fcea7a314db619da04ffca77c93d5afe42ce0b819bd974ca70e74050c"; libraryHaskellDepends = [ base manifolds random-fu vector-space ]; + jailbreak = true; homepage = "https://github.com/leftaroundabout/manifolds"; description = "Sampling random points on general manifolds"; license = stdenv.lib.licenses.gpl3; @@ -143111,15 +143709,16 @@ self: { "manifolds" = callPackage ({ mkDerivation, base, comonad, constrained-categories, containers , deepseq, hmatrix, MemoTrie, semigroups, tagged, transformers - , vector, vector-space, void + , trivial-constraint, vector, vector-space, void }: mkDerivation { pname = "manifolds"; - version = "0.1.6.3"; - sha256 = "52b27094f18303664d91d5042f10d5ff0379de1104a21d14282b85efa954178a"; + version = "0.2.0.1"; + sha256 = "72116d4489b4b2b125647271c92a1b1d7c2323554ae329614e175e967ce3c3f4"; libraryHaskellDepends = [ base comonad constrained-categories containers deepseq hmatrix - MemoTrie semigroups tagged transformers vector vector-space void + MemoTrie semigroups tagged transformers trivial-constraint vector + vector-space void ]; homepage = "https://github.com/leftaroundabout/manifolds"; description = "Coordinate-free hypersurfaces"; @@ -143127,6 +143726,21 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "map-exts" = callPackage + ({ mkDerivation, base, bytestring, cassava, containers }: + mkDerivation { + pname = "map-exts"; + version = "0.1.0.1"; + sha256 = "836b92414c8858a485cf7f0f0bd39d2043217a3db34be913a7a412ba5be76c7e"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base containers ]; + executableHaskellDepends = [ base bytestring cassava containers ]; + homepage = "http://github.com/elsen-trading/map-extensions#readme"; + description = "Extensions to Data.Map"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "map-syntax" = callPackage ({ mkDerivation, base, containers, deepseq, HUnit, mtl, QuickCheck , test-framework, test-framework-hunit, test-framework-quickcheck2 @@ -145894,8 +146508,8 @@ self: { }: mkDerivation { pname = "midi"; - version = "0.2.2"; - sha256 = "e0f32499afddb6f0e790a8cabecd53e6cefdf87a64a789ad1d15a2d862a0fb6d"; + version = "0.2.2.1"; + sha256 = "441931731ab75fd4dbbce459a3494941cb6f12a897d4bacdf33ab2f2501003cf"; libraryHaskellDepends = [ base binary bytestring event-list explicit-exception monoid-transformer non-negative QuickCheck random transformers @@ -155590,6 +156204,8 @@ self: { pname = "nonce"; version = "1.0.2"; sha256 = "1004184996ea797b43189a0e73eab0b939f129cafc776341ca82289edb329cd0"; + revision = "1"; + editedCabalFile = "b2a96acc58b405b7eea2022ff253da5deb16df2e60071bdca2956f0a939b5004"; libraryHaskellDepends = [ base base64-bytestring bytestring cprng-aes crypto-random text transformers @@ -156182,6 +156798,7 @@ self: { base loch-th placeholders template-haskell ]; testHaskellDepends = [ base directory doctest filepath ]; + jailbreak = true; homepage = "https://github.com/nikita-volkov/numeric-qq"; description = "Quasi-quoters for numbers of different bases"; license = stdenv.lib.licenses.mit; @@ -156580,8 +157197,8 @@ self: { }: mkDerivation { pname = "objective"; - version = "1.1"; - sha256 = "38a3e0d27fbff0d358942202051121ef0080e68a9e0e57bd2b97de7586006a0e"; + version = "1.1.1"; + sha256 = "7ad18e779f0b5910cc5425a16bcd07dba9f6a785c83526e047e62587b8d86634"; libraryHaskellDepends = [ base containers either exceptions free hashable monad-skeleton mtl profunctors template-haskell transformers transformers-compat @@ -156611,8 +157228,8 @@ self: { }: mkDerivation { pname = "octane"; - version = "0.4.16"; - sha256 = "5ee70deae5a19be4c82bf555f8bef20dc41d1328e58e35e13cf3006e6cb91267"; + version = "0.4.17"; + sha256 = "0384e4d970bed711c8415bba64e4fae6d8a18a442defc3775bd08fb46bbdd18e"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -157436,6 +158053,18 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "open-signals" = callPackage + ({ mkDerivation, base, either, mtl, transformers }: + mkDerivation { + pname = "open-signals"; + version = "0.1.0.3"; + sha256 = "a311f6ab03acaa6da81593fd1a8fb0f8796f51c6592475311892762dfa57d133"; + libraryHaskellDepends = [ base either mtl transformers ]; + testHaskellDepends = [ base ]; + description = "A mechanism similar to checked exceptions that integrates with MTL and transformer stacks"; + license = stdenv.lib.licenses.mit; + }) {}; + "open-symbology" = callPackage ({ mkDerivation, attoparsec, base, conduit, mtl, text }: mkDerivation { @@ -157576,15 +158205,15 @@ self: { ({ mkDerivation, base, data-default, GLUT, OpenGL, vector }: mkDerivation { pname = "opengl-dlp-stereo"; - version = "0.1.5.2"; - sha256 = "ae6c39a874af2fe12fd5af0dfc312ed9c2156a9240243c8ff81aa66970b0cad1"; + version = "0.1.5.4"; + sha256 = "d50aaa46219ae649cc4df821cd53d3c962c77b42c09d4ee6328ecb99f482f4d9"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base data-default GLUT OpenGL vector ]; executableHaskellDepends = [ base data-default GLUT OpenGL vector ]; - homepage = "https://bitbucket.org/bwbush/opengl-dlp-stereo"; + homepage = "https://bitbucket.org/functionally/opengl-dlp-stereo"; description = "Library and example for using DLP stereo in OpenGL"; license = stdenv.lib.licenses.mit; hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; @@ -157594,15 +158223,15 @@ self: { ({ mkDerivation, base, binary, data-default, GLUT, OpenGL }: mkDerivation { pname = "opengl-spacenavigator"; - version = "0.1.5.4"; - sha256 = "a6b1d313e0dce09ad4134b69df197acec6cc75ff5f3c2db9ca18cf384db64a54"; + version = "0.1.5.5"; + sha256 = "4835cd07f5fa8931b2fd38580faf9cd6057550ae70104ad60ff5a42d6f97080e"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base binary data-default GLUT OpenGL ]; executableHaskellDepends = [ base binary data-default GLUT OpenGL ]; - homepage = "https://bitbucket.org/bwbush/opengl-spacenavigator"; + homepage = "https://bitbucket.org/functionally/opengl-spacenavigator"; description = "Library and example for using a SpaceNavigator-compatible 3-D mouse with OpenGL"; license = stdenv.lib.licenses.mit; hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; @@ -158298,7 +158927,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "optional-args" = callPackage + "optional-args_1_0_0" = callPackage ({ mkDerivation, base }: mkDerivation { pname = "optional-args"; @@ -158307,6 +158936,18 @@ self: { libraryHaskellDepends = [ base ]; description = "Optional function arguments"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "optional-args" = callPackage + ({ mkDerivation, base }: + mkDerivation { + pname = "optional-args"; + version = "1.0.1"; + sha256 = "940604d6ebc1fb1b5372cb21e0b3870cd9d920655e41841844131994d1f1fd99"; + libraryHaskellDepends = [ base ]; + description = "Optional function arguments"; + license = stdenv.lib.licenses.bsd3; }) {}; "options_1_2" = callPackage @@ -161658,7 +162299,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "patches-vector" = callPackage + "patches-vector_0_1_5_1" = callPackage ({ mkDerivation, base, criterion, doctest, edit-distance-vector , hspec, microlens, QuickCheck, vector }: @@ -161672,6 +162313,28 @@ self: { testHaskellDepends = [ base criterion doctest hspec QuickCheck vector ]; + jailbreak = true; + homepage = "https://github.com/liamoc/patches-vector"; + description = "Patches (diffs) on vectors: composable, mergeable, and invertible"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "patches-vector" = callPackage + ({ mkDerivation, base, criterion, doctest, edit-distance-vector + , hspec, microlens, QuickCheck, vector + }: + mkDerivation { + pname = "patches-vector"; + version = "0.1.5.2"; + sha256 = "aa19e7edb991e383672d58536351f63733359b0260902170c61c48e7196fec85"; + libraryHaskellDepends = [ + base edit-distance-vector microlens vector + ]; + testHaskellDepends = [ + base criterion doctest hspec QuickCheck vector + ]; + doCheck = false; homepage = "https://github.com/liamoc/patches-vector"; description = "Patches (diffs) on vectors: composable, mergeable, and invertible"; license = stdenv.lib.licenses.bsd3; @@ -163491,6 +164154,41 @@ self: { maintainers = with stdenv.lib.maintainers; [ psibi ]; }) {}; + "persistent_2_5" = callPackage + ({ mkDerivation, aeson, attoparsec, base, base64-bytestring + , blaze-html, blaze-markup, bytestring, conduit, containers + , exceptions, fast-logger, hspec, http-api-data, lifted-base + , monad-control, monad-logger, mtl, old-locale, path-pieces + , resource-pool, resourcet, scientific, silently, tagged + , template-haskell, text, time, transformers, transformers-base + , unordered-containers, vector + }: + mkDerivation { + pname = "persistent"; + version = "2.5"; + sha256 = "de34feeb6e9fb3a181f204e8fdf6ad2adebe781a88182cd136e0d330c2455375"; + libraryHaskellDepends = [ + aeson attoparsec base base64-bytestring blaze-html blaze-markup + bytestring conduit containers exceptions fast-logger http-api-data + lifted-base monad-control monad-logger mtl old-locale path-pieces + resource-pool resourcet scientific silently tagged template-haskell + text time transformers transformers-base unordered-containers + vector + ]; + testHaskellDepends = [ + aeson attoparsec base base64-bytestring blaze-html bytestring + conduit containers fast-logger hspec http-api-data lifted-base + monad-control monad-logger mtl old-locale path-pieces resource-pool + resourcet scientific tagged template-haskell text time transformers + unordered-containers vector + ]; + homepage = "http://www.yesodweb.com/book/persistent"; + description = "Type-safe, multi-backend data serialization"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + maintainers = with stdenv.lib.maintainers; [ psibi ]; + }) {}; + "persistent-cereal" = callPackage ({ mkDerivation, base, cereal, persistent, text }: mkDerivation { @@ -163504,6 +164202,22 @@ self: { license = stdenv.lib.licenses.publicDomain; }) {}; + "persistent-database-url" = callPackage + ({ mkDerivation, base, bytestring, fail, hspec + , persistent-postgresql, uri-bytestring + }: + mkDerivation { + pname = "persistent-database-url"; + version = "1.0.0"; + sha256 = "4f75cb61373267bbc8a6c7e59312c83c7b60a90373f06158ee50c5222ec4742a"; + libraryHaskellDepends = [ + base bytestring fail persistent-postgresql uri-bytestring + ]; + testHaskellDepends = [ base hspec persistent-postgresql ]; + description = "Parse DATABASE_URL into configuration types for Persistent"; + license = stdenv.lib.licenses.mit; + }) {}; + "persistent-equivalence" = callPackage ({ mkDerivation, array, base, diffarray }: mkDerivation { @@ -163664,6 +164378,29 @@ self: { maintainers = with stdenv.lib.maintainers; [ psibi ]; }) {}; + "persistent-mongoDB_2_5" = callPackage + ({ mkDerivation, aeson, attoparsec, base, bson, bytestring, cereal + , conduit, containers, http-api-data, monad-control, mongoDB + , network, path-pieces, persistent, resource-pool, resourcet, text + , time, transformers + }: + mkDerivation { + pname = "persistent-mongoDB"; + version = "2.5"; + sha256 = "e181caeafa76905faa57ba5173ce5171469753b20d276bd008a515eb7e696e84"; + libraryHaskellDepends = [ + aeson attoparsec base bson bytestring cereal conduit containers + http-api-data monad-control mongoDB network path-pieces persistent + resource-pool resourcet text time transformers + ]; + jailbreak = true; + homepage = "http://www.yesodweb.com/book/persistent"; + description = "Backend for the persistent library using mongoDB"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + maintainers = with stdenv.lib.maintainers; [ psibi ]; + }) {}; + "persistent-mysql_2_1_2" = callPackage ({ mkDerivation, aeson, base, blaze-builder, bytestring, conduit , containers, monad-control, monad-logger, mysql, mysql-simple @@ -163789,6 +164526,28 @@ self: { maintainers = with stdenv.lib.maintainers; [ psibi ]; }) {}; + "persistent-mysql_2_5" = callPackage + ({ mkDerivation, aeson, base, blaze-builder, bytestring, conduit + , containers, monad-control, monad-logger, mysql, mysql-simple + , persistent, resource-pool, resourcet, text, transformers + }: + mkDerivation { + pname = "persistent-mysql"; + version = "2.5"; + sha256 = "fad1617beb44caa9e39c7aab574296004c45f5554bf76b404697e48c61e7395d"; + libraryHaskellDepends = [ + aeson base blaze-builder bytestring conduit containers + monad-control monad-logger mysql mysql-simple persistent + resource-pool resourcet text transformers + ]; + jailbreak = true; + homepage = "http://www.yesodweb.com/book/persistent"; + description = "Backend for the persistent library using MySQL database server"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + maintainers = with stdenv.lib.maintainers; [ psibi ]; + }) {}; + "persistent-odbc" = callPackage ({ mkDerivation, aeson, base, bytestring, conduit, containers , convertible, HDBC, HDBC-odbc, monad-control, monad-logger @@ -164130,6 +164889,29 @@ self: { maintainers = with stdenv.lib.maintainers; [ psibi ]; }) {}; + "persistent-postgresql_2_5" = callPackage + ({ mkDerivation, aeson, base, blaze-builder, bytestring, conduit + , containers, monad-control, monad-logger, persistent + , postgresql-libpq, postgresql-simple, resource-pool, resourcet + , text, time, transformers + }: + mkDerivation { + pname = "persistent-postgresql"; + version = "2.5"; + sha256 = "46694c4cf4f83b73944e8df989c37a50dc22b109fee2e739f21c66c352cdae09"; + libraryHaskellDepends = [ + aeson base blaze-builder bytestring conduit containers + monad-control monad-logger persistent postgresql-libpq + postgresql-simple resource-pool resourcet text time transformers + ]; + jailbreak = true; + homepage = "http://www.yesodweb.com/book/persistent"; + description = "Backend for the persistent library using postgresql"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + maintainers = with stdenv.lib.maintainers; [ psibi ]; + }) {}; + "persistent-protobuf" = callPackage ({ mkDerivation, base, bytestring, persistent, protocol-buffers , protocol-buffers-descriptor, template-haskell, text @@ -164431,6 +165213,35 @@ self: { maintainers = with stdenv.lib.maintainers; [ psibi ]; }) {}; + "persistent-sqlite_2_5" = callPackage + ({ mkDerivation, aeson, base, bytestring, conduit, containers + , hspec, monad-control, monad-logger, old-locale, persistent + , persistent-template, resource-pool, resourcet, text, time + , transformers + }: + mkDerivation { + pname = "persistent-sqlite"; + version = "2.5"; + sha256 = "ca67e87e5089215cfe1782c32b5e227355054caa92c802beef056f2304bb6373"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson base bytestring conduit containers monad-control monad-logger + old-locale persistent resource-pool resourcet text time + transformers + ]; + executableHaskellDepends = [ base monad-logger ]; + testHaskellDepends = [ + base hspec persistent persistent-template time transformers + ]; + jailbreak = true; + homepage = "http://www.yesodweb.com/book/persistent"; + description = "Backend for the persistent library using sqlite3"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + maintainers = with stdenv.lib.maintainers; [ psibi ]; + }) {}; + "persistent-template_2_1" = callPackage ({ mkDerivation, aeson, base, bytestring, containers, ghc-prim , hspec, monad-control, monad-logger, path-pieces, persistent @@ -164745,6 +165556,32 @@ self: { maintainers = with stdenv.lib.maintainers; [ psibi ]; }) {}; + "persistent-template_2_5" = callPackage + ({ mkDerivation, aeson, aeson-compat, base, bytestring, containers + , ghc-prim, hspec, http-api-data, monad-control, monad-logger + , path-pieces, persistent, QuickCheck, tagged, template-haskell + , text, transformers, unordered-containers + }: + mkDerivation { + pname = "persistent-template"; + version = "2.5"; + sha256 = "17c50172ed2b9f77480dcc616aa248dd62cf1b8e909b6b452ac503c9c8799b1f"; + libraryHaskellDepends = [ + aeson aeson-compat base bytestring containers ghc-prim + http-api-data monad-control monad-logger path-pieces persistent + tagged template-haskell text transformers unordered-containers + ]; + testHaskellDepends = [ + aeson base bytestring hspec persistent QuickCheck text transformers + ]; + jailbreak = true; + homepage = "http://www.yesodweb.com/book/persistent"; + description = "Type-safe, non-relational, multi-backend persistence"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + maintainers = with stdenv.lib.maintainers; [ psibi ]; + }) {}; + "persistent-vector" = callPackage ({ mkDerivation, base, deepseq, QuickCheck, test-framework , test-framework-quickcheck2 @@ -166405,6 +167242,7 @@ self: { base free pipes pipes-parse transformers ]; testHaskellDepends = [ base doctest lens-family-core ]; + jailbreak = true; description = "Group streams into substreams"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -169915,6 +170753,17 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "prelude-compat" = callPackage + ({ mkDerivation, base }: + mkDerivation { + pname = "prelude-compat"; + version = "0.0.0.1"; + sha256 = "7bdc875d5b7265a87f06866dc00da69edcd4ae36ea9687c8c6e643833ffb40d4"; + libraryHaskellDepends = [ base ]; + description = "Provide Prelude and Data.List with fixed content across GHC versions"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "prelude-edsl" = callPackage ({ mkDerivation, base }: mkDerivation { @@ -170015,6 +170864,17 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "prelude2010" = callPackage + ({ mkDerivation, prelude-compat }: + mkDerivation { + pname = "prelude2010"; + version = "0.0"; + sha256 = "d480894d9ad18f21395a26bcba80d7bd0d02b51ad81dc0f123eb1435aa7d8f38"; + libraryHaskellDepends = [ prelude-compat ]; + description = "Provide Prelude with fixed content across GHC versions"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "preprocess-haskell" = callPackage ({ mkDerivation, base, base-unicode-symbols, basic-prelude , bytestring, Cabal, containers, cpphs, deepseq, directory @@ -170479,15 +171339,14 @@ self: { "printf-mauke" = callPackage ({ mkDerivation, base, bytestring, containers, data-default - , template-haskell, utf8-string + , template-haskell }: mkDerivation { pname = "printf-mauke"; - version = "0.6.0"; - sha256 = "1fa0f6c024f4a1d5d3b8da3a8de29b48b5735391a00581077a476cd816a9ddbb"; + version = "0.7.0"; + sha256 = "c518dca90f5767a63d10fc98be31cf20f96cc86609550b4530d1bfbcbf149715"; libraryHaskellDepends = [ base bytestring containers data-default template-haskell - utf8-string ]; description = "A Perl printf like formatter"; license = stdenv.lib.licenses.bsd3; @@ -172039,8 +172898,8 @@ self: { }: mkDerivation { pname = "protolude"; - version = "0.1.2"; - sha256 = "c44cff763b5ec3c46fd5e624db6b46932f555968f4f5a43c0948e6d06600a920"; + version = "0.1.4"; + sha256 = "2b8b2e7ceb88f6db37633e204d1b59cc676535bff61c0ceb6074b75f02a6cd29"; libraryHaskellDepends = [ async base bytestring containers deepseq ghc-prim mtl safe semiring-simple stm string-conv text transformers @@ -172106,8 +172965,8 @@ self: { ({ mkDerivation, base, generic-deriving, tagged }: mkDerivation { pname = "proxied"; - version = "0.1.1"; - sha256 = "dc4f7f3553dfcc2ff40dd967d5c04bed58ac3d8d210b77a62df45623b36be087"; + version = "0.2"; + sha256 = "76f3a157b2f5373d46aa4203369a17052ce472a21dc2b067f7810b117a1cee0b"; libraryHaskellDepends = [ base generic-deriving tagged ]; homepage = "https://github.com/RyanGlScott/proxied"; description = "Make functions consume Proxy instead of undefined"; @@ -174037,6 +174896,7 @@ self: { testHaskellDepends = [ base directory doctest filepath QuickCheck ]; + jailbreak = true; homepage = "http://github.com/bennofs/quickcheck-property-monad/"; description = "A monad for generating QuickCheck properties without Arbitrary instances"; license = stdenv.lib.licenses.bsd3; @@ -174417,8 +175277,8 @@ self: { ({ mkDerivation, base, hspec, QuickCheck, quiver }: mkDerivation { pname = "quiver-interleave"; - version = "0.2.0.0"; - sha256 = "756bfdf3b0a932e4452f4f032fc517977e01b19c98b645486ce89f47217ec801"; + version = "0.2.0.1"; + sha256 = "0dbe071064fdffb6995475048afe2531096e4009243fe58fc9bfe6ed31f2dad8"; libraryHaskellDepends = [ base quiver ]; testHaskellDepends = [ base hspec QuickCheck quiver ]; description = "Interleave values from multiple Quivers"; @@ -174426,19 +175286,19 @@ self: { }) {}; "quiver-sort" = callPackage - ({ mkDerivation, base, binary, directory, exceptions, hspec - , QuickCheck, quiver, quiver-binary, quiver-bytestring + ({ mkDerivation, base, binary, containers, directory, exceptions + , hspec, QuickCheck, quiver, quiver-binary, quiver-bytestring , quiver-groups, quiver-instances, quiver-interleave, resourcet , temporary, transformers }: mkDerivation { pname = "quiver-sort"; - version = "0.1.0.0"; - sha256 = "ad93f4cdb76043612f816f02e0ca40fdb1396e8b7a96b7e303255eb7b4099d05"; + version = "0.2.0.0"; + sha256 = "78dba51aa22ecc34e7d871d066bd936febcb684dd20679d46ba2cd377399ee0c"; libraryHaskellDepends = [ - base directory exceptions quiver quiver-binary quiver-bytestring - quiver-groups quiver-instances quiver-interleave resourcet - temporary transformers + base containers directory exceptions quiver quiver-binary + quiver-bytestring quiver-groups quiver-instances quiver-interleave + resourcet temporary transformers ]; testHaskellDepends = [ base binary directory exceptions hspec QuickCheck quiver @@ -175659,29 +176519,28 @@ self: { "rdf4h" = callPackage ({ mkDerivation, base, binary, bytestring, containers, deepseq - , directory, fgl, hashable, HTTP, HUnit, hxt, knob, network - , network-uri, parsec, QuickCheck, safe, test-framework - , test-framework-hunit, test-framework-quickcheck2, text - , text-binary, unordered-containers + , directory, fgl, hashable, hgal, HTTP, HUnit, hxt, network + , network-uri, parsec, QuickCheck, safe, tasty, tasty-hunit + , tasty-quickcheck, text, text-binary, unordered-containers + , utf8-string }: mkDerivation { pname = "rdf4h"; - version = "1.3.6"; - sha256 = "59b3f7a1893b1ec2c4ce967dd98d1dd1541e57ce1a697810d3b8fec27d21b1da"; + version = "2.0.0"; + sha256 = "2c6eb2a15590931e0646731c688b010d75186a2d1ce38eabb27fdbc19647a23a"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base binary bytestring containers deepseq directory fgl hashable - HTTP hxt network network-uri parsec text text-binary - unordered-containers + hgal HTTP hxt network network-uri parsec text text-binary + unordered-containers utf8-string ]; executableHaskellDepends = [ - base bytestring containers network network-uri text + base containers network network-uri text ]; testHaskellDepends = [ - base bytestring containers directory HUnit knob network network-uri - QuickCheck safe test-framework test-framework-hunit - test-framework-quickcheck2 text + base bytestring containers directory HUnit network network-uri + QuickCheck safe tasty tasty-hunit tasty-quickcheck text ]; homepage = "https://github.com/robstewart57/rdf4h"; description = "A library for RDF processing in Haskell"; @@ -179834,8 +180693,8 @@ self: { pname = "rest-client"; version = "0.5.1.0"; sha256 = "9b75fb30f0f101945440c21b38d64b22a9aad81b81bce8e6a21e4675e6c8136e"; - revision = "1"; - editedCabalFile = "792e8084ca7b8c30c3c5870c03c0f2b0e401ea75a7edea9ec598fdbe5213f676"; + revision = "2"; + editedCabalFile = "a95c81e43b13fd4998514f346a7b81093228886b99dc0b05e07506f44b8ae642"; libraryHaskellDepends = [ aeson-utils base bytestring case-insensitive data-default exceptions http-conduit http-types hxt hxt-pickle-utils @@ -180915,7 +181774,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "rethinkdb" = callPackage + "rethinkdb_2_2_0_3" = callPackage ({ mkDerivation, aeson, attoparsec, base, base64-bytestring, binary , bytestring, containers, data-default, doctest, mtl, network , scientific, text, time, unordered-containers, utf8-string, vector @@ -180937,6 +181796,31 @@ self: { homepage = "http://github.com/atnnn/haskell-rethinkdb"; description = "A driver for RethinkDB 2.2"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "rethinkdb" = callPackage + ({ mkDerivation, aeson, attoparsec, base, base64-bytestring, binary + , bytestring, containers, data-default, doctest, mtl, network + , scientific, text, time, unordered-containers, utf8-string, vector + }: + mkDerivation { + pname = "rethinkdb"; + version = "2.2.0.4"; + sha256 = "e1f700f1cdbe9e7b96d529f29725ec13be86ae164c3c99a03b1d502ac9416f9c"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson base base64-bytestring binary bytestring containers + data-default mtl network scientific text time unordered-containers + utf8-string vector + ]; + executableHaskellDepends = [ attoparsec base text ]; + testHaskellDepends = [ base doctest ]; + doCheck = false; + homepage = "http://github.com/atnnn/haskell-rethinkdb"; + description = "A driver for RethinkDB 2.2"; + license = stdenv.lib.licenses.asl20; }) {}; "rethinkdb-client-driver_0_0_13" = callPackage @@ -182551,8 +183435,8 @@ self: { }: mkDerivation { pname = "rss-conduit"; - version = "0.2.0.0"; - sha256 = "feff18d16f9c23e3180a7a4ae9efebcce52cdc8b8ad78791948dba33f5af53a6"; + version = "0.2.0.1"; + sha256 = "c06317ac567f3a025bd5ba498837a64f0f045a3fa38e4ae36ca9ca76c4aafe3a"; libraryHaskellDepends = [ base conduit conduit-parse containers exceptions foldl lens-simple mono-traversable parsers safe text time timerep uri-bytestring @@ -182600,8 +183484,8 @@ self: { }: mkDerivation { pname = "rtcm"; - version = "0.1.4"; - sha256 = "9f4343199636b5509c71c982f8d8be39eaadcdac0fb63b86323590c66ef43a03"; + version = "0.1.5"; + sha256 = "cc91a2c354c79e6f4bb98c3f801bc72c5a37fd3874fa3d0ac4e6fa5637fac364"; libraryHaskellDepends = [ array base basic-prelude binary binary-bits bytestring lens template-haskell word24 @@ -183662,26 +184546,26 @@ self: { }) {}; "sarsi" = callPackage - ({ mkDerivation, attoparsec, base, binary, bytestring, Cabal + ({ mkDerivation, async, attoparsec, base, binary, bytestring, Cabal , containers, cryptonite, directory, filepath, fsnotify, machines , machines-binary, machines-io, machines-process, msgpack, network - , process, text, unordered-containers, vector + , process, stm, text, unordered-containers, vector }: mkDerivation { pname = "sarsi"; - version = "0.0.1.0"; - sha256 = "fb0fd9a1f67876bc7656c27782ad74f64427e16ab43e3914cdad7d68be56e4b7"; + version = "0.0.3.0"; + sha256 = "5dce7ea1ce2288c62069f98f3757357b41a0385338edb4e741d9ef59f0243861"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - attoparsec base binary bytestring containers cryptonite directory - filepath machines machines-binary machines-io machines-process - msgpack network process text vector + async attoparsec base binary bytestring containers cryptonite + directory filepath fsnotify machines machines-binary machines-io + machines-process msgpack network process stm text vector ]; executableHaskellDepends = [ - base binary bytestring Cabal containers fsnotify machines - machines-binary machines-io machines-process msgpack network - process text unordered-containers vector + base binary bytestring Cabal containers directory filepath fsnotify + machines machines-binary machines-io machines-process msgpack + network process text unordered-containers vector ]; jailbreak = true; homepage = "http://github.com/aloiscochard/sarsi"; @@ -185063,8 +185947,8 @@ self: { }: mkDerivation { pname = "scotty-resource"; - version = "0.1.0.0"; - sha256 = "54bb90b0cd35b4a22bbed7af58e1e9297344551badc0ebcc56620ce1bad1c5d5"; + version = "0.1.0.1"; + sha256 = "d65bea57c1151d8cf467fa624ca6351ceb02f086cb9ff87aafef450511f52127"; libraryHaskellDepends = [ base containers http-types scotty text transformers wai ]; @@ -185134,6 +186018,22 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "scotty-view" = callPackage + ({ mkDerivation, base, scotty, text, transformers }: + mkDerivation { + pname = "scotty-view"; + version = "1.0.0"; + sha256 = "d46e0f66f200595d666d5b996cc1aa7999ce059668bc720d641e60c03f4b3bda"; + revision = "2"; + editedCabalFile = "d941c5b17efc35e5a244ee219198795d8b3df583685abe7b128731a417735a29"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base scotty text transformers ]; + executableHaskellDepends = [ base scotty text transformers ]; + jailbreak = true; + license = stdenv.lib.licenses.mit; + }) {}; + "scp-streams" = callPackage ({ mkDerivation, attoparsec, base, bytestring, cmdargs, io-streams , process, SHA, sha-streams, unix @@ -185428,19 +186328,20 @@ self: { }) {}; "sdl2-compositor" = callPackage - ({ mkDerivation, base, lens, linear, lrucache, QuickCheck, sdl2 - , sdl2-ttf, StateVar, stm, text, transformers + ({ mkDerivation, base, Cabal, hspec, hspec-core, lens, linear + , lrucache, QuickCheck, sdl2, StateVar, stm, text, transformers }: mkDerivation { pname = "sdl2-compositor"; - version = "1.2.0.4"; - sha256 = "f4e80bef41513080e60c76d1f6d15fe6afe479acb92e9775cbe9e12d7ee15135"; + version = "1.2.0.5"; + sha256 = "233b6fa622703849d4f7d69ac2202a0787b4e1048341b09767a3b5fa2e3ee255"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - base lens linear lrucache QuickCheck sdl2 sdl2-ttf StateVar stm - text transformers + base lens linear lrucache QuickCheck sdl2 StateVar stm text + transformers ]; + testHaskellDepends = [ base Cabal hspec hspec-core QuickCheck ]; description = "image compositing with sdl2 - declarative style"; license = stdenv.lib.licenses.gpl3; hydraPlatforms = stdenv.lib.platforms.none; @@ -186155,6 +187056,7 @@ self: { distributive semigroups tagged transformers transformers-compat ]; testHaskellDepends = [ base directory doctest filepath ]; + jailbreak = true; doCheck = false; homepage = "http://github.com/ekmett/semigroupoids"; description = "Semigroupoids: Category sans id"; @@ -186178,6 +187080,8 @@ self: { distributive semigroups tagged transformers transformers-compat ]; testHaskellDepends = [ base directory doctest filepath ]; + jailbreak = true; + doCheck = false; homepage = "http://github.com/ekmett/semigroupoids"; description = "Semigroupoids: Category sans id"; license = stdenv.lib.licenses.bsd3; @@ -187082,7 +187986,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "servant_0_6_1" = callPackage + "servant_0_7" = callPackage ({ mkDerivation, aeson, attoparsec, base, base-compat, bytestring , bytestring-conversion, case-insensitive, directory, doctest , filemanip, filepath, hspec, http-api-data, http-media, http-types @@ -187091,8 +187995,8 @@ self: { }: mkDerivation { pname = "servant"; - version = "0.6.1"; - sha256 = "830154335052270314be49644db3a88665b1910d1678ff35337a9b3caabaab3a"; + version = "0.7"; + sha256 = "c4a61f0bb998c7e3a7dd808c64e73419e7c1b3a60e51d3cbce8cb32eb1ea3f97"; libraryHaskellDepends = [ aeson attoparsec base base-compat bytestring bytestring-conversion case-insensitive http-api-data http-media http-types network-uri @@ -187221,12 +188125,12 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "servant-blaze_0_6_1" = callPackage + "servant-blaze_0_7" = callPackage ({ mkDerivation, base, blaze-html, http-media, servant }: mkDerivation { pname = "servant-blaze"; - version = "0.6.1"; - sha256 = "f34b45f7c15f53858034052bc0e662ce884ca2c231bc7f3fecc69bc8763f209f"; + version = "0.7"; + sha256 = "e0639a646d1ce876da88ddbcc32e99348c6e3c9b76d21fb43261b89b19dc8ebd"; libraryHaskellDepends = [ base blaze-html http-media servant ]; jailbreak = true; homepage = "http://haskell-servant.github.io/"; @@ -187239,8 +188143,8 @@ self: { ({ mkDerivation, base, cassava, http-media, servant, vector }: mkDerivation { pname = "servant-cassava"; - version = "0.6.1"; - sha256 = "2cd80c3c5e92111e4ccca8a0aeef5001cb5e64ca31365fa363148a2d239e781f"; + version = "0.7"; + sha256 = "ae4d8a51a2a6a1bafa224fd83ce7ccb7669e01e0bb19328bb09841e4e6a3a8ad"; libraryHaskellDepends = [ base cassava http-media servant vector ]; jailbreak = true; homepage = "http://haskell-servant.github.io/"; @@ -187435,7 +188339,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "servant-client_0_6_1" = callPackage + "servant-client_0_7" = callPackage ({ mkDerivation, aeson, attoparsec, base, base64-bytestring , bytestring, deepseq, exceptions, hspec, http-api-data , http-client, http-client-tls, http-media, http-types, HUnit @@ -187445,8 +188349,8 @@ self: { }: mkDerivation { pname = "servant-client"; - version = "0.6.1"; - sha256 = "3b2724cd01fd60c10132b4c20384e5bc734f2e46b03db9b6a0f6d4b947decee4"; + version = "0.7"; + sha256 = "8874dc13f0256d31734e011d8fcd4ffbb38c3d25ca0514e5e9433a16d42b96cf"; libraryHaskellDepends = [ aeson attoparsec base base64-bytestring bytestring exceptions http-api-data http-client http-client-tls http-media http-types @@ -187661,7 +188565,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "servant-docs_0_6_1" = callPackage + "servant-docs_0_7" = callPackage ({ mkDerivation, aeson, aeson-pretty, base, bytestring , bytestring-conversion, case-insensitive, control-monad-omega , hashable, hspec, http-media, http-types, lens, servant @@ -187669,8 +188573,8 @@ self: { }: mkDerivation { pname = "servant-docs"; - version = "0.6.1"; - sha256 = "66604bcbeee4f84847d64fb7ed127eb4f32570d16a33aa24adf2684688aae33b"; + version = "0.7"; + sha256 = "8bb427ae3f9633b166efa45274cfffd17e7c313a5cbe40f6e6384e746eb59fb2"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -187767,8 +188671,8 @@ self: { ({ mkDerivation, base, hspec, http-types, lens, servant, text }: mkDerivation { pname = "servant-foreign"; - version = "0.6.1"; - sha256 = "de131f3538d9e01a5c9a8c57ee85a22753fa25e80f98031e0c2947c5aca9b324"; + version = "0.7"; + sha256 = "2c0fe064a4cd38fe73bb6133fd7d402e5b6457dd2902c76322887d6c5f0e383b"; libraryHaskellDepends = [ base http-types lens servant text ]; testHaskellDepends = [ base hspec ]; jailbreak = true; @@ -187994,8 +188898,8 @@ self: { }: mkDerivation { pname = "servant-js"; - version = "0.6.1"; - sha256 = "8bafcd5632bb49346280a1922e1708e55da639c485347d0566724445e2854611"; + version = "0.7"; + sha256 = "355fac0a7232a163b628194750aa47897e0bc53a57799d6b132509cf4a82be66"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -188020,8 +188924,8 @@ self: { ({ mkDerivation, base, http-media, lucid, servant }: mkDerivation { pname = "servant-lucid"; - version = "0.6.1"; - sha256 = "bb0d27b58f21e4921f302a0902ead2377372617df80ab829be9dd296d1f031e6"; + version = "0.7"; + sha256 = "6a1dc36d919763d0793e21dca873038ececfaa386e792ac8d70c597ef94e74a4"; libraryHaskellDepends = [ base http-media lucid servant ]; jailbreak = true; homepage = "http://haskell-servant.github.io/"; @@ -188051,15 +188955,15 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "servant-mock_0_6_1" = callPackage + "servant-mock_0_7" = callPackage ({ mkDerivation, aeson, base, bytestring, bytestring-conversion , hspec, hspec-wai, http-types, QuickCheck, servant, servant-server , transformers, wai, warp }: mkDerivation { pname = "servant-mock"; - version = "0.6.1"; - sha256 = "c612d546f82f0b633cab8396c71583f0866034abd9c3f2462fce3faec9006621"; + version = "0.7"; + sha256 = "42065734878eabbb2cd424737bab0e1dd3ff99eddace93c9c0953f59a42dc55d"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -188447,7 +189351,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "servant-server_0_6_1" = callPackage + "servant-server_0_7" = callPackage ({ mkDerivation, aeson, attoparsec, base, base-compat , base64-bytestring, bytestring, bytestring-conversion, containers , directory, doctest, exceptions, filemanip, filepath, hspec @@ -188459,8 +189363,8 @@ self: { }: mkDerivation { pname = "servant-server"; - version = "0.6.1"; - sha256 = "4d1b0871008945009bf4d4756108cc1376edbd08e49ce96d9c1365d9b382ec07"; + version = "0.7"; + sha256 = "ea58c79d6ac65d0beda9e64c1cde420d77a355be4cab0b48738ccf3adad4eb0b"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -189561,7 +190465,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "shake" = callPackage + "shake_0_15_5" = callPackage ({ mkDerivation, base, binary, bytestring, deepseq, directory , extra, filepath, hashable, js-flot, js-jquery, old-time, process , QuickCheck, random, time, transformers, unix @@ -189592,6 +190496,40 @@ self: { homepage = "http://shakebuild.com"; description = "Build system library, like Make, but more accurate dependencies"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "shake" = callPackage + ({ mkDerivation, base, binary, bytestring, deepseq, directory + , extra, filepath, hashable, js-flot, js-jquery, primitive, process + , QuickCheck, random, time, transformers, unix + , unordered-containers, utf8-string + }: + mkDerivation { + pname = "shake"; + version = "0.15.6"; + sha256 = "d162f5437ffb08a9b638e381dc99807975ed48b2f04e24b1e3df74b0c1bbca10"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base binary bytestring deepseq directory extra filepath hashable + js-flot js-jquery process random time transformers unix + unordered-containers utf8-string + ]; + executableHaskellDepends = [ + base binary bytestring deepseq directory extra filepath hashable + js-flot js-jquery primitive process random time transformers unix + unordered-containers utf8-string + ]; + testHaskellDepends = [ + base binary bytestring deepseq directory extra filepath hashable + js-flot js-jquery process QuickCheck random time transformers unix + unordered-containers utf8-string + ]; + doCheck = false; + homepage = "http://shakebuild.com"; + description = "Build system library, like Make, but more accurate dependencies"; + license = stdenv.lib.licenses.bsd3; }) {}; "shake-cabal-build" = callPackage @@ -190093,7 +191031,7 @@ self: { maintainers = with stdenv.lib.maintainers; [ psibi ]; }) {}; - "shakespeare" = callPackage + "shakespeare_2_0_8" = callPackage ({ mkDerivation, aeson, base, blaze-html, blaze-markup, bytestring , containers, directory, exceptions, ghc-prim, hspec, HUnit, parsec , process, scientific, template-haskell, text, time, transformers @@ -190116,6 +191054,33 @@ self: { homepage = "http://www.yesodweb.com/book/shakespearean-templates"; description = "A toolkit for making compile-time interpolated templates"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + maintainers = with stdenv.lib.maintainers; [ psibi ]; + }) {}; + + "shakespeare" = callPackage + ({ mkDerivation, aeson, base, blaze-html, blaze-markup, bytestring + , containers, directory, exceptions, ghc-prim, hspec, HUnit, parsec + , process, scientific, template-haskell, text, time, transformers + , unordered-containers, vector + }: + mkDerivation { + pname = "shakespeare"; + version = "2.0.8.1"; + sha256 = "36f44b3e07f9142d0d4d3ef87ec1b84ec915a3f21091f470f493e61dbe0c38a5"; + libraryHaskellDepends = [ + aeson base blaze-html blaze-markup bytestring containers directory + exceptions ghc-prim parsec process scientific template-haskell text + time transformers unordered-containers vector + ]; + testHaskellDepends = [ + aeson base blaze-html blaze-markup bytestring containers directory + exceptions ghc-prim hspec HUnit parsec process template-haskell + text time transformers + ]; + homepage = "http://www.yesodweb.com/book/shakespearean-templates"; + description = "A toolkit for making compile-time interpolated templates"; + license = stdenv.lib.licenses.mit; maintainers = with stdenv.lib.maintainers; [ psibi ]; }) {}; @@ -190860,7 +191825,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "should-not-typecheck" = callPackage + "should-not-typecheck_2_0_1" = callPackage ({ mkDerivation, base, deepseq, hspec, hspec-expectations, HUnit }: mkDerivation { pname = "should-not-typecheck"; @@ -190873,6 +191838,22 @@ self: { homepage = "http://github.com/CRogers/should-not-typecheck"; description = "A HUnit/hspec assertion library to verify that an expression does not typecheck"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "should-not-typecheck" = callPackage + ({ mkDerivation, base, deepseq, hspec, hspec-expectations, HUnit }: + mkDerivation { + pname = "should-not-typecheck"; + version = "2.1.0"; + sha256 = "f538ac70ce07679bc2e6c1651db82a86866664ab995665fdc78e6cb12bd8d591"; + libraryHaskellDepends = [ base deepseq HUnit ]; + testHaskellDepends = [ + base deepseq hspec hspec-expectations HUnit + ]; + homepage = "http://github.com/CRogers/should-not-typecheck"; + description = "A HUnit/hspec assertion library to verify that an expression does not typecheck"; + license = stdenv.lib.licenses.bsd3; }) {}; "show" = callPackage @@ -192446,13 +193427,13 @@ self: { }) {}; "skulk" = callPackage - ({ mkDerivation, base, hspec }: + ({ mkDerivation, base, hspec, QuickCheck }: mkDerivation { pname = "skulk"; - version = "0.1.0.0"; - sha256 = "c7442785a7211084928a4bc6ab2612bab96676d6e979b0d3debc6c8c13f8dd44"; + version = "0.1.1.0"; + sha256 = "21bfa0fb579dd9b4cd0c48cbd0011b0b4a38985b517dfd6ee1d455d9c83506df"; libraryHaskellDepends = [ base ]; - testHaskellDepends = [ base hspec ]; + testHaskellDepends = [ base hspec QuickCheck ]; homepage = "http://github.com/geekyfox/skulk"; description = "Eclectic collection of utility functions"; license = stdenv.lib.licenses.mit; @@ -192857,7 +193838,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "smallcaps" = callPackage + "smallcaps_0_6_0_1" = callPackage ({ mkDerivation, attoparsec, base, containers, data-default , directory, filepath, parsec, text, transformers }: @@ -192877,6 +193858,29 @@ self: { ]; description = "Flatten camel case text in LaTeX files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "smallcaps" = callPackage + ({ mkDerivation, attoparsec, base, containers, data-default + , directory, filepath, parsec, text, transformers + }: + mkDerivation { + pname = "smallcaps"; + version = "0.6.0.2"; + sha256 = "7eb841d025e88447172824480d8867263421e14472bf2c82cfde8f2f7f9551dc"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + attoparsec base containers data-default directory filepath parsec + text transformers + ]; + executableHaskellDepends = [ base containers data-default text ]; + testHaskellDepends = [ + attoparsec base containers data-default parsec text + ]; + description = "Flatten camel case text in LaTeX files"; + license = stdenv.lib.licenses.bsd3; }) {}; "smallcheck" = callPackage @@ -194574,14 +195578,13 @@ self: { }: mkDerivation { pname = "snaplet-mysql-simple"; - version = "0.2.1.0"; - sha256 = "21db42dc3ddf618fd3faf7dedc3fb663d9705a3b7e5db11b9b09813275470543"; + version = "0.2.2.0"; + sha256 = "431144707d54737953c83fbe71b78ad06be73454e25f56163c108ecc20935058"; libraryHaskellDepends = [ base bytestring clientsession configurator containers errors lens MonadCatchIO-transformers mtl mysql mysql-simple resource-pool-catchio snap text transformers unordered-containers ]; - jailbreak = true; homepage = "https://github.com/ibotty/snaplet-mysql-simple"; description = "mysql-simple snaplet for the Snap Framework"; license = stdenv.lib.licenses.bsd3; @@ -196678,6 +197681,31 @@ self: { license = stdenv.lib.licenses.bsd2; }) {}; + "sproxy" = callPackage + ({ mkDerivation, aeson, attoparsec, base, base64-bytestring + , bytestring, containers, data-default, docopt, entropy + , http-conduit, http-kit, http-types, interpolatedstring-perl6 + , logging-facade, logsink, network, postgresql-simple + , raw-strings-qq, resource-pool, SHA, split, string-conversions + , time, tls, unix, utf8-string, x509, yaml + }: + mkDerivation { + pname = "sproxy"; + version = "0.9.5"; + sha256 = "54633c0d8ec9de787947af025e9a4f43e762bada88e5e1745a32420632e2c35f"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + aeson attoparsec base base64-bytestring bytestring containers + data-default docopt entropy http-conduit http-kit http-types + interpolatedstring-perl6 logging-facade logsink network + postgresql-simple raw-strings-qq resource-pool SHA split + string-conversions time tls unix utf8-string x509 yaml + ]; + description = "HTTP proxy for authenticating users via Google OAuth2"; + license = stdenv.lib.licenses.mit; + }) {}; + "spsa" = callPackage ({ mkDerivation, base, hmatrix, HUnit, mtl, QuickCheck, random , test-framework, test-framework-hunit, test-framework-quickcheck2 @@ -197969,8 +198997,8 @@ self: { pname = "stack"; version = "1.0.4.3"; sha256 = "2a445ff671cfd75ccf3185c52832298598dc03dbfbede2b7be21237f63c305b2"; - revision = "1"; - editedCabalFile = "d637dfe390596b7ee702c516d177ffd266ab110c4a0b691c9a7d49d274382e08"; + revision = "2"; + editedCabalFile = "a2cedd499125c5380a6f2e7f7a57c6b67e330e07ecd5e95114b83cefe7975e3f"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -198555,15 +199583,14 @@ self: { , monad-unlift, mono-traversable, mtl, old-locale , optparse-applicative, optparse-simple, process, QuickCheck , resourcet, semigroups, stackage-cli, stackage-install - , stackage-metadata, stackage-types, stm, streaming-commons, syb - , system-fileio, system-filepath, tar, temporary, text, time - , transformers, unix-compat, utf8-string, xml-conduit, xml-types - , yaml, zlib + , stackage-types, stm, streaming-commons, syb, system-fileio + , system-filepath, tar, temporary, text, time, transformers + , unix-compat, utf8-string, xml-conduit, xml-types, yaml, zlib }: mkDerivation { pname = "stackage-curator"; - version = "0.13.2"; - sha256 = "09373b993ef5958e945c38cff08c6dabdbd3f71e61f8ffc049ba30196c3bae6b"; + version = "0.13.3"; + sha256 = "3bd12ba07d2a81d7439ba9ac4668a40981a7aab718942469f9e465a5d3127d94"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -198574,9 +199601,9 @@ self: { directory filepath html-conduit http-client http-client-tls http-conduit lucid mime-types monad-unlift mono-traversable mtl old-locale process resourcet semigroups stackage-install - stackage-metadata stackage-types stm streaming-commons syb - system-fileio system-filepath tar temporary text time transformers - unix-compat utf8-string xml-conduit xml-types yaml zlib + stackage-types stm streaming-commons syb system-fileio + system-filepath tar temporary text time transformers unix-compat + utf8-string xml-conduit xml-types yaml zlib ]; executableHaskellDepends = [ base http-client http-client-tls optparse-applicative @@ -200374,6 +201401,35 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "stratosphere" = callPackage + ({ mkDerivation, aeson, aeson-pretty, base, bytestring, ede, hlint + , lens, system-fileio, system-filepath, tasty, tasty-hspec + , template-haskell, text, unordered-containers + }: + mkDerivation { + pname = "stratosphere"; + version = "0.1.0"; + sha256 = "4cc6816f1196fcf59d774f0267268935c7bbdf5d8953b8e0ebe1b92d5cb51d15"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson aeson-pretty base bytestring ede lens system-fileio + system-filepath template-haskell text unordered-containers + ]; + executableHaskellDepends = [ + aeson aeson-pretty base bytestring ede lens system-fileio + system-filepath template-haskell text unordered-containers + ]; + testHaskellDepends = [ + aeson aeson-pretty base bytestring ede hlint lens system-fileio + system-filepath tasty tasty-hspec template-haskell text + unordered-containers + ]; + homepage = "https://github.com/frontrowed/stratosphere#readme"; + description = "EDSL for AWS CloudFormation"; + license = stdenv.lib.licenses.mit; + }) {}; + "stratum-tool" = callPackage ({ mkDerivation, aeson, async, base, bytestring, bytestring-builder , cmdargs, connection, containers, curl, curl-aeson, network, stm @@ -200395,6 +201451,23 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "stream" = callPackage + ({ mkDerivation, base, bytestring, exceptions, hspec, mtl + , streaming-commons, temporary, transformers + }: + mkDerivation { + pname = "stream"; + version = "0.1.0.0"; + sha256 = "5e9e0531132edd68758d65fbd150f55b7ea858ef90c184386aa8625e552af1fa"; + libraryHaskellDepends = [ + base bytestring exceptions mtl streaming-commons transformers + ]; + testHaskellDepends = [ base bytestring hspec temporary ]; + homepage = "https://github.com/githubuser/stream#readme"; + description = "Initial project template from stack"; + license = stdenv.lib.licenses.mit; + }) {}; + "stream-fusion" = callPackage ({ mkDerivation, base }: mkDerivation { @@ -201499,8 +202572,8 @@ self: { }: mkDerivation { pname = "strive"; - version = "2.2.1"; - sha256 = "eeecc39037562bf656349d6e42b52870859d7b2be72deb81bd7b8bb72d70fca5"; + version = "2.2.2"; + sha256 = "cf1b8b89a234798947931c874e9a48598737fb41d8971e5c1eed87d9fb75beb0"; libraryHaskellDepends = [ aeson base bytestring data-default gpolyline http-conduit http-types template-haskell text time transformers @@ -203314,8 +204387,8 @@ self: { }: mkDerivation { pname = "syntactic"; - version = "3.5"; - sha256 = "6bb80992cee979b5c15f57c0f92aef6fedc76e510e39ba399fbc43bbc1ef9eb9"; + version = "3.6"; + sha256 = "a7365712bf0e050505dfa31cce21937865d80df2f5c83767c34c2b0f7469613a"; libraryHaskellDepends = [ base constraints containers data-hash deepseq mtl syb template-haskell tree-view @@ -208396,7 +209469,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "text-show_3_2" = callPackage + "text-show_3_2_1" = callPackage ({ mkDerivation, array, base, base-compat, base-orphans, bifunctors , bytestring, bytestring-builder, containers, generic-deriving , ghc-prim, hspec, integer-gmp, nats, QuickCheck @@ -208405,8 +209478,8 @@ self: { }: mkDerivation { pname = "text-show"; - version = "3.2"; - sha256 = "038073600759d0dafa7f2f2de31dae0df83254850a218e4db9def2e870a9887b"; + version = "3.2.1"; + sha256 = "c5d13ce1c1a411930a0bc3220f8189b91d9ff58c8b82f5777277fc62cc27d28a"; libraryHaskellDepends = [ array base base-compat bifunctors bytestring bytestring-builder containers generic-deriving ghc-prim integer-gmp nats semigroups @@ -209147,6 +210220,7 @@ self: { base bytestring containers directory doctest filepath QuickCheck template-haskell text vector ]; + jailbreak = true; homepage = "http://github.com/bennofs/th-lift-instances/"; description = "Lift instances for template-haskell for common data types"; license = stdenv.lib.licenses.bsd3; @@ -213098,8 +214172,8 @@ self: { }: mkDerivation { pname = "tttool"; - version = "1.6.0.1"; - sha256 = "52d9d4e28ce1e1a81e81ff2b8fe9a2a21d0b1b74ba172777c654d0c1e608a23f"; + version = "1.6.1"; + sha256 = "a319444a352ac16d2b987fc3b2e866dd8d96ac022aa6ca67b0af0d0c0cfca92e"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -213560,8 +214634,8 @@ self: { ({ mkDerivation, base, eventloop }: mkDerivation { pname = "twentefp-eventloop-trees"; - version = "0.1.2.2"; - sha256 = "5fc63b1739a64e5316fa3c1d91f9d47a34d1f2e494e91658bd0b719c18a2257d"; + version = "0.1.2.3"; + sha256 = "f6cd6a92421f35eb5943f0c57435a30035d7ebde6dacafa081bb48ae5bde7d0b"; libraryHaskellDepends = [ base eventloop ]; description = "Tree type and show functions for lab assignment of University of Twente. Contains RoseTree and RedBlackTree"; license = stdenv.lib.licenses.bsd3; @@ -215324,7 +216398,7 @@ self: { description = "libudev bindings"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; - }) {libudev = null;}; + }) {inherit (pkgs) libudev;}; "uglymemo" = callPackage ({ mkDerivation, base, containers }: @@ -216384,14 +217458,12 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "unix_2_7_1_0" = callPackage + "unix_2_7_2_0" = callPackage ({ mkDerivation, base, bytestring, time }: mkDerivation { pname = "unix"; - version = "2.7.1.0"; - sha256 = "6bd4e6013855541535a1317197aa6a11e7f24ba0e4dd64a8b7fcfd40b5a4e45c"; - revision = "1"; - editedCabalFile = "ee3232af128d50f0b51e8ee786cd928399371d13942581da1bc73232d8f6d802"; + version = "2.7.2.0"; + sha256 = "9444ea785b9f3547d3e04d2d42ead6bc3c2e0129390d9d41a655b18b0c322bf0"; libraryHaskellDepends = [ base bytestring time ]; homepage = "https://github.com/haskell/unix"; description = "POSIX functionality"; @@ -220511,15 +221583,15 @@ self: { ({ mkDerivation, base, vrpn }: mkDerivation { pname = "vrpn"; - version = "0.2.1.3"; - sha256 = "3268782b9412fe9cc3757dcaea0d9756ef9db4c80ea4004065df548384109d68"; + version = "0.2.1.4"; + sha256 = "642562ad8634d1f1875060b0685719b5282f309196bd74079a10b7b4e0e73186"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base ]; librarySystemDepends = [ vrpn ]; executableHaskellDepends = [ base ]; executableSystemDepends = [ vrpn ]; - homepage = "https://bitbucket.org/bwbush/vrpn"; + homepage = "https://bitbucket.org/functionally/vrpn"; description = "Bindings to VRPN"; license = stdenv.lib.licenses.mit; hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; @@ -220665,18 +221737,19 @@ self: { }) {}; "vulkan" = callPackage - ({ mkDerivation, base, vector-sized }: + ({ mkDerivation, base, vector-sized, vulkan }: mkDerivation { pname = "vulkan"; - version = "1.6.0.0"; - sha256 = "0c97af15d2367c02d669f1a5d5236968ed7c1dfe0fb733f0bcac139cb8778972"; + version = "1.7.0.0"; + sha256 = "17c8437061adee81f6c4b34a1ead85a44f98c0c443bc2696025f1849c086e965"; libraryHaskellDepends = [ base vector-sized ]; + librarySystemDepends = [ vulkan ]; jailbreak = true; homepage = "http://github.com/expipiplus1/vulkan#readme"; description = "Bindings to the Vulkan graphics API"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; - }) {}; + }) {vulkan = null;}; "wacom-daemon" = callPackage ({ mkDerivation, aeson, base, bytestring, containers, directory @@ -220882,7 +221955,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "wai" = callPackage + "wai_3_2_0_1" = callPackage ({ mkDerivation, base, blaze-builder, bytestring , bytestring-builder, hspec, http-types, network, text , transformers, vault @@ -220899,6 +221972,26 @@ self: { homepage = "https://github.com/yesodweb/wai"; description = "Web Application Interface"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "wai" = callPackage + ({ mkDerivation, base, blaze-builder, bytestring + , bytestring-builder, hspec, http-types, network, text + , transformers, vault + }: + mkDerivation { + pname = "wai"; + version = "3.2.1"; + sha256 = "8709ea5c5739f74a9b4db9f4e0ac2d04dcec594623f03ff4b24f0070ed09f19c"; + libraryHaskellDepends = [ + base blaze-builder bytestring bytestring-builder http-types network + text transformers vault + ]; + testHaskellDepends = [ base blaze-builder bytestring hspec ]; + homepage = "https://github.com/yesodweb/wai"; + description = "Web Application Interface"; + license = stdenv.lib.licenses.mit; }) {}; "wai-accept-language" = callPackage @@ -222532,6 +223625,26 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "wai-logger_2_2_7" = callPackage + ({ mkDerivation, base, blaze-builder, byteorder, bytestring + , case-insensitive, doctest, fast-logger, http-types, network, unix + , unix-time, wai + }: + mkDerivation { + pname = "wai-logger"; + version = "2.2.7"; + sha256 = "f4718c7661373b6a93fb7ac4b4662617f9e161f6b9297d0f665f71391e489607"; + libraryHaskellDepends = [ + base blaze-builder byteorder bytestring case-insensitive + fast-logger http-types network unix unix-time wai + ]; + testHaskellDepends = [ base doctest ]; + jailbreak = true; + description = "A logging system for WAI"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "wai-logger-prefork" = callPackage ({ mkDerivation, base, bytestring, date-cache, fast-logger , http-types, unix, wai, wai-logger @@ -223672,7 +224785,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "wai-session-postgresql" = callPackage + "wai-session-postgresql_0_2_0_4" = callPackage ({ mkDerivation, base, bytestring, cereal, cookie, data-default , entropy, postgresql-simple, resource-pool, text, time , transformers, wai, wai-session @@ -223693,6 +224806,30 @@ self: { homepage = "https://github.com/hce/postgresql-session#readme"; description = "PostgreSQL backed Wai session store"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "wai-session-postgresql" = callPackage + ({ mkDerivation, base, bytestring, cereal, cookie, data-default + , entropy, postgresql-simple, resource-pool, text, time + , transformers, wai, wai-session + }: + mkDerivation { + pname = "wai-session-postgresql"; + version = "0.2.0.5"; + sha256 = "5ab689645cc9f283673b3807e532dc8a8524d71e9412328cdc35bbd325455b33"; + libraryHaskellDepends = [ + base bytestring cereal cookie data-default entropy + postgresql-simple resource-pool text time transformers wai + wai-session + ]; + testHaskellDepends = [ + base bytestring data-default postgresql-simple text wai-session + ]; + doCheck = false; + homepage = "https://github.com/hce/postgresql-session#readme"; + description = "PostgreSQL backed Wai session store"; + license = stdenv.lib.licenses.bsd3; }) {}; "wai-session-tokyocabinet" = callPackage @@ -226765,8 +227902,8 @@ self: { }: mkDerivation { pname = "werewolf"; - version = "1.0.0.0"; - sha256 = "1f5febe542ef8bbb5e2c8a0d29785ca6056a33224f8240791e7511e90b04d411"; + version = "1.0.1.0"; + sha256 = "62394b709d0c7b119cabc0fedb42f279d2b5fba49c69990c61d9051f70260f66"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -226786,6 +227923,36 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "werewolf_1_0_2_0" = callPackage + ({ mkDerivation, aeson, base, containers, directory, extra + , filepath, lens, MonadRandom, mtl, optparse-applicative + , QuickCheck, random-shuffle, tasty, tasty-quickcheck, text + , transformers + }: + mkDerivation { + pname = "werewolf"; + version = "1.0.2.0"; + sha256 = "d0ba1281ff4753b2e4c2c52136e846e3aaf0ca1170bccf30407a42a7c2c42677"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson base containers directory extra filepath lens MonadRandom mtl + text transformers + ]; + executableHaskellDepends = [ + aeson base directory extra filepath lens MonadRandom mtl + optparse-applicative random-shuffle text transformers + ]; + testHaskellDepends = [ + base containers extra lens MonadRandom mtl QuickCheck tasty + tasty-quickcheck text + ]; + homepage = "https://github.com/hjwylde/werewolf"; + description = "A game engine for playing werewolf within an arbitrary chat client"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "werewolf-slack" = callPackage ({ mkDerivation, aeson, base, bytestring, extra, http-client , http-client-tls, http-types, mtl, optparse-applicative, process @@ -228137,18 +229304,16 @@ self: { }) {}; "wuss" = callPackage - ({ mkDerivation, base, bytestring, connection, doctest, network - , websockets + ({ mkDerivation, base, bytestring, connection, network, websockets }: mkDerivation { pname = "wuss"; - version = "1.0.2"; - sha256 = "fae21817931cf16961e64353d8647800689abf0a21b4c8197e2c6cb92fb29444"; + version = "1.0.4"; + sha256 = "11a0072c4986d6aa60f686cf9fd29b58077706ab27aabad18d01e5942a179155"; libraryHaskellDepends = [ base bytestring connection network websockets ]; - testHaskellDepends = [ base doctest ]; - homepage = "http://taylor.fausak.me/wuss/"; + homepage = "https://github.com/tfausak/wuss#readme"; description = "Secure WebSocket (WSS) clients"; license = stdenv.lib.licenses.mit; }) {}; @@ -229416,7 +230581,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "xlsx" = callPackage + "xlsx_0_2_1_1" = callPackage ({ mkDerivation, base, binary-search, bytestring, conduit , containers, data-default, digest, HUnit, lens, mtl, old-locale , smallcheck, tasty, tasty-hunit, tasty-smallcheck, text, time @@ -229446,6 +230611,39 @@ self: { homepage = "https://github.com/qrilka/xlsx"; description = "Simple and incomplete Excel file parser/writer"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "xlsx" = callPackage + ({ mkDerivation, base, binary-search, bytestring, conduit + , containers, data-default, digest, HUnit, lens, mtl, old-locale + , smallcheck, tasty, tasty-hunit, tasty-smallcheck, text, time + , transformers, utf8-string, vector, xml-conduit, xml-types + , zip-archive, zlib + }: + mkDerivation { + pname = "xlsx"; + version = "0.2.1.2"; + sha256 = "0f39cdb98e1414690f4237ad86c0052a49c59bf83391a2943fc5da17a8d173c6"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base binary-search bytestring conduit containers data-default + digest lens mtl old-locale text time transformers utf8-string + vector xml-conduit xml-types zip-archive zlib + ]; + executableHaskellDepends = [ + base binary-search bytestring conduit containers data-default + digest lens old-locale text time transformers utf8-string vector + xml-conduit xml-types zip-archive zlib + ]; + testHaskellDepends = [ + base bytestring containers HUnit lens smallcheck tasty tasty-hunit + tasty-smallcheck time vector xml-conduit + ]; + homepage = "https://github.com/qrilka/xlsx"; + description = "Simple and incomplete Excel file parser/writer"; + license = stdenv.lib.licenses.mit; }) {}; "xlsx-tabular" = callPackage @@ -229824,7 +231022,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "xml-conduit" = callPackage + "xml-conduit_1_3_4_1" = callPackage ({ mkDerivation, attoparsec, base, blaze-builder, blaze-html , blaze-markup, bytestring, conduit, conduit-extra, containers , data-default, deepseq, hspec, HUnit, monad-control, resourcet @@ -229846,6 +231044,31 @@ self: { homepage = "http://github.com/snoyberg/xml"; description = "Pure-Haskell utilities for dealing with XML with the conduit package"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "xml-conduit" = callPackage + ({ mkDerivation, attoparsec, base, blaze-builder, blaze-html + , blaze-markup, bytestring, conduit, conduit-extra, containers + , data-default, deepseq, hspec, HUnit, monad-control, resourcet + , text, transformers, xml-types + }: + mkDerivation { + pname = "xml-conduit"; + version = "1.3.4.2"; + sha256 = "37be4f4788e937365b90f24b520b59a016d0e587b3e342ec0243b26f0656d17d"; + libraryHaskellDepends = [ + attoparsec base blaze-builder blaze-html blaze-markup bytestring + conduit conduit-extra containers data-default deepseq monad-control + resourcet text transformers xml-types + ]; + testHaskellDepends = [ + base blaze-markup bytestring conduit containers hspec HUnit + resourcet text transformers xml-types + ]; + homepage = "http://github.com/snoyberg/xml"; + description = "Pure-Haskell utilities for dealing with XML with the conduit package"; + license = stdenv.lib.licenses.mit; }) {}; "xml-conduit-parse" = callPackage @@ -231573,14 +232796,13 @@ self: { "yaml" = callPackage ({ mkDerivation, aeson, aeson-qq, attoparsec, base, base-compat , bytestring, conduit, containers, directory, enclosed-exceptions - , filepath, hspec, HUnit, libyaml, mockery, raw-strings-qq - , resourcet, scientific, semigroups, text, transformers - , unordered-containers, vector + , filepath, hspec, HUnit, libyaml, mockery, resourcet, scientific + , semigroups, text, transformers, unordered-containers, vector }: mkDerivation { pname = "yaml"; - version = "0.8.17"; - sha256 = "65d8585e80c334318d0c6b1fbefaf07f8e99163b8eff2166decea7b21185d397"; + version = "0.8.17.1"; + sha256 = "2bec28da3e1041892d0a694d6daf9ba1bdf5381111b4a3b3ac6b4cd909b0d3b3"; configureFlags = [ "-fsystem-libyaml" ]; isLibrary = true; isExecutable = true; @@ -231590,9 +232812,7 @@ self: { transformers unordered-containers vector ]; libraryPkgconfigDepends = [ libyaml ]; - executableHaskellDepends = [ - aeson base bytestring raw-strings-qq text - ]; + executableHaskellDepends = [ aeson base bytestring ]; testHaskellDepends = [ aeson aeson-qq base base-compat bytestring conduit hspec HUnit mockery resourcet text transformers unordered-containers vector @@ -233063,7 +234283,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "yesod-auth-hashdb" = callPackage + "yesod-auth-hashdb_1_4_2_2" = callPackage ({ mkDerivation, base, bytestring, cryptohash, hspec, persistent , pwstore-fast, text, yesod-auth, yesod-core, yesod-form , yesod-persistent @@ -233080,6 +234300,26 @@ self: { homepage = "https://github.com/paul-rouse/yesod-auth-hashdb"; description = "Authentication plugin for Yesod"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "yesod-auth-hashdb" = callPackage + ({ mkDerivation, base, bytestring, cryptohash, hspec, persistent + , pwstore-fast, text, yesod-auth, yesod-core, yesod-form + , yesod-persistent + }: + mkDerivation { + pname = "yesod-auth-hashdb"; + version = "1.4.3"; + sha256 = "64736c0b69849185197bd2ea4b7d742312e9697fe931daa611eb95e26a5f10fd"; + libraryHaskellDepends = [ + base bytestring cryptohash persistent pwstore-fast text yesod-auth + yesod-core yesod-form yesod-persistent + ]; + testHaskellDepends = [ base hspec text ]; + homepage = "https://github.com/paul-rouse/yesod-auth-hashdb"; + description = "Authentication plugin for Yesod"; + license = stdenv.lib.licenses.mit; }) {}; "yesod-auth-kerberos" = callPackage @@ -235595,8 +236835,8 @@ self: { }: mkDerivation { pname = "yesod-crud-persist"; - version = "0.2.1"; - sha256 = "9206e96ccb46021be089f1919d2775839dd82ad25cde0240680a152eb214f1ba"; + version = "0.3"; + sha256 = "6bdc078780b7fd8194706a6a0e344f03caf1b9c02edb1f3e624e14c5af89aac9"; libraryHaskellDepends = [ base either esqueleto microlens microlens-th persistent text time transformers wai yesod-core yesod-form yesod-markdown @@ -236109,6 +237349,32 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "yesod-job-queue" = callPackage + ({ mkDerivation, aeson, api-field-json-th, base, bytestring + , classy-prelude-yesod, cron, file-embed, hedis, lens, monad-logger + , persistent-sqlite, resourcet, stm, text, time, uuid, yesod + , yesod-core + }: + mkDerivation { + pname = "yesod-job-queue"; + version = "0.1.0.1"; + sha256 = "6097526e6fe7167ad2a16ecd883515ec8895581075fc5c6fb01ba82c8906b077"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson api-field-json-th base bytestring classy-prelude-yesod cron + file-embed hedis lens monad-logger stm text time uuid yesod + ]; + executableHaskellDepends = [ + base classy-prelude-yesod monad-logger persistent-sqlite resourcet + yesod yesod-core + ]; + testHaskellDepends = [ base ]; + homepage = "https://github.com/nakaji-dayo/yesod-job-queue#readme"; + description = "Background jobs library for Yesod"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "yesod-json" = callPackage ({ mkDerivation, base, yesod-core }: mkDerivation { diff --git a/pkgs/development/interpreters/angelscript/2.22.nix b/pkgs/development/interpreters/angelscript/2.22.nix new file mode 100644 index 000000000000..c9097bec5dc8 --- /dev/null +++ b/pkgs/development/interpreters/angelscript/2.22.nix @@ -0,0 +1,44 @@ +{stdenv, fetchurl, unzip}: +let + s = # Generated upstream information + rec { + baseName="angelscript"; + version = "2.22.2"; + name="${baseName}-${version}"; + url="http://www.angelcode.com/angelscript/sdk/files/angelscript_${version}.zip"; + sha256 = "1pp853lbnz383ilp9wbgc3wv1dn7lpx3idz8dmzda94rckl7sd43"; + }; + buildInputs = [ + unzip + ]; +in +stdenv.mkDerivation { + inherit (s) name version; + inherit buildInputs; + src = fetchurl { + inherit (s) url sha256; + }; + preConfigure = '' + cd angelscript/projects/gnuc + sed -i makefile -e "s@LOCAL = .*@LOCAL = $out@" + export SHARED=1 + export VERSION="${s.version}" + mkdir -p "$out/lib" "$out/bin" "$out/share" "$out/include" + ''; + postBuild = '' + rm ../../lib/* + ''; + postInstall = '' + mkdir -p "$out/share/docs/angelscript" + cp -r ../../../docs/* "$out/share/docs/angelscript" + ''; + meta = { + inherit (s) version; + description = "Light-weight scripting library"; + license = stdenv.lib.licenses.zlib ; + maintainers = [stdenv.lib.maintainers.raskin]; + platforms = stdenv.lib.platforms.linux; + downloadPage = "http://www.angelcode.com/angelscript/downloads.html"; + homepage="http://www.angelcode.com/angelscript/"; + }; +} diff --git a/pkgs/development/libraries/avro-c++/default.nix b/pkgs/development/libraries/avro-c++/default.nix new file mode 100644 index 000000000000..2cd03253e7e4 --- /dev/null +++ b/pkgs/development/libraries/avro-c++/default.nix @@ -0,0 +1,29 @@ +{ stdenv, fetchurl, cmake, boost155, pythonPackages +}: + +let version = "1.7.5"; in + +stdenv.mkDerivation { + name = "avro-c++-${version}"; + + src = fetchurl { + url = "mirror://apache/avro/avro-${version}/cpp/avro-cpp-${version}.tar.gz"; + sha256 = "064ssbbgrc3hyalzj8rn119bsrnyk1vlpkhl8gghv96jgqbpdyb3"; + }; + + buildInputs = [ + cmake + boost155 + pythonPackages.python + ]; + + enableParallelBuilding = true; + + meta = { + description = "A C++ library which implements parts of the Avro Specification"; + homepage = https://avro.apache.org/; + license = stdenv.lib.licenses.asl20; + maintainers = with stdenv.lib.maintainers; [ rasendubi ]; + platforms = stdenv.lib.platforms.all; + }; +} diff --git a/pkgs/development/libraries/bullet/default.nix b/pkgs/development/libraries/bullet/default.nix index 6320dd58e4c6..541115b1ff16 100644 --- a/pkgs/development/libraries/bullet/default.nix +++ b/pkgs/development/libraries/bullet/default.nix @@ -1,18 +1,21 @@ -{ stdenv, fetchurl, cmake, mesa, freeglut }: +{ stdenv, fetchFromGitHub, cmake, mesa, freeglut }: stdenv.mkDerivation rec { - name = "bullet-2.80"; # vdrift 2012-07-22 doesn't build with 2.81 - rev = "2531"; - src = fetchurl { - url = "http://bullet.googlecode.com/files/${name}-rev${rev}.tgz"; - sha256 = "0dig6k88jz5y0cz6dn186vc4l96l4v56zvwpsp5bv9f5wdwjskj6"; + name = "bullet-${version}"; + version = "2.83.7"; + + src = fetchFromGitHub { + owner = "bulletphysics"; + repo = "bullet3"; + rev = version; + sha256 = "1zz3vs6i5975y9mgb1k1vxrjbf1028v0nc11p646dsvv2vplxx5r"; }; buildInputs = [ cmake mesa freeglut ]; - configurePhase = '' - cmake -DBUILD_SHARED_LIBS=ON -DBUILD_EXTRAS=OFF -DBUILD_DEMOS=OFF \ - -DCMAKE_INSTALL_PREFIX=$out . - ''; + + cmakeFlags = [ "-DBUILD_SHARED_LIBS=ON" "-DBUILD_CPU_DEMOS=OFF" ]; + + enableParallelBuilding = true; meta = { description = "A professional free 3D Game Multiphysics Library"; diff --git a/pkgs/development/libraries/java/swt/builder.sh b/pkgs/development/libraries/java/swt/builder.sh deleted file mode 100644 index 9f678d7158bb..000000000000 --- a/pkgs/development/libraries/java/swt/builder.sh +++ /dev/null @@ -1,18 +0,0 @@ -source $stdenv/setup - -unzip $src src.zip -unzip src.zip - -export JAVA_HOME=${jdk} -echo $JAVA_HOME=${jdk} -sh ./build.sh make_swt make_atk - -mkdir -p $out/lib -cp *.so $out/lib - -mkdir out -javac -d out/ $(find org/ -name "*.java") - -mkdir -p $out/jars -cp version.txt out/ -cd out && jar -c * > $out/jars/swt.jar diff --git a/pkgs/development/libraries/java/swt/default.nix b/pkgs/development/libraries/java/swt/default.nix index d942dd7b692f..e91c8bbca7b9 100644 --- a/pkgs/development/libraries/java/swt/default.nix +++ b/pkgs/development/libraries/java/swt/default.nix @@ -1,9 +1,6 @@ { stdenv, fetchurl, unzip, jdk, pkgconfig, gtk -, libXtst -, libXi -, mesa -, webkit -, libsoup +, libXtst, libXi, mesa, webkit, libsoup, xorg +, pango, gdk_pixbuf, glib }: let @@ -26,8 +23,6 @@ in stdenv.mkDerivation rec { fullVersion = "${version}-201202080800"; name = "swt-${version}"; - builder = ./builder.sh; - # Alas, the Eclipse Project apparently doesn't produce source-only # releases of SWT. So we just grab a binary release and extract # "src.zip" from that. @@ -36,6 +31,41 @@ in stdenv.mkDerivation rec { sha256 = metadata.sha256; }; - buildInputs = [unzip jdk pkgconfig gtk libXtst libXi mesa webkit libsoup]; - inherit jdk; + sourceRoot = "."; + + buildInputs = [ unzip jdk pkgconfig gtk libXtst libXi mesa webkit libsoup ]; + + NIX_LFLAGS = [ "-lX11" "-I${xorg.libX11}/lib" + "-lpango-1.0" "-I${pango}/lib" + "-lgdk_pixbuf-2.0" "-I${gdk_pixbuf}/lib" + "-lglib-2.0" "-I${glib}/lib"]; + + buildPhase = '' + unzip src.zip -d src + + cd src + sed -i "s#^LFLAGS =#LFLAGS = $NIX_LFLAGS #g" *.mak + export JAVA_HOME=${jdk} + + sh ./build.sh + + mkdir out + javac -d out/ $(find org/ -name "*.java") + ''; + + installPhase = '' + mkdir -p $out/lib + cp *.so $out/lib + + mkdir -p $out/jars + cp version.txt out/ + cd out && jar -c * > $out/jars/swt.jar + ''; + + meta = with stdenv.lib; { + homepage = http://www.eclipse.org/swt/; + description = "An widget toolkit for Java to access the user-interface facilities of the operating systems on which it is implemented"; + license = licenses.epl10; + maintainers = with maintainers; [ pSub ]; + }; } diff --git a/pkgs/development/libraries/leatherman/default.nix b/pkgs/development/libraries/leatherman/default.nix new file mode 100644 index 000000000000..60205d7a856b --- /dev/null +++ b/pkgs/development/libraries/leatherman/default.nix @@ -0,0 +1,24 @@ +{ stdenv, fetchFromGitHub, boost, cmake, curl }: + +stdenv.mkDerivation rec { + name = "leatherman-${version}"; + version = "0.4.2"; + + src = fetchFromGitHub { + sha256 = "07bgv99lzzhxy4l7mdyassxqy33zv7arvfw63bymsqavppphqlrr"; + rev = version; + repo = "leatherman"; + owner = "puppetlabs"; + }; + + buildInputs = [ boost cmake curl ]; + + meta = with stdenv.lib; { + homepage = https://github.com/puppetlabs/leatherman/; + description = "A collection of C++ and CMake utility libraries"; + license = licenses.asl20; + maintainers = [ maintainers.womfoo ]; + platforms = platforms.linux; + }; + +} diff --git a/pkgs/development/libraries/libibverbs/default.nix b/pkgs/development/libraries/libibverbs/default.nix index 5ce1e5cbdf6c..8e37648adfcc 100644 --- a/pkgs/development/libraries/libibverbs/default.nix +++ b/pkgs/development/libraries/libibverbs/default.nix @@ -1,17 +1,65 @@ { stdenv, fetchurl }: -stdenv.mkDerivation rec { - name = "libibverbs-1.1.8"; +let - src = fetchurl { - url = "https://www.openfabrics.org/downloads/verbs/${name}.tar.gz"; - sha256 = "13w2j5lrrqxxxvhpxbqb70x7wy0h8g329inzgfrvqv8ykrknwxkw"; + verbs = rec { + version = "1.1.8"; + name = "libibverbs-${version}"; + url = "http://downloads.openfabrics.org/verbs/${name}.tar.gz"; + sha256 = "13w2j5lrrqxxxvhpxbqb70x7wy0h8g329inzgfrvqv8ykrknwxkw"; }; + drivers = { + libmlx4 = rec { + version = "1.0.6"; + name = "libmlx4-${version}"; + url = "http://downloads.openfabrics.org/mlx4/${name}.tar.gz"; + sha256 = "f680ecbb60b01ad893490c158b4ce8028a3014bb8194c2754df508d53aa848a8"; + }; + libmthca = rec { + version = "1.0.6"; + name = "libmthca-${version}"; + url = "http://downloads.openfabrics.org/mthca/${name}.tar.gz"; + sha256 = "cc8ea3091135d68233d53004e82b5b510009c821820494a3624e89e0bdfc855c"; + }; + }; + +in stdenv.mkDerivation rec { + + inherit (verbs) name version ; + + srcs = [ + ( fetchurl { inherit (verbs) url sha256 ; } ) + ( fetchurl { inherit (drivers.libmlx4) url sha256 ; } ) + ( fetchurl { inherit (drivers.libmthca) url sha256 ; } ) + ]; + + sourceRoot = name; + + # Install userspace drivers + postInstall = '' + for dir in ${drivers.libmlx4.name} ${drivers.libmthca.name} ; do + cd ../$dir + export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I$out/include" + export NIX_LDFLAGS="-rpath $out/lib $NIX_LDFLAGS -L$out/lib" + ./configure $configureFlags + make -j$NIX_BUILD_CORES + make install + done + ''; + + # Re-add the libibverbs path into runpath of the library + # to enable plugins to be found by dlopen + postFixup = '' + RPATH=$(patchelf --print-rpath $out/lib/libibverbs.so) + patchelf --set-rpath $RPATH:$out/lib $out/lib/libibverbs.so.1.0.0 + ''; + meta = with stdenv.lib; { homepage = https://www.openfabrics.org/; license = licenses.bsd2; platforms = with platforms; linux ++ freebsd; - maintainers = with maintainers; [ wkennington ]; + maintainers = with maintainers; [ wkennington bzizou ]; }; } + diff --git a/pkgs/development/libraries/libpsl/default.nix b/pkgs/development/libraries/libpsl/default.nix index a620826576cc..07258e40355d 100644 --- a/pkgs/development/libraries/libpsl/default.nix +++ b/pkgs/development/libraries/libpsl/default.nix @@ -3,10 +3,10 @@ let - listVersion = "2016-04-05"; + listVersion = "2016-04-16"; listSources = fetchFromGitHub { - sha256 = "08ai0yyym0mvsn92fasfn5b5rdrjbavxxl1hhp60g1m0iamfzpa4"; - rev = "1e0c6b000874f98f28663870909e32ee6323fe1d"; + sha256 = "0lwf8cvqfr3nsx92i2fphij0whb2lcswk6z6grhisqmwrs873hyv"; + rev = "dfac82546fde5180e2d5a1b61b6ae2f668009870"; repo = "list"; owner = "publicsuffix"; }; diff --git a/pkgs/development/libraries/libvirt/default.nix b/pkgs/development/libraries/libvirt/default.nix index 1d1945af3194..16a4498f54ca 100644 --- a/pkgs/development/libraries/libvirt/default.nix +++ b/pkgs/development/libraries/libvirt/default.nix @@ -6,7 +6,7 @@ , dnsmasq, libnl, libpcap, libxslt, xhtml1, numad, numactl, perlPackages , curl, libiconv, gmp, xen }: - +# if you update, also bump pythonPackages.libvirt or it will break stdenv.mkDerivation rec { name = "libvirt-${version}"; version = "1.3.3"; diff --git a/pkgs/development/libraries/nanoflann/default.nix b/pkgs/development/libraries/nanoflann/default.nix new file mode 100644 index 000000000000..387632a890f0 --- /dev/null +++ b/pkgs/development/libraries/nanoflann/default.nix @@ -0,0 +1,25 @@ +{stdenv, fetchFromGitHub, cmake}: + +stdenv.mkDerivation rec { + version = "1.1.9"; + name = "nanoflann-${version}"; + + src = fetchFromGitHub { + owner = "jlblancoc"; + repo = "nanoflann"; + rev = "v${version}"; + sha256 = "1q588cf2aark45bp4ciqjiz3dkdv8dcijkhm1ybzs8qjdzz9fimn"; + }; + + buildInputs = [ cmake ]; + + doCheck = true; + checkTarget = "test"; + + meta = { + homepage = https://github.com/jlblancoc/nanoflann; + license = stdenv.lib.licenses.bsd3; + description = "Header only C++ library for approximate nearest neighbor search"; + platforms = stdenv.lib.platforms.unix; + }; +} diff --git a/pkgs/development/libraries/nghttp2/default.nix b/pkgs/development/libraries/nghttp2/default.nix index 761f6933f5c4..29175fbb7d45 100644 --- a/pkgs/development/libraries/nghttp2/default.nix +++ b/pkgs/development/libraries/nghttp2/default.nix @@ -1,77 +1,36 @@ { stdenv, fetchurl, pkgconfig -# Optinal Dependencies +# Optional Dependencies , openssl ? null, libev ? null, zlib ? null, jansson ? null, boost ? null , libxml2 ? null, jemalloc ? null - -# Extra argument -, prefix ? "" }: -let - mkFlag = trueStr: falseStr: cond: name: val: - if cond == null then null else - "--${if cond != false then trueStr else falseStr}${name}${if val != null && cond != false then "=${val}" else ""}"; - mkEnable = mkFlag "enable-" "disable-"; - mkWith = mkFlag "with-" "without-"; - mkOther = mkFlag "" "" true; - - shouldUsePkg = pkg: if pkg != null && stdenv.lib.any (x: x == stdenv.system) pkg.meta.platforms then pkg else null; - - isLib = prefix == "lib"; - - optOpenssl = if isLib then null else shouldUsePkg openssl; - optLibev = if isLib then null else shouldUsePkg libev; - optZlib = if isLib then null else shouldUsePkg zlib; - - hasApp = optOpenssl != null && optLibev != null && optZlib != null; - - optJansson = if isLib then null else shouldUsePkg jansson; - #optBoost = if isLib then null else shouldUsePkg boost; - optBoost = null; # Currently detection is broken - optLibxml2 = if !hasApp then null else shouldUsePkg libxml2; - optJemalloc = if !hasApp then null else shouldUsePkg jemalloc; -in stdenv.mkDerivation rec { - name = "${prefix}nghttp2-${version}"; - version = "1.8.0"; + name = "nghttp2-${version}"; + version = "1.9.2"; # Don't use fetchFromGitHub since this needs a bootstrap curl src = fetchurl { url = "https://github.com/nghttp2/nghttp2/releases/download/v${version}/nghttp2-${version}.tar.bz2"; - sha256 = "10xz3s624w208pr9xgm4ammc8bc5mi17vy4357hjfd5vmmp5m8b0"; + sha256 = "1jnms0mmf73cwdqvbzpdyi974f8xq7p8bxgba2ippw70pz8y0ac0"; }; # Configure script searches for a symbol which does not exist in jemalloc on Darwin # Reported upstream in https://github.com/tatsuhiro-t/nghttp2/issues/233 - postPatch = if (stdenv.isDarwin && optJemalloc != null) then '' + postPatch = if stdenv.isDarwin && jemalloc != null then '' substituteInPlace configure --replace "malloc_stats_print" "je_malloc_stats_print" '' else null; - nativeBuildInputs = [ pkgconfig ]; - buildInputs = [ optJansson optBoost optLibxml2 optJemalloc ] - ++ stdenv.lib.optionals hasApp [ optOpenssl optLibev optZlib ]; + outputs = [ "dev" "out" "lib" ]; - configureFlags = [ - (mkEnable false "werror" null) - (mkEnable false "debug" null) - (mkEnable true "threads" null) - (mkEnable hasApp "app" null) - (mkEnable (optJansson != null) "hpack-tools" null) - (mkEnable (optBoost != null) "asio-lib" null) - (mkEnable false "examples" null) - (mkEnable false "python-bindings" null) - (mkEnable false "failmalloc" null) - (mkWith (optLibxml2 != null) "libxml2" null) - (mkWith (optJemalloc != null) "jemalloc" null) - (mkWith false "spdylay" null) - (mkWith false "cython" null) - (mkWith false "mruby" null) - ]; + nativeBuildInputs = [ pkgconfig ]; + buildInputs = [ openssl libev zlib ]; + + enableParallelBuilding = true; meta = with stdenv.lib; { homepage = http://nghttp2.org/; - description = "an implementation of HTTP/2 in C"; + description = "A C implementation of HTTP/2"; license = licenses.mit; platforms = platforms.all; maintainers = with maintainers; [ wkennington ]; diff --git a/pkgs/development/libraries/ogrepaged/default.nix b/pkgs/development/libraries/ogrepaged/default.nix index 3539a6302b14..bff367f750b3 100644 --- a/pkgs/development/libraries/ogrepaged/default.nix +++ b/pkgs/development/libraries/ogrepaged/default.nix @@ -1,11 +1,12 @@ { stdenv, fetchurl, cmake, pkgconfig, ois, ogre, libX11, boost }: stdenv.mkDerivation rec { - name = "ogre-paged-1.1.3"; + name = "ogre-paged-${version}"; + version = "1.2.0"; src = fetchurl { - url = "http://ogre-paged.googlecode.com/files/${name}.tar.gz"; - sha256 = "1qqlkg17plk87dm3fsm34x8lkd5rxkhiz77ppcgc71a7z050vhjq"; + url = "https://github.com/RigsOfRods/ogre-pagedgeometry/archive/v${version}.tar.gz"; + sha256 = "17j7rw9wbkynxbhm2lay3qgjnnagb2vd5jn9iijnn2lf8qzbgy82"; }; buildInputs = [ ois ogre libX11 boost ]; @@ -19,7 +20,5 @@ stdenv.mkDerivation rec { description = "Paged Geometry for Ogre3D"; homepage = http://code.google.com/p/ogre-paged/; license = stdenv.lib.licenses.mit; - # Build failures - broken = true; }; } diff --git a/pkgs/development/libraries/qt-4.x/4.8/default.nix b/pkgs/development/libraries/qt-4.x/4.8/default.nix index 788fb8741402..65d45923e5a5 100644 --- a/pkgs/development/libraries/qt-4.x/4.8/default.nix +++ b/pkgs/development/libraries/qt-4.x/4.8/default.nix @@ -11,6 +11,8 @@ , docs ? false , examples ? false , demos ? false +# darwin support +, cf-private, libobjc, ApplicationServices, OpenGL, Cocoa, AGL, libcxx }: with stdenv.lib; @@ -114,7 +116,7 @@ stdenv.mkDerivation rec { -no-phonon ${if buildWebkit then "" else "-no"}-webkit ${if buildMultimedia then "" else "-no"}-multimedia -audio-backend ${if developerBuild then "-developer-build" else ""} - ''; + '' + optionalString stdenv.isDarwin "-platform unsupported/macx-clang-libc++"; propagatedBuildInputs = [ libXrender libXrandr libXinerama libXcursor libXext libXfixes libXv libXi @@ -129,14 +131,16 @@ stdenv.mkDerivation rec { [ cups # Qt dlopen's libcups instead of linking to it postgresql sqlite libjpeg libmng libtiff icu ] ++ optionals (mysql != null) [ mysql.lib ] - ++ optionals gtkStyle [ gtk gdk_pixbuf ]; + ++ optionals gtkStyle [ gtk gdk_pixbuf ] + ++ optionals stdenv.isDarwin [ cf-private ApplicationServices OpenGL Cocoa AGL libcxx libobjc ]; nativeBuildInputs = [ perl pkgconfig which ]; enableParallelBuilding = false; NIX_CFLAGS_COMPILE = optionalString (stdenv.isFreeBSD || stdenv.isDarwin) - "-I${glib.dev}/include/glib-2.0 -I${glib.out}/lib/glib-2.0/include"; + "-I${glib.dev}/include/glib-2.0 -I${glib.out}/lib/glib-2.0/include" + + optionalString stdenv.isDarwin " -I${libcxx}/include/c++/v1"; NIX_LDFLAGS = optionalString (stdenv.isFreeBSD || stdenv.isDarwin) "-lglib-2.0"; @@ -145,6 +149,8 @@ stdenv.mkDerivation rec { # resolve "extra qualification on member" error sed -i 's/struct ::TabletProximityRec;/struct TabletProximityRec;/' \ src/gui/kernel/qt_cocoa_helpers_mac_p.h + find . -name "Makefile*" | xargs sed -i 's/^\(LINK[[:space:]]* = clang++\)/\1 ${NIX_LDFLAGS}/' + sed -i 's/^\(LIBS[[:space:]]*=.*$\)/\1 -lobjc/' ./src/corelib/Makefile.Release ''; crossAttrs = let diff --git a/pkgs/development/python-modules/pygobject/default.nix b/pkgs/development/python-modules/pygobject/default.nix index 897210a4046c..fb2df329fbc1 100644 --- a/pkgs/development/python-modules/pygobject/default.nix +++ b/pkgs/development/python-modules/pygobject/default.nix @@ -10,6 +10,12 @@ stdenv.mkDerivation rec { outputs = [ "out" "docdev" ]; + patches = [ + # Fix warning spam + ./pygobject-2.28.6-set_qdata.patch + ./pygobject-2.28.6-gio-types-2.32.patch + ]; + configureFlags = "--disable-introspection"; buildInputs = [ python pkgconfig glib ]; diff --git a/pkgs/development/python-modules/pygobject/pygobject-2.28.6-gio-types-2.32.patch b/pkgs/development/python-modules/pygobject/pygobject-2.28.6-gio-types-2.32.patch new file mode 100644 index 000000000000..fa0adf54ad04 --- /dev/null +++ b/pkgs/development/python-modules/pygobject/pygobject-2.28.6-gio-types-2.32.patch @@ -0,0 +1,50 @@ +From 42d01f060c5d764baa881d13c103d68897163a49 Mon Sep 17 00:00:00 2001 +From: Ryan Lortie +Date: Mon, 12 Mar 2012 16:44:14 -0400 +Subject: [PATCH] gio-types.defs: change some enums to flags + +These flags types were originally incorrectly handled in glib as being +enums. That bug was fixed, but they're still enums here, leading to +warnings about the mismatch. + +Change them to flags. + +https://bugzilla.gnome.org/show_bug.cgi?id=668522 +--- + gio/gio-types.defs | 6 +++--- + 1 files changed, 3 insertions(+), 3 deletions(-) + +diff --git a/gio/gio-types.defs b/gio/gio-types.defs +index 331e0bc..7eee5c8 100644 +--- a/gio/gio-types.defs ++++ b/gio/gio-types.defs +@@ -526,7 +526,7 @@ + ) + ) + +-(define-enum MountMountFlags ++(define-flags MountMountFlags + (in-module "gio") + (c-name "GMountMountFlags") + (gtype-id "G_TYPE_MOUNT_MOUNT_FLAGS") +@@ -545,7 +545,7 @@ + ) + ) + +-(define-enum DriveStartFlags ++(define-flags DriveStartFlags + (in-module "gio") + (c-name "GDriveStartFlags") + (gtype-id "G_TYPE_DRIVE_START_FLAGS") +@@ -770,7 +770,7 @@ + ) + ) + +-(define-enum SocketMsgFlags ++(define-flags SocketMsgFlags + (in-module "gio") + (c-name "GSocketMsgFlags") + (gtype-id "G_TYPE_SOCKET_MSG_FLAGS") +-- +1.7.8.5 + diff --git a/pkgs/development/python-modules/pygobject/pygobject-2.28.6-set_qdata.patch b/pkgs/development/python-modules/pygobject/pygobject-2.28.6-set_qdata.patch new file mode 100644 index 000000000000..55376b59d829 --- /dev/null +++ b/pkgs/development/python-modules/pygobject/pygobject-2.28.6-set_qdata.patch @@ -0,0 +1,28 @@ +From 42d871eb0b08ee6d55e95cc7e4b90844919555b9 Mon Sep 17 00:00:00 2001 +From: Ivan Stankovic +Date: Tue, 21 Feb 2012 12:24:58 +0100 +Subject: [PATCH] Fix set_qdata warning on accessing NULL gobject property + +https://bugzilla.gnome.org/show_bug.cgi?id=661155 +--- + gobject/pygobject.c | 4 +++- + 1 files changed, 3 insertions(+), 1 deletions(-) + +diff --git a/gobject/pygobject.c b/gobject/pygobject.c +index 6c2f06c..70dc89a 100644 +--- a/gobject/pygobject.c ++++ b/gobject/pygobject.c +@@ -991,7 +991,9 @@ pygobject_new(GObject *obj) + PyObject * + pygobject_new_sunk(GObject *obj) + { +- g_object_set_qdata (obj, pygobject_ref_sunk_key, GINT_TO_POINTER (1)); ++ if (obj) ++ g_object_set_qdata (obj, pygobject_ref_sunk_key, GINT_TO_POINTER (1)); ++ + return pygobject_new_full(obj, TRUE, NULL); + } + +-- +1.7.8.5 + diff --git a/pkgs/development/ruby-modules/bundix/default.nix b/pkgs/development/ruby-modules/bundix/default.nix index ac3abcdcdf7b..378f148ca6ac 100644 --- a/pkgs/development/ruby-modules/bundix/default.nix +++ b/pkgs/development/ruby-modules/bundix/default.nix @@ -15,13 +15,13 @@ buildRubyGem rec { substituteInPlace $GEM_HOME/gems/${gemName}-${version}/lib/bundix.rb \ --replace \ "'nix-instantiate'" \ - "'${nix}/bin/nix-instantiate'" \ + "'${nix.out}/bin/nix-instantiate'" \ --replace \ "'nix-hash'" \ - "'${nix}/bin/nix-hash'" \ + "'${nix.out}/bin/nix-hash'" \ --replace \ "'nix-prefetch-url'" \ - "'${nix}/bin/nix-prefetch-url'" \ + "'${nix.out}/bin/nix-prefetch-url'" \ --replace \ "'nix-prefetch-git'" \ "'${nix-prefetch-git}/bin/nix-prefetch-git'" diff --git a/pkgs/development/ruby-modules/bundler-env/default.nix b/pkgs/development/ruby-modules/bundler-env/default.nix index 597acc25b30d..4ebba0d5b653 100644 --- a/pkgs/development/ruby-modules/bundler-env/default.nix +++ b/pkgs/development/ruby-modules/bundler-env/default.nix @@ -10,6 +10,7 @@ , postBuild ? null , document ? [] , meta ? {} +, groups ? ["default"] , ignoreCollisions ? false , ... }@args: @@ -18,14 +19,19 @@ let shellEscape = x: "'${lib.replaceChars ["'"] [("'\\'" + "'")] x}'"; importedGemset = import gemset; + filteredGemset = (lib.filterAttrs (name: attrs: + if (builtins.hasAttr "groups" attrs) + then (builtins.any (gemGroup: builtins.any (group: group == gemGroup) groups) attrs.groups) + else true + ) importedGemset); applyGemConfigs = attrs: (if gemConfig ? "${attrs.gemName}" then attrs // gemConfig."${attrs.gemName}" attrs else attrs); - configuredGemset = lib.flip lib.mapAttrs importedGemset (name: attrs: - applyGemConfigs (attrs // { gemName = name; }) + configuredGemset = lib.flip lib.mapAttrs filteredGemset (name: attrs: + applyGemConfigs (attrs // { inherit ruby; gemName = name; }) ); - hasBundler = builtins.hasAttr "bundler" importedGemset; + hasBundler = builtins.hasAttr "bundler" filteredGemset; bundler = if hasBundler then gems.bundler else defs.bundler.override (attrs: { inherit ruby; }); gems = lib.flip lib.mapAttrs configuredGemset (name: attrs: buildRubyGem ((removeAttrs attrs ["source"]) // attrs.source // { @@ -52,7 +58,8 @@ let "${confFiles}/Gemfile" \ "$out/${ruby.gemPath}" \ "${bundler}/${ruby.gemPath}" \ - ${shellEscape (toString envPaths)} + ${shellEscape (toString envPaths)} \ + ${shellEscape (toString groups)} '' + lib.optionalString (postBuild != null) postBuild; passthru = rec { inherit ruby bundler meta gems; diff --git a/pkgs/development/ruby-modules/bundler-env/gen-bin-stubs.rb b/pkgs/development/ruby-modules/bundler-env/gen-bin-stubs.rb index 8609a863e50e..92321d6427dc 100644 --- a/pkgs/development/ruby-modules/bundler-env/gen-bin-stubs.rb +++ b/pkgs/development/ruby-modules/bundler-env/gen-bin-stubs.rb @@ -10,6 +10,7 @@ gemfile = ARGV[1] bundle_path = ARGV[2] bundler_gem_path = ARGV[3] paths = ARGV[4].split +groups = ARGV[5].split # generate binstubs FileUtils.mkdir_p("#{out}/bin") @@ -29,15 +30,16 @@ paths.each do |path| # this file is here to facilitate running it. # -ENV["BUNDLE_GEMFILE"] = "#{gemfile}" -ENV["BUNDLE_PATH"] = "#{bundle_path}" +ENV["BUNDLE_GEMFILE"] = #{gemfile.dump} +ENV["BUNDLE_PATH"] = #{bundle_path.dump} ENV['BUNDLE_FROZEN'] = '1' -Gem.use_paths("#{bundler_gem_path}", ENV["GEM_PATH"]) +Gem.use_paths(#{bundler_gem_path.dump}, ENV["GEM_PATH"]) -require 'bundler/setup' +require 'bundler' +Bundler.setup(#{groups.map(&:dump).join(', ')}) -load Gem.bin_path(#{name.inspect}, #{exe.inspect}) +load Gem.bin_path(#{name.dump}, #{exe.dump}) EOF FileUtils.chmod("+x", "#{out}/bin/#{exe}") end diff --git a/pkgs/development/ruby-modules/gem-config/default.nix b/pkgs/development/ruby-modules/gem-config/default.nix index 24699ad69040..72e483bc77d3 100644 --- a/pkgs/development/ruby-modules/gem-config/default.nix +++ b/pkgs/development/ruby-modules/gem-config/default.nix @@ -21,7 +21,7 @@ , libiconv, postgresql, v8_3_16_14, clang, sqlite, zlib, imagemagick , pkgconfig , ncurses, xapian, gpgme, utillinux, fetchpatch, tzdata, icu, libffi , cmake, libssh2, openssl, mysql, darwin, git, perl, gecode_3, curl -, libmsgpack, qt5Full +, libmsgpack, qt48 }: let @@ -30,7 +30,7 @@ in { capybara-webkit = attrs: { - buildInputs = [ qt5Full ]; + buildInputs = [ qt48 ]; }; charlock_holmes = attrs: { @@ -166,5 +166,15 @@ in export XAPIAN_CONFIG=${xapian}/bin/xapian-config ''; }; + + # patching shebangs would fail on the templates/Executable file, so we + # temporarily remove the executable flag. + bundler = attrs: + let + templates = "${attrs.ruby.gemPath}/gems/${attrs.gemName}-${attrs.version}/lib/bundler/templates/"; + in { + preFixup = "chmod -x $out/${templates}/Executable"; + postFixup = "chmod +x $out/${templates}/Executable"; + }; } diff --git a/pkgs/development/tools/build-managers/gradle/default.nix b/pkgs/development/tools/build-managers/gradle/default.nix index 96477e55d26a..730d42073759 100644 --- a/pkgs/development/tools/build-managers/gradle/default.nix +++ b/pkgs/development/tools/build-managers/gradle/default.nix @@ -22,7 +22,7 @@ rec { mkdir patching pushd patching jar xf $out/lib/gradle/lib/native-platform-linux-${arch}-0.10.jar - patchelf --set-rpath "${stdenv.cc.cc}/lib:${stdenv.cc.cc}/lib64" net/rubygrapefruit/platform/linux-${arch}/libnative-platform.so + patchelf --set-rpath "${stdenv.cc.cc.lib}/lib:${stdenv.cc.cc.lib}/lib64" net/rubygrapefruit/platform/linux-${arch}/libnative-platform.so jar cf native-platform-linux-${arch}-0.10.jar . mv native-platform-linux-${arch}-0.10.jar $out/lib/gradle/lib/ popd diff --git a/pkgs/development/tools/misc/ccache/default.nix b/pkgs/development/tools/misc/ccache/default.nix index 4a278e052fa2..f344156f6bc5 100644 --- a/pkgs/development/tools/misc/ccache/default.nix +++ b/pkgs/development/tools/misc/ccache/default.nix @@ -2,22 +2,13 @@ let ccache = stdenv.mkDerivation rec { name = "ccache-${version}"; - version = "3.2.4"; + version = "3.2.5"; src = fetchurl { - sha256 = "0pga3hvd80f2p7mz88jmmbwzxh4vn5ihyjx5f6na8y2fclzsjg8w"; + sha256 = "11db1g109g0g5si0s50yd99ja5f8j4asxb081clvx78r9d9i2w0i"; url = "mirror://samba/ccache/${name}.tar.xz"; }; - patches = [ - (fetchpatch { - sha256 = "1gwnxx1w2nx1szi0v5vgwcx9i23pxygkqqnrawhal68qgz5c34wh"; - name = "dont-update-manifest-in-readonly-modes.patch"; - # The primary git.samba.org doesn't seem to like our curl much... - url = "https://github.com/jrosdahl/ccache/commit/a7ab503f07e31ebeaaec34fbaa30e264308a299d.patch"; - }) - ]; - buildInputs = [ zlib ]; postPatch = '' diff --git a/pkgs/development/tools/misc/kconfig-frontends/default.nix b/pkgs/development/tools/misc/kconfig-frontends/default.nix new file mode 100644 index 000000000000..13e02fb9272b --- /dev/null +++ b/pkgs/development/tools/misc/kconfig-frontends/default.nix @@ -0,0 +1,32 @@ +{ stdenv, fetchurl, pkgconfig, bison, flex, gperf, ncurses }: + +stdenv.mkDerivation rec { + basename = "kconfig-frontends"; + version = "3.12.0.0"; + name = "${basename}-${version}"; + + src = fetchurl { + sha256 = "01zlph9bq2xzznlpmfpn0zrmhf2iqw02yh1q7g7adgkl5jk1a9pa"; + url = "http://ymorin.is-a-geek.org/download/${basename}/${name}.tar.xz"; + }; + + buildInputs = [ bison flex gperf ncurses pkgconfig ]; + + configureFlags = [ + "--enable-frontends=conf,mconf,nconf" + ]; + + meta = with stdenv.lib; { + description = "Out of Linux tree packaging of the kconfig infrastructure"; + longDescription = '' + Configuration language and system for the Linux kernel and other + projects. Features simple syntax and grammar, limited yet adequate option + types, simple organization of options, and direct and reverse + dependencies. + ''; + homepage = http://ymorin.is-a-geek.org/projects/kconfig-frontends; + license = licenses.gpl2; + platforms = platforms.unix; + maintainers = with maintainers; [ mbe ]; + }; +} diff --git a/pkgs/development/tools/selenium/chromedriver/default.nix b/pkgs/development/tools/selenium/chromedriver/default.nix index dd6d75771a32..1f2153bf3375 100644 --- a/pkgs/development/tools/selenium/chromedriver/default.nix +++ b/pkgs/development/tools/selenium/chromedriver/default.nix @@ -25,7 +25,7 @@ stdenv.mkDerivation rec { mv chromedriver $out/bin patchelf --set-interpreter ${glibc.out}/lib/ld-linux-x86-64.so.2 $out/bin/chromedriver wrapProgram "$out/bin/chromedriver" \ - --prefix LD_LIBRARY_PATH : "$(cat ${stdenv.cc}/nix-support/orig-cc)/lib64:${stdenv.lib.makeLibraryPath [ cairo fontconfig freetype gdk_pixbuf glib gtk libX11 nspr nss pango libXrender gconf libXext libXi ]}:\$LD_LIBRARY_PATH" + --prefix LD_LIBRARY_PATH : "${stdenv.lib.makeLibraryPath [ stdenv.cc.cc.lib cairo fontconfig freetype gdk_pixbuf glib gtk libX11 nspr nss pango libXrender gconf libXext libXi ]}:\$LD_LIBRARY_PATH" ''; meta = with stdenv.lib; { diff --git a/pkgs/development/tools/selenium/server/default.nix b/pkgs/development/tools/selenium/server/default.nix index 66d9668fe82d..fe8bf2b13b59 100644 --- a/pkgs/development/tools/selenium/server/default.nix +++ b/pkgs/development/tools/selenium/server/default.nix @@ -10,30 +10,17 @@ let in stdenv.mkDerivation rec { name = "selenium-server-standalone-${version}"; - version = "2.45.0"; + version = "2.53.0"; src = fetchurl { - url = "http://selenium-release.storage.googleapis.com/2.45/selenium-server-standalone-2.45.0.jar"; - sha256 = "0yvmmngqff3k5si1js8v87nx3whlsx7q4p78v6ybqhsbv6idywhi"; + url = "http://selenium-release.storage.googleapis.com/2.53/selenium-server-standalone-${version}.jar"; + sha256 = "0dp0n5chl1frjy9pcyjvpcdgv1f4dkslh2bpydpxwc5isfzqrf37"; }; unpackPhase = "true"; buildInputs = [ jre makeWrapper ]; - # Patch launcher binaries for opera - patchPhase = optionalString (arch!="") '' - cp $src $TMPDIR/${name}.jar - export src=$TMPDIR/${name}.jar - - ${jdk}/bin/jar xf $src launchers/launcher-linux-amd64 - patchelf \ - --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \ - --set-rpath "${gcc.cc}/lib/:${gcc.cc}/lib64:${xorg.libX11.out}/lib" \ - launchers/launcher-linux-${arch} - ${jdk}/bin/jar uf $src launchers/launcher-linux-${arch} - ''; - installPhase = '' mkdir -p $out/share/lib/${name} cp $src $out/share/lib/${name}/${name}.jar diff --git a/pkgs/games/factorio/default.nix b/pkgs/games/factorio/default.nix index 28f562c1b794..cf96756b8b67 100644 --- a/pkgs/games/factorio/default.nix +++ b/pkgs/games/factorio/default.nix @@ -125,7 +125,7 @@ stdenv.mkDerivation rec { ''; homepage = https://www.factorio.com/; license = stdenv.lib.licenses.unfree; - maintainers = with stdenv.maintainers; [ Baughn elitak ]; + maintainers = with stdenv.lib.maintainers; [ Baughn elitak ]; platforms = [ "i686-linux" "x86_64-linux" ]; }; } diff --git a/pkgs/games/freeciv/default.nix b/pkgs/games/freeciv/default.nix index 4d7bc4eb4a67..af785d0e4a9e 100644 --- a/pkgs/games/freeciv/default.nix +++ b/pkgs/games/freeciv/default.nix @@ -10,16 +10,14 @@ let gtkName = if gtkClient then "-gtk" else ""; name = "freeciv"; - version = "2.5.0"; + version = "2.5.3"; in stdenv.mkDerivation { name = "${name}${sdlName}${gtkName}-${version}"; src = fetchurl { url = "mirror://sourceforge/freeciv/${name}-${version}.tar.bz2"; - sha256 = "bd9f7523ea79b8d2806d0c1844a9f48506ccd18276330580319913c43051210b"; - # sha1 = "477b60e02606e47b31a019b065353c1a6da6c305"; - # md5 = "8a61ecd986853200326711446c573f1b"; + sha256 = "0p40bpkhbldsnlqdvfn3qd2vzadxfrfsf1r57x1akwabqs0h62s8"; }; nativeBuildInputs = [ pkgconfig ]; diff --git a/pkgs/games/freeorion/92455f9.patch b/pkgs/games/freeorion/92455f9.patch new file mode 100644 index 000000000000..e40ee78de6df --- /dev/null +++ b/pkgs/games/freeorion/92455f9.patch @@ -0,0 +1,19 @@ +diff -Naur GG/src/Font.cpp +--- /GG/src/Font.cpp ++++ /GG/src/Font.cpp +@@ -1586,8 +1586,13 @@ + using boost::lexical_cast; + FT_UInt index = FT_Get_Char_Index(face, ch); + if (index) { +- if (FT_Load_Glyph(face, index, FT_LOAD_DEFAULT)) +- ThrowBadGlyph("GG::Font::GetGlyphBitmap : Freetype could not load the glyph for character '%1%'", ch); ++ if (FT_Load_Glyph(face, index, FT_LOAD_DEFAULT)) { ++ // loading of a glpyh failed so we replace it with ++ // the 'Replacement Character' at codepoint 0xFFFD ++ FT_UInt tmp_index = FT_Get_Char_Index(face, 0xFFFD); ++ if (FT_Load_Glyph(face, tmp_index, FT_LOAD_DEFAULT)) ++ ThrowBadGlyph("GG::Font::GetGlyphBitmap : Freetype could not load the glyph for character '%1%'", ch); ++ } + + FT_GlyphSlot glyph = face->glyph; + diff --git a/pkgs/games/freeorion/default.nix b/pkgs/games/freeorion/default.nix new file mode 100644 index 000000000000..e143b6ebcf31 --- /dev/null +++ b/pkgs/games/freeorion/default.nix @@ -0,0 +1,41 @@ +{ stdenv, fetchurl, cmake, boost, SDL2, python2, freetype, openal, libogg, libvorbis, zlib, libpng, libtiff, libjpeg, mesa, glew, doxygen +, libxslt, makeWrapper }: + +stdenv.mkDerivation rec { + version = "0.4.5"; + name = "freeorion-${version}"; + + src = fetchurl { + url = "https://github.com/freeorion/freeorion/releases/download/v0.4.5/FreeOrion_v0.4.5_2015-09-01.f203162_Source.tar.gz"; + sha256 = "3b99b92eeac72bd059566dbabfab54368989ba83f72e769bc94eb8dd4fe414c0"; + }; + + buildInputs = [ cmake boost SDL2 python2 freetype openal libogg libvorbis zlib libpng libtiff libjpeg mesa glew doxygen makeWrapper ]; + + # cherry pick for acceptable performance https://github.com/freeorion/freeorion/commit/92455f97c28055e296718230d2e3744eccd738ec + patches = [ ./92455f9.patch ]; + + enableParallelBuilding = true; + + postInstall = '' + mkdir -p $out/fixpaths + # We need final slashes for XSLT replace to work properly + substitute ${./fix-paths.xslt} $out/fixpaths/fix-paths.xslt \ + --subst-var-by nixStore "$NIX_STORE/" \ + --subst-var-by out "$out/" + substitute ${./fix-paths.sh} $out/fixpaths/fix-paths \ + --subst-var-by libxsltBin ${libxslt.bin} \ + --subst-var out + chmod +x $out/fixpaths/fix-paths + + wrapProgram $out/bin/freeorion \ + --run $out/fixpaths/fix-paths + ''; + + meta = with stdenv.lib; { + description = "A free, open source, turn-based space empire and galactic conquest (4X) computer game"; + homepage = "http://www.freeorion.org"; + license = [ licenses.gpl2 licenses.cc-by-sa-30 ]; + platforms = platforms.linux; + }; +} diff --git a/pkgs/games/freeorion/fix-paths.sh b/pkgs/games/freeorion/fix-paths.sh new file mode 100644 index 000000000000..cd6f381de255 --- /dev/null +++ b/pkgs/games/freeorion/fix-paths.sh @@ -0,0 +1,6 @@ +#!/bin/sh + +if [ -e ~/.freeorion/config.xml ]; then + @libxsltBin@/bin/xsltproc -o ~/.freeorion/config.xml @out@/fixpaths/fix-paths.xslt ~/.freeorion/config.xml +fi +exit 0 diff --git a/pkgs/games/freeorion/fix-paths.xslt b/pkgs/games/freeorion/fix-paths.xslt new file mode 100644 index 000000000000..f0db646b81ad --- /dev/null +++ b/pkgs/games/freeorion/fix-paths.xslt @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/pkgs/games/openmw/default.nix b/pkgs/games/openmw/default.nix index 2fdd2c7e56cc..b6acbeb522ab 100644 --- a/pkgs/games/openmw/default.nix +++ b/pkgs/games/openmw/default.nix @@ -15,14 +15,14 @@ let }; }); in stdenv.mkDerivation rec { - version = "0.38.0"; + version = "0.39.0"; name = "openmw-${version}"; src = fetchFromGitHub { owner = "OpenMW"; repo = "openmw"; rev = name; - sha256 = "1ssz1pa59a34v5vxiccqyvij5s38kl662p7xbc59y90y668f78y6"; + sha256 = "0haz8p0hwzgpj634q34if6x57rkc3zsndry5pz4a25m23sn1i72y"; }; enableParallelBuilding = true; diff --git a/pkgs/games/rigsofrods/default.nix b/pkgs/games/rigsofrods/default.nix new file mode 100644 index 000000000000..c4477ab01d9e --- /dev/null +++ b/pkgs/games/rigsofrods/default.nix @@ -0,0 +1,40 @@ +{ fetchurl, fetchFromGitHub, stdenv, wxGTK30, freeimage, cmake, zziplib, mesa, boost, + pkgconfig, libuuid, openal, ogre, ois, curl, gtk, pixman, mygui, unzip, + angelscript, ogrepaged, mysocketw, libxcb + }: + +stdenv.mkDerivation rec { + version = "git-20160412"; + name = "rigsofrods-${version}"; + + src = fetchFromGitHub { + owner = "RigsOfRods"; + repo = "rigs-of-rods"; + rev = "1ebd359dbd467b4c3171dd6d054e7d8ec39f78ba"; + sha256 = "0h71nrgq5r5cnh20c7wl8jzyaf50dj1b5jdrwihnklpsfyfvjlw4"; + }; + + enableParallelBuilding = true; + + installPhase = '' + sed -e "s@/usr/local/lib/OGRE@${ogre}/lib/OGRE@" -i ../tools/linux/binaries/plugins.cfg + mkdir -p $out/share/rigsofrods + cp -r bin/* $out/share/rigsofrods + cp ../tools/linux/binaries/plugins.cfg $out/share/rigsofrods + mkdir -p $out/bin + ln -s $out/share/rigsofrods/{RoR,RoRConfig} $out/bin + ''; + + buildInputs = [ wxGTK30 freeimage cmake zziplib mesa boost pkgconfig + libuuid openal ogre ois curl gtk mygui unzip angelscript + ogrepaged mysocketw libxcb ]; + + meta = { + description = "3D simulator game where you can drive, fly and sail various vehicles"; + homepage = http://rigsofrods.sourceforge.net/; + license = stdenv.lib.licenses.gpl3; + maintainers = with stdenv.lib.maintainers; [viric raskin]; + platforms = stdenv.lib.platforms.linux; + hydraPlatforms = []; + }; +} diff --git a/pkgs/games/sdlmame/default.nix b/pkgs/games/sdlmame/default.nix index 5e52a92e621a..947e52e1f13d 100644 --- a/pkgs/games/sdlmame/default.nix +++ b/pkgs/games/sdlmame/default.nix @@ -8,11 +8,11 @@ stdenv.mkDerivation rec { src = if stdenv.system == "x86_64-linux" then fetchurl { - url = "ftp://ftp.archlinux.org/community/os/x86_64/${name}-x86_64.pkg.tar.xz"; + url = "http://seblu.net/a/archive/packages/s/sdlmame/${name}-x86_64.pkg.tar.xz"; sha256 = "1j9vjxhrhsskrlk5wr7al4wk2hh3983kcva42mqal09bmc8qg3m9"; } else fetchurl { - url = "ftp://ftp.archlinux.org/community/os/i686/${name}-i686.pkg.tar.xz"; + url = "http://seblu.net/a/archive/packages/s/sdlmame/${name}-i686.pkg.tar.xz"; sha256 = "1i38j9ml66pyxzm0zzf1fv4lb40f6w47cdgaw846q91pzakkkqn7"; }; @@ -40,6 +40,5 @@ stdenv.mkDerivation rec { license = "MAME"; maintainers = with maintainers; [ lovek323 ]; platforms = platforms.linux; - broken = true; # URL doesn't work anymore }; } diff --git a/pkgs/games/sgt-puzzles/default.nix b/pkgs/games/sgt-puzzles/default.nix index e23801b22204..40f1d1d41452 100644 --- a/pkgs/games/sgt-puzzles/default.nix +++ b/pkgs/games/sgt-puzzles/default.nix @@ -1,15 +1,14 @@ -{stdenv, gtk, pkgconfig, libX11, perl, fetchsvn}: +{stdenv, gtk3, pkgconfig, libX11, perl, fetchurl, automake114x, autoconf}: let - version = "10286"; + version = "20160410.9d15092"; buildInputs = [ - gtk pkgconfig libX11 perl + gtk3 pkgconfig libX11 perl automake114x autoconf ]; in stdenv.mkDerivation { - src = fetchsvn { - url = svn://svn.tartarus.org/sgt/puzzles; - rev = version; - sha256 = "1mp1s33hjikby7jy6bcjwyzkdwlw1bw9dcc4cg5d80wmzkb0sqv0"; + src = fetchurl { + url = "http://www.chiark.greenend.org.uk/~sgtatham/puzzles/puzzles-${version}.tar.gz"; + sha256 = "184n29mfgj56alp5853mya878rlxf5zxy0r3zfhi9h2yfqiwszi4"; }; name = "sgt-puzzles-r" + version; inherit buildInputs; @@ -31,5 +30,6 @@ stdenv.mkDerivation { license = stdenv.lib.licenses.mit ; maintainers = [stdenv.lib.maintainers.raskin]; platforms = stdenv.lib.platforms.linux; + homepage = "http://www.chiark.greenend.org.uk/~sgtatham/puzzles/"; }; } diff --git a/pkgs/games/vdrift/default.nix b/pkgs/games/vdrift/default.nix index bba7823f6630..ea3231dbe63e 100644 --- a/pkgs/games/vdrift/default.nix +++ b/pkgs/games/vdrift/default.nix @@ -1,26 +1,28 @@ -{ fetchurl, stdenv, mesa, SDL, scons, freeglut, SDL_image, glew, libvorbis, - asio, boost, SDL_gfx, pkgconfig, bullet, curl, libarchive }: +{ stdenv, fetchFromGitHub, fetchsvn, pkgconfig, scons, mesa, SDL2, SDL2_image, libvorbis, + bullet, curl, gettext }: stdenv.mkDerivation rec { - version = "2012-07-22"; + version = "2014-10-20"; name = "vdrift-${version}"; - patch = "c"; # see https://github.com/VDrift/vdrift/issues/110 - src = fetchurl { - url = "mirror://sourceforge/vdrift/${name}.tar.bz2"; - sha256 = "1yqkc7y4s4g5ylw501bf0c03la7kfddjdk4yyi1xkcwy3pmgw2al"; + src = fetchFromGitHub { + owner = "VDrift"; + repo = "vdrift"; + rev = version; + sha256 = "09yny5qzdrpffq3xhqwfymsracwsxwmdd5xa8bxx9a56hhxbak2l"; }; - patches = fetchurl { - url = "mirror://sourceforge/vdrift/${name}${patch}_patch.diff"; - sha256 = "08mfg4xxkzyp6602cgqyjzc3rn0zsaa3ddjkpd44b83drv19lriy"; + data = fetchsvn { + url = "svn://svn.code.sf.net/p/vdrift/code/vdrift-data"; + rev = 1386; + sha256 = "0ka6zir9hg0md5p03dl461jkvbk05ywyw233hnc3ka6shz3vazi1"; }; - patchFlags = "-p0"; - buildInputs = [ scons mesa SDL freeglut SDL_image glew libvorbis asio boost - SDL_gfx pkgconfig bullet curl libarchive ]; + buildInputs = [ pkgconfig scons mesa SDL2 SDL2_image libvorbis bullet curl gettext ]; buildPhase = '' + cp -r --reflink=auto $data data + chmod -R +w data sed -i -e s,/usr/local,$out, SConstruct scons ''; diff --git a/pkgs/games/warzone2100/default.nix b/pkgs/games/warzone2100/default.nix index bd94fbecb2ab..7c578f370d7d 100644 --- a/pkgs/games/warzone2100/default.nix +++ b/pkgs/games/warzone2100/default.nix @@ -1,25 +1,29 @@ { stdenv, fetchurl, bison, flex, gettext, pkgconfig, libpng , libtheora, openal, physfs, mesa, fribidi, fontconfig , freetype, qt4, glew, libogg, libvorbis, zlib, libX11 -, libXrandr, zip, unzip, which +, libXrandr, zip, unzip, which, perl , withVideos ? false }: -stdenv.mkDerivation rec { + +let pname = "warzone2100"; - version = "3.1.1"; - name = "${pname}-${version}"; - src = fetchurl { - url = "mirror://sourceforge/${pname}/releases/${version}/${name}.tar.xz"; - sha256 = "c937a2e2c7afdad00b00767636234bbec4d8b18efb008073445439d32edb76cf"; - }; sequences_src = fetchurl { url = "mirror://sourceforge/${pname}/warzone2100/Videos/high-quality-en/sequences.wz"; sha256 = "90ff552ca4a70e2537e027e22c5098ea4ed1bc11bb7fc94138c6c941a73d29fa"; }; +in + +stdenv.mkDerivation rec { + version = "3.1.5"; + name = "${pname}-${version}"; + src = fetchurl { + url = "mirror://sourceforge/${pname}/releases/${version}/${name}.tar.xz"; + sha256 = "0hm49i2knvvg3wlnryv7h4m84s3qa7jfyym5yy6365sx8wzcrai1"; + }; buildInputs = [ bison flex gettext pkgconfig libpng libtheora openal physfs mesa fribidi fontconfig freetype qt4 glew libogg libvorbis zlib libX11 libXrandr zip - unzip + unzip perl ]; patchPhase = '' substituteInPlace lib/exceptionhandler/dumpinfo.cpp \ @@ -31,8 +35,7 @@ stdenv.mkDerivation rec { NIX_CFLAGS_COMPILE = "-fpermissive"; # GL header minor incompatibility - postInstall = [] - ++ stdenv.lib.optional withVideos "cp ${sequences_src} $out/share/warzone2100/sequences.wz"; + postInstall = stdenv.lib.optionalString withVideos "cp ${sequences_src} $out/share/warzone2100/sequences.wz"; meta = with stdenv.lib; { description = "A free RTS game, originally developed by Pumpkin Studios"; @@ -45,7 +48,7 @@ stdenv.mkDerivation rec { missiles. The game offers campaign, multi-player, and single-player skirmish modes. An extensive tech tree with over 400 different technologies, combined with the unit design system, allows for a wide - variety of possible units and tactics. + variety of possible units and tactics. ''; homepage = http://wz2100.net; license = licenses.gpl2Plus; diff --git a/pkgs/misc/cups/default.nix b/pkgs/misc/cups/default.nix index ff8a0ec417bc..d140ee4783f0 100644 --- a/pkgs/misc/cups/default.nix +++ b/pkgs/misc/cups/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, pkgconfig, zlib, libjpeg, libpng, libtiff, pam -, dbus, acl, gmp, darwin +, dbus, systemd, acl, gmp, darwin , libusb ? null, gnutls ? null, avahi ? null, libpaper ? null }: @@ -19,10 +19,10 @@ stdenv.mkDerivation { }; # FIXME: the cups libraries contains some $out/share strings so can't be split. - outputs = [ "dev" "out" "doc" "man" ]; # TODO: above + outputs = [ "dev" "out" "man" ]; # TODO: above buildInputs = [ pkgconfig zlib libjpeg libpng libtiff libusb gnutls libpaper ] - ++ optionals stdenv.isLinux [ avahi pam dbus acl ] + ++ optionals stdenv.isLinux [ avahi pam dbus systemd acl ] ++ optionals stdenv.isDarwin (with darwin; [ configd apple_sdk.frameworks.ApplicationServices ]); diff --git a/pkgs/misc/drivers/hplip/default.nix b/pkgs/misc/drivers/hplip/default.nix index cd8e906c8171..7aed8dad5995 100644 --- a/pkgs/misc/drivers/hplip/default.nix +++ b/pkgs/misc/drivers/hplip/default.nix @@ -1,7 +1,7 @@ { stdenv, fetchurl, substituteAll , pkgconfig , cups, zlib, libjpeg, libusb1, pythonPackages, sane-backends, dbus, usbutils -, net_snmp, polkit +, net_snmp, openssl, polkit , bash, coreutils, utillinux , qtSupport ? true, qt4, pyqt4 , withPlugin ? false @@ -59,6 +59,7 @@ stdenv.mkDerivation { sane-backends dbus net_snmp + openssl ] ++ stdenv.lib.optionals qtSupport [ qt4 ]; diff --git a/pkgs/misc/emulators/higan/0001-change-flags.diff b/pkgs/misc/emulators/higan/0001-change-flags.diff index 9d7608b93281..1ac1b1360b2a 100644 --- a/pkgs/misc/emulators/higan/0001-change-flags.diff +++ b/pkgs/misc/emulators/higan/0001-change-flags.diff @@ -1,26 +1,23 @@ -diff -rupN higan_v095-source.orig/GNUmakefile higan_v095-source/GNUmakefile ---- higan_v095-source.orig/GNUmakefile 2015-11-04 10:28:26.173428178 +0100 -+++ higan_v095-source/GNUmakefile 2015-11-04 10:28:31.752231593 +0100 -@@ -12,7 +12,8 @@ target := tomoko - # console := true - - # compiler --flags += -I. -O3 -+flags += -I. $(CXXFLAGS) -+link += $(LDFLAGS) - objects := libco - - # profile-guided optimization mode -diff -rupN higan_v095-source.orig/icarus/GNUmakefile higan_v095-source/icarus/GNUmakefile ---- higan_v095-source.orig/icarus/GNUmakefile 2015-11-04 10:28:26.186486119 +0100 -+++ higan_v095-source/icarus/GNUmakefile 2015-11-04 10:28:48.755059317 +0100 -@@ -1,8 +1,8 @@ - include ../nall/GNUmakefile - include ../hiro/GNUmakefile - --flags += -I.. -O3 --link += -+flags += -I.. $(CXXFLAGS) -+link += $(LDFLAGS) - objects := obj/hiro.o obj/icarus.o - objects += $(if $(call streq,$(platform),windows),obj/resource.o) +diff -rupN higan_v097-source.old/higan/GNUmakefile higan_v097-source/higan/GNUmakefile +--- higan_v097-source.old/higan/GNUmakefile 2016-01-24 09:21:45.822940200 +0100 ++++ higan_v097-source/higan/GNUmakefile 2016-01-24 09:24:03.028722500 +0100 +@@ -36,7 +36,7 @@ ifeq ($(platform),windows) + else ifeq ($(platform),macosx) + flags += -march=native + else ifneq ($(filter $(platform),linux bsd),) +- flags += -march=native -fopenmp ++ flags += -fopenmp + link += -fopenmp + link += -Wl,-export-dynamic + link += -lX11 -lXext +diff -rupN higan_v097-source.old/nall/GNUmakefile higan_v097-source/nall/GNUmakefile +--- higan_v097-source.old/nall/GNUmakefile 2016-01-24 09:21:46.021749600 +0100 ++++ higan_v097-source/nall/GNUmakefile 2016-01-24 09:25:06.347100800 +0100 +@@ -40,8 +40,8 @@ cflags := -x c -std=c99 + objcflags := -x objective-c -std=c99 + cppflags := -x c++ -std=c++14 + objcppflags := -x objective-c++ -std=c++14 +-flags := +-link := ++flags := $(CXXFLAGS) ++link := $(LDFLAGS) diff --git a/pkgs/misc/emulators/higan/default.nix b/pkgs/misc/emulators/higan/default.nix index 5d48f38abd82..1395e3ac3efe 100644 --- a/pkgs/misc/emulators/higan/default.nix +++ b/pkgs/misc/emulators/higan/default.nix @@ -5,18 +5,18 @@ , mesa, SDL , libao, openal, libpulseaudio , gtk, gtksourceview -, profile ? "balanced" # Options: accuracy, balanced, performance }: with stdenv.lib; stdenv.mkDerivation rec { - name = "higan-${meta.version}"; - sourceName = "higan_v${meta.version}-source"; + name = "higan-${version}"; + version = "098"; + sourceName = "higan_v${version}-source"; src = fetchurl { urls = [ "http://download.byuu.org/${sourceName}.7z" ]; - sha256 = "0yc5gwg6dq9iwi2qk3g66wn8j2l55nhdb0311jzmdsh86zcrpvqh"; + sha256 = "0qphvjfv17dbmzgb4pny2q6ln0lsgzyhalq6qyqxc3qwm4fzdjv1"; curlOpts = "--user-agent 'Mozilla/5.0'"; # the good old user-agent trick... }; @@ -31,18 +31,17 @@ stdenv.mkDerivation rec { ''; buildPhase = '' - make compiler=c++ profile=${profile} -C icarus - make compiler=c++ profile=${profile} + make compiler=c++ -C icarus + make compiler=c++ -C higan ''; installPhase = '' install -dm 755 $out/bin $out/share/applications $out/share/higan $out/share/pixmaps - install -m 755 icarus/icarus $out/bin/ - install -m 755 out/tomoko $out/bin/ - (cd $out/bin; ln -Ts tomoko higan) #backwards compatibility - install -m 644 data/higan.desktop $out/share/applications/ - install -m 644 data/higan.png $out/share/pixmaps/ - cp -dr --no-preserve='ownership' profile/* data/cheats.bml $out/share/higan/ + install -m 755 icarus/out/icarus $out/bin/ + install -m 755 higan/out/higan $out/bin/ + install -m 644 higan/data/higan.desktop $out/share/applications/ + install -m 644 higan/data/higan.png $out/share/pixmaps/ + cp --recursive --no-dereference --preserve='links' --no-preserve='ownership' higan/data/cheats.bml higan/profile/* $out/share/higan/ ''; fixupPhase = '' @@ -54,21 +53,22 @@ stdenv.mkDerivation rec { cat < $out/bin/higan-init.sh #!${stdenv.shell} - cp --update --recursive $out/share/higan \$HOME/.config - chmod --recursive u+w \$HOME/.config/higan + cp --update $out/share/higan/cheats.bml \$HOME/.config/ + cp --recursive --update $out/share/higan/*.sys \$HOME/.local/share/higan/ + EOF chmod +x $out/bin/higan-init.sh ''; meta = { - version = "096"; description = "An open-source, cycle-accurate Nintendo multi-system emulator"; longDescription = '' Higan (formerly bsnes) is a Nintendo multi-system emulator. It currently supports the following systems: Famicom; Super Famicom; Game Boy; Game Boy Color; Game Boy Advance + WonderSwan; WonderSwan Color higan also supports the following subsystems: Super Game Boy; BS-X Satellaview; Sufami Turbo ''; @@ -82,5 +82,4 @@ stdenv.mkDerivation rec { # # TODO: # - fix the BML and BIOS paths - maybe submitting -# a custom patch to Higan project would not be a bad idea... -# - Qt support +# a custom patch to upstream would not be a bad idea... diff --git a/pkgs/misc/emulators/wine/base.nix b/pkgs/misc/emulators/wine/base.nix index 503e8da6845e..804eb0bb304c 100644 --- a/pkgs/misc/emulators/wine/base.nix +++ b/pkgs/misc/emulators/wine/base.nix @@ -32,7 +32,7 @@ stdenv.mkDerivation ((lib.optionalAttrs (! isNull buildScript) { # them to the RPATH so that the user doesn't have to set them in # LD_LIBRARY_PATH. NIX_LDFLAGS = map (path: "-rpath " + path) ( - map (x: "${x}/lib") ([ stdenv.cc.cc ] ++ buildInputs) + map (x: "${x}/lib") ([ stdenv.cc.cc ] ++ (map (x: x.lib or x.out) buildInputs)) # libpulsecommon.so is linked but not found otherwise ++ lib.optionals pulseaudioSupport (map (x: "${x}/lib/pulseaudio") (toBuildInputs pkgArches (pkgs: [ pkgs.libpulseaudio ]))) ); @@ -41,6 +41,13 @@ stdenv.mkDerivation ((lib.optionalAttrs (! isNull buildScript) { # elements specified above. dontPatchELF = true; + # Disable stripping to avoid breaking placeholder DLLs/EXEs. + # Symptoms of broken placeholders are: when the wineprefix is created + # drive_c/windows/system32 will only contain a few files instead of + # hundreds, there will be an error about winemenubuilder and MountMgr + # on startup of Wine, and the Drives tab in winecfg will show an error. + dontStrip = true; + ## FIXME # Add capability to ignore known failing tests # and enable doCheck diff --git a/pkgs/os-specific/linux/apparmor/2.9/default.nix b/pkgs/os-specific/linux/apparmor/2.9/default.nix deleted file mode 100644 index 5e8ccc756918..000000000000 --- a/pkgs/os-specific/linux/apparmor/2.9/default.nix +++ /dev/null @@ -1,183 +0,0 @@ -{ stdenv, fetchurl, autoconf, automake, libtool, pkgconfig, perl, which -, glibc, flex, bison, python27, swig, dbus, pam -}: - -let - apparmor-series = "2.9"; - apparmor-patchver = "2"; - apparmor-version = "${apparmor-series}.${apparmor-patchver}"; - - apparmor-meta = component: with stdenv.lib; { - homepage = http://apparmor.net/; - description = "Linux application security system - ${component}"; - license = licenses.gpl2; - maintainers = with maintainers; [ phreedom thoughtpolice joachifm ]; - platforms = platforms.linux; - }; - - apparmor-sources = fetchurl { - url = "https://launchpad.net/apparmor/${apparmor-series}/${apparmor-version}/+download/apparmor-${apparmor-version}.tar.gz"; - sha256 = "1mayly7d7w959fya7z8q6kab2x3jcwhqhkpx36jsvpjhxkhmc4fh"; - }; - - prePatchCommon = '' - substituteInPlace ./common/Make.rules --replace "/usr/bin/pod2man" "${perl}/bin/pod2man" - substituteInPlace ./common/Make.rules --replace "/usr/bin/pod2html" "${perl}/bin/pod2html" - substituteInPlace ./common/Make.rules --replace "/usr/include/linux/capability.h" "${glibc.dev}/include/linux/capability.h" - substituteInPlace ./common/Make.rules --replace "/usr/share/man" "share/man" - ''; - - libapparmor = stdenv.mkDerivation { - name = "libapparmor-${apparmor-version}"; - src = apparmor-sources; - - buildInputs = [ - autoconf - automake - bison - flex - dbus # requires patch to dbus ... - glibc - libtool - perl - pkgconfig - python27 - swig - which - ]; - - prePatch = prePatchCommon + '' - substituteInPlace ./libraries/libapparmor/src/Makefile.am --replace "/usr/include/netinet/in.h" "${glibc.dev}/include/netinet/in.h" - substituteInPlace ./libraries/libapparmor/src/Makefile.in --replace "/usr/include/netinet/in.h" "${glibc.dev}/include/netinet/in.h" - ''; - - buildPhase = '' - cd ./libraries/libapparmor - ./autogen.sh - ./configure --prefix="$out" --with-python --with-perl - make - ''; - - installPhase = '' - make install - ''; - - meta = apparmor-meta "library"; - }; - - apparmor-utils = stdenv.mkDerivation { - name = "apparmor-utils-${apparmor-version}"; - src = apparmor-sources; - - buildInputs = [ - python27 - libapparmor - which - ]; - - prePatch = prePatchCommon; - - buildPhase = '' - cd ./utils - make LANGS="" - ''; - - installPhase = '' - make install LANGS="" DESTDIR="$out" BINDIR="$out/bin" VIM_INSTALL_PATH="$out/share" PYPREFIX="" - ''; - - meta = apparmor-meta "user-land utilities"; - }; - - apparmor-parser = stdenv.mkDerivation { - name = "apparmor-parser-${apparmor-version}"; - src = apparmor-sources; - - buildInputs = [ - libapparmor - bison - flex - which - ]; - - prePatch = prePatchCommon + '' - substituteInPlace ./parser/Makefile --replace "/usr/bin/bison" "${bison}/bin/bison" - substituteInPlace ./parser/Makefile --replace "/usr/bin/flex" "${flex}/bin/flex" - substituteInPlace ./parser/Makefile --replace "/usr/include/linux/capability.h" "${glibc.dev}/include/linux/capability.h" - ## techdoc.pdf still doesn't build ... - substituteInPlace ./parser/Makefile --replace "manpages htmlmanpages pdf" "manpages htmlmanpages" - ''; - - buildPhase = '' - cd ./parser - make LANGS="" USE_SYSTEM=1 INCLUDEDIR=${libapparmor}/include - ''; - - installPhase = '' - make install LANGS="" USE_SYSTEM=1 INCLUDEDIR=${libapparmor}/include DESTDIR="$out" DISTRO="unknown" - ''; - - meta = apparmor-meta "rule parser"; - }; - - apparmor-pam = stdenv.mkDerivation { - name = "apparmor-pam-${apparmor-version}"; - src = apparmor-sources; - - buildInputs = [ - libapparmor - pam - pkgconfig - which - ]; - - buildPhase = '' - cd ./changehat/pam_apparmor - make USE_SYSTEM=1 - ''; - - installPhase = '' - make install DESTDIR="$out" - ''; - - meta = apparmor-meta "PAM service"; - }; - - apparmor-profiles = stdenv.mkDerivation { - name = "apparmor-profiles-${apparmor-version}"; - src = apparmor-sources; - - buildInputs = [ which ]; - - buildPhase = '' - cd ./profiles - make - ''; - - installPhase = '' - make install DESTDIR="$out" EXTRAS_DEST="$out/share/apparmor/extra-profiles" - ''; - - meta = apparmor-meta "profiles"; - }; - - apparmor-kernel-patches = stdenv.mkDerivation { - name = "apparmor-kernel-patches-${apparmor-version}"; - src = apparmor-sources; - - phases = ''unpackPhase installPhase''; - - installPhase = '' - mkdir "$out" - cp -R ./kernel-patches "$out" - ''; - - meta = apparmor-meta "kernel patches"; - }; - -in - -{ - inherit libapparmor apparmor-utils apparmor-parser apparmor-pam - apparmor-profiles apparmor-kernel-patches; -} diff --git a/pkgs/os-specific/linux/apparmor/default.nix b/pkgs/os-specific/linux/apparmor/default.nix index 49fdbab24caa..f90601073406 100644 --- a/pkgs/os-specific/linux/apparmor/default.nix +++ b/pkgs/os-specific/linux/apparmor/default.nix @@ -1,5 +1,11 @@ -{ stdenv, fetchurl, makeWrapper, autoconf, autoreconfHook, automake, libtool, pkgconfig, perl, which -, glibc, flex, bison, python27Packages, swig, pam +{ stdenv, fetchurl, makeWrapper, autoreconfHook +, pkgconfig, which +, flex, bison +, linuxHeaders ? stdenv.cc.libc.linuxHeaders +, pythonPackages +, perl +, swig +, pam }: let @@ -8,7 +14,7 @@ let apparmor-meta = component: with stdenv.lib; { homepage = http://apparmor.net/; - description = "Linux application security system - ${component}"; + description = "A mandatory access control system - ${component}"; license = licenses.gpl2; maintainers = with maintainers; [ phreedom thoughtpolice joachifm ]; platforms = platforms.linux; @@ -22,7 +28,7 @@ let prePatchCommon = '' substituteInPlace ./common/Make.rules --replace "/usr/bin/pod2man" "${perl}/bin/pod2man" substituteInPlace ./common/Make.rules --replace "/usr/bin/pod2html" "${perl}/bin/pod2html" - substituteInPlace ./common/Make.rules --replace "/usr/include/linux/capability.h" "${glibc.dev}/include/linux/capability.h" + substituteInPlace ./common/Make.rules --replace "/usr/include/linux/capability.h" "${linuxHeaders}/include/linux/capability.h" substituteInPlace ./common/Make.rules --replace "/usr/share/man" "share/man" ''; @@ -30,28 +36,27 @@ let name = "libapparmor-${apparmor-version}"; src = apparmor-sources; - buildInputs = [ - autoconf - automake + nativeBuildInputs = [ autoreconfHook bison flex - glibc - libtool - perl pkgconfig - python27Packages.python swig which ]; + buildInputs = [ + perl + pythonPackages.python + ]; + # required to build apparmor-parser dontDisableStatic = true; prePatch = prePatchCommon + '' - substituteInPlace ./libraries/libapparmor/src/Makefile.am --replace "/usr/include/netinet/in.h" "${glibc.dev}/include/netinet/in.h" - substituteInPlace ./libraries/libapparmor/src/Makefile.in --replace "/usr/include/netinet/in.h" "${glibc.dev}/include/netinet/in.h" - ''; + substituteInPlace ./libraries/libapparmor/src/Makefile.am --replace "/usr/include/netinet/in.h" "${stdenv.cc.libc.dev}/include/netinet/in.h" + substituteInPlace ./libraries/libapparmor/src/Makefile.in --replace "/usr/include/netinet/in.h" "${stdenv.cc.libc.dev}/include/netinet/in.h" + ''; postPatch = "cd ./libraries/libapparmor"; configureFlags = "--with-python --with-perl"; @@ -63,13 +68,13 @@ let name = "apparmor-utils-${apparmor-version}"; src = apparmor-sources; + nativeBuildInputs = [ makeWrapper which ]; + buildInputs = [ perl - python27Packages.python - python27Packages.readline + pythonPackages.python + pythonPackages.readline libapparmor - makeWrapper - which ]; prePatch = prePatchCommon; @@ -79,7 +84,7 @@ let postInstall = '' for prog in aa-audit aa-autodep aa-cleanprof aa-complain aa-disable aa-enforce aa-genprof aa-logprof aa-mergeprof aa-status aa-unconfined ; do - wrapProgram $out/bin/$prog --prefix PYTHONPATH : "$out/lib/${python27Packages.python.libPrefix}/site-packages:$PYTHONPATH" + wrapProgram $out/bin/$prog --prefix PYTHONPATH : "$out/lib/${pythonPackages.python.libPrefix}/site-packages:$PYTHONPATH" done for prog in aa-exec aa-notify ; do @@ -94,17 +99,14 @@ let name = "apparmor-parser-${apparmor-version}"; src = apparmor-sources; - buildInputs = [ - libapparmor - bison - flex - which - ]; + nativeBuildInputs = [ bison flex which ]; + + buildInputs = [ libapparmor ]; prePatch = prePatchCommon + '' substituteInPlace ./parser/Makefile --replace "/usr/bin/bison" "${bison}/bin/bison" substituteInPlace ./parser/Makefile --replace "/usr/bin/flex" "${flex}/bin/flex" - substituteInPlace ./parser/Makefile --replace "/usr/include/linux/capability.h" "${glibc.dev}/include/linux/capability.h" + substituteInPlace ./parser/Makefile --replace "/usr/include/linux/capability.h" "${linuxHeaders}/include/linux/capability.h" ## techdoc.pdf still doesn't build ... substituteInPlace ./parser/Makefile --replace "manpages htmlmanpages pdf" "manpages htmlmanpages" ''; @@ -119,12 +121,9 @@ let name = "apparmor-pam-${apparmor-version}"; src = apparmor-sources; - buildInputs = [ - libapparmor - pam - pkgconfig - which - ]; + nativeBuildInputs = [ pkgconfig which ]; + + buildInputs = [ libapparmor pam ]; postPatch = "cd ./changehat/pam_apparmor"; makeFlags = ''USE_SYSTEM=1''; @@ -137,7 +136,7 @@ let name = "apparmor-profiles-${apparmor-version}"; src = apparmor-sources; - buildInputs = [ which ]; + nativeBuildInputs = [ which ]; postPatch = "cd ./profiles"; installFlags = ''DESTDIR=$(out) EXTRAS_DEST=$(out)/share/apparmor/extra-profiles''; @@ -153,7 +152,7 @@ let installPhase = '' mkdir "$out" - cp -R ./kernel-patches "$out" + cp -R ./kernel-patches/* "$out" ''; meta = apparmor-meta "kernel patches"; diff --git a/pkgs/os-specific/linux/kernel-headers/default.nix b/pkgs/os-specific/linux/kernel-headers/default.nix index a33d24fc847b..da9f30094746 100644 --- a/pkgs/os-specific/linux/kernel-headers/default.nix +++ b/pkgs/os-specific/linux/kernel-headers/default.nix @@ -1,5 +1,7 @@ { stdenv, kernel, perl }: +assert (!(kernel.features.grsecurity or false)); + let baseBuildFlags = [ "INSTALL_HDR_PATH=$(out)" "headers_install" ]; in stdenv.mkDerivation { diff --git a/pkgs/os-specific/linux/kernel/linux-4.5.nix b/pkgs/os-specific/linux/kernel/linux-4.5.nix index 14ae13c320d1..267d0d58de41 100644 --- a/pkgs/os-specific/linux/kernel/linux-4.5.nix +++ b/pkgs/os-specific/linux/kernel/linux-4.5.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, perl, buildLinux, ... } @ args: import ./generic.nix (args // rec { - version = "4.5.1"; + version = "4.5.2"; extraMeta.branch = "4.5"; src = fetchurl { url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz"; - sha256 = "0q6qkp7w5hy1ai13zgvj2982kjk81rfzd8ff7ixp3slq8bmsz07i"; + sha256 = "17r063zx880ka3ayv9cf1yjfilvxlifhja1rhw5z3w35hgdkj8z3"; }; kernelPatches = args.kernelPatches; diff --git a/pkgs/os-specific/linux/kernel/linux-testing.nix b/pkgs/os-specific/linux/kernel/linux-testing.nix index ea9eb4d551b0..fb1bf73ad0ec 100644 --- a/pkgs/os-specific/linux/kernel/linux-testing.nix +++ b/pkgs/os-specific/linux/kernel/linux-testing.nix @@ -1,13 +1,13 @@ { stdenv, fetchurl, perl, buildLinux, ... } @ args: import ./generic.nix (args // rec { - version = "4.6-rc3"; - modDirVersion = "4.6.0-rc3"; + version = "4.6-rc4"; + modDirVersion = "4.6.0-rc4"; extraMeta.branch = "4.6"; src = fetchurl { url = "mirror://kernel/linux/kernel/v4.x/testing/linux-${version}.tar.xz"; - sha256 = "1vhvhbldk5pvwxhdndyzvyqy5mscpnlz09sfyh2c9rk6wc1hc8xv"; + sha256 = "1c6y6ry8nll8mab0xwwkmpwzp2k4rbp7jl3f4ihi7g2kv2678cbp"; }; features.iwlwifi = true; diff --git a/pkgs/os-specific/linux/klibc/default.nix b/pkgs/os-specific/linux/klibc/default.nix index b948dbff2c1d..a4c7f644be1d 100644 --- a/pkgs/os-specific/linux/klibc/default.nix +++ b/pkgs/os-specific/linux/klibc/default.nix @@ -1,16 +1,15 @@ -{ stdenv, fetchurl, kernelHeaders, kernel, perl }: +{ stdenv, fetchurl, linuxHeaders, perl }: let - version = "2.0.4"; - commonMakeFlags = [ "prefix=$(out)" "SHLIBDIR=$(out)/lib" ]; in -stdenv.mkDerivation { - name = "klibc-${version}-${kernel.version}"; +stdenv.mkDerivation rec { + name = "klibc-${version}"; + version = "2.0.4"; src = fetchurl { url = "mirror://kernel/linux/libs/klibc/2.0/klibc-${version}.tar.xz"; @@ -23,13 +22,13 @@ stdenv.mkDerivation { makeFlags = commonMakeFlags ++ [ "KLIBCARCH=${stdenv.platform.kernelArch}" - "KLIBCKERNELSRC=${kernelHeaders}" + "KLIBCKERNELSRC=${linuxHeaders}" ] ++ stdenv.lib.optional (stdenv.platform.kernelArch == "arm") "CONFIG_AEABI=y"; crossAttrs = { makeFlags = commonMakeFlags ++ [ "KLIBCARCH=${stdenv.cross.platform.kernelArch}" - "KLIBCKERNELSRC=${kernelHeaders.crossDrv}" + "KLIBCKERNELSRC=${linuxHeaders.crossDrv}" "CROSS_COMPILE=${stdenv.cross.config}-" ] ++ stdenv.lib.optional (stdenv.cross.platform.kernelArch == "arm") "CONFIG_AEABI=y"; }; @@ -41,7 +40,7 @@ stdenv.mkDerivation { cp $(find $(find . -name static) -type f ! -name "*.g" -a ! -name ".*") $dir/ cp usr/dash/sh $dir/ - for file in ${kernelHeaders}/include/*; do + for file in ${linuxHeaders}/include/*; do ln -sv $file $out/lib/klibc/include done ''; diff --git a/pkgs/os-specific/linux/mcelog/default.nix b/pkgs/os-specific/linux/mcelog/default.nix index cd2cd511435f..254a5ce4e287 100644 --- a/pkgs/os-specific/linux/mcelog/default.nix +++ b/pkgs/os-specific/linux/mcelog/default.nix @@ -2,10 +2,10 @@ stdenv.mkDerivation rec { name = "mcelog-${version}"; - version = "135"; + version = "136"; src = fetchFromGitHub { - sha256 = "1bkbcb2zz7x7q893f1r8bm783jb3v7ww1yqys1hmqzn40hdwfr8p"; + sha256 = "0bk46vi39cifahqwrkzivqf4fr34aqfip960x7awks9hiil8skwr"; rev = "v${version}"; repo = "mcelog"; owner = "andikleen"; diff --git a/pkgs/servers/http/apache-httpd/2.4.nix b/pkgs/servers/http/apache-httpd/2.4.nix index a39d0e8e3158..f69001da08ac 100644 --- a/pkgs/servers/http/apache-httpd/2.4.nix +++ b/pkgs/servers/http/apache-httpd/2.4.nix @@ -1,7 +1,7 @@ { stdenv, fetchurl, perl, zlib, apr, aprutil, pcre, libiconv , proxySupport ? true , sslSupport ? true, openssl -, http2Support ? true, libnghttp2 +, http2Support ? true, nghttp2 , ldapSupport ? true, openldap , libxml2Support ? true, libxml2 , luaSupport ? false, lua5 @@ -13,7 +13,7 @@ in assert sslSupport -> aprutil.sslSupport && openssl != null; assert ldapSupport -> aprutil.ldapSupport && openldap != null; -assert http2Support -> libnghttp2 != null; +assert http2Support -> nghttp2 != null; stdenv.mkDerivation rec { version = "2.4.18"; @@ -32,7 +32,7 @@ stdenv.mkDerivation rec { optional sslSupport openssl ++ optional ldapSupport openldap ++ # there is no --with-ldap flag optional libxml2Support libxml2 ++ - optional http2Support libnghttp2 ++ + optional http2Support nghttp2 ++ optional stdenv.isDarwin libiconv; patchPhase = '' @@ -59,7 +59,7 @@ stdenv.mkDerivation rec { --enable-cgi ${optionalString proxySupport "--enable-proxy"} ${optionalString sslSupport "--enable-ssl"} - ${optionalString http2Support "--enable-http2 --with-nghttp2=${libnghttp2}"} + ${optionalString http2Support "--enable-http2 --with-nghttp2"} ${optionalString luaSupport "--enable-lua --with-lua=${lua5}"} ${optionalString libxml2Support "--with-libxml2=${libxml2.dev}/include/libxml2"} --docdir=$(doc)/share/doc diff --git a/pkgs/servers/ldap/389/default.nix b/pkgs/servers/ldap/389/default.nix index 685d365ed185..95dc5ab86790 100644 --- a/pkgs/servers/ldap/389/default.nix +++ b/pkgs/servers/ldap/389/default.nix @@ -33,7 +33,7 @@ stdenv.mkDerivation rec { configureFlags = [ "--sysconfdir=/etc" "--localstatedir=/var" - "--with-openldap=${openldap}" + "--with-openldap" "--with-db=${db}" "--with-sasl=${cyrus_sasl}" "--with-netsnmp=${net_snmp}" diff --git a/pkgs/servers/openxpki/default.nix b/pkgs/servers/openxpki/default.nix index dd1ed7c473b7..12ed3f56d9f4 100644 --- a/pkgs/servers/openxpki/default.nix +++ b/pkgs/servers/openxpki/default.nix @@ -50,7 +50,10 @@ buildPerlPackage { lib libapreq2 libnet podlators threads threadsshared version ]; preConfigure = '' - export OPENSSL_PREFIX=${openssl} + substituteInPlace core/server/Makefile.PL \ + --replace "my \$openssl_inc_dir = ''';" "my \$openssl_inc_dir = '${openssl}/include';" \ + --replace "my \$openssl_lib_dir = ''';" "my \$openssl_lib_dir = '${openssl.out}/lib';" \ + --replace "my \$openssl_binary = ''';" "my \$openssl_binary = '${openssl.bin}/bin/openssl';" substituteInPlace tools/vergen --replace "#!/usr/bin/perl" "#!${perl}/bin/perl" cp ${./vergen_revision_state} .vergen_revision_state cd core/server diff --git a/pkgs/servers/sql/mariadb/default.nix b/pkgs/servers/sql/mariadb/default.nix index 6091703c52cd..c8f25b6f09db 100644 --- a/pkgs/servers/sql/mariadb/default.nix +++ b/pkgs/servers/sql/mariadb/default.nix @@ -19,7 +19,8 @@ stdenv.mkDerivation rec { # temporary due to https://mariadb.atlassian.net/browse/MDEV-9000 (if stdenv.is64bit then snappy else null) pcre libxml2 boost judy bison libevent cracklib - ] ++ stdenv.lib.optionals stdenv.isLinux [ jemalloc libaio systemd numactl ] + ] ++ stdenv.lib.optionals stdenv.isLinux [ jemalloc libaio systemd ] + ++ stdenv.lib.optionals (stdenv.isLinux && !stdenv.isArm) [ numactl ] ++ stdenv.lib.optionals stdenv.isDarwin [ perl fixDarwinDylibNames cctools CoreServices ]; patches = stdenv.lib.optional stdenv.isDarwin ./my_context_asm.patch; @@ -103,15 +104,6 @@ stdenv.mkDerivation rec { mv $out/lib $lib mv $out/include $lib - '' - + stdenv.lib.optionalString stdenv.isDarwin '' - # Fix library rpaths - # TODO: put this in the stdenv to prepare for wide usage of multi-output derivations - for file in $(grep -rl $out/lib $lib); do - install_name_tool -delete_rpath $out/lib -add_rpath $lib $file - done - - '' + '' # Fix the mysql_config sed -i $out/bin/mysql_config \ -e 's,-lz,-L${zlib.out}/lib -lz,g' \ diff --git a/pkgs/shells/fish/default.nix b/pkgs/shells/fish/default.nix index 6b4a91e90142..5bb7100a620f 100644 --- a/pkgs/shells/fish/default.nix +++ b/pkgs/shells/fish/default.nix @@ -50,7 +50,7 @@ stdenv.mkDerivation rec { --replace "| ul" "| ${utillinux}/bin/ul" for cur in $out/share/fish/functions/*.fish; do - substituteInPlace "$cur" --replace "/usr/bin/getent" "${glibc}/bin/getent" + substituteInPlace "$cur" --replace "/usr/bin/getent" "${glibc.bin}/bin/getent" done '' + stdenv.lib.optionalString (!stdenv.isDarwin) '' sed -i "s|(hostname\||(${nettools}/bin/hostname\||" "$out/share/fish/functions/fish_prompt.fish" diff --git a/pkgs/stdenv/darwin/default.nix b/pkgs/stdenv/darwin/default.nix index 22e86c461fa9..09d9ed23b3f8 100644 --- a/pkgs/stdenv/darwin/default.nix +++ b/pkgs/stdenv/darwin/default.nix @@ -298,7 +298,7 @@ in rec { allowedRequisites = (with pkgs; [ xz.out xz.bin libcxx libcxxabi icu.out gmp.out gnumake findutils bzip2.out - bzip2.bin llvm zlib.out zlib.dev libffi.out coreutils ed diffutils gnutar + bzip2.bin llvmPackages.llvm zlib.out zlib.dev libffi.out coreutils ed diffutils gnutar gzip ncurses.out ncurses.dev ncurses.man gnused bash gawk gnugrep llvmPackages.clang-unwrapped patch pcre.out binutils-raw.out binutils-raw.dev binutils gettext diff --git a/pkgs/stdenv/linux/make-bootstrap-tools.nix b/pkgs/stdenv/linux/make-bootstrap-tools.nix index 118eef57ffe3..8ffeebaa962e 100644 --- a/pkgs/stdenv/linux/make-bootstrap-tools.nix +++ b/pkgs/stdenv/linux/make-bootstrap-tools.nix @@ -10,6 +10,8 @@ rec { aclSupport = false; }); + tarMinimal = gnutar.override { acl = null; }; + busyboxMinimal = busybox.override { useMusl = true; enableStatic = true; @@ -56,9 +58,9 @@ rec { # glibc can contain linker scripts: find them, copy their deps, # and get rid of absolute paths (nuke-refs would make them useless) local lScripts=$(grep --files-with-matches --max-count=1 'GNU ld script' -R "$out/lib") - cp -d -t "$out/lib/" $(cat $lScripts | tr " " "\n" | grep -F '${glibc}' | sort -u) + cp -d -t "$out/lib/" $(cat $lScripts | tr " " "\n" | grep -F '${glibc.out}' | sort -u) for f in $lScripts; do - substituteInPlace "$f" --replace '${glibc}/lib/' "" + substituteInPlace "$f" --replace '${glibc.out}/lib/' "" done # Hopefully we won't need these. @@ -68,33 +70,33 @@ rec { mv $out/include $out/include-glibc # Copy coreutils, bash, etc. - cp ${coreutilsMinimal}/bin/* $out/bin + cp ${coreutilsMinimal.out}/bin/* $out/bin (cd $out/bin && rm vdir dir sha*sum pinky factor pathchk runcon shuf who whoami shred users) - cp ${bash}/bin/bash $out/bin - cp ${findutils}/bin/find $out/bin - cp ${findutils}/bin/xargs $out/bin - cp -d ${diffutils}/bin/* $out/bin - cp -d ${gnused}/bin/* $out/bin - cp -d ${gnugrep}/bin/grep $out/bin - cp ${gawk}/bin/gawk $out/bin - cp -d ${gawk}/bin/awk $out/bin - cp ${gnutar}/bin/tar $out/bin - cp ${gzip}/bin/gzip $out/bin + cp ${bash.out}/bin/bash $out/bin + cp ${findutils.out}/bin/find $out/bin + cp ${findutils.out}/bin/xargs $out/bin + cp -d ${diffutils.out}/bin/* $out/bin + cp -d ${gnused.out}/bin/* $out/bin + cp -d ${gnugrep.out}/bin/grep $out/bin + cp ${gawk.out}/bin/gawk $out/bin + cp -d ${gawk.out}/bin/awk $out/bin + cp ${tarMinimal.out}/bin/tar $out/bin + cp ${gzip.out}/bin/gzip $out/bin cp ${bzip2.bin}/bin/bzip2 $out/bin - cp -d ${gnumake}/bin/* $out/bin + cp -d ${gnumake.out}/bin/* $out/bin cp -d ${patch}/bin/* $out/bin cp ${patchelf}/bin/* $out/bin cp -d ${gnugrep.pcre.out}/lib/libpcre*.so* $out/lib # needed by grep # Copy what we need of GCC. - cp -d ${gcc.cc}/bin/gcc $out/bin - cp -d ${gcc.cc}/bin/cpp $out/bin - cp -d ${gcc.cc}/bin/g++ $out/bin - cp -d ${gcc.cc}/lib*/libgcc_s.so* $out/lib - cp -d ${gcc.cc}/lib*/libstdc++.so* $out/lib - cp -rd ${gcc.cc}/lib/gcc $out/lib + cp -d ${gcc.cc.out}/bin/gcc $out/bin + cp -d ${gcc.cc.out}/bin/cpp $out/bin + cp -d ${gcc.cc.out}/bin/g++ $out/bin + cp -d ${gcc.cc.lib}/lib*/libgcc_s.so* $out/lib + cp -d ${gcc.cc.lib}/lib*/libstdc++.so* $out/lib + cp -rd ${gcc.cc.out}/lib/gcc $out/lib chmod -R u+w $out/lib rm -f $out/lib/gcc/*/*/include*/linux rm -f $out/lib/gcc/*/*/include*/sound @@ -102,16 +104,16 @@ rec { rm -f $out/lib/gcc/*/*/include-fixed/asm rm -rf $out/lib/gcc/*/*/plugin #rm -f $out/lib/gcc/*/*/*.a - cp -rd ${gcc.cc}/libexec/* $out/libexec + cp -rd ${gcc.cc.out}/libexec/* $out/libexec chmod -R u+w $out/libexec rm -rf $out/libexec/gcc/*/*/plugin mkdir $out/include - cp -rd ${gcc.cc}/include/c++ $out/include + cp -rd ${gcc.cc.out}/include/c++ $out/include chmod -R u+w $out/include rm -rf $out/include/c++/*/ext/pb_ds rm -rf $out/include/c++/*/ext/parallel - cp -d ${gmpxx}/lib/libgmp*.so* $out/lib + cp -d ${gmpxx.out}/lib/libgmp*.so* $out/lib cp -d ${mpfr.out}/lib/libmpfr*.so* $out/lib cp -d ${libmpc}/lib/libmpc*.so* $out/lib cp -d ${zlib.out}/lib/libz.so* $out/lib @@ -119,7 +121,7 @@ rec { # Copy binutils. for i in as ld ar ranlib nm strip readelf objdump; do - cp ${binutils}/bin/$i $out/bin + cp ${binutils.out}/bin/$i $out/bin done cp -d ${binutils.out}/lib/lib*.so* $out/lib diff --git a/pkgs/tools/X11/xbanish/default.nix b/pkgs/tools/X11/xbanish/default.nix new file mode 100644 index 000000000000..cbf8f3a7ff1e --- /dev/null +++ b/pkgs/tools/X11/xbanish/default.nix @@ -0,0 +1,45 @@ +{stdenv, fetchFromGitHub, libX11, libXi, libXt, libXfixes, libXext}: + +stdenv.mkDerivation rec { + version = "1.4"; + name = "xbanish-${version}"; + + buildInputs = [ + libX11 libXi libXt libXfixes libXext + ]; + + src = fetchFromGitHub { + owner = "jcs"; + repo = "xbanish"; + rev = "5cbc51a88739bc7ebe3ea3114ec423890d180146"; + sha256 = "0n5aiqfwx9ga8qjszymfmbnmygcracrgvvpmgll7mflp2jnvzq6j"; + }; + + preBuild = '' + makeFlagsArray+=("PREFIX=$out") + ''; + + preInstall = '' + mkdir -p $out/bin + mkdir -p $out/man/man1 + ''; + + meta = { + description = "Hides mouse pointer while not in use"; + longDescription = '' + xbanish hides the mouse cursor when you start typing, and shows it again when + the mouse cursor moves or a mouse button is pressed. This is similar to + xterm's pointerMode setting, but xbanish works globally in the X11 session. + + unclutter's -keystroke mode is supposed to do this, but it's broken[0]. I + looked into fixing it, but the unclutter source code is terrible, so I wrote + xbanish. + + The name comes from ratpoison's "banish" command that sends the cursor to the + corner of the screen. + ''; + license = stdenv.lib.licenses.bsd3; + maintainers = [stdenv.lib.maintainers.choochootrain]; + platforms = stdenv.lib.platforms.linux; + }; +} diff --git a/pkgs/tools/archivers/dar/default.nix b/pkgs/tools/archivers/dar/default.nix index 7f9425ce6038..92a81f9e5d67 100644 --- a/pkgs/tools/archivers/dar/default.nix +++ b/pkgs/tools/archivers/dar/default.nix @@ -1,17 +1,19 @@ -{ stdenv, fetchurl, zlib, bzip2, openssl, attr, lzo, libgcrypt, e2fsprogs, gpgme }: +{ stdenv, fetchurl, zlib, bzip2, openssl, attr, lzo, libgcrypt, e2fsprogs, gpgme, xz }: stdenv.mkDerivation rec { - name = "dar-2.5.2"; - + name = "dar-2.5.3"; + src = fetchurl { url = "mirror://sourceforge/dar/${name}.tar.gz"; - sha256 = "09p07wil0y4g6yzb9jk1ppr6pidl5fldaqnfp0ngd5n2iz3w89js"; + sha256 = "0myakyfgv2mhazwvbbwwncn9j7c9b4g3szs0aqlclmp01naaqmj5"; }; - buildInputs = [ zlib bzip2 openssl lzo libgcrypt gpgme ] + buildInputs = [ zlib bzip2 openssl lzo libgcrypt gpgme xz ] ++ stdenv.lib.optional stdenv.isLinux [ attr e2fsprogs ]; - configureFlags = "--disable-dar-static"; + configureFlags = [ "--disable-dar-static" ]; + + enableParallelBuilding = true; meta = { homepage = http://dar.linux.free.fr/; diff --git a/pkgs/tools/archivers/zpaq/default.nix b/pkgs/tools/archivers/zpaq/default.nix index 9eac9f071cb0..ba0a174ed0a8 100644 --- a/pkgs/tools/archivers/zpaq/default.nix +++ b/pkgs/tools/archivers/zpaq/default.nix @@ -3,11 +3,11 @@ let s = # Generated upstream information rec { baseName="zpaq"; - version="710"; + version="711"; name="${baseName}-${version}"; - hash="089h09rlcyag1j1i38jjzwzm69p6p4wnh6n2rsbl3p5mcvdfnwhk"; - url="http://mattmahoney.net/dc/zpaq710.zip"; - sha256="089h09rlcyag1j1i38jjzwzm69p6p4wnh6n2rsbl3p5mcvdfnwhk"; + hash="0kva9xn3rhm2xpbbq3yrx3c9y150fw434ayd82fzhr24nsjjaxsf"; + url="http://mattmahoney.net/dc/zpaq711.zip"; + sha256="0kva9xn3rhm2xpbbq3yrx3c9y150fw434ayd82fzhr24nsjjaxsf"; }; in stdenv.mkDerivation { diff --git a/pkgs/tools/backup/borg/default.nix b/pkgs/tools/backup/borg/default.nix index 79c08ec325aa..ada4ef29c84e 100644 --- a/pkgs/tools/backup/borg/default.nix +++ b/pkgs/tools/backup/borg/default.nix @@ -2,12 +2,12 @@ python3Packages.buildPythonApplication rec { name = "borgbackup-${version}"; - version = "1.0.1"; + version = "1.0.2"; namePrefix = ""; src = fetchurl { url = "https://pypi.python.org/packages/source/b/borgbackup/borgbackup-${version}.tar.gz"; - sha256 = "1fhzsj66fnyz8059k0zx8ldhyjqj73980qrz48aqwz1097kc58jq"; + sha256 = "1myz10pwxnac9z59gw1w3xjhz6ghx03vngpl97ca527pj0r39shi"; }; nativeBuildInputs = with python3Packages; [ diff --git a/pkgs/tools/inputmethods/fcitx/fcitx-qt5.nix b/pkgs/tools/inputmethods/fcitx/fcitx-qt5.nix index 428e96e8674d..ab139bdb5a76 100644 --- a/pkgs/tools/inputmethods/fcitx/fcitx-qt5.nix +++ b/pkgs/tools/inputmethods/fcitx/fcitx-qt5.nix @@ -13,7 +13,7 @@ stdenv.mkDerivation rec { preInstall = '' substituteInPlace platforminputcontext/cmake_install.cmake \ - --replace ${qtbase} $out + --replace ${qtbase.out} $out ''; meta = with stdenv.lib; { diff --git a/pkgs/tools/misc/exa/default.nix b/pkgs/tools/misc/exa/default.nix index af6f70e2f5c1..4c20719fc51a 100644 --- a/pkgs/tools/misc/exa/default.nix +++ b/pkgs/tools/misc/exa/default.nix @@ -4,15 +4,15 @@ with rustPlatform; buildRustPackage rec { name = "exa-${version}"; - version = "2016-03-22"; + version = "2016-04-11"; - depsSha256 = "18anwh235kzziq6z7md8f3rl2xl4l9d4ivsqw9grkb7yivd5j0jk"; + depsSha256 = "1rpynsni2r3gim10xc1qkj51wpbzafwsr99y61zh41v4vh047g1k"; src = fetchFromGitHub { owner = "ogham"; repo = "exa"; - rev = "8805ce9e3bcd4b56f8811a686dd56c47202cdbab"; - sha256 = "0dkvk0rsf068as6zcd01p7959rdjzm26mlkpid6z0j168gp4kh4q"; + rev = "9b87ef1da2231acef985bb08f7bd4a557167b652"; + sha256 = "1f71bqkpc6bf9jg1zxy21rzbyhzghwfmgbyyyb81ggxcri0kajwi"; }; nativeBuildInputs = [ cmake ]; diff --git a/pkgs/tools/networking/curl/default.nix b/pkgs/tools/networking/curl/default.nix index 6008afa27872..47f03cc37477 100644 --- a/pkgs/tools/networking/curl/default.nix +++ b/pkgs/tools/networking/curl/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, pkgconfig, perl -, http2Support ? true, libnghttp2 +, http2Support ? true, nghttp2 , idnSupport ? false, libidn ? null , ldapSupport ? false, openldap ? null , zlibSupport ? false, zlib ? null @@ -9,7 +9,7 @@ , c-aresSupport ? false, c-ares ? null }: -assert http2Support -> libnghttp2 != null; +assert http2Support -> nghttp2 != null; assert idnSupport -> libidn != null; assert ldapSupport -> openldap != null; assert zlibSupport -> zlib != null; @@ -33,7 +33,7 @@ stdenv.mkDerivation rec { # "-lz -lssl", which aren't necessary direct build inputs of # applications that use Curl. propagatedBuildInputs = with stdenv.lib; - optional http2Support libnghttp2 ++ + optional http2Support nghttp2 ++ optional idnSupport libidn ++ optional ldapSupport openldap ++ optional zlibSupport zlib ++ @@ -51,7 +51,6 @@ stdenv.mkDerivation rec { configureFlags = [ "--with-ca-bundle=/etc/ssl/certs/ca-certificates.crt" "--disable-manual" - ( if http2Support then "--with-nghttp2=${libnghttp2}" else "--without-nghttp2" ) ( if sslSupport then "--with-ssl=${openssl}" else "--without-ssl" ) ( if scpSupport then "--with-libssh2=${libssh2}" else "--without-libssh2" ) ( if ldapSupport then "--enable-ldap" else "--disable-ldap" ) diff --git a/pkgs/tools/networking/sipsak/default.nix b/pkgs/tools/networking/sipsak/default.nix index 7242417bf2be..1149d9aa8e4e 100644 --- a/pkgs/tools/networking/sipsak/default.nix +++ b/pkgs/tools/networking/sipsak/default.nix @@ -10,6 +10,8 @@ stdenv.mkDerivation rec { c-ares ]; + NIX_CFLAGS_COMPILE = "--std=gnu89"; + src = fetchurl { url = "https://github.com/sipwise/sipsak/archive/mr${version}.tar.gz"; sha256 = "769fe59966b1962b67aa35aad7beb9a2110ebdface36558072a05c6405fb5374"; diff --git a/pkgs/tools/package-management/nix/default.nix b/pkgs/tools/package-management/nix/default.nix index 16078906bc2b..bf3f8aed712b 100644 --- a/pkgs/tools/package-management/nix/default.nix +++ b/pkgs/tools/package-management/nix/default.nix @@ -9,7 +9,7 @@ let common = { name, src }: stdenv.mkDerivation rec { inherit name src; - outputs = [ "out" "man" "doc" ]; + outputs = [ "dev" "out" "man" "doc" ]; nativeBuildInputs = [ perl pkgconfig ]; diff --git a/pkgs/tools/security/softhsm/default.nix b/pkgs/tools/security/softhsm/default.nix new file mode 100644 index 000000000000..4bd199686763 --- /dev/null +++ b/pkgs/tools/security/softhsm/default.nix @@ -0,0 +1,31 @@ +{ stdenv, fetchurl, botan }: + +stdenv.mkDerivation rec { + + name = "softhsm-${version}"; + version = "2.1.0"; + + src = fetchurl { + url = "https://dist.opendnssec.org/source/${name}.tar.gz"; + sha256 = "0399b06f196fbfaebe73b4aeff2e2d65d0dc1901161513d0d6a94f031dcd827e"; + }; + + configureFlags = [ + "--with-crypto-backend=botan" + "--with-botan=${botan}" + "--sysconfdir=$out/etc" + "--localstatedir=$out/var" + ]; + + buildInputs = [ botan ]; + + postInstall = "rm -rf $out/var"; + + meta = { + homepage = https://www.opendnssec.org/softhsm; + description = "Cryptographic store accessible through a PKCS #11 interface"; + license = stdenv.lib.licenses.bsd2; + maintainers = stdenv.lib.maintainers.leenaars; + platforms = stdenv.lib.platforms.linux; + }; +} diff --git a/pkgs/tools/system/facter/default.nix b/pkgs/tools/system/facter/default.nix index c0328636536c..a90000dde87e 100644 --- a/pkgs/tools/system/facter/default.nix +++ b/pkgs/tools/system/facter/default.nix @@ -1,16 +1,16 @@ -{ stdenv, fetchurl, boost, cmake, curl, libyamlcpp, openssl, utillinux }: +{ stdenv, fetchurl, boost, cmake, curl, leatherman, libyamlcpp, openssl, utillinux }: stdenv.mkDerivation rec { name = "facter-${version}"; - version = "3.1.3"; + version = "3.1.5"; src = fetchurl { url = "https://downloads.puppetlabs.com/facter/${name}.tar.gz"; - sha256 = "1ngp3xjdh6x1w7lsi4lji2xzqp0x950jngcdlq11lcr0wfnzwyxj"; + sha256 = "0k2k92y42zb6vf542zwkhvg15kv32yb4zvw6nlcqlgmyg19c5qmv"; }; libyamlcpp_ = libyamlcpp.override { makePIC = true; }; - buildInputs = [ boost cmake curl libyamlcpp_ openssl utillinux ]; + buildInputs = [ boost cmake curl leatherman libyamlcpp_ openssl utillinux ]; meta = with stdenv.lib; { homepage = https://github.com/puppetlabs/facter; diff --git a/pkgs/tools/system/netdata/default.nix b/pkgs/tools/system/netdata/default.nix index 2993e14c43c7..28ec7f1be427 100644 --- a/pkgs/tools/system/netdata/default.nix +++ b/pkgs/tools/system/netdata/default.nix @@ -13,6 +13,8 @@ stdenv.mkDerivation rec{ buildInputs = [ autoreconfHook zlib pkgconfig ]; + patches = [ ./web_access.patch ]; + meta = with stdenv.lib; { description = "Real-time performance monitoring tool"; homepage = http://netdata.firehol.org; diff --git a/pkgs/tools/system/netdata/web_access.patch b/pkgs/tools/system/netdata/web_access.patch new file mode 100644 index 000000000000..3c0fbf7507d7 --- /dev/null +++ b/pkgs/tools/system/netdata/web_access.patch @@ -0,0 +1,19 @@ +--- a/src/web_client.c.orig 2016-04-17 11:34:20.044455323 +0200 ++++ b/src/web_client.c 2016-04-17 11:34:47.432897957 +0200 +@@ -291,14 +291,14 @@ + buffer_sprintf(w->response.data, "File '%s' does not exist, or is not accessible.", filename); + return 404; + } +- ++#if 0 + // check if the file is owned by us + if(stat.st_uid != web_files_uid()) { + error("%llu: File '%s' is owned by user %d (I run as user %d). Access Denied.", w->id, webfilename, stat.st_uid, getuid()); + buffer_sprintf(w->response.data, "Access to file '%s' is not permitted.", filename); + return 403; + } +- ++#endif + if((stat.st_mode & S_IFMT) == S_IFDIR) { + snprintf(webfilename, FILENAME_MAX+1, "%s/index.html", filename); + return mysendfile(w, webfilename); diff --git a/pkgs/tools/typesetting/tex/texlive-new/default.nix b/pkgs/tools/typesetting/tex/texlive-new/default.nix index a2f0bf706c87..718137a6251f 100644 --- a/pkgs/tools/typesetting/tex/texlive-new/default.nix +++ b/pkgs/tools/typesetting/tex/texlive-new/default.nix @@ -114,11 +114,15 @@ let ("${mirror}/pub/tex/historic/systems/texlive/${bin.texliveYear}/tlnet-final/archive"); # beware: standard mirrors http://mirror.ctan.org/ don't have releases mirror = "http://ftp.math.utah.edu"; # ftp://tug.ctan.org no longer works, although same IP - in '' - tar -xf '${ fetchurl { inherit url md5; } }' \ + in + rec { + src = fetchurl { inherit url md5; }; + unpackCmd = '' + tar -xf '${src}' \ '--strip-components=${toString stripPrefix}' \ -C "$out" --anchored --exclude=tlpkg --keep-old-files '' + postUnpack; + }; # create a derivation that contains unpacked upstream TL packages mkPkgs = { pname, tlType, version, pkgList }@args: @@ -129,10 +133,14 @@ let let tlName = "${mkUrlName args}-${version}"; fixedHash = fixedHashes.${tlName} or null; # be graceful about missing hashes + pkgs = map unpackPkg (fastUnique (a: b: a.md5 < b.md5) pkgList); in runCommand "texlive-${tlName}" ( { # lots of derivations, not meant to be cached preferLocalBuild = true; allowSubstitutes = false; - passthru = { inherit pname tlType version; }; + passthru = { + inherit pname tlType version; + srcs = map (pkg: pkg.src) pkgs; + }; } // lib.optionalAttrs (fixedHash != null) { outputHash = fixedHash; outputHashAlgo = "sha1"; @@ -141,7 +149,7 @@ let ) ( '' mkdir "$out" - '' + lib.concatMapStrings unpackPkg (fastUnique (a: b: a.md5 < b.md5) pkgList) + '' + lib.concatMapStrings (pkg: pkg.unpackCmd) pkgs ); # combine a set of TL packages into a single TL meta-package diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 8714f6580321..8132ccd5aa51 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -523,6 +523,8 @@ in qt4Support = config.avahi.qt4Support or false; }; + avro-cpp = callPackage ../development/libraries/avro-c++ { }; + aws = callPackage ../tools/virtualization/aws { }; aws_mturk_clt = callPackage ../tools/misc/aws-mturk-clt { }; @@ -2195,6 +2197,8 @@ in leafpad = callPackage ../applications/editors/leafpad { }; + leatherman = callPackage ../development/libraries/leatherman {}; + leela = callPackage ../tools/graphics/leela { }; lftp = callPackage ../tools/networking/lftp { }; @@ -3228,6 +3232,8 @@ in snort = callPackage ../applications/networking/ids/snort { }; + softhsm = callPackage ../tools/security/softhsm { }; + solr = callPackage ../servers/search/solr { }; solvespace = callPackage ../applications/graphics/solvespace { }; @@ -3670,6 +3676,8 @@ in xarchiver = callPackage ../tools/archivers/xarchiver { }; + xbanish = callPackage ../tools/X11/xbanish { }; + xbrightness = callPackage ../tools/X11/xbrightness { }; xfstests = callPackage ../tools/misc/xfstests { }; @@ -5243,6 +5251,8 @@ in angelscript = callPackage ../development/interpreters/angelscript {}; + angelscript_2_22 = callPackage ../development/interpreters/angelscript/2.22.nix {}; + chibi = callPackage ../development/interpreters/chibi { }; ceptre = callPackage ../development/interpreters/ceptre { }; @@ -6060,6 +6070,8 @@ in jenkins-job-builder = pythonPackages.jenkins-job-builder; + kconfig-frontends = callPackage ../development/tools/misc/kconfig-frontends { }; + kcov = callPackage ../development/tools/analysis/kcov { }; lcov = callPackage ../development/tools/analysis/lcov { }; @@ -7530,7 +7542,9 @@ in libechonest = callPackage ../development/libraries/libechonest { }; - libev = callPackage ../development/libraries/libev { }; + libev = callPackage ../development/libraries/libev { + fetchurl = fetchurlBoot; + }; libevent = callPackage ../development/libraries/libevent { }; @@ -8248,6 +8262,8 @@ in mythes = callPackage ../development/libraries/mythes { }; + nanoflann = callPackage ../development/libraries/nanoflann { }; + nanomsg = callPackage ../development/libraries/nanomsg { }; notify-sharp = callPackage ../development/libraries/notify-sharp { }; @@ -8270,11 +8286,10 @@ in newt = callPackage ../development/libraries/newt { }; - nghttp2 = callPackage ../development/libraries/nghttp2 { }; - libnghttp2 = self.nghttp2.override { - prefix = "lib"; + nghttp2 = callPackage ../development/libraries/nghttp2 { fetchurl = fetchurlBoot; }; + libnghttp2 = nghttp2.lib; nix-plugins = callPackage ../development/libraries/nix-plugins { nix = pkgs.nixUnstable; @@ -8524,6 +8539,9 @@ in # XXX: mariadb doesn't built on fbsd as of nov 2015 mysql = if (!stdenv.isFreeBSD) then mysql else null; + + inherit (pkgs.darwin) cf-private libobjc; + inherit (pkgs.darwin.apple_sdk.frameworks) ApplicationServices OpenGL Cocoa AGL; }; qt48Full = appendToName "full" (qt48.override { @@ -10110,7 +10128,7 @@ in microcodeIntel = callPackage ../os-specific/linux/microcode/intel.nix { }; - inherit (callPackages ../os-specific/linux/apparmor { swig = swig2; }) + inherit (callPackages ../os-specific/linux/apparmor { pythonPackages = python27Packages; swig = swig2; }) libapparmor apparmor-pam apparmor-parser apparmor-profiles apparmor-utils; atop = callPackage ../os-specific/linux/atop { }; @@ -10414,6 +10432,10 @@ in kernelPatches = callPackage ../os-specific/linux/kernel/patches.nix { }; + klibc = callPackage ../os-specific/linux/klibc { }; + + klibcShrunk = lowPrio (callPackage ../os-specific/linux/klibc/shrunk.nix { }); + linux_mptcp = callPackage ../os-specific/linux/kernel/linux-mptcp.nix { kernelPatches = [ kernelPatches.bridge_stp_helper ] ++ lib.optionals ((platform.kernelArch or null) == "mips") @@ -10659,12 +10681,6 @@ in facetimehd = callPackage ../os-specific/linux/facetimehd { }; - kernelHeaders = callPackage ../os-specific/linux/kernel-headers { }; - - klibc = callPackage ../os-specific/linux/klibc { }; - - klibcShrunk = lowPrio (callPackage ../os-specific/linux/klibc/shrunk.nix { }); - jool = callPackage ../os-specific/linux/jool { }; mba6x_bl = callPackage ../os-specific/linux/mba6x_bl { }; @@ -11334,6 +11350,8 @@ in hack-font = callPackage ../data/fonts/hack { }; + helvetica-neue-lt-std = callPackage ../data/fonts/helvetica-neue-lt-std { }; + hicolor_icon_theme = callPackage ../data/icons/hicolor-icon-theme { }; hanazono = callPackage ../data/fonts/hanazono { }; @@ -14762,6 +14780,8 @@ in freedink = callPackage ../games/freedink { }; + freeorion = callPackage ../games/freeorion { }; + fsg = callPackage ../games/fsg { wxGTK = wxGTK28.override { unicode = false; }; }; @@ -14938,6 +14958,13 @@ in openglSupport = mesaSupported; }; + rigsofrods = callPackage ../games/rigsofrods { + angelscript = angelscript_2_22; + mygui = mygui.override { + withOgre = true; + }; + }; + rili = callPackage ../games/rili { }; rimshot = callPackage ../games/rimshot { love = love_0_7; }; @@ -16033,6 +16060,8 @@ in auctex = callPackage ../tools/typesetting/tex/auctex { }; + areca = callPackage ../applications/backup/areca { }; + beep = callPackage ../misc/beep { }; brgenml1lpr = callPackage_i686 ../misc/cups/drivers/brgenml1lpr {}; @@ -16558,7 +16587,6 @@ in higan = callPackage ../misc/emulators/higan { inherit (gnome) gtksourceview; - profile = config.higan.profile or "balanced"; }; misc = callPackage ../misc/misc.nix { }; @@ -16574,4 +16602,6 @@ in togglesg-download = callPackage ../tools/misc/togglesg-download { }; discord = callPackage ../applications/networking/instant-messengers/discord { }; + + #golden-cheetah = qt5.callPackage ../applications/misc/golden-cheetah {}; } diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index 0be8f4c5b626..941f77d9a61e 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -881,10 +881,10 @@ let }; fzf = buildFromGitHub { - rev = "0.11.1"; + rev = "0.12.0"; owner = "junegunn"; repo = "fzf"; - sha256 = "1zw1kq4d5sb1qia44q04i33yii9qwlwlwz8vxhln03d4631mhsra"; + sha256 = "0lxh8nf5xc5qnmx18h0q43iy3hy818firkz4rfkr3b0b5gd3aan1"; buildInputs = [ crypto ginkgo gomega junegunn.go-runewidth go-shellwords pkgs.ncurses text @@ -2090,7 +2090,7 @@ let }; hologram = buildGoPackage rec { - rev = "63014b81675e1228818bf36ef6ef0028bacad24b"; + rev = "8d86e3fdcbfd967ba58d8de02f5e8173c101212e"; name = "hologram-${stdenv.lib.strings.substring 0 7 rev}"; goPackagePath = "github.com/AdRoll/hologram"; @@ -2098,9 +2098,9 @@ let inherit rev; owner = "AdRoll"; repo = "hologram"; - sha256 = "0k8g7dwrkxdvmzs4aa8zz39qa8r2danc4x40hrblcgjhfcwzxrzr"; + sha256 = "0i0p170brdsczfz079mqbc5y7x7mdph04p3wgqsd7xcrddvlkkaf"; }; - buildInputs = [ crypto protobuf goamz rgbterm go-bindata go-homedir ldap g2s gox ]; + buildInputs = [ crypto protobuf goamz rgbterm go-bindata go-homedir ldap g2s gox gopass ]; }; http-authentication = buildFromGitHub { diff --git a/pkgs/top-level/haskell-packages.nix b/pkgs/top-level/haskell-packages.nix index 766c57cc5777..0060b7e37d7a 100644 --- a/pkgs/top-level/haskell-packages.nix +++ b/pkgs/top-level/haskell-packages.nix @@ -383,7 +383,10 @@ rec { lts-5_12 = packages.ghc7103.override { packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-5.12.nix { }; }; - lts-5 = packages.lts-5_12; + lts-5_13 = packages.ghc7103.override { + packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-5.13.nix { }; + }; + lts-5 = packages.lts-5_13; lts = packages.lts-5; }; diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index e8d6c1173ab0..da58b1c4cf83 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -30,6 +30,7 @@ let self = _self // overrides; _self = with self; { url = "mirror://cpan/authors/id/P/PE/PETDANCE/${name}.tar.gz"; sha256 = "0gqv30666vlclnwylhk9i64s7raa70x4ncy6bg48s5gcxwrshjc5"; }; + outputs = ["out" "doc"]; # use gnused so that the preCheck command passes buildInputs = stdenv.lib.optional stdenv.isDarwin [ gnused ]; propagatedBuildInputs = [ FileNext ]; @@ -193,7 +194,7 @@ let self = _self // overrides; _self = with self; { buildInputs = [ TestDeep TestException ]; meta = { description = "A persistence framework for session data"; - license = "perl"; + license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; }; }; @@ -243,15 +244,15 @@ let self = _self // overrides; _self = with self; { }; Appcpanminus = buildPerlPackage rec { - name = "App-cpanminus-1.7039"; + name = "App-cpanminus-1.7040"; src = fetchurl { url = "mirror://cpan/authors/id/M/MI/MIYAGAWA/${name}.tar.gz"; - sha256 = "1r34f30izvb0d124576nwg5x0jcdbzgwgxczpgbnd66g7wqdig09"; + sha256 = "fc8e5cde17cc5f4cc13aea8781c1e9425f76abc684cc720e9253f47ab3529556"; }; meta = { homepage = https://github.com/miyagawa/cpanminus; description = "Get, unpack, build and install modules from CPAN"; - license = "perl"; + license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; platforms = stdenv.lib.platforms.all; }; }; @@ -311,7 +312,7 @@ let self = _self // overrides; _self = with self; { }; meta = { description = "Simpler definition of attribute handlers"; - license = "perl"; + license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; }; }; @@ -501,7 +502,7 @@ let self = _self // overrides; _self = with self; { }; meta = { description = "Load subroutines only on demand"; - license = "perl"; + license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; }; }; @@ -526,17 +527,17 @@ let self = _self // overrides; _self = with self; { }; }; - BC = buildPerlPackage { - name = "B-C-1.52"; + BC = buildPerlPackage rec { + name = "B-C-1.54"; src = fetchurl { - url = mirror://cpan/authors/id/R/RU/RURBAN/B-C-1.52.tar.gz; - sha256 = "072b4b9e39431ad8ef5173557c26ade97f985cf150f6580a20f42dd9fc3651a7"; + url = "mirror://cpan/authors/id/R/RU/RURBAN/${name}.tar.gz"; + sha256 = "d07e5af5fb798fcd3f4eda5e40744a14c1b3ef9e585a7dca55b5db31cb1d28d3"; }; propagatedBuildInputs = [ BFlags IPCRun Opcodes ]; meta = { homepage = http://www.perl-compiler.org; description = "Perl compiler"; - license = "perl"; + license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; }; }; @@ -586,14 +587,15 @@ let self = _self // overrides; _self = with self; { }; bignum = buildPerlPackage rec { - name = "bignum-0.41"; + name = "bignum-0.42"; src = fetchurl { url = "mirror://cpan/authors/id/P/PJ/PJACKLAM/${name}.tar.gz"; - sha256 = "19bwz2yi2qf5lrhkkk8c320b5ixn0wl8662gmvq3gqzarngxf76l"; + sha256 = "5bc9a16fe6d56584cde0f183828d81466f2cfc08ec1b6ef15d25a732080a9b52"; }; + buildInputs = [ MathBigInt MathBigRat ]; meta = { description = "Transparent BigNumber support for Perl"; - license = "perl"; + license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; }; }; @@ -1174,6 +1176,32 @@ let self = _self // overrides; _self = with self; { propagatedBuildInputs = [CatalystRuntime DataVisitor ConfigAny MROCompat]; }; + CatalystPluginFormValidator = buildPerlPackage rec { + name = "Catalyst-Plugin-FormValidator-0.094"; + src = fetchurl { + url = "mirror://cpan/authors/id/D/DH/DHOSS/${name}.tar.gz"; + sha256 = "5834f11bf5c9f4b5d336d65c7ce6639b76ce7bfe7a2875eb048d7ea1c82ce05a"; + }; + propagatedBuildInputs = [ CatalystRuntime DataFormValidator MROCompat Moose ]; + meta = { + description = "Data::FormValidator"; + license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; + }; + }; + + CatalystPluginFormValidatorSimple = buildPerlPackage rec { + name = "Catalyst-Plugin-FormValidator-Simple-0.15"; + src = fetchurl { + url = "mirror://cpan/authors/id/D/DH/DHOSS/${name}.tar.gz"; + sha256 = "486c6a0e8f410fd017279f4804ab9e35ba46321d33a0a9721fe1e08a391de7a0"; + }; + propagatedBuildInputs = [ CatalystPluginFormValidator CatalystRuntime FormValidatorSimple ]; + meta = { + license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; + maintainers = [ maintainers.rycee ]; + }; + }; + CatalystPluginUnicodeEncoding = buildPerlPackage { name = "Catalyst-Plugin-Unicode-Encoding-1.9"; src = fetchurl { @@ -1791,7 +1819,8 @@ let self = _self // overrides; _self = with self; { url = "mirror://cpan/authors/id/S/SC/SCHWIGON/class-methodmaker/${name}.tar.gz"; sha256 = "0a03i4k3a33qqwhykhz5k437ld5mag2vq52vvsy03gbynb65ivsy"; }; - preConfigure = "patchShebangs ."; + # Remove unnecessary, non-autoconf, configure script. + prePatch = "rm configure"; meta = { description = "A module for creating generic methods"; license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; @@ -2628,17 +2657,16 @@ let self = _self // overrides; _self = with self; { }; }; - CryptX = buildPerlModule { - name = "CryptX-0.026"; + CryptX = buildPerlPackage rec { + name = "CryptX-0.030"; src = fetchurl { - url = mirror://cpan/authors/id/M/MI/MIK/CryptX-0.026.tar.gz; - sha256 = "0465843c86eb16b13717fde5b803c7390bb14805e277e1a1841a62e5124debc2"; + url = "mirror://cpan/authors/id/M/MI/MIK/${name}.tar.gz"; + sha256 = "b0e26b4c4de66134f1f1ae4227fdd18cf10f95cecc64a651a8af2710ef7519e5"; }; - buildInputs = [ JSONMaybeXS ]; propagatedBuildInputs = [ JSONMaybeXS ]; meta = { description = "Crypto toolkit"; - license = "perl"; + license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; }; }; @@ -2725,6 +2753,20 @@ let self = _self // overrides; _self = with self; { buildInputs = [ ModuleBuild ]; }; + DataFormValidator = buildPerlModule rec { + name = "Data-FormValidator-4.81"; + src = fetchurl { + url = "mirror://cpan/authors/id/M/MA/MARKSTOS/${name}.tar.gz"; + sha256 = "f844056231b2eeb4068cafbcab1ddf5d46cb348bd5cfb1d234421c09ee8a0de3"; + }; + buildInputs = [ CGI ModuleBuild ]; + propagatedBuildInputs = [ DateCalc EmailValid FileMMagic ImageSize MIMETypes Perl6Junction RegexpCommon ]; + meta = { + description = "Validates user input (usually from an HTML form) based on input profile"; + license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; + }; + }; + DataGUID = buildPerlPackage { name = "Data-GUID-0.048"; src = fetchurl { @@ -2735,7 +2777,7 @@ let self = _self // overrides; _self = with self; { meta = { homepage = https://github.com/rjbs/Data-GUID; description = "Globally unique identifiers"; - license = "perl"; + license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; }; }; @@ -2770,7 +2812,7 @@ let self = _self // overrides; _self = with self; { propagatedBuildInputs = [ ClassAccessor ClassReturnValue TextvFileasData ]; meta = { description = "Generates iCalendar (RFC 2445) calendar files"; - license = "perl"; + license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; }; }; @@ -2849,7 +2891,7 @@ let self = _self // overrides; _self = with self; { }; propagatedBuildInputs = [ DataPage MathRound ]; meta = { - license = "perl"; + license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; }; }; @@ -2902,6 +2944,51 @@ let self = _self // overrides; _self = with self; { }; }; + DataValidateDomain = buildPerlPackage rec { + name = "Data-Validate-Domain-0.11"; + src = fetchurl { + url = "mirror://cpan/authors/id/D/DR/DROLSKY/${name}.tar.gz"; + sha256 = "f2ae0830f423a46080b185ffc2428c9a37278167a8d19bfdeec26d977b43822c"; + }; + propagatedBuildInputs = [ NetDomainTLD ]; + meta = { + homepage = http://metacpan.org/release/Data-Validate-Domain; + description = "Domain and host name validation"; + license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; + maintainers = [ maintainers.rycee ]; + }; + }; + + DataValidateIP = buildPerlPackage rec { + name = "Data-Validate-IP-0.25"; + src = fetchurl { + url = "mirror://cpan/authors/id/D/DR/DROLSKY/${name}.tar.gz"; + sha256 = "b0386bb8aa31ed1b9b58760745eaab4d29edb0c7bdc7dc16dd5479d21f26ee3b"; + }; + buildInputs = [ TestRequires ]; + propagatedBuildInputs = [ NetAddrIP ]; + meta = { + homepage = http://metacpan.org/release/Data-Validate-IP; + description = "IPv4 and IPv6 validation methods"; + license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; + maintainers = [ maintainers.rycee ]; + }; + }; + + DataValidateURI = buildPerlPackage rec { + name = "Data-Validate-URI-0.07"; + src = fetchurl { + url = "mirror://cpan/authors/id/S/SO/SONNEN/${name}.tar.gz"; + sha256 = "f06418d2a4603913d1b6ce52b167dd13e787e13bf2be325a065df7d408f79c60"; + }; + propagatedBuildInputs = [ DataValidateDomain DataValidateIP ]; + meta = { + description = "Common URL validation methods"; + license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; + maintainers = [ maintainers.rycee ]; + }; + }; + DataVisitor = buildPerlPackage rec { name = "Data-Visitor-0.30"; src = fetchurl { @@ -3023,7 +3110,7 @@ let self = _self // overrides; _self = with self; { propagatedBuildInputs = [ DateTime DateTimeTimeZone TimeDate ]; meta = { description = "Parses Date::Parse compatible formats"; - license = "perl"; + license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; }; }; @@ -3035,8 +3122,8 @@ let self = _self // overrides; _self = with self; { }; propagatedBuildInputs = [ DateTime DateTimeFormatBuilder DateTimeTimeZone ListMoreUtils ModulePluggable TestMockTime ]; meta = { - description = "DateTime::Format::Flexible - Flexibly parse strings and turn them into DateTime objects"; - license = "perl"; + description = "Flexibly parse strings and turn them into DateTime objects"; + license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; }; }; @@ -3091,7 +3178,7 @@ let self = _self // overrides; _self = with self; { propagatedBuildInputs = [ DateTime ParamsValidate ]; meta = { description = "Convert between DateTime and RFC2822/822 formats"; - license = "perl"; + license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; }; }; @@ -3171,7 +3258,7 @@ let self = _self // overrides; _self = with self; { meta = { homepage = http://search.cpan.org/dist/DateTime-Format-W3CDTF/; description = "Parse and format W3CDTF datetime strings"; - license = "perl"; + license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; }; }; @@ -3190,28 +3277,29 @@ let self = _self // overrides; _self = with self; { }; }; - DateTimeSet = buildPerlPackage { - name = "DateTime-Set-0.3400"; + DateTimeSet = buildPerlPackage rec { + name = "DateTime-Set-0.3600"; src = fetchurl { - url = mirror://cpan/authors/id/F/FG/FGLOCK/DateTime-Set-0.3400.tar.gz; - sha256 = "1b27699zkj68w5ll9chjhs52vmf39f9via6x5r5844as30qh9zxb"; + url = "mirror://cpan/authors/id/F/FG/FGLOCK/${name}.tar.gz"; + sha256 = "83503960c773efadfe2b0255e61bc1eb531bb6f497463d3b3880d7a516bc2f13"; }; propagatedBuildInputs = [ DateTime SetInfinite ]; meta = { description = "DateTime set objects"; - license = "perl"; + license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; }; }; DateTimeTimeZone = buildPerlPackage rec { - name = "DateTime-TimeZone-1.94"; + name = "DateTime-TimeZone-1.97"; src = fetchurl { url = "mirror://cpan/authors/id/D/DR/DROLSKY/${name}.tar.gz"; - sha256 = "1crn4n6izzw2r0ymcb7px9b1bkis8hzczs48skk7szvs3svn3naz"; + sha256 = "68a5f4b0a77074f9cc96b2c1d2282e2110db74f55e43fbad72926cee0fd434c8"; }; buildInputs = [ TestFatal TestRequires ]; propagatedBuildInputs = [ ClassSingleton ListAllUtils ModuleRuntime ParamsValidate TryTiny ]; meta = { + homepage = http://metacpan.org/release/DateTime-TimeZone; description = "Time zone object base class and factory"; license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; }; @@ -3284,8 +3372,8 @@ let self = _self // overrides; _self = with self; { }; meta = { homepage = http://search.cpan.org/dist/Devel-DProf; - description = "A B Perl code profiler"; - license = "perl"; + description = "A DEPRECATED Perl code profiler"; + license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; }; }; @@ -3303,15 +3391,15 @@ let self = _self // overrides; _self = with self; { }; }; - DevelPPPort = buildPerlPackage { - name = "Devel-PPPort-3.31"; + DevelPPPort = buildPerlPackage rec { + name = "Devel-PPPort-3.32"; src = fetchurl { - url = mirror://cpan/authors/id/W/WO/WOLFSAGE/Devel-PPPort-3.31.tar.gz; - sha256 = "ead2c49f0442a26890723231a92d3c0ac6ac297b814839e421a77d7889a2471d"; + url = "mirror://cpan/authors/id/W/WO/WOLFSAGE/${name}.tar.gz"; + sha256 = "257801ef441f317bc79d20cdc72344e5b4ff6f685d65bdf79ff153e733fa3856"; }; meta = { description = "Perl/Pollution/Portability"; - license = "perl"; + license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; }; }; @@ -3324,7 +3412,7 @@ let self = _self // overrides; _self = with self; { meta = { homepage = http://search.cpan.org/dist/Devel-SelfStubber; description = "Generate stubs for a SelfLoading module"; - license = "perl"; + license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; }; }; @@ -3477,17 +3565,18 @@ let self = _self // overrides; _self = with self; { }; }; - DBIxClassSchemaLoader = buildPerlPackage { - name = "DBIx-Class-Schema-Loader-0.07043"; + DBIxClassSchemaLoader = buildPerlPackage rec { + name = "DBIx-Class-Schema-Loader-0.07045"; src = fetchurl { - url = mirror://cpan/authors/id/I/IL/ILMARI/DBIx-Class-Schema-Loader-0.07043.tar.gz; - sha256 = "01944d429a420fcb961aa4ab002f884f3d54529b3346816502c27d31c956194d"; + url = "mirror://cpan/authors/id/I/IL/ILMARI/${name}.tar.gz"; + sha256 = "b132c667aa7dfe6f054e097c3e572a7dbf8ad433500f085e372740d5bc23a440"; }; buildInputs = [ ConfigAny ConfigGeneral DBDSQLite DBIxClassIntrospectableM2M Moose MooseXMarkAsMethods MooseXNonMoose TestDeep TestDifferences TestException TestPod TestWarn namespaceautoclean ]; propagatedBuildInputs = [ CarpClan ClassAccessorGrouped ClassC3Componentised ClassInspector ClassUnload DBIxClass DataDump HashMerge LinguaENInflectNumber LinguaENInflectPhrase LinguaENTagger MROCompat ScalarListUtils ScopeGuard StringCamelCase StringToIdentifierEN TryTiny namespaceclean ]; meta = { description = "Create a DBIx::Class::Schema based on a database"; - license = "perl"; + license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; + maintainers = [ maintainers.rycee ]; }; }; @@ -4286,6 +4375,19 @@ let self = _self // overrides; _self = with self; { doCheck = false; }; + EmailValidLoose = buildPerlPackage rec { + name = "Email-Valid-Loose-0.05"; + src = fetchurl { + url = "mirror://cpan/authors/id/M/MI/MIYAGAWA/${name}.tar.gz"; + sha256 = "e718e76eddee240251c999e139c8cbe6f2cc80192da5af875cbd12fa8ab93a59"; + }; + propagatedBuildInputs = [ EmailValid ]; + meta = { + license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; + maintainers = [ maintainers.rycee ]; + }; + }; + Encode = buildPerlPackage { name = "Encode-2.78"; src = fetchurl { @@ -4955,6 +5057,18 @@ let self = _self // overrides; _self = with self; { propagatedBuildInputs = [ FileBaseDir FileDesktopEntry ]; }; + FileMMagic = buildPerlPackage rec { + name = "File-MMagic-1.30"; + src = fetchurl { + url = "mirror://cpan/authors/id/K/KN/KNOK/${name}.tar.gz"; + sha256 = "cf0c1b1eb29705c02d97c2913648009c0be42ce93ec24b36c696bf2d4f5ebd7e"; + }; + meta = { + description = "Guess file type from contents"; + license = stdenv.lib.licenses.free; # Some form of BSD4/Apache mix. + }; + }; + FileModified = buildPerlPackage { name = "File-Modified-0.07"; src = fetchurl { @@ -5162,7 +5276,9 @@ let self = _self // overrides; _self = with self; { url = "mirror://cpan/authors/id/E/EC/ECOCODE/${name}.tar.gz"; sha256 = "0zhqb27y4vdxn476s2kwm9zl2f970yjcyyybnjm9b406krr2fm59"; }; - propagatedBuildInputs = [ CGI CryptSSLeay HTMLTableExtract HTMLTree HTTPMessage LWP DateCalc DateTime JSON ]; + propagatedBuildInputs = [ + CGI CryptSSLeay HTMLTableExtract HTMLTree HTTPMessage LWP LWPProtocolHttps MozillaCA + DateCalc DateTime JSON ]; meta = with stdenv.lib; { homepage = http://finance-quote.sourceforge.net/; description = "Get stock and mutual fund quotes from various exchanges"; @@ -5204,6 +5320,20 @@ let self = _self // overrides; _self = with self; { }; }; + FormValidatorSimple = buildPerlPackage rec { + name = "FormValidator-Simple-0.29"; + src = fetchurl { + url = "mirror://cpan/authors/id/L/LY/LYOKATO/${name}.tar.gz"; + sha256 = "fc3a63dc54b962d74586070176adaf5be869f09b561bb30f5fd32ef531792666"; + }; + propagatedBuildInputs = [ CGI ClassAccessor ClassDataAccessor ClassDataInheritable ClassInspector DateCalc DateTimeFormatStrptime EmailValid EmailValidLoose ListMoreUtils MailTools TieIxHash UNIVERSALrequire YAML ]; + meta = { + description = "Validation with simple chains of constraints"; + license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; + maintainers = [ maintainers.rycee ]; + }; + }; + FreezeThaw = buildPerlPackage { name = "FreezeThaw-0.5001"; src = fetchurl { @@ -7200,10 +7330,15 @@ let self = _self // overrides; _self = with self; { }; MathBigInt = buildPerlPackage rec { - name ="Math-BigInt-1.9993"; + name = "Math-BigInt-1.999717"; src = fetchurl { - url = "mirror://cpan/authors/id/P/PJ/PJACKLAM/${name}.tar.gz"; - sha256 = "0zmzd4d2sjnhg5cdnqvqj78w5dkickszlxv1csdxsgdvmz8w0dyr"; + url = "mirror://cpan/authors/id/P/PJ/PJACKLAM/${name}.tar.gz"; + sha256 = "871c936cbd943b95c5561b82f077cbb1bbb4c85bdae14b668eca985e2a051fb6"; + }; + meta = { + description = "Arbitrary size integer/float math package"; + license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; + maintainers = [ maintainers.rycee ]; }; }; @@ -7220,14 +7355,15 @@ let self = _self // overrides; _self = with self; { }; MathBigRat = buildPerlPackage rec { - name = "Math-BigRat-0.260801"; + name = "Math-BigRat-0.260802"; src = fetchurl { url = "mirror://cpan/authors/id/P/PJ/PJACKLAM/${name}.tar.gz"; - sha256 = "0ghzz7qzfvp70ywvb2vnvr06l62sx1bcjbrjyara0pmqdnvpysar"; + sha256 = "1b1ed448c355677bf6403705f8428fee5bdf2bb138a3fe721bf51414c1695508"; }; meta = { description = "Arbitrary big rational numbers"; - license = "perl"; + license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; + maintainers = [ maintainers.rycee ]; }; }; @@ -8615,6 +8751,7 @@ let self = _self // overrides; _self = with self; { version = "1.5.3"; USE_OPENLDAP = 1; LDAPSDKDIR = pkgs.openldap; + LDAPSDKLIBDIR = "${pkgs.openldap.out}/lib"; src = fetchurl { url = "https://ftp.mozilla.org/pub/directory/perldap/releases/${version}/src/perl-mozldap-${version}.tar.gz"; sha256 = "0s0albdw0zvg3w37s7is7gddr4mqwicjxxsy400n1p96l7ipnw4x"; @@ -8720,10 +8857,15 @@ let self = _self // overrides; _self = with self; { }; NetAddrIP = buildPerlPackage rec { - name = "NetAddr-IP-4.075"; + name = "NetAddr-IP-4.079"; src = fetchurl { url = "mirror://cpan/authors/id/M/MI/MIKER/${name}.tar.gz"; - sha256 = "0fc8jvrcp42szscnn41sxz8z8qa4fr4dr9i9s067hvrhiyxpb0mb"; + sha256 = "ec5a82dfb7028bcd28bb3d569f95d87dd4166cc19867f2184ed3a59f6d6ca0e7"; + }; + meta = { + description = "Manages IPv4 and IPv6 addresses and subnets"; + license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; + maintainers = [ maintainers.rycee ]; }; }; @@ -8878,6 +9020,19 @@ let self = _self // overrides; _self = with self; { doCheck = false; }; + NetDomainTLD = buildPerlPackage rec { + name = "Net-Domain-TLD-1.74"; + src = fetchurl { + url = "mirror://cpan/authors/id/A/AL/ALEXP/${name}.tar.gz"; + sha256 = "bf936cc20834d5b9497e33dc41c2da6a58536b7a1e0df0b8f6ce7ed5111ca868"; + }; + meta = { + description = "Work with TLD names"; + license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; + maintainers = [ maintainers.rycee ]; + }; + }; + NetHTTP = buildPerlPackage { name = "Net-HTTP-6.09"; src = fetchurl { @@ -12782,16 +12937,16 @@ let self = _self // overrides; _self = with self; { }; }; - TextvFileasData = buildPerlPackage { + TextvFileasData = buildPerlPackage rec { name = "Text-vFile-asData-0.08"; src = fetchurl { - url = mirror://cpan/authors/id/R/RC/RCLAMP/Text-vFile-asData-0.08.tar.gz; + url = "mirror://cpan/authors/id/R/RC/RCLAMP/${name}.tar.gz"; sha256 = "b291ab5e0f987c5172560a692234711a75e4596d83475f72d01278369532f82a"; }; propagatedBuildInputs = [ ClassAccessorChained ]; meta = { description = "Parse vFile formatted files into data structures"; - license = "perl"; + license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; }; }; diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 85d50376239b..3d1e2026a823 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -1768,18 +1768,21 @@ in modules // { }; bedup = buildPythonPackage rec { - name = "bedup-20140413"; + version = "0.10"; + name = "bedup-${version}"; src = pkgs.fetchgit { url = "https://github.com/g2p/bedup.git"; - rev = "5189e166145b8954ac41883f81ef3c3b50dc96ab"; - sha256 = "e61768fa19934bd176799f90bda3ea9f49a5def21fa2523a8e47df8a48e730e9"; + rev = "598fd4b"; + sha256 = "0s11dpf4k26n8qxrx6wcsr78vp98rx3yibzkh6ifmsyaqcmpm7wy"; }; buildInputs = with self; [ pkgs.btrfs-progs ]; propagatedBuildInputs = with self; [ contextlib2 pyxdg pycparser alembic ] ++ optionals (!isPyPy) [ cffi ]; + disabled = pythonOlder "3.3"; + # No proper test suite. Included tests cannot be run because of relative import doCheck = false; @@ -10292,11 +10295,11 @@ in modules // { }; httplib2 = buildPythonPackage rec { - name = "httplib2-0.9.1"; + name = "httplib2-0.9.2"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/h/httplib2/${name}.tar.gz"; - sha256 = "1xc3clbrf77r0600kja71j7hk1218sjiq0gfmb8vjdajka8kjqxw"; + sha256 = "126rsryvw9vhbf3qmsfw9lf4l4xm2srmgs439lgma4cpag4s3ay3"; }; meta = { @@ -24422,13 +24425,13 @@ in modules // { }; libvirt = let - version = "1.3.2"; + version = "1.3.3"; in assert version == pkgs.libvirt.version; pkgs.stdenv.mkDerivation rec { name = "libvirt-python-${version}"; src = pkgs.fetchurl { url = "http://libvirt.org/sources/python/${name}.tar.gz"; - sha256 = "1y0b2sglc6q43pw1sr0by5wx8037kvrp2969p69k6mq1g2gawdbd"; + sha256 = "0jhf1h4zdysxf5mj769l5ddcbs5j3mzj4sdy8gp4kbj4imwaws5a"; }; buildInputs = with self; [ python pkgs.pkgconfig pkgs.libvirt lxml ]; diff --git a/pkgs/top-level/rust-packages.nix b/pkgs/top-level/rust-packages.nix index a829445d7b56..0476b3991ba0 100644 --- a/pkgs/top-level/rust-packages.nix +++ b/pkgs/top-level/rust-packages.nix @@ -7,20 +7,20 @@ { runCommand, fetchFromGitHub, git }: let - version = "2016-04-02"; - rev = "b705d049d78f96bc27c58ccec7902e65d90826bd"; + version = "2016-04-18"; + rev = "2cd09d5c51264ae0e2deede74fb2620dae757c16"; src = fetchFromGitHub { inherit rev; owner = "rust-lang"; repo = "crates.io-index"; - sha256 = "1aspn79i1rw9migw7j0m12ghdq9cqhq8n2vzxy6hy1l728j3ykdp"; + sha256 = "0br52x480g9wqm9fl6kcin0m4a4bd20j65c454hhdw7b9ngaydav"; }; in -runCommand "rustRegistry-${version}-${builtins.substring 0 7 rev}" {} '' +runCommand "rustRegistry-${version}-${builtins.substring 0 7 rev}" { inherit src; } '' # For some reason, cargo doesn't like fetchgit's git repositories, not even # if we set leaveDotGit to true, set the fetchgit branch to 'master' and clone # the repository (tested with registry rev