From 069a168e0cf7d544010b7431e0702bb53b943198 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sat, 29 Aug 2015 12:27:58 +0200 Subject: [PATCH 001/196] networkx: 1.9.1 -> 1.10 Update to newer version. Networkx supports py3k. Currently, networkx is broken on pypy though. --- pkgs/top-level/python-packages.nix | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 42db423a451..c2dce8edd7e 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -16845,12 +16845,16 @@ let }; networkx = buildPythonPackage rec { - name = "networkx-1.9.1"; - disabled = ! isPy27; + version = "1.10"; + name = "networkx-${version}"; + # Currently broken on PyPy. + # https://github.com/networkx/networkx/pull/1361 + disabled = isPyPy; + src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/n/networkx/networkx-1.9.1.tar.gz"; - sha256 = "6380eb38d0b5770d7e50813c8a48ff7c373b2187b4220339c1adce803df01c59"; + url = "https://pypi.python.org/packages/source/n/networkx/${name}.tar.gz"; + sha256 = "ced4095ab83b7451cec1172183eff419ed32e21397ea4e1971d92a5808ed6fb8"; }; propagatedBuildInputs = with self; [ nose decorator ]; From 8eac52d5c649c4e64feeeeb3f52e7a32a60206b8 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sat, 29 Aug 2015 12:29:03 +0200 Subject: [PATCH 002/196] python-packages nipype networkx works on py3k, however, nipype 0.10.0 doesn't. Upstream master seems to work with py3k though. --- pkgs/top-level/python-packages.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index c2dce8edd7e..9c094cfb546 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -8416,6 +8416,9 @@ let version = "0.10.0"; name = "nipype-${version}"; + # Uses python 2 print. Master seems to be Py3 compatible. + disabled = isPy3k; + src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/n/nipype/${name}.tar.gz"; md5 = "480013709633a6d292e2ef668443e0c9"; From e2e4e59975b0022c72d03a74a68f9ab8a4da10a2 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Sat, 3 Oct 2015 14:16:41 +0300 Subject: [PATCH 003/196] llvm: add debug builds support --- pkgs/development/compilers/llvm/3.3/llvm.nix | 4 ++-- pkgs/development/compilers/llvm/3.4/llvm.nix | 3 ++- pkgs/development/compilers/llvm/3.5/llvm.nix | 3 ++- pkgs/development/compilers/llvm/3.6/llvm.nix | 3 ++- pkgs/development/compilers/llvm/3.7/llvm.nix | 3 ++- 5 files changed, 10 insertions(+), 6 deletions(-) diff --git a/pkgs/development/compilers/llvm/3.3/llvm.nix b/pkgs/development/compilers/llvm/3.3/llvm.nix index 8dca8b43bc2..37e85b55a53 100644 --- a/pkgs/development/compilers/llvm/3.3/llvm.nix +++ b/pkgs/development/compilers/llvm/3.3/llvm.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, perl, groff, cmake, python, libffi, binutils }: +{ stdenv, fetchurl, perl, groff, cmake, python, libffi, binutils, debugVersion ? false }: let version = "3.3"; in stdenv.mkDerivation rec { @@ -26,7 +26,7 @@ in stdenv.mkDerivation rec { in "export ${LD}_LIBRARY_PATH='$$${LD}_LIBRARY_PATH:'`pwd`/lib"; cmakeFlags = with stdenv; [ - "-DCMAKE_BUILD_TYPE=Release" + "-DCMAKE_BUILD_TYPE=${if debugVersion then "Debug" else "Release"}" "-DLLVM_BUILD_TESTS=ON" "-DLLVM_ENABLE_FFI=ON" "-DLLVM_BINUTILS_INCDIR=${binutils}/include" diff --git a/pkgs/development/compilers/llvm/3.4/llvm.nix b/pkgs/development/compilers/llvm/3.4/llvm.nix index 4c9235681e3..59e8055efb2 100644 --- a/pkgs/development/compilers/llvm/3.4/llvm.nix +++ b/pkgs/development/compilers/llvm/3.4/llvm.nix @@ -12,6 +12,7 @@ , version , zlib , compiler-rt_src +, debugVersion ? false }: let @@ -41,7 +42,7 @@ in stdenv.mkDerivation rec { ''; cmakeFlags = with stdenv; [ - "-DCMAKE_BUILD_TYPE=Release" + "-DCMAKE_BUILD_TYPE=${if debugVersion then "Debug" else "Release"}" "-DLLVM_BUILD_TESTS=ON" "-DLLVM_ENABLE_FFI=ON" "-DLLVM_REQUIRES_RTTI=1" diff --git a/pkgs/development/compilers/llvm/3.5/llvm.nix b/pkgs/development/compilers/llvm/3.5/llvm.nix index 395843bf0d8..8daba7b1d9c 100644 --- a/pkgs/development/compilers/llvm/3.5/llvm.nix +++ b/pkgs/development/compilers/llvm/3.5/llvm.nix @@ -12,6 +12,7 @@ , version , zlib , compiler-rt_src +, debugVersion ? false }: let @@ -38,7 +39,7 @@ in stdenv.mkDerivation rec { ''; cmakeFlags = with stdenv; [ - "-DCMAKE_BUILD_TYPE=Release" + "-DCMAKE_BUILD_TYPE=${if debugVersion then "Debug" else "Release"}" "-DLLVM_BUILD_TESTS=ON" "-DLLVM_ENABLE_FFI=ON" "-DLLVM_REQUIRES_RTTI=1" diff --git a/pkgs/development/compilers/llvm/3.6/llvm.nix b/pkgs/development/compilers/llvm/3.6/llvm.nix index d757b9314c3..6da31fbbf5b 100644 --- a/pkgs/development/compilers/llvm/3.6/llvm.nix +++ b/pkgs/development/compilers/llvm/3.6/llvm.nix @@ -12,6 +12,7 @@ , version , zlib , compiler-rt_src +, debugVersion ? false }: let @@ -38,7 +39,7 @@ in stdenv.mkDerivation rec { ''; cmakeFlags = with stdenv; [ - "-DCMAKE_BUILD_TYPE=Release" + "-DCMAKE_BUILD_TYPE=${if debugVersion then "Debug" else "Release"}" "-DLLVM_BUILD_TESTS=ON" "-DLLVM_ENABLE_FFI=ON" "-DLLVM_ENABLE_RTTI=ON" diff --git a/pkgs/development/compilers/llvm/3.7/llvm.nix b/pkgs/development/compilers/llvm/3.7/llvm.nix index 4ff61b27878..62245b479f5 100644 --- a/pkgs/development/compilers/llvm/3.7/llvm.nix +++ b/pkgs/development/compilers/llvm/3.7/llvm.nix @@ -12,6 +12,7 @@ , version , zlib , compiler-rt_src +, debugVersion ? false }: let @@ -38,7 +39,7 @@ in stdenv.mkDerivation rec { ''; cmakeFlags = with stdenv; [ - "-DCMAKE_BUILD_TYPE=Release" + "-DCMAKE_BUILD_TYPE=${if debugVersion then "Debug" else "Release"}" "-DLLVM_INSTALL_UTILS=ON" # Needed by rustc "-DLLVM_BUILD_TESTS=ON" "-DLLVM_ENABLE_FFI=ON" From d90040afd896b04bb3c2fc00d2b460c32a35edb9 Mon Sep 17 00:00:00 2001 From: obadz Date: Wed, 7 Oct 2015 17:42:24 +0100 Subject: [PATCH 004/196] chromium: add enable_hangout_services_extension=true to fix screensharing bug as suggested in: https://code.google.com/p/chromium/issues/detail?id=416856#c53 --- pkgs/applications/networking/browsers/chromium/common.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/applications/networking/browsers/chromium/common.nix b/pkgs/applications/networking/browsers/chromium/common.nix index 7c55b06a3c4..0490afc04bc 100644 --- a/pkgs/applications/networking/browsers/chromium/common.nix +++ b/pkgs/applications/networking/browsers/chromium/common.nix @@ -174,6 +174,7 @@ let } // optionalAttrs proprietaryCodecs { # enable support for the H.264 codec proprietary_codecs = true; + enable_hangout_services_extension = true; ffmpeg_branding = "Chrome"; } // optionalAttrs (stdenv.system == "x86_64-linux") { target_arch = "x64"; From f8bf2326a4da0aceb6d892e29fccb385dc97d199 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Fri, 12 Jun 2015 01:58:00 +0300 Subject: [PATCH 005/196] glew-1.10: add package --- pkgs/development/libraries/glew/1.10.nix | 52 ++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 1 + 2 files changed, 53 insertions(+) create mode 100644 pkgs/development/libraries/glew/1.10.nix diff --git a/pkgs/development/libraries/glew/1.10.nix b/pkgs/development/libraries/glew/1.10.nix new file mode 100644 index 00000000000..8f153baf6cd --- /dev/null +++ b/pkgs/development/libraries/glew/1.10.nix @@ -0,0 +1,52 @@ +{ stdenv, fetchurl, mesa_glu, x11, libXmu, libXi }: + +with stdenv.lib; + +stdenv.mkDerivation rec { + name = "glew-1.10.0"; + + src = fetchurl { + url = "mirror://sourceforge/glew/${name}.tgz"; + sha256 = "01zki46dr5khzlyywr3cg615bcal32dazfazkf360s1znqh17i4r"; + }; + + nativeBuildInputs = [ x11 libXmu libXi ]; + propagatedNativeBuildInputs = [ mesa_glu ]; # GL/glew.h includes GL/glu.h + + patchPhase = '' + sed -i 's|lib64|lib|' config/Makefile.linux + ${optionalString (stdenv ? cross) '' + sed -i -e 's/\(INSTALL.*\)-s/\1/' Makefile + ''} + ''; + + buildFlags = [ "all" ]; + installFlags = [ "install.all" ]; + + preInstall = '' + export GLEW_DEST="$out" + ''; + + postInstall = '' + mkdir -pv $out/share/doc/glew + mkdir -p $out/lib/pkgconfig + cp glew*.pc $out/lib/pkgconfig + cp -r README.txt LICENSE.txt doc $out/share/doc/glew + ''; + + crossAttrs.makeFlags = [ + "CC=${stdenv.cross.config}-gcc" + "LD=${stdenv.cross.config}-gcc" + "AR=${stdenv.cross.config}-ar" + "STRIP=" + ] ++ optional (stdenv.cross.libc == "msvcrt") "SYSTEM=mingw" + ++ optional (stdenv.cross.libc == "libSystem") "SYSTEM=darwin"; + + meta = with stdenv.lib; { + description = "An OpenGL extension loading library for C(++)"; + homepage = http://glew.sourceforge.net/; + license = licenses.free; # different files under different licenses + #["BSD" "GLX" "SGI-B" "GPL2"] + platforms = platforms.mesaPlatforms; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index ea926a80dac..a70ce3e0d3b 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -6292,6 +6292,7 @@ let libgit2_0_21 = callPackage ../development/libraries/git2/0.21.nix { }; glew = callPackage ../development/libraries/glew { }; + glew110 = callPackage ../development/libraries/glew/1.10.nix { }; glfw = glfw3; glfw2 = callPackage ../development/libraries/glfw/2.x.nix { }; From c865eb56ab1a4b47724bfb604bcc7430473ec350 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Fri, 12 Jun 2015 01:59:57 +0300 Subject: [PATCH 006/196] udev-182: add package (stripped, last version providing libudev.so.0) --- pkgs/os-specific/linux/udev/182.nix | 34 +++++++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 3 +++ 2 files changed, 37 insertions(+) create mode 100644 pkgs/os-specific/linux/udev/182.nix diff --git a/pkgs/os-specific/linux/udev/182.nix b/pkgs/os-specific/linux/udev/182.nix new file mode 100644 index 00000000000..fcf06e3e899 --- /dev/null +++ b/pkgs/os-specific/linux/udev/182.nix @@ -0,0 +1,34 @@ +{ stdenv, fetchurl, pkgconfig +, pciutils, utillinux, kmod, usbutils, gperf +}: + +assert stdenv ? glibc; + +stdenv.mkDerivation rec { + name = "udev-182"; + + src = fetchurl { + url = "mirror://kernel/linux/utils/kernel/hotplug/${name}.tar.bz2"; + sha256 = "143qvm0kij26j2l5icnch4x38fajys6li7j0c5mpwi6kqmc8hqx0"; + }; + + nativeBuildInputs = [ pkgconfig ]; + + buildInputs = [ utillinux kmod usbutils #glib gobjectIntrospection + gperf + ]; + + configureFlags = [ "--with-pci-ids-path=${pciutils}/share/pci.ids" + "--disable-gudev" + "--disable-introspection" + ]; + + NIX_LDFLAGS = [ "-lrt" ]; + + meta = with stdenv.lib; { + homepage = http://www.kernel.org/pub/linux/utils/kernel/hotplug/udev.html; + description = "Udev manages the /dev filesystem"; + platforms = platforms.linux; + license = licenses.gpl2; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index a70ce3e0d3b..c40301eeb4c 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10286,6 +10286,9 @@ let udev = pkgs.systemd; eudev = callPackage ../os-specific/linux/eudev {}; + # libudev.so.0 + udev182 = callPackage ../os-specific/linux/udev/182.nix { }; + udisks1 = callPackage ../os-specific/linux/udisks/1-default.nix { }; udisks2 = callPackage ../os-specific/linux/udisks/2-default.nix { }; udisks = udisks1; From 6cb8e04a5c03f26ae6c1c524577ab971b769b708 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Fri, 12 Jun 2015 02:00:35 +0300 Subject: [PATCH 007/196] networkmanager-0.9.8: add package --- .../networking/network-manager/0.9.8.nix | 58 ++++++++++++++++++ .../network-manager/libnl-3.2.25.patch | 61 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 3 + 3 files changed, 122 insertions(+) create mode 100644 pkgs/tools/networking/network-manager/0.9.8.nix create mode 100644 pkgs/tools/networking/network-manager/libnl-3.2.25.patch diff --git a/pkgs/tools/networking/network-manager/0.9.8.nix b/pkgs/tools/networking/network-manager/0.9.8.nix new file mode 100644 index 00000000000..fe19550bc67 --- /dev/null +++ b/pkgs/tools/networking/network-manager/0.9.8.nix @@ -0,0 +1,58 @@ +{ stdenv, fetchurl, intltool, pkgconfig, dbus_glib +, udev, libnl, libuuid, gnutls, dhcp +, libgcrypt, perl }: + +stdenv.mkDerivation rec { + name = "network-manager-${version}"; + version = "0.9.8.10"; + + src = fetchurl { + url = "mirror://gnome/sources/NetworkManager/0.9/NetworkManager-${version}.tar.xz"; + sha256 = "0wn9qh8r56r8l19dqr68pdl1rv3zg1dv47rfy6fqa91q7li2fk86"; + }; + + preConfigure = '' + substituteInPlace tools/glib-mkenums --replace /usr/bin/perl ${perl}/bin/perl + ''; + + # Right now we hardcode quite a few paths at build time. Probably we should + # patch networkmanager to allow passing these path in config file. This will + # remove unneeded build-time dependencies. + configureFlags = [ + "--with-distro=exherbo" + "--with-dhclient=${dhcp}/sbin/dhclient" + "--with-dhcpcd=no" + "--with-iptables=no" + "--with-udev-dir=\${out}/lib/udev" + "--with-resolvconf=no" + "--sysconfdir=/etc" "--localstatedir=/var" + "--with-dbus-sys-dir=\${out}/etc/dbus-1/system.d" + "--with-crypto=gnutls" "--disable-more-warnings" + "--with-systemdsystemunitdir=$(out)/etc/systemd/system" + "--with-kernel-firmware-dir=/run/current-system/firmware" + "--disable-ppp" + ]; + + buildInputs = [ udev libnl libuuid gnutls libgcrypt ]; + + propagatedBuildInputs = [ dbus_glib ]; + + nativeBuildInputs = [ intltool pkgconfig ]; + + patches = + [ ./libnl-3.2.25.patch + ./nixos-purity.patch + ]; + + preInstall = + '' + installFlagsArray=( "sysconfdir=$out/etc" "localstatedir=$out/var" ) + ''; + + meta = with stdenv.lib; { + homepage = http://projects.gnome.org/NetworkManager/; + description = "Network configuration and management tool"; + license = licenses.gpl2Plus; + platforms = platforms.linux; + }; +} diff --git a/pkgs/tools/networking/network-manager/libnl-3.2.25.patch b/pkgs/tools/networking/network-manager/libnl-3.2.25.patch new file mode 100644 index 00000000000..17c2966b706 --- /dev/null +++ b/pkgs/tools/networking/network-manager/libnl-3.2.25.patch @@ -0,0 +1,61 @@ +diff --git a/src/nm-netlink-monitor.c b/src/nm-netlink-monitor.c +index ba8053e..5ac39d3 100644 +--- a/src/nm-netlink-monitor.c ++++ b/src/nm-netlink-monitor.c +@@ -177,40 +177,15 @@ link_msg_handler (struct nl_object *obj, void *arg) + static int + event_msg_recv (struct nl_msg *msg, void *arg) + { +- struct nl_sock *nlh = arg; +- struct nlmsghdr *hdr = nlmsg_hdr (msg); + struct ucred *creds = nlmsg_get_creds (msg); +- const struct sockaddr_nl *snl; +- guint32 local_port; +- gboolean accept_msg = FALSE; +- +- /* Only messages sent from the kernel */ +- if (!creds || creds->uid != 0) { +- nm_log_dbg (LOGD_HW, "ignoring netlink message from UID %d", +- creds ? creds->uid : -1); +- return NL_SKIP; +- } +- +- snl = nlmsg_get_src (msg); +- g_assert (snl); +- +- /* Accept any messages from the kernel */ +- if (hdr->nlmsg_pid == 0 || snl->nl_pid == 0) +- accept_msg = TRUE; + +- /* And any multicast message directed to our netlink PID, since multicast +- * currently requires CAP_ADMIN to use. +- */ +- local_port = nl_socket_get_local_port (nlh); +- if ((hdr->nlmsg_pid == local_port) && snl->nl_groups) +- accept_msg = TRUE; +- +- if (accept_msg == FALSE) { +- nm_log_dbg (LOGD_HW, "ignoring netlink message from PID %d (local PID %d, multicast %d)", +- hdr->nlmsg_pid, +- local_port, +- (hdr->nlmsg_flags & NLM_F_MULTI)); +- return NL_SKIP; ++ if (!creds || creds->pid || creds->uid || creds->gid) { ++ if (creds) ++ nm_log_dbg (LOGD_HW, "netlink: received non-kernel message (pid %d uid %d gid %d)", ++ creds->pid, creds->uid, creds->gid); ++ else ++ nm_log_dbg (LOGD_HW, "netlink: received message without credentials"); ++ return NL_STOP; + } + + return NL_OK; +@@ -285,7 +260,7 @@ nlh_setup (struct nl_sock *nlh, + { + int err; + +- nl_socket_modify_cb (nlh, NL_CB_MSG_IN, NL_CB_CUSTOM, event_msg_recv, cb_data); ++ nl_socket_modify_cb (nlh, NL_CB_MSG_IN, NL_CB_CUSTOM, event_msg_recv, NULL); + + if (valid_func) + nl_socket_modify_cb (nlh, NL_CB_VALID, NL_CB_CUSTOM, valid_func, cb_data); diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index c40301eeb4c..ca2beb0c5dc 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -2333,6 +2333,9 @@ let netselect = callPackage ../tools/networking/netselect { }; + # stripped down, needed by steam + networkmanager098 = callPackage ../tools/networking/network-manager/0.9.8.nix { }; + networkmanager = callPackage ../tools/networking/network-manager { }; networkmanager_openvpn = callPackage ../tools/networking/network-manager/openvpn.nix { }; From a3ef4b930e3220bf82cd2881a4b95d108f814143 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Fri, 12 Jun 2015 02:01:23 +0300 Subject: [PATCH 008/196] steam: use native libraries, disable steam-runtime --- pkgs/games/steam/chrootenv.nix | 139 +++++++++++++++++++++------------ 1 file changed, 89 insertions(+), 50 deletions(-) diff --git a/pkgs/games/steam/chrootenv.nix b/pkgs/games/steam/chrootenv.nix index ffd68562dee..583e731113d 100644 --- a/pkgs/games/steam/chrootenv.nix +++ b/pkgs/games/steam/chrootenv.nix @@ -5,15 +5,11 @@ buildFHSUserEnv { targetPkgs = pkgs: [ pkgs.steam-original - pkgs.corefonts - pkgs.curl - pkgs.dbus - pkgs.dpkg - pkgs.mono - pkgs.python - pkgs.gnome2.zenity - pkgs.xdg_utils - pkgs.xorg.xrandr + # Errors in output without those + pkgs.pciutils + pkgs.python2 + # Games' dependencies + pkgs.xlibs.xrandr pkgs.which ] ++ lib.optional (config.steam.java or false) pkgs.jdk @@ -21,59 +17,102 @@ buildFHSUserEnv { ; multiPkgs = pkgs: - [ pkgs.cairo + [ # These are required by steam with proper errors + pkgs.xlibs.libXcomposite + pkgs.xlibs.libXtst + pkgs.xlibs.libXrandr + pkgs.xlibs.libXext + pkgs.xlibs.libX11 + pkgs.xlibs.libXfixes + pkgs.glib - pkgs.gtk - pkgs.gdk_pixbuf - pkgs.pango - - pkgs.freetype - pkgs.xorg.libICE - pkgs.xorg.libSM - pkgs.xorg.libX11 - pkgs.xorg.libXau - pkgs.xorg.libxcb - pkgs.xorg.libXcursor - pkgs.xorg.libXdamage - pkgs.xorg.libXdmcp - pkgs.xorg.libXext - pkgs.xorg.libXfixes - pkgs.xorg.libXi - pkgs.xorg.libXinerama - pkgs.xorg.libXrandr - pkgs.xorg.libXrender - pkgs.xorg.libXScrnSaver - pkgs.xorg.libXtst - pkgs.xorg.libXxf86vm - - pkgs.ffmpeg - pkgs.libpng12 - pkgs.mesa - pkgs.SDL - pkgs.SDL2 - pkgs.libdrm - - pkgs.libgcrypt + pkgs.gtk2 + pkgs.bzip2 pkgs.zlib - - pkgs.alsaLib - pkgs.libvorbis - pkgs.openal pkgs.libpulseaudio + pkgs.gdk_pixbuf - pkgs.gst_all_1.gst-plugins-ugly # "Audiosurf 2" needs this + # Without these it silently fails + pkgs.xlibs.libXinerama + pkgs.xlibs.libXdamage + pkgs.xlibs.libXcursor + pkgs.xlibs.libXrender + pkgs.xlibs.libXScrnSaver + pkgs.xlibs.libXi + pkgs.xlibs.libSM + pkgs.xlibs.libICE + pkgs.gnome2.GConf + pkgs.freetype + pkgs.openalSoft + pkgs.curl + pkgs.nspr + pkgs.nss + pkgs.fontconfig + pkgs.cairo + pkgs.pango + pkgs.alsaLib + pkgs.expat + pkgs.dbus + pkgs.cups + pkgs.libcap + pkgs.SDL2 + pkgs.libusb1 + pkgs.dbus_glib + pkgs.libav + pkgs.atk + # Only libraries are needed from those two + pkgs.udev182 + pkgs.networkmanager098 + + # Verified games requirements + pkgs.xlibs.libXmu + pkgs.xlibs.libxcb + pkgs.xlibs.libpciaccess + pkgs.mesa_glu + pkgs.libuuid + pkgs.libogg + pkgs.libvorbis + pkgs.SDL + pkgs.SDL2_image + pkgs.glew110 + pkgs.openssl + pkgs.libidn + + # Other things from runtime + pkgs.xlibs.libXinerama + pkgs.flac + pkgs.freeglut + pkgs.libjpeg + pkgs.libpng12 + pkgs.libsamplerate + pkgs.libmikmod + pkgs.libtheora + pkgs.pixman + pkgs.speex + pkgs.SDL_image + pkgs.SDL_ttf + pkgs.SDL_mixer + pkgs.SDL2_net + pkgs.SDL2_ttf + pkgs.SDL2_mixer + pkgs.gstreamer + pkgs.gst_plugins_base + + # Not formally in runtime but needed by some games + pkgs.gst_all_1.gstreamer + pkgs.gst_all_1.gst-plugins-ugly ]; extraBuildCommandsMulti = '' cd usr/lib ln -sf ../lib64/steam steam + + # FIXME: maybe we should replace this with proper libcurl-gnutls + ln -s libcurl.so.4 libcurl-gnutls.so.4 ''; profile = '' - # Ugly workaround for https://github.com/ValveSoftware/steam-for-linux/issues/3504 - export LD_PRELOAD=/lib32/libpulse.so:/lib64/libpulse.so:/lib32/libasound.so:/lib64/libasound.so:$LD_PRELOAD - # Another one for https://github.com/ValveSoftware/steam-for-linux/issues/3801 - export LD_PRELOAD=/lib32/libstdc++.so:/lib64/libstdc++.so:$LD_PRELOAD + ${if config.steam.enableRuntime or false then "" else "export STEAM_RUNTIME=0"} ''; runScript = "steam"; From 8b218b7143f139e01f6b3b60b84649c60ca69650 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Tue, 28 Jul 2015 13:42:11 +0300 Subject: [PATCH 009/196] steam: cut dependencies when using Runtime, migrate from config to boolean arguments --- pkgs/games/steam/chrootenv.nix | 31 ++++++++++++++++++++----------- pkgs/top-level/all-packages.nix | 7 ++++++- 2 files changed, 26 insertions(+), 12 deletions(-) diff --git a/pkgs/games/steam/chrootenv.nix b/pkgs/games/steam/chrootenv.nix index 583e731113d..a7cdfa9e7c1 100644 --- a/pkgs/games/steam/chrootenv.nix +++ b/pkgs/games/steam/chrootenv.nix @@ -1,4 +1,8 @@ -{ lib, buildFHSUserEnv, config }: +{ lib, buildFHSUserEnv +, withRuntime ? false +, withJava ? false +, withPrimus ? false +}: buildFHSUserEnv { name = "steam"; @@ -12,12 +16,12 @@ buildFHSUserEnv { pkgs.xlibs.xrandr pkgs.which ] - ++ lib.optional (config.steam.java or false) pkgs.jdk - ++ lib.optional (config.steam.primus or false) pkgs.primus + ++ lib.optional withJava pkgs.jdk + ++ lib.optional withPrimus pkgs.primus ; - multiPkgs = pkgs: - [ # These are required by steam with proper errors + multiPkgs = pkgs: [ + # These are required by steam with proper errors pkgs.xlibs.libXcomposite pkgs.xlibs.libXtst pkgs.xlibs.libXrandr @@ -32,6 +36,10 @@ buildFHSUserEnv { pkgs.libpulseaudio pkgs.gdk_pixbuf + # Not formally in runtime but needed by some games + pkgs.gst_all_1.gstreamer + pkgs.gst_all_1.gst-plugins-ugly + ] ++ lib.optionals withRuntime [ # Without these it silently fails pkgs.xlibs.libXinerama pkgs.xlibs.libXdamage @@ -97,10 +105,6 @@ buildFHSUserEnv { pkgs.SDL2_mixer pkgs.gstreamer pkgs.gst_plugins_base - - # Not formally in runtime but needed by some games - pkgs.gst_all_1.gstreamer - pkgs.gst_all_1.gst-plugins-ugly ]; extraBuildCommandsMulti = '' @@ -111,8 +115,13 @@ buildFHSUserEnv { ln -s libcurl.so.4 libcurl-gnutls.so.4 ''; - profile = '' - ${if config.steam.enableRuntime or false then "" else "export STEAM_RUNTIME=0"} + profile = if withRuntime then '' + export STEAM_RUNTIME=0 + '' else '' + # Ugly workaround for https://github.com/ValveSoftware/steam-for-linux/issues/3504 + export LD_PRELOAD=/lib32/libpulse.so:/lib64/libpulse.so:/lib32/libasound.so:/lib64/libasound.so:$LD_PRELOAD + # Another one for https://github.com/ValveSoftware/steam-for-linux/issues/3801 + export LD_PRELOAD=/lib32/libstdc++.so:/lib64/libstdc++.so:$LD_PRELOAD ''; runScript = "steam"; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index ca2beb0c5dc..1048b1b9c61 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -13781,7 +13781,12 @@ let steam-original = lowPrio (callPackage ../games/steam { }); - steam = callPackage ../games/steam/chrootenv.nix { }; + steam = callPackage ../games/steam/chrootenv.nix { + # DEPRECATED + withJava = config.steam.java or false; + withPrimus = config.steam.primus or false; + withRuntime = config.steam.withRuntime or true; + }; stuntrally = callPackage ../games/stuntrally { }; From 724a82b737ad0981666b287d7ba1dce233d27554 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Tue, 28 Jul 2015 13:55:47 +0300 Subject: [PATCH 010/196] steam: fix invalid symlinking for i686 --- pkgs/games/steam/chrootenv.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/games/steam/chrootenv.nix b/pkgs/games/steam/chrootenv.nix index a7cdfa9e7c1..f1ec603d356 100644 --- a/pkgs/games/steam/chrootenv.nix +++ b/pkgs/games/steam/chrootenv.nix @@ -107,12 +107,12 @@ buildFHSUserEnv { pkgs.gst_plugins_base ]; - extraBuildCommandsMulti = '' - cd usr/lib - ln -sf ../lib64/steam steam + extraBuildCommands = '' + [ -d lib64 ] && mv lib64/steam lib # FIXME: maybe we should replace this with proper libcurl-gnutls - ln -s libcurl.so.4 libcurl-gnutls.so.4 + ( cd lib; ln -s libcurl.so.4 libcurl-gnutls.so.4 ) + [ -d lib64 ] && ( cd lib64; ln -s libcurl.so.4 libcurl-gnutls.so.4 ) ''; profile = if withRuntime then '' From 3bd78123f3d6e74db310eeafbd438bb41f104669 Mon Sep 17 00:00:00 2001 From: Christoph Hrdinka Date: Thu, 6 Aug 2015 19:06:38 +0200 Subject: [PATCH 011/196] steam-runtime: init at 2014-04-15 --- pkgs/games/steam/runtime.nix | 25 +++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 27 insertions(+) create mode 100644 pkgs/games/steam/runtime.nix diff --git a/pkgs/games/steam/runtime.nix b/pkgs/games/steam/runtime.nix new file mode 100644 index 00000000000..9c6b07fa124 --- /dev/null +++ b/pkgs/games/steam/runtime.nix @@ -0,0 +1,25 @@ +{ stdenv, fetchurl }: + +stdenv.mkDerivation rec { + name = "steam-runtime-${version}"; + version = "2014-04-15"; + + phases = [ "unpackPhase" "installPhase" ]; + + src = fetchurl { + url = "http://media.steampowered.com/client/runtime/steam-runtime-release_${version}.tar.xz"; + sha256 = "0i6xp81rjbfn4664h4mmvw0xjwlwvdp6k7cc53jfjadcblw5cf99"; + }; + + installPhase = '' + mkdir -p $out + mv * $out/ + ''; + + meta = with stdenv.lib; { + description = "The official runtime used by Steam"; + homepage = http://store.steampowered.com/; + license = licenses.unfreeRedistributable; + maintainers = with maintainers; [ hrdinka ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 1048b1b9c61..bdd7411791b 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -13788,6 +13788,8 @@ let withRuntime = config.steam.withRuntime or true; }; + steam-runtime = callPackage ../games/steam/runtime.nix { }; + stuntrally = callPackage ../games/stuntrally { }; superTux = callPackage ../games/super-tux { }; From 2f52c62684644a83c185ee662f8e7c2876089c2c Mon Sep 17 00:00:00 2001 From: Christoph Hrdinka Date: Thu, 6 Aug 2015 20:21:43 +0200 Subject: [PATCH 012/196] steam: include steam-runtime within chroot --- pkgs/games/steam/chrootenv.nix | 204 +++++++++++++++++++-------------- 1 file changed, 116 insertions(+), 88 deletions(-) diff --git a/pkgs/games/steam/chrootenv.nix b/pkgs/games/steam/chrootenv.nix index f1ec603d356..bb459d16819 100644 --- a/pkgs/games/steam/chrootenv.nix +++ b/pkgs/games/steam/chrootenv.nix @@ -1,122 +1,150 @@ -{ lib, buildFHSUserEnv +{ lib, buildFHSUserEnv, steam-runtime , withRuntime ? false -, withJava ? false -, withPrimus ? false +, withJava ? false +, withPrimus ? false }: buildFHSUserEnv { name = "steam"; - targetPkgs = pkgs: - [ pkgs.steam-original + targetPkgs = pkgs: with pkgs; [ + steam-original # Errors in output without those - pkgs.pciutils - pkgs.python2 + pciutils + python2 # Games' dependencies - pkgs.xlibs.xrandr - pkgs.which + xlibs.xrandr + which + # needed by gdialog, including in the steam-runtime + perl ] - ++ lib.optional withJava pkgs.jdk - ++ lib.optional withPrimus pkgs.primus + ++ lib.optional withJava jdk + ++ lib.optional withPrimus primus ; - multiPkgs = pkgs: [ + multiPkgs = pkgs: with pkgs; [ # These are required by steam with proper errors - pkgs.xlibs.libXcomposite - pkgs.xlibs.libXtst - pkgs.xlibs.libXrandr - pkgs.xlibs.libXext - pkgs.xlibs.libX11 - pkgs.xlibs.libXfixes + xlibs.libXcomposite + xlibs.libXtst + xlibs.libXrandr + xlibs.libXext + xlibs.libX11 + xlibs.libXfixes - pkgs.glib - pkgs.gtk2 - pkgs.bzip2 - pkgs.zlib - pkgs.libpulseaudio - pkgs.gdk_pixbuf + glib + gtk2 + bzip2 + zlib + libpulseaudio + gdk_pixbuf # Not formally in runtime but needed by some games - pkgs.gst_all_1.gstreamer - pkgs.gst_all_1.gst-plugins-ugly + gst_all_1.gstreamer + gst_all_1.gst-plugins-ugly ] ++ lib.optionals withRuntime [ # Without these it silently fails - pkgs.xlibs.libXinerama - pkgs.xlibs.libXdamage - pkgs.xlibs.libXcursor - pkgs.xlibs.libXrender - pkgs.xlibs.libXScrnSaver - pkgs.xlibs.libXi - pkgs.xlibs.libSM - pkgs.xlibs.libICE - pkgs.gnome2.GConf - pkgs.freetype - pkgs.openalSoft - pkgs.curl - pkgs.nspr - pkgs.nss - pkgs.fontconfig - pkgs.cairo - pkgs.pango - pkgs.alsaLib - pkgs.expat - pkgs.dbus - pkgs.cups - pkgs.libcap - pkgs.SDL2 - pkgs.libusb1 - pkgs.dbus_glib - pkgs.libav - pkgs.atk + xlibs.libXinerama + xlibs.libXdamage + xlibs.libXcursor + xlibs.libXrender + xlibs.libXScrnSaver + xlibs.libXi + xlibs.libSM + xlibs.libICE + gnome2.GConf + freetype + openalSoft + curl + nspr + nss + fontconfig + cairo + pango + alsaLib + expat + dbus + cups + libcap + SDL2 + libusb1 + dbus_glib + libav + atk # Only libraries are needed from those two - pkgs.udev182 - pkgs.networkmanager098 + udev182 + networkmanager098 # Verified games requirements - pkgs.xlibs.libXmu - pkgs.xlibs.libxcb - pkgs.xlibs.libpciaccess - pkgs.mesa_glu - pkgs.libuuid - pkgs.libogg - pkgs.libvorbis - pkgs.SDL - pkgs.SDL2_image - pkgs.glew110 - pkgs.openssl - pkgs.libidn + xlibs.libXmu + xlibs.libxcb + xlibs.libpciaccess + mesa_glu + libuuid + libogg + libvorbis + SDL + SDL2_image + glew110 + openssl + libidn # Other things from runtime - pkgs.xlibs.libXinerama - pkgs.flac - pkgs.freeglut - pkgs.libjpeg - pkgs.libpng12 - pkgs.libsamplerate - pkgs.libmikmod - pkgs.libtheora - pkgs.pixman - pkgs.speex - pkgs.SDL_image - pkgs.SDL_ttf - pkgs.SDL_mixer - pkgs.SDL2_net - pkgs.SDL2_ttf - pkgs.SDL2_mixer - pkgs.gstreamer - pkgs.gst_plugins_base + xlibs.libXinerama + flac + freeglut + libjpeg + libpng12 + libsamplerate + libmikmod + libtheora + pixman + speex + SDL_image + SDL_ttf + SDL_mixer + SDL2_net + SDL2_ttf + SDL2_mixer + gstreamer + gst_plugins_base ]; extraBuildCommands = '' [ -d lib64 ] && mv lib64/steam lib # FIXME: maybe we should replace this with proper libcurl-gnutls - ( cd lib; ln -s libcurl.so.4 libcurl-gnutls.so.4 ) - [ -d lib64 ] && ( cd lib64; ln -s libcurl.so.4 libcurl-gnutls.so.4 ) + ln -s libcurl.so.4 lib/libcurl-gnutls.so.4 + [ -d lib64 ] && ln -s libcurl.so.4 lib64/libcurl-gnutls.so.4 + '' + lib.optionals withRuntime '' + mkdir -p steamrt/usr + ln -s lib32 steamrt/lib + + if [ -d lib64 ]; then + ln -s ${steam-runtime}/i386/usr/bin steamrt/bin + else + ln -s ${steam-runtime}/amd64/usr/bin steamrt/bin + fi + + ln -s ${steam-runtime}/i386/etc steamrt/etc + ln -s ${steam-runtime}/i386/usr/include steamrt/usr/include + + cp -rsf --no-preserve mode ${steam-runtime}/i386/usr/lib steamrt/lib32 + cp -rsf ${steam-runtime}/i386/lib/* steamrt/lib32 + + cp -rsf --no-preserve mode ${steam-runtime}/amd64/usr/lib steamrt/lib64 + cp -rsf ${steam-runtime}/amd64/lib/* steamrt/lib64 + + libs=$(ls -dm --quoting-style=escape steamrt/lib{32,64}/{,*/}) + + echo 'export STEAM_RUNTIME=0' > steamrt/profile + echo 'export PATH=$PATH:/steamrt/bin' >> steamrt/profile + echo -n 'export LD_LIBRARY_PATH=/' >> steamrt/profile + echo -n $libs | sed 's/\/, /:\//g' | sed 's/\/$//g' >> steamrt/profile + echo ':$LD_LIBRARY_PATH' >> steamrt/profile ''; profile = if withRuntime then '' - export STEAM_RUNTIME=0 + source /steamrt/profile '' else '' # Ugly workaround for https://github.com/ValveSoftware/steam-for-linux/issues/3504 export LD_PRELOAD=/lib32/libpulse.so:/lib64/libpulse.so:/lib32/libasound.so:/lib64/libasound.so:$LD_PRELOAD From 8b034964d1e8aca285f601680634130fc954070c Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Sun, 23 Aug 2015 18:12:16 +0300 Subject: [PATCH 013/196] steam-runtime: split by architectures --- pkgs/games/steam/runtime.nix | 24 ++++++++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) diff --git a/pkgs/games/steam/runtime.nix b/pkgs/games/steam/runtime.nix index 9c6b07fa124..7e3e03b04e1 100644 --- a/pkgs/games/steam/runtime.nix +++ b/pkgs/games/steam/runtime.nix @@ -1,6 +1,10 @@ { stdenv, fetchurl }: -stdenv.mkDerivation rec { +let arch = if stdenv.system == "x86_64-linux" then "amd64" + else if stdenv.system == "i686-linux" then "i386" + else abort "Unsupported platform"; + +in stdenv.mkDerivation rec { name = "steam-runtime-${version}"; version = "2014-04-15"; @@ -13,13 +17,25 @@ stdenv.mkDerivation rec { installPhase = '' mkdir -p $out - mv * $out/ + mv ${arch}/* $out/ ''; + passthru = rec { + inherit arch; + + gnuArch = if arch == "amd64" then "x86_64-linux-gnu" + else if arch == "i386" then "i386-linux-gnu" + else abort "Unsupported architecture"; + + libs = [ "lib/${gnuArch}" "lib" "usr/lib/${gnuArch}" "usr/lib" ]; + bins = [ "bin" "usr/bin" ]; + }; + meta = with stdenv.lib; { description = "The official runtime used by Steam"; - homepage = http://store.steampowered.com/; - license = licenses.unfreeRedistributable; + homepage = https://github.com/ValveSoftware/steam-runtime; + license = licenses.mit; maintainers = with maintainers; [ hrdinka ]; + hydraPlatforms = []; }; } From 6c9ee645ec0fb4a140ddf70525ea15df6d1827c7 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Sun, 23 Aug 2015 18:17:15 +0300 Subject: [PATCH 014/196] steam: add steamPackages namespace, build our own runtime --- pkgs/games/steam/build-runtime.sh | 47 +++++++++++ pkgs/games/steam/chrootenv.nix | 122 +++------------------------ pkgs/games/steam/default.nix | 43 ++-------- pkgs/games/steam/runtime-wrapped.nix | 109 ++++++++++++++++++++++++ pkgs/games/steam/steam.nix | 38 +++++++++ pkgs/top-level/all-packages.nix | 8 +- 6 files changed, 215 insertions(+), 152 deletions(-) create mode 100644 pkgs/games/steam/build-runtime.sh create mode 100644 pkgs/games/steam/runtime-wrapped.nix create mode 100644 pkgs/games/steam/steam.nix diff --git a/pkgs/games/steam/build-runtime.sh b/pkgs/games/steam/build-runtime.sh new file mode 100644 index 00000000000..ddf974671a0 --- /dev/null +++ b/pkgs/games/steam/build-runtime.sh @@ -0,0 +1,47 @@ +source $stdenv/setup + +outp=$out/lib/steam-runtime + +buildDir() { + paths="$1" + pkgs="$2" + + for pkg in $pkgs; do + echo "adding package $pkg" + for path in $paths; do + if [ -d $pkg/$path ]; then + cd $pkg/$path + for file in *; do + found="" + for i in $paths; do + if [ -e "$outp/$i/$file" ]; then + found=1 + break + fi + done + if [ -z "$found" ]; then + mkdir -p $outp/$path + ln -s "$pkg/$path/$file" $outp/$path + sovers=$(echo $file | perl -ne 'print if s/.*?\.so\.(.*)/\1/') + if [ ! -z "$sovers" ]; then + fname=''${file%.''${sovers}} + for ver in ''${sovers//./ }; do + found="" + for i in $paths; do + if [ -e "$outp/$i/$fname" ]; then + found=1 + break + fi + done + [ -n "$found" ] || ln -s "$pkg/$path/$file" "$outp/$path/$fname" + fname="$fname.$ver" + done + fi + fi + done + fi + done + done +} + +eval "$installPhase" diff --git a/pkgs/games/steam/chrootenv.nix b/pkgs/games/steam/chrootenv.nix index bb459d16819..cbf5b92760b 100644 --- a/pkgs/games/steam/chrootenv.nix +++ b/pkgs/games/steam/chrootenv.nix @@ -1,14 +1,13 @@ -{ lib, buildFHSUserEnv, steam-runtime -, withRuntime ? false -, withJava ? false -, withPrimus ? false +{ lib, buildFHSUserEnv +, withJava ? false +, withPrimus ? false }: buildFHSUserEnv { name = "steam"; targetPkgs = pkgs: with pkgs; [ - steam-original + steamPackages.steam # Errors in output without those pciutils python2 @@ -31,125 +30,24 @@ buildFHSUserEnv { xlibs.libX11 xlibs.libXfixes - glib - gtk2 - bzip2 - zlib - libpulseaudio - gdk_pixbuf - # Not formally in runtime but needed by some games gst_all_1.gstreamer gst_all_1.gst-plugins-ugly - ] ++ lib.optionals withRuntime [ - # Without these it silently fails - xlibs.libXinerama - xlibs.libXdamage - xlibs.libXcursor - xlibs.libXrender - xlibs.libXScrnSaver - xlibs.libXi - xlibs.libSM - xlibs.libICE - gnome2.GConf - freetype - openalSoft - curl - nspr - nss - fontconfig - cairo - pango - alsaLib - expat - dbus - cups - libcap - SDL2 - libusb1 - dbus_glib - libav - atk - # Only libraries are needed from those two - udev182 - networkmanager098 - # Verified games requirements - xlibs.libXmu - xlibs.libxcb - xlibs.libpciaccess - mesa_glu - libuuid - libogg - libvorbis - SDL - SDL2_image - glew110 - openssl - libidn - - # Other things from runtime - xlibs.libXinerama - flac - freeglut - libjpeg - libpng12 - libsamplerate - libmikmod - libtheora - pixman - speex - SDL_image - SDL_ttf - SDL_mixer - SDL2_net - SDL2_ttf - SDL2_mixer - gstreamer - gst_plugins_base + steamPackages.steam-runtime-wrapped ]; extraBuildCommands = '' [ -d lib64 ] && mv lib64/steam lib - # FIXME: maybe we should replace this with proper libcurl-gnutls - ln -s libcurl.so.4 lib/libcurl-gnutls.so.4 - [ -d lib64 ] && ln -s libcurl.so.4 lib64/libcurl-gnutls.so.4 - '' + lib.optionals withRuntime '' - mkdir -p steamrt/usr - ln -s lib32 steamrt/lib + mkdir -p steamrt - if [ -d lib64 ]; then - ln -s ${steam-runtime}/i386/usr/bin steamrt/bin - else - ln -s ${steam-runtime}/amd64/usr/bin steamrt/bin - fi - - ln -s ${steam-runtime}/i386/etc steamrt/etc - ln -s ${steam-runtime}/i386/usr/include steamrt/usr/include - - cp -rsf --no-preserve mode ${steam-runtime}/i386/usr/lib steamrt/lib32 - cp -rsf ${steam-runtime}/i386/lib/* steamrt/lib32 - - cp -rsf --no-preserve mode ${steam-runtime}/amd64/usr/lib steamrt/lib64 - cp -rsf ${steam-runtime}/amd64/lib/* steamrt/lib64 - - libs=$(ls -dm --quoting-style=escape steamrt/lib{32,64}/{,*/}) - - echo 'export STEAM_RUNTIME=0' > steamrt/profile - echo 'export PATH=$PATH:/steamrt/bin' >> steamrt/profile - echo -n 'export LD_LIBRARY_PATH=/' >> steamrt/profile - echo -n $libs | sed 's/\/, /:\//g' | sed 's/\/$//g' >> steamrt/profile - echo ':$LD_LIBRARY_PATH' >> steamrt/profile + ln -s ../lib64/steam-runtime steamrt/amd64 + ln -s ../lib/steam-runtime steamrt/i386 ''; - profile = if withRuntime then '' - source /steamrt/profile - '' else '' - # Ugly workaround for https://github.com/ValveSoftware/steam-for-linux/issues/3504 - export LD_PRELOAD=/lib32/libpulse.so:/lib64/libpulse.so:/lib32/libasound.so:/lib64/libasound.so:$LD_PRELOAD - # Another one for https://github.com/ValveSoftware/steam-for-linux/issues/3801 - export LD_PRELOAD=/lib32/libstdc++.so:/lib64/libstdc++.so:$LD_PRELOAD + profile = '' + export STEAM_RUNTIME=/steamrt ''; runScript = "steam"; diff --git a/pkgs/games/steam/default.nix b/pkgs/games/steam/default.nix index 2f2ce921176..c2a28a53ae6 100644 --- a/pkgs/games/steam/default.nix +++ b/pkgs/games/steam/default.nix @@ -1,38 +1,13 @@ -{stdenv, fetchurl, traceDeps ? false}: +{ pkgs, newScope }: -stdenv.mkDerivation rec { - name = "${program}-original-${version}"; - program = "steam"; - version = "1.0.0.49"; +let + callPackage = newScope self; - src = fetchurl { - url = "http://repo.steampowered.com/steam/pool/steam/s/steam/${program}_${version}.tar.gz"; - sha256 = "1c1gl5pwvb5gnnnqf5d9hpcjnfjjgmn4lgx8v0fbx1am5xf3p2gx"; + self = rec { + steam-runtime = callPackage ./runtime.nix { }; + steam-runtime-wrapped = callPackage ./runtime-wrapped.nix { }; + steam = callPackage ./steam.nix { }; + steam-chrootenv = callPackage ./chrootenv.nix { }; }; - traceLog = "/tmp/steam-trace-dependencies.log"; - - installPhase = '' - make DESTDIR=$out install - mv $out/usr/* $out #*/ - rmdir $out/usr - - rm $out/bin/steamdeps - ${stdenv.lib.optionalString traceDeps '' - cat > $out/bin/steamdeps <> ${traceLog} - cat \$1 >> ${traceLog} - echo >> ${traceLog} - EOF - chmod +x $out/bin/steamdeps - ''} - ''; - - meta = with stdenv.lib; { - description = "A digital distribution platform"; - homepage = http://store.steampowered.com/; - license = licenses.unfree; - maintainers = with maintainers; [ jagajaga ]; - }; -} +in self diff --git a/pkgs/games/steam/runtime-wrapped.nix b/pkgs/games/steam/runtime-wrapped.nix new file mode 100644 index 00000000000..238626c4ab4 --- /dev/null +++ b/pkgs/games/steam/runtime-wrapped.nix @@ -0,0 +1,109 @@ +{ stdenv, perl, pkgs, steam-runtime +, nativeOnly ? false +, runtimeOnly ? false +}: + +assert !(nativeOnly && runtimeOnly); + +let + runtimePkgs = with pkgs; [ + # Required + glib + gtk2 + bzip2 + zlib + gdk_pixbuf + + # Without these it silently fails + xlibs.libXinerama + xlibs.libXdamage + xlibs.libXcursor + xlibs.libXrender + xlibs.libXScrnSaver + xlibs.libXi + xlibs.libSM + xlibs.libICE + gnome2.GConf + freetype + curl + nspr + nss + fontconfig + cairo + pango + expat + dbus + cups + libcap + SDL2 + libusb1 + dbus_glib + libav + atk + # Only libraries are needed from those two + udev182 + networkmanager098 + + # Verified games requirements + xlibs.libXmu + xlibs.libxcb + xlibs.libpciaccess + mesa_glu + libuuid + libogg + libvorbis + SDL + SDL2_image + glew110 + openssl + libidn + + # Other things from runtime + xlibs.libXinerama + flac + freeglut + libjpeg + libpng12 + libsamplerate + libmikmod + libtheora + pixman + speex + SDL_image + SDL_ttf + SDL_mixer + SDL2_net + SDL2_ttf + SDL2_mixer + gstreamer + gst_plugins_base + ]; + + overridePkgs = with pkgs; [ + gcc48.cc # libstdc++ + libpulseaudio + alsaLib + openalSoft + ]; + + ourRuntime = if runtimeOnly then [] + else if nativeOnly then runtimePkgs ++ overridePkgs + else overridePkgs; + steamRuntime = stdenv.lib.optional (!nativeOnly) steam-runtime; + +in stdenv.mkDerivation rec { + name = "steam-runtime-wrapped"; + + allPkgs = ourRuntime ++ steamRuntime; + + nativeBuildInputs = [ perl ]; + + builder = ./build-runtime.sh; + + installPhase = '' + buildDir "${toString steam-runtime.libs}" "$allPkgs" + buildDir "${toString steam-runtime.bins}" "$allPkgs" + ''; + + meta.hydraPlatforms = []; +} diff --git a/pkgs/games/steam/steam.nix b/pkgs/games/steam/steam.nix new file mode 100644 index 00000000000..2f2ce921176 --- /dev/null +++ b/pkgs/games/steam/steam.nix @@ -0,0 +1,38 @@ +{stdenv, fetchurl, traceDeps ? false}: + +stdenv.mkDerivation rec { + name = "${program}-original-${version}"; + program = "steam"; + version = "1.0.0.49"; + + src = fetchurl { + url = "http://repo.steampowered.com/steam/pool/steam/s/steam/${program}_${version}.tar.gz"; + sha256 = "1c1gl5pwvb5gnnnqf5d9hpcjnfjjgmn4lgx8v0fbx1am5xf3p2gx"; + }; + + traceLog = "/tmp/steam-trace-dependencies.log"; + + installPhase = '' + make DESTDIR=$out install + mv $out/usr/* $out #*/ + rmdir $out/usr + + rm $out/bin/steamdeps + ${stdenv.lib.optionalString traceDeps '' + cat > $out/bin/steamdeps <> ${traceLog} + cat \$1 >> ${traceLog} + echo >> ${traceLog} + EOF + chmod +x $out/bin/steamdeps + ''} + ''; + + meta = with stdenv.lib; { + description = "A digital distribution platform"; + homepage = http://store.steampowered.com/; + license = licenses.unfree; + maintainers = with maintainers; [ jagajaga ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index bdd7411791b..762e3e6641f 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -13779,17 +13779,13 @@ let stardust = callPackage ../games/stardust {}; - steam-original = lowPrio (callPackage ../games/steam { }); - - steam = callPackage ../games/steam/chrootenv.nix { + steamPackages = callPackage ../games/steam { }; + steam = steamPackages.steam-chrootenv.override { # DEPRECATED withJava = config.steam.java or false; withPrimus = config.steam.primus or false; - withRuntime = config.steam.withRuntime or true; }; - steam-runtime = callPackage ../games/steam/runtime.nix { }; - stuntrally = callPackage ../games/stuntrally { }; superTux = callPackage ../games/super-tux { }; From 0edcf7802e98d8f2c1d6acebfc41e9a1d62f9ae9 Mon Sep 17 00:00:00 2001 From: Yochai Date: Tue, 8 Sep 2015 20:40:58 +0300 Subject: [PATCH 015/196] steam-chrootenv: added libdrm --- pkgs/games/steam/chrootenv.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/games/steam/chrootenv.nix b/pkgs/games/steam/chrootenv.nix index cbf5b92760b..b4542d4ed74 100644 --- a/pkgs/games/steam/chrootenv.nix +++ b/pkgs/games/steam/chrootenv.nix @@ -33,6 +33,7 @@ buildFHSUserEnv { # Not formally in runtime but needed by some games gst_all_1.gstreamer gst_all_1.gst-plugins-ugly + libdrm steamPackages.steam-runtime-wrapped ]; From fca867434090efd3bd5ac7b741da8bfad0fa8a7e Mon Sep 17 00:00:00 2001 From: rnhmjoj Date: Sun, 11 Oct 2015 23:52:13 +0200 Subject: [PATCH 016/196] cssselect: 0.7.1 -> 0.9.1 --- pkgs/top-level/python-packages.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 6ce5dfe5079..8c413a91355 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -2709,10 +2709,11 @@ let }; cssselect = buildPythonPackage rec { - name = "cssselect-0.7.1"; + name = "cssselect-${version}"; + version = "0.9.1"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/c/cssselect/cssselect-0.7.1.tar.gz"; - md5 = "c6c5e9a2e7ca226ce03f6f67a771379c"; + url = "http://pypi.python.org/packages/source/c/cssselect/${name}.tar.gz"; + sha256 = "10h623qnp6dp1191jri7lvgmnd4yfkl36k9smqklp1qlf3iafd85"; }; # AttributeError: 'module' object has no attribute 'tests' doCheck = false; From ab730370ba807cc98d6d23325589dbf490833bd6 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Tue, 28 Jul 2015 14:06:06 +0300 Subject: [PATCH 017/196] chroot-env: simplify, clean directories structure --- .../build-support/build-fhs-chrootenv/env.nix | 146 +++++++----------- 1 file changed, 55 insertions(+), 91 deletions(-) diff --git a/pkgs/build-support/build-fhs-chrootenv/env.nix b/pkgs/build-support/build-fhs-chrootenv/env.nix index 9665c71d3df..3acb0c8e6b7 100644 --- a/pkgs/build-support/build-fhs-chrootenv/env.nix +++ b/pkgs/build-support/build-fhs-chrootenv/env.nix @@ -1,61 +1,48 @@ { nixpkgs, nixpkgs_i686, system } : -{ name, pkgs ? [], profile ? "" -, targetPkgs ? null, multiPkgs ? null +{ name, profile ? "" +, pkgs ? null, targetPkgs ? pkgs: [], multiPkgs ? pkgs: [] , extraBuildCommands ? "", extraBuildCommandsMulti ? "" }: -assert pkgs != [] -> targetPkgs == null && multiPkgs == null; -assert targetPkgs != null -> multiPkgs != null; -assert multiPkgs != null -> targetPkgs != null; -assert targetPkgs != null -> pkgs == []; - - # HOWTO: -# If pkgs is defined buildFHSEnv will run in legacy mode. This means -# it will build all pkgs contained in pkgs and basePkgs and then just merge -# all of their contents together via buildEnv. +# All packages (most likely programs) returned from targetPkgs will only be +# installed once--matching the host's architecture (64bit on x86_64 and 32bit on +# x86). # -# The new way is to define both targetPkgs and multiPkgs. These two are -# functions which get a pkgs environment supplied and should then return a list -# of packages based this environment. -# For example: targetPkgs = pkgs: [ pkgs.nmap ]; -# -# All packages (most likely programs) placed in targetPkgs will only be -# installed once--matching the hosts architecture (64bit on x86_64 and 32bit on -# x86). These packages will populate the chroot directory tree. -# -# Packages (most likeley libraries) defined in multiPkgs will be installed once -# on x86 systems and twice on x86_64 systems. -# On x86 they will just be merge with the packages defined in targetPkgs. -# On x86_64 they will be added to targetPkgs and in addition their 32bit -# versions will also be installed. The final directory should look as follows: -# /lib will include 32bit libraries from multiPkgs -# /lib32 will link to /lib +# Packages (most likely libraries) returned from multiPkgs are installed +# once on x86 systems and twice on x86_64 systems. +# On x86 they are merged with packages from targetPkgs. +# On x86_64 they are added to targetPkgs and in addition their 32bit +# versions are also installed. The final directory structure looks as +# follows: +# /lib32 will include 32bit libraries from multiPkgs # /lib64 will include 64bit libraries from multiPkgs and targetPkgs -# /x86 will contain a complete 32bit environment composed by multiPkgs +# /lib will link to /lib32 let - is64Bit = system == "x86_64-linux"; - # enable multi builds on x86_64 hosts if pakgs_target/multi are defined - isMultiBuild = is64Bit && targetPkgs != null; + isMultiBuild = pkgs == null && multiPkgs != null && system == "x86_64-linux"; isTargetBuild = !isMultiBuild; - # list of packages (usually programs) which will only be installed for the - # hosts architecture - targetPaths = if targetPkgs == null - then pkgs - else targetPkgs nixpkgs ++ multiPkgs nixpkgs; + # support deprecated "pkgs" option. + targetPkgs' = + if pkgs != null + then builtins.trace "buildFHSEnv: 'pkgs' option is deprecated, use 'targetPkgs'" (pkgs': pkgs) + else targetPkgs; - # list of pckages which should be build for both x86 and x86_64 on x86_64 + # list of packages (usually programs) which are only be installed for the + # host's architecture + targetPaths = targetPkgs' nixpkgs ++ (if multiPkgs == null then [] else multiPkgs nixpkgs); + + # list of packages which are installed for both x86 and x86_64 on x86_64 # systems multiPaths = if isMultiBuild then multiPkgs nixpkgs_i686 else []; # base packages of the chroot - # these match the hosts architecture, gcc/glibc_multi will be choosen - # on multi builds + # these match the host's architecture, gcc/glibc_multi are used for multilib + # builds. chosenGcc = if isMultiBuild then nixpkgs.gcc_multi else nixpkgs.gcc; basePkgs = with nixpkgs; [ (if isMultiBuild then glibc_multi else glibc) @@ -73,11 +60,11 @@ let cd $out/etc # environment variables - cat >> profile << "EOF" + cat >> profile < links to the whole profile defined by multiPaths - # /lib, /lib32 -> links to 32bit binaries - # /lib64 -> links to 64bit binaries - # /usr/lib* -> same as above - setupMultiProfile = if isTargetBuild then "" else '' - mkdir -m0755 x86 - cd x86 - ${linkProfile staticUsrProfileMulti} - cd .. - ''; - # setup library paths only for the targeted architecture setupLibDirs_target = '' mkdir -m0755 lib # copy content of targetPaths - cp -rsf ${staticUsrProfileTarget}/lib/* lib/ + cp -rsHf ${staticUsrProfileTarget}/lib/* lib/ ''; # setup /lib, /lib32 and /lib64 setupLibDirs_multi = '' - mkdir -m0755 lib + mkdir -m0755 lib32 mkdir -m0755 lib64 - ln -s lib lib32 + ln -s lib32 lib # copy glibc stuff - cp -rsf ${staticUsrProfileTarget}/lib/32/* lib/ && chmod u+w -R lib/ + cp -rsHf ${staticUsrProfileTarget}/lib/32/* lib32/ && chmod u+w -R lib32/ # copy content of multiPaths (32bit libs) - [ -d ${staticUsrProfileMulti}/lib ] && cp -rsf ${staticUsrProfileMulti}/lib/* lib/ && chmod u+w -R lib/ + [ -d ${staticUsrProfileMulti}/lib ] && cp -rsHf ${staticUsrProfileMulti}/lib/* lib32/ && chmod u+w -R lib32/ # copy content of targetPaths (64bit libs) - cp -rsf ${staticUsrProfileTarget}/lib/* lib64/ && chmod u+w -R lib64/ + cp -rsHf ${staticUsrProfileTarget}/lib/* lib64/ && chmod u+w -R lib64/ # most 64bit only libs put their stuff into /lib - # some pkgs (like gcc_multi) put 32bit libs into and /lib 64bit libs into /lib64 + # some pkgs (like gcc_multi) put 32bit libs into /lib and 64bit libs into /lib64 # by overwriting these we will hopefully catch all these cases - # in the end /lib should only contain 32bit and /lib64 only 64bit libs - cp -rsf ${staticUsrProfileTarget}/lib64/* lib64/ && chmod u+w -R lib64/ + # in the end /lib32 should only contain 32bit and /lib64 only 64bit libs + cp -rsHf ${staticUsrProfileTarget}/lib64/* lib64/ && chmod u+w -R lib64/ - # copy gcc libs (and may overwrite exitsting wrongly placed libs) - cp -rsf ${chosenGcc.cc}/lib/* lib/ - cp -rsf ${chosenGcc.cc}/lib64/* lib64/ + # copy gcc libs + cp -rsHf ${chosenGcc.cc}/lib/* lib32/ + cp -rsHf ${chosenGcc.cc}/lib64/* lib64/ ''; setupLibDirs = if isTargetBuild then setupLibDirs_target else setupLibDirs_multi; - setupIncludeDir = '' - if [ -x "${staticUsrProfileTarget}/include" ] - then - ln -s "${staticUsrProfileTarget}/include" - fi - ''; - # the target profile is the actual profile that will be used for the chroot setupTargetProfile = '' - ${linkProfile staticUsrProfileTarget} - ${setupLibDirs} - mkdir -m0755 usr cd usr - ${linkProfile staticUsrProfileTarget} ${setupLibDirs} - ${setupIncludeDir} + for i in bin sbin share include; do + cp -r "${staticUsrProfileTarget}/$i" $i + done cd .. - rm -rf usr/etc usr/var + + for i in var etc; do + cp -r "${staticUsrProfileTarget}/$i" "$i" + done + for i in usr/{bin,sbin,lib,lib32,lib64}; do + if [ -x "$i" ]; then + ln -s "$i" + fi + done ''; in nixpkgs.stdenv.mkDerivation { @@ -210,7 +175,6 @@ in nixpkgs.stdenv.mkDerivation { mkdir -p $out cd $out ${setupTargetProfile} - ${setupMultiProfile} cd $out ${extraBuildCommands} cd $out From f2898b9ee5635adb1ff055e58f1add052a62de6a Mon Sep 17 00:00:00 2001 From: rnhmjoj Date: Wed, 14 Oct 2015 17:03:13 +0200 Subject: [PATCH 018/196] pyquery: 1.2.4 -> 1.2.9 --- pkgs/top-level/python-packages.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 6ce5dfe5079..10996d57e6e 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -12188,11 +12188,12 @@ let pyquery = buildPythonPackage rec { - name = "pyquery-1.2.4"; + name = "pyquery-${version}"; + version = "1.2.9"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/p/pyquery/${name}.tar.gz"; - md5 = "268f08258738d21bc1920d7522f2a63b"; + url = "http://pypi.python.org/packages/source/p/pyquery/${name}.zip"; + sha256 = "00p6f1dfma65192hc72dxd506491lsq3g5wgxqafi1xpg2w1xia6"; }; propagatedBuildInputs = with self; [ cssselect lxml ]; From 79321fbecdf9c20c83f2275a8162455ceda2159e Mon Sep 17 00:00:00 2001 From: Perry Barnoy Date: Wed, 14 Oct 2015 16:25:54 -0400 Subject: [PATCH 019/196] - Added myself as a maintainer - Boilerplate whiskermenu expression --- lib/maintainers.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/maintainers.nix b/lib/maintainers.nix index 1b02bd37130..ce9e8f39d66 100644 --- a/lib/maintainers.nix +++ b/lib/maintainers.nix @@ -216,6 +216,7 @@ phreedom = "Evgeny Egorochkin "; pierron = "Nicolas B. Pierron "; piotr = "Piotr Pietraszkiewicz "; + pjbarnoy = "Perry Barnoy "; pjones = "Peter Jones "; pkmx = "Chih-Mao Chen "; plcplc = "Philip Lykke Carlsen "; From 739724b4b0d03ec44c036ec1310ed1c10ba5e96a Mon Sep 17 00:00:00 2001 From: "Desmond O. Chang" Date: Thu, 15 Oct 2015 08:26:55 +0800 Subject: [PATCH 020/196] editorconfig-core-c: init at 0.12.0 --- .../misc/editorconfig-core-c/default.nix | 34 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 36 insertions(+) create mode 100644 pkgs/development/tools/misc/editorconfig-core-c/default.nix diff --git a/pkgs/development/tools/misc/editorconfig-core-c/default.nix b/pkgs/development/tools/misc/editorconfig-core-c/default.nix new file mode 100644 index 00000000000..83ff85298f4 --- /dev/null +++ b/pkgs/development/tools/misc/editorconfig-core-c/default.nix @@ -0,0 +1,34 @@ +{ stdenv, fetchgit, cmake, pcre, doxygen }: + +stdenv.mkDerivation rec { + + name = "editorconfig-core-c-${meta.version}"; + + src = fetchgit { + url = "https://github.com/editorconfig/editorconfig-core-c.git"; + rev = "99d09270c58b817ea218979d513a90099ade6277"; + fetchSubmodules = true; + sha256 = "0s35dzf2180205xq2xpfmmlfw112j3h87swnisza85qwwz8bf2k9"; + inherit name; + }; + + buildInputs = [ cmake pcre doxygen ]; + + meta = with stdenv.lib; { + homepage = "http://editorconfig.org/"; + description = "EditorConfig core library written in C"; + longDescription = '' + EditorConfig makes it easy to maintain the correct coding style when + switching between different text editors and between different + projects. The EditorConfig project maintains a file format and plugins + for various text editors which allow this file format to be read and used + by those editors. For information on the file format and supported text + editors, see the EditorConfig website. + ''; + downloadPage = "https://github.com/editorconfig/editorconfig-core-c"; + license = with licenses; [ bsd2 bsd3 ]; + version = "0.12.0"; + maintainers = [ maintainers.dochang ]; + }; + +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 037030f9794..d4f24d66f02 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -5486,6 +5486,8 @@ let drush = callPackage ../development/tools/misc/drush { }; + editorconfig-core-c = callPackage ../development/tools/misc/editorconfig-core-c { }; + eggdbus = callPackage ../development/tools/misc/eggdbus { }; egypt = callPackage ../development/tools/analysis/egypt { }; From a7177216c62a5ea626df8fc86d8ed1ff5c2b7591 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Thu, 15 Oct 2015 14:52:43 +0300 Subject: [PATCH 021/196] steam-chrootenv: added corefonts --- pkgs/games/steam/chrootenv.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/games/steam/chrootenv.nix b/pkgs/games/steam/chrootenv.nix index b4542d4ed74..5cc050f9401 100644 --- a/pkgs/games/steam/chrootenv.nix +++ b/pkgs/games/steam/chrootenv.nix @@ -14,8 +14,10 @@ buildFHSUserEnv { # Games' dependencies xlibs.xrandr which - # needed by gdialog, including in the steam-runtime + # Needed by gdialog, including in the steam-runtime perl + # Problems with text visibility in some games + corefonts ] ++ lib.optional withJava jdk ++ lib.optional withPrimus primus From 729098633ca718c960bc01d2bccb29950f2ffa88 Mon Sep 17 00:00:00 2001 From: Florian Paul Schmidt Date: Thu, 15 Oct 2015 14:16:23 +0200 Subject: [PATCH 022/196] ardour: 4.2 -> 4.3 --- pkgs/applications/audio/ardour/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/audio/ardour/default.nix b/pkgs/applications/audio/ardour/default.nix index e47dbfb856b..a9f699a04cd 100644 --- a/pkgs/applications/audio/ardour/default.nix +++ b/pkgs/applications/audio/ardour/default.nix @@ -15,7 +15,7 @@ let # "git describe" when _not_ on an annotated tag(!): MAJOR.MINOR-REV-HASH. # Version to build. - tag = "4.2"; + tag = "4.3"; in @@ -25,8 +25,8 @@ stdenv.mkDerivation rec { src = fetchFromGitHub { owner = "Ardour"; repo = "ardour"; - rev = "fe672c827cb2c08c94b1fa7e527d884c522a1af7"; - sha256 = "12yfy9l5mnl96ix4s2qicp3m2zscli1a4bd50nk9v035pgf77s3f"; + rev = "8d46cc99fe2778c5658b659f4f1fe6ac828bb9e9"; + sha256 = "0rr55s3rirlfq455x0xzx8w09kji1fac2n8cx9p6p57qsfvxxblp"; }; buildInputs = @@ -80,6 +80,6 @@ stdenv.mkDerivation rec { homepage = http://ardour.org/; license = licenses.gpl2; platforms = platforms.linux; - maintainers = [ maintainers.goibhniu ]; + maintainers = [ maintainers.goibhniu maintainers.fps ]; }; } From 2286c1894d6307949f5248c917afba19dad940b9 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Thu, 15 Oct 2015 15:17:13 +0300 Subject: [PATCH 023/196] steam-fonts: init at 1 --- pkgs/games/steam/default.nix | 1 + pkgs/games/steam/fonts.nix | 19 +++++++++++++++++++ 2 files changed, 20 insertions(+) create mode 100644 pkgs/games/steam/fonts.nix diff --git a/pkgs/games/steam/default.nix b/pkgs/games/steam/default.nix index c2a28a53ae6..64f8cfe2c28 100644 --- a/pkgs/games/steam/default.nix +++ b/pkgs/games/steam/default.nix @@ -8,6 +8,7 @@ let steam-runtime-wrapped = callPackage ./runtime-wrapped.nix { }; steam = callPackage ./steam.nix { }; steam-chrootenv = callPackage ./chrootenv.nix { }; + steam-fonts = callPackage ./fonts.nix { }; }; in self diff --git a/pkgs/games/steam/fonts.nix b/pkgs/games/steam/fonts.nix new file mode 100644 index 00000000000..dab393a86fb --- /dev/null +++ b/pkgs/games/steam/fonts.nix @@ -0,0 +1,19 @@ +{ stdenv, fetchurl, unzip }: + +stdenv.mkDerivation { + name = "steam-fonts-1"; + + src = fetchurl { + url = https://support.steampowered.com/downloads/1974-YFKL-4947/SteamFonts.zip; + sha256 = "1cgygmwich5f1jhhbmbkkpnzasjl8gy36xln76n6r2gjh6awqfx0"; + }; + + buildInputs = [ unzip ]; + + sourceRoot = "."; + + installPhase = '' + mkdir -p $out/share/fonts/truetype + cp -r *.TTF *.ttf $out/share/fonts/truetype + ''; +} From 18ddcd28473953bfe4f416f5c0882f2040280fb0 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Thu, 15 Oct 2015 15:17:28 +0300 Subject: [PATCH 024/196] steam-fonts: use for chrootenv --- pkgs/games/steam/chrootenv.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pkgs/games/steam/chrootenv.nix b/pkgs/games/steam/chrootenv.nix index 5cc050f9401..6028883c363 100644 --- a/pkgs/games/steam/chrootenv.nix +++ b/pkgs/games/steam/chrootenv.nix @@ -8,6 +8,7 @@ buildFHSUserEnv { targetPkgs = pkgs: with pkgs; [ steamPackages.steam + steamPackages.steam-fonts # Errors in output without those pciutils python2 @@ -16,8 +17,6 @@ buildFHSUserEnv { which # Needed by gdialog, including in the steam-runtime perl - # Problems with text visibility in some games - corefonts ] ++ lib.optional withJava jdk ++ lib.optional withPrimus primus From a8113e2c8c3c522e3a35d75c278c582cac444ddb Mon Sep 17 00:00:00 2001 From: Florian Paul Schmidt Date: Thu, 15 Oct 2015 15:01:35 +0200 Subject: [PATCH 025/196] ardour: add a clarifying comment to patchPhase --- pkgs/applications/audio/ardour/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/applications/audio/ardour/default.nix b/pkgs/applications/audio/ardour/default.nix index a9f699a04cd..c9075220cd6 100644 --- a/pkgs/applications/audio/ardour/default.nix +++ b/pkgs/applications/audio/ardour/default.nix @@ -37,6 +37,9 @@ stdenv.mkDerivation rec { makeWrapper pango perl pkgconfig python rubberband serd sord-svn sratom suil taglib vampSDK ]; + # ardour's wscript has a "tarball" target but that required the git revision + # be available. Since this is an unzipped tarball fetched from github we + # have to do that ourself. patchPhase = '' printf '#include "libs/ardour/ardour/revision.h"\nnamespace ARDOUR { const char* revision = \"${tag}-${builtins.substring 0 8 src.rev}\"; }\n' > libs/ardour/revision.cc sed 's|/usr/include/libintl.h|${glibc}/include/libintl.h|' -i wscript From 01a903335c2767e2a2533db572c22d3c5353a8db Mon Sep 17 00:00:00 2001 From: Pavan Rikhi Date: Thu, 15 Oct 2015 11:40:37 -0400 Subject: [PATCH 026/196] pencil: v2.0.13 -> v2.0.14 --- pkgs/applications/graphics/pencil/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/graphics/pencil/default.nix b/pkgs/applications/graphics/pencil/default.nix index 94ab1b76cda..a067efe82ea 100644 --- a/pkgs/applications/graphics/pencil/default.nix +++ b/pkgs/applications/graphics/pencil/default.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, makeWrapper, xulrunner }: stdenv.mkDerivation rec { - version = "2.0.13"; + version = "2.0.14"; name = "pencil-${version}"; src = fetchurl { url = "https://github.com/prikhi/pencil/releases/download/v${version}/Pencil-${version}-linux-pkg.tar.gz"; - sha256 = "150jsaq27n01l0vf10jiyrlfm0canqhphdxi42di96b9zsfkphpk"; + sha256 = "59f46db863e6d95ee6987e600d658ad4b58b03b0744c5c6d17ce04f5ae92d260"; }; From cfb265195910d76d4394eb75126054ef5c45aa98 Mon Sep 17 00:00:00 2001 From: "William A. Kennington III" Date: Thu, 15 Oct 2015 10:38:01 -0700 Subject: [PATCH 027/196] kernel: 3.12.48 -> 3.12.49 --- pkgs/os-specific/linux/kernel/linux-3.12.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-3.12.nix b/pkgs/os-specific/linux/kernel/linux-3.12.nix index da520d13a02..2fdabf30c99 100644 --- a/pkgs/os-specific/linux/kernel/linux-3.12.nix +++ b/pkgs/os-specific/linux/kernel/linux-3.12.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, perl, buildLinux, ... } @ args: import ./generic.nix (args // rec { - version = "3.12.48"; + version = "3.12.49"; extraMeta.branch = "3.12"; src = fetchurl { url = "mirror://kernel/linux/kernel/v3.x/linux-${version}.tar.xz"; - sha256 = "1mvvpi2s8avg629y72miak8mdbv0mwb5dz0m7b48aah6dg866hiz"; + sha256 = "1vl8ghwhrs2sxd7kgi95nqlmf5k8ps0kr2lyly40ys262174i8lg"; }; features.iwlwifi = true; From 7fccf2ea68925293a3d8f552fd6495ec45a87f54 Mon Sep 17 00:00:00 2001 From: "William A. Kennington III" Date: Thu, 15 Oct 2015 10:38:25 -0700 Subject: [PATCH 028/196] gnupg: 2.1.8 -> 2.1.9 --- pkgs/tools/security/gnupg/21.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/security/gnupg/21.nix b/pkgs/tools/security/gnupg/21.nix index 20d2eb15b97..5fbd6e83970 100644 --- a/pkgs/tools/security/gnupg/21.nix +++ b/pkgs/tools/security/gnupg/21.nix @@ -13,11 +13,11 @@ with stdenv.lib; assert x11Support -> pinentry != null; stdenv.mkDerivation rec { - name = "gnupg-2.1.8"; + name = "gnupg-2.1.9"; src = fetchurl { url = "mirror://gnupg/gnupg/${name}.tar.bz2"; - sha256 = "18w14xp0ynzzwpklyplkzbrncds1hly4k2gjx115swch8qgd1f53"; + sha256 = "1dpp555glln6fldk72ad7lkrn8h3cr2bg714z5kfn2qrawx67dqw"; }; postPatch = stdenv.lib.optionalString stdenv.isLinux '' From 194357ad2036ba723bf8bd66ad250dfb19384c4b Mon Sep 17 00:00:00 2001 From: "William A. Kennington III" Date: Thu, 15 Oct 2015 10:41:00 -0700 Subject: [PATCH 029/196] grsecurityUnstable: 4.1.7 -> 4.2.3 --- pkgs/build-support/grsecurity/default.nix | 2 +- pkgs/os-specific/linux/kernel/linux-4.1.nix | 1 - pkgs/os-specific/linux/kernel/linux-4.2.nix | 1 + pkgs/os-specific/linux/kernel/patches.nix | 6 +++--- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/build-support/grsecurity/default.nix b/pkgs/build-support/grsecurity/default.nix index f26291e7daa..3bf40a2e8d6 100644 --- a/pkgs/build-support/grsecurity/default.nix +++ b/pkgs/build-support/grsecurity/default.nix @@ -33,7 +33,7 @@ let grKernel = if cfg.stable then mkKernel pkgs.linux_3_14 stable-patch - else mkKernel pkgs.linux_4_1 test-patch; + else mkKernel pkgs.linux_4_2 test-patch; ## -- grsecurity configuration --------------------------------------------- diff --git a/pkgs/os-specific/linux/kernel/linux-4.1.nix b/pkgs/os-specific/linux/kernel/linux-4.1.nix index ba0ff2a5ede..8a1f27afb8a 100644 --- a/pkgs/os-specific/linux/kernel/linux-4.1.nix +++ b/pkgs/os-specific/linux/kernel/linux-4.1.nix @@ -2,7 +2,6 @@ import ./generic.nix (args // rec { version = "4.1.10"; - # Remember to update grsecurity! extraMeta.branch = "4.1"; src = fetchurl { diff --git a/pkgs/os-specific/linux/kernel/linux-4.2.nix b/pkgs/os-specific/linux/kernel/linux-4.2.nix index a2d9b5076dd..24df9a7eb92 100644 --- a/pkgs/os-specific/linux/kernel/linux-4.2.nix +++ b/pkgs/os-specific/linux/kernel/linux-4.2.nix @@ -2,6 +2,7 @@ import ./generic.nix (args // rec { version = "4.2.3"; + # Remember to update grsecurity! extraMeta.branch = "4.2"; src = fetchurl { diff --git a/pkgs/os-specific/linux/kernel/patches.nix b/pkgs/os-specific/linux/kernel/patches.nix index de1b16347e1..cd34819a848 100644 --- a/pkgs/os-specific/linux/kernel/patches.nix +++ b/pkgs/os-specific/linux/kernel/patches.nix @@ -87,10 +87,10 @@ rec { }; grsecurity_unstable = grsecPatch - { kversion = "4.1.7"; - revision = "201509131604"; + { kversion = "4.2.3"; + revision = "201510130858"; branch = "test"; - sha256 = "1frfyi1pkiqc3awri3sr7xv41qxc8m2kb1yhfvj6xkrwb9li2bki"; + sha256 = "0ndzcx9i94c065dlyvgykmin5bfkbydrv0kxxq52a4c9is6nlsrb"; }; grsec_fix_path = From b1edc7909a116bf48ea95c41c6702941cf62a792 Mon Sep 17 00:00:00 2001 From: Charles Strahan Date: Thu, 15 Oct 2015 14:25:43 -0400 Subject: [PATCH 030/196] powertop: fix --auto-tune See https://lists.01.org/pipermail/powertop/2014-December/001727.html --- pkgs/os-specific/linux/powertop/auto-tune.patch | 11 +++++++++++ pkgs/os-specific/linux/powertop/default.nix | 6 +++++- 2 files changed, 16 insertions(+), 1 deletion(-) create mode 100644 pkgs/os-specific/linux/powertop/auto-tune.patch diff --git a/pkgs/os-specific/linux/powertop/auto-tune.patch b/pkgs/os-specific/linux/powertop/auto-tune.patch new file mode 100644 index 00000000000..c9095336e8d --- /dev/null +++ b/pkgs/os-specific/linux/powertop/auto-tune.patch @@ -0,0 +1,11 @@ +diff --git a/src/devices/devfreq.cpp b/src/devices/devfreq.cpp +index d2e56e3..4de5c9b 100644 +--- a/src/devices/devfreq.cpp ++++ b/src/devices/devfreq.cpp +@@ -247,6 +247,7 @@ void create_all_devfreq_devices(void) + fprintf(stderr, "Devfreq not enabled\n"); + is_enabled = false; + closedir(dir); ++ dir = NULL; + return; + } diff --git a/pkgs/os-specific/linux/powertop/default.nix b/pkgs/os-specific/linux/powertop/default.nix index 9e32cd70cfb..82ca746d6a4 100644 --- a/pkgs/os-specific/linux/powertop/default.nix +++ b/pkgs/os-specific/linux/powertop/default.nix @@ -10,7 +10,11 @@ stdenv.mkDerivation rec { buildInputs = [ gettext libnl ncurses pciutils pkgconfig zlib ]; - patchPhase = '' + # Fix --auto-tune bug: + # https://lists.01.org/pipermail/powertop/2014-December/001727.html + patches = [ ./auto-tune.patch ]; + + postPatch = '' substituteInPlace src/main.cpp --replace "/sbin/modprobe" "modprobe" ''; From 60be0292504c965c4065748c1e9080a200459f24 Mon Sep 17 00:00:00 2001 From: Michael Raskin <7c6f434c@mail.ru> Date: Thu, 15 Oct 2015 21:56:58 +0300 Subject: [PATCH 031/196] Paratype PT: init --- pkgs/data/fonts/paratype-pt/mono.nix | 36 +++++++++++++++++++++++++++ pkgs/data/fonts/paratype-pt/sans.nix | 36 +++++++++++++++++++++++++++ pkgs/data/fonts/paratype-pt/serif.nix | 36 +++++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 4 +++ 4 files changed, 112 insertions(+) create mode 100644 pkgs/data/fonts/paratype-pt/mono.nix create mode 100644 pkgs/data/fonts/paratype-pt/sans.nix create mode 100644 pkgs/data/fonts/paratype-pt/serif.nix diff --git a/pkgs/data/fonts/paratype-pt/mono.nix b/pkgs/data/fonts/paratype-pt/mono.nix new file mode 100644 index 00000000000..7c7a8c530e2 --- /dev/null +++ b/pkgs/data/fonts/paratype-pt/mono.nix @@ -0,0 +1,36 @@ +{ stdenv, fetchurl, unzip }: + +stdenv.mkDerivation rec { + name = "paratype-pt-mono"; + + src = fetchurl rec { + url = "http://www.paratype.ru/uni/public/PTMono.zip"; + sha256 = "1wqaai7d6xh552vvr5svch07kjn1q89ab5jimi2z0sbd0rbi86vl"; + }; + + buildInputs = [unzip]; + + phases = "unpackPhase installPhase"; + sourceRoot = "."; + + installPhase = '' + mkdir -p $out/share/fonts/truetype + mkdir -p $out/share/doc/paratype + cp *.ttf $out/share/fonts/truetype + cp *.txt $out/share/doc/paratype + ''; + + meta = with stdenv.lib; { + homepage = "http://www.paratype.ru/public/"; + description = "An open Paratype font"; + + license = "Open Paratype license"; + # no commercial distribution of the font on its own + # must rename on modification + # http://www.paratype.ru/public/pt_openlicense.asp + + platforms = platforms.all; + maintainers = with maintainers; [ raskin ]; + }; +} + diff --git a/pkgs/data/fonts/paratype-pt/sans.nix b/pkgs/data/fonts/paratype-pt/sans.nix new file mode 100644 index 00000000000..2958611e474 --- /dev/null +++ b/pkgs/data/fonts/paratype-pt/sans.nix @@ -0,0 +1,36 @@ +{ stdenv, fetchurl, unzip }: + +stdenv.mkDerivation rec { + name = "paratype-pt-sane"; + + src = fetchurl rec { + url = "http://www.paratype.ru/uni/public/PTSans.zip"; + sha256 = "1j9gkbqyhxx8pih5agr9nl8vbpsfr9vdqmhx73ji3isahqm3bhv5"; + }; + + buildInputs = [unzip]; + + phases = "unpackPhase installPhase"; + sourceRoot = "."; + + installPhase = '' + mkdir -p $out/share/fonts/truetype + mkdir -p $out/share/doc/paratype + cp *.ttf $out/share/fonts/truetype + cp *.txt $out/share/doc/paratype + ''; + + meta = with stdenv.lib; { + homepage = "http://www.paratype.ru/public/"; + description = "An open Paratype font"; + + license = "Open Paratype license"; + # no commercial distribution of the font on its own + # must rename on modification + # http://www.paratype.ru/public/pt_openlicense.asp + + platforms = platforms.all; + maintainers = with maintainers; [ raskin ]; + }; +} + diff --git a/pkgs/data/fonts/paratype-pt/serif.nix b/pkgs/data/fonts/paratype-pt/serif.nix new file mode 100644 index 00000000000..b0304c37386 --- /dev/null +++ b/pkgs/data/fonts/paratype-pt/serif.nix @@ -0,0 +1,36 @@ +{ stdenv, fetchurl, unzip }: + +stdenv.mkDerivation rec { + name = "paratype-pt-serif"; + + src = fetchurl rec { + url = "http://www.paratype.ru/uni/public/PTSerif.zip"; + sha256 = "0x3l58c1rvwmh83bmmgqwwbw9av1mvvq68sw2hdkyyihjvamyvvs"; + }; + + buildInputs = [unzip]; + + phases = "unpackPhase installPhase"; + sourceRoot = "."; + + installPhase = '' + mkdir -p $out/share/fonts/truetype + mkdir -p $out/share/doc/paratype + cp *.ttf $out/share/fonts/truetype + cp *.txt $out/share/doc/paratype + ''; + + meta = with stdenv.lib; { + homepage = "http://www.paratype.ru/public/"; + description = "An open Paratype font"; + + license = "Open Paratype license"; + # no commercial distribution of the font on its own + # must rename on modification + # http://www.paratype.ru/public/pt_openlicense.asp + + platforms = platforms.all; + maintainers = with maintainers; [ raskin ]; + }; +} + diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index dbafc1050bd..b1608bf2f2e 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10588,6 +10588,10 @@ let pecita = callPackage ../data/fonts/pecita {}; + paratype-pt-mono = callPackage ../data/fonts/paratype-pt/mono.nix {}; + paratype-pt-sans = callPackage ../data/fonts/paratype-pt/sans.nix {}; + paratype-pt-serif = callPackage ../data/fonts/paratype-pt/serif.nix {}; + poly = callPackage ../data/fonts/poly { }; posix_man_pages = callPackage ../data/documentation/man-pages-posix { }; From bbfae3c0137c9b4bed6c663c9003afb35356cd53 Mon Sep 17 00:00:00 2001 From: Rehno Lindeque Date: Thu, 15 Oct 2015 20:03:07 +0000 Subject: [PATCH 032/196] heroku: 3.32.0 -> 3.42.20 --- pkgs/development/tools/heroku/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/heroku/default.nix b/pkgs/development/tools/heroku/default.nix index df5f6454f6d..f41ad639e45 100644 --- a/pkgs/development/tools/heroku/default.nix +++ b/pkgs/development/tools/heroku/default.nix @@ -2,7 +2,7 @@ with stdenv.lib; stdenv.mkDerivation rec { - version = "3.32.0"; + version = "3.42.20"; name = "heroku-${version}"; meta = { @@ -14,7 +14,7 @@ stdenv.mkDerivation rec { src = fetchurl { url = "https://s3.amazonaws.com/assets.heroku.com/heroku-client/heroku-client-${version}.tgz"; - sha256 = "1596zmnlwshx15xiccfskm71syrlm87jf40y2x0y7wn0vfcyis5s"; + sha256 = "1d472vm37lx5nyyaymjglavisb1mkyzbjglzjp5im7wjfifvsd29"; }; installPhase = '' From fc69fadfe49e6618ef34be7ceacbcd1cb93ad506 Mon Sep 17 00:00:00 2001 From: "William A. Kennington III" Date: Thu, 15 Oct 2015 13:13:24 -0700 Subject: [PATCH 033/196] chromiumBeta: 46.0.2490.52 -> 46.0.2490.64 --- .../networking/browsers/chromium/source/sources.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/networking/browsers/chromium/source/sources.nix b/pkgs/applications/networking/browsers/chromium/source/sources.nix index 94755ea3ad4..3ce3dd813c1 100644 --- a/pkgs/applications/networking/browsers/chromium/source/sources.nix +++ b/pkgs/applications/networking/browsers/chromium/source/sources.nix @@ -7,10 +7,10 @@ sha256bin64 = "1ycdp37ikdc9w4hp9qgpzjp47zh37g01ax8x4ack202vrv0dxhsh"; }; beta = { - version = "46.0.2490.52"; - sha256 = "00sgb1pnp3fcijwdwpngnnddmn5nrbljsqz7f6dlnd63qfc91xjw"; - sha256bin32 = "10jgcxc2zwffg8lxi55zl9apql6pyxh1g1n3z46gcb6j6am4y5m5"; - sha256bin64 = "0i839ir4qcjl9llpqnwy793hvbdfh898x1izc5k93h7nm6i34ry9"; + version = "46.0.2490.64"; + sha256 = "1k2zir4rbs7hwdasbjpwyjr4ibis2vm6lx45bfm2r2f469mf3y2g"; + sha256bin32 = "0j1xncws0r5z2rvvjsi0gxxmnslfcbiasaxr6bjhbxnzjv7chrd4"; + sha256bin64 = "1m8vv3qh79an3719afz7n2ijqanf4cyxz2q4bzm512x52z5zipl7"; }; stable = { version = "45.0.2454.101"; From 0ad0fbdf8aebeb01b10d71117eab7aaccbe01849 Mon Sep 17 00:00:00 2001 From: "William A. Kennington III" Date: Thu, 15 Oct 2015 13:13:42 -0700 Subject: [PATCH 034/196] chromium: 45.0.2454.101 -> 46.0.2490.71 --- .../networking/browsers/chromium/source/sources.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/networking/browsers/chromium/source/sources.nix b/pkgs/applications/networking/browsers/chromium/source/sources.nix index 3ce3dd813c1..974a4ecf27b 100644 --- a/pkgs/applications/networking/browsers/chromium/source/sources.nix +++ b/pkgs/applications/networking/browsers/chromium/source/sources.nix @@ -13,9 +13,9 @@ sha256bin64 = "1m8vv3qh79an3719afz7n2ijqanf4cyxz2q4bzm512x52z5zipl7"; }; stable = { - version = "45.0.2454.101"; - sha256 = "1yw5xlgy5hd3iwcyf0sillq5p367fcpvp4mizpmv52cwmv52ss0v"; - sha256bin32 = "1ll8lmkmx7v74naz1vcnrwk5ighh0skfcb66jkq4kgxrb5fjgwm5"; - sha256bin64 = "1cwbd3n77dnbfnrfr8g0qng9xkgvz6y7mx489gpx1wsamgi42bzj"; + version = "46.0.2490.71"; + sha256 = "1dnwhwvn39x8lm1jszjn8y7vy478zy75gm696rr2dvk4kqj1hjyd"; + sha256bin32 = "1v1acg32dzmkydzy7sh6xjbzqar052iw8x8hql2yjz5kxznir4sf"; + sha256bin64 = "15ladhxiym760mid5zq09vp73irzwlp31br9yqslzgv4460ma3np"; }; } From ca9b59a3edc48dabca8caedc5467884b8142690c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Guillaume=20Mass=C3=A9?= Date: Thu, 15 Oct 2015 16:15:06 -0400 Subject: [PATCH 035/196] kawkab-mono font type --- pkgs/data/fonts/kawkab-mono/default.nix | 26 +++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 28 insertions(+) create mode 100644 pkgs/data/fonts/kawkab-mono/default.nix diff --git a/pkgs/data/fonts/kawkab-mono/default.nix b/pkgs/data/fonts/kawkab-mono/default.nix new file mode 100644 index 00000000000..4f6e430f7a2 --- /dev/null +++ b/pkgs/data/fonts/kawkab-mono/default.nix @@ -0,0 +1,26 @@ +{stdenv, fetchurl, unzip}: + +stdenv.mkDerivation rec { + name = "kawkab-mono-20151015"; + + src = fetchurl { + url = "http://makkuk.com/kawkab-mono/downloads/kawkab-mono-0.1.zip"; + sha256 = "16pv9s4q7199aacbzfi2d10rcrq77vyfvzcy42g80nhfrkz1cb0m"; + }; + + buildInputs = [ unzip ]; + sourceRoot = "."; + + installPhase = '' + mkdir -p $out/share/fonts/truetype + cp *.ttf $out/share/fonts/truetype + ''; + + meta = { + description = "An arab fixed-width font"; + homepage = "http://makkuk.com/kawkab-mono/"; + license = stdenv.lib.licenses.ofl; + }; +} + + diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index b1608bf2f2e..cd5462b15b0 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10537,6 +10537,8 @@ let junicode = callPackage ../data/fonts/junicode { }; + kawkab-mono-font = callPackage ../data/fonts/kawkab-mono {}; + kochi-substitute = callPackage ../data/fonts/kochi-substitute {}; kochi-substitute-naga10 = callPackage ../data/fonts/kochi-substitute-naga10 {}; From 07372d04a24cd431a4694e6a4182b91396482806 Mon Sep 17 00:00:00 2001 From: Petar Bogdanovic Date: Thu, 15 Oct 2015 22:21:42 +0200 Subject: [PATCH 036/196] install ripmime manual into share/man instead of man --- pkgs/tools/networking/ripmime/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/networking/ripmime/default.nix b/pkgs/tools/networking/ripmime/default.nix index d9445b74976..fd5964cb55f 100644 --- a/pkgs/tools/networking/ripmime/default.nix +++ b/pkgs/tools/networking/ripmime/default.nix @@ -29,8 +29,8 @@ rec { /* doConfigure should be removed if not needed */ phaseNames = ["fixTarget" "doMakeInstall"]; fixTarget = a.fullDepEntry ('' - sed -i Makefile -e "s@LOCATION=.*@LOCATION=$out@" - mkdir -p "$out/bin" "$out/man/man1" + sed -i Makefile -e "s@LOCATION=.*@LOCATION=$out@" -e "s@man/man1@share/&@" + mkdir -p "$out/bin" "$out/share/man/man1" '') ["doUnpack" "minInit" "defEnsureDir"]; meta = { From 556151911edca15737ca4b7fa6199a2b960f924e Mon Sep 17 00:00:00 2001 From: Shea Levy Date: Thu, 15 Oct 2015 16:46:14 -0400 Subject: [PATCH 037/196] virt-manager: Fixup path to libvirt's cpu_map.xml --- pkgs/applications/virtualization/virt-manager/default.nix | 8 ++++++-- pkgs/top-level/all-packages.nix | 1 + 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/virtualization/virt-manager/default.nix b/pkgs/applications/virtualization/virt-manager/default.nix index d2305f83067..772355653cb 100644 --- a/pkgs/applications/virtualization/virt-manager/default.nix +++ b/pkgs/applications/virtualization/virt-manager/default.nix @@ -1,7 +1,7 @@ { stdenv, fetchurl, pythonPackages, intltool, libxml2Python, curl, python , wrapGAppsHook, virtinst, pyGtkGlade, pythonDBus, gnome_python, gtkvnc, vte , gtk3, gobjectIntrospection, libvirt-glib, gsettings_desktop_schemas, glib -, avahi, dconf, spiceSupport ? true, spice_gtk, libosinfo, gnome3 +, avahi, dconf, spiceSupport ? true, spice_gtk, libosinfo, gnome3, system-libvirt }: with stdenv.lib; @@ -22,7 +22,7 @@ buildPythonPackage rec { paste_deploy m2crypto ipy twisted sqlalchemy_migrate distutils_extra simplejson readline glance cheetah lockfile httplib2 urlgrabber virtinst pyGtkGlade pythonDBus gnome_python pygobject3 - libvirt libxml2Python ipaddr vte libosinfo + libxml2Python ipaddr vte libosinfo ] ++ optional spiceSupport spice_gtk; buildInputs = @@ -40,6 +40,10 @@ buildPythonPackage rec { dconf ]; + patchPhase = '' + sed -i 's|/usr/share/libvirt/cpu_map.xml|${system-libvirt}/share/libvirt/cpu_map.xml|g' virtinst/capabilities.py + ''; + configurePhase = '' sed -i 's/from distutils.core/from setuptools/g' setup.py sed -i 's/from distutils.command.install/from setuptools.command.install/g' setup.py diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index b1608bf2f2e..bf724524a76 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -13086,6 +13086,7 @@ let dconf = gnome3.dconf; gtkvnc = gtkvnc.override { enableGTK3 = true; }; spice_gtk = spice_gtk.override { enableGTK3 = true; }; + system-libvirt = libvirt; }; virtinst = callPackage ../applications/virtualization/virtinst {}; From 326ed47a9777d17fdaa9cd1e6621b73806e72f33 Mon Sep 17 00:00:00 2001 From: Shea Levy Date: Thu, 15 Oct 2015 16:48:05 -0400 Subject: [PATCH 038/196] libvirt: Fix typo introduced by 556151911edca15737ca4b7fa6199a2b960f924e --- pkgs/applications/virtualization/virt-manager/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/virtualization/virt-manager/default.nix b/pkgs/applications/virtualization/virt-manager/default.nix index 772355653cb..e3172dcaa3e 100644 --- a/pkgs/applications/virtualization/virt-manager/default.nix +++ b/pkgs/applications/virtualization/virt-manager/default.nix @@ -22,7 +22,7 @@ buildPythonPackage rec { paste_deploy m2crypto ipy twisted sqlalchemy_migrate distutils_extra simplejson readline glance cheetah lockfile httplib2 urlgrabber virtinst pyGtkGlade pythonDBus gnome_python pygobject3 - libxml2Python ipaddr vte libosinfo + libvirt libxml2Python ipaddr vte libosinfo ] ++ optional spiceSupport spice_gtk; buildInputs = From 9685b08db78b7512ba361ea0b57e57f9787e6759 Mon Sep 17 00:00:00 2001 From: Jude Taylor Date: Thu, 15 Oct 2015 14:09:21 -0700 Subject: [PATCH 039/196] fix libSystemClosure on non-darwin machines --- pkgs/stdenv/pure-darwin/default.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/stdenv/pure-darwin/default.nix b/pkgs/stdenv/pure-darwin/default.nix index 1d194f90d9b..860d2e0b54b 100644 --- a/pkgs/stdenv/pure-darwin/default.nix +++ b/pkgs/stdenv/pure-darwin/default.nix @@ -6,7 +6,8 @@ let # libSystem and its transitive dependencies. Get used to this; it's a recurring theme in darwin land - libSystemClosure = [ + libSystemClosure = if system == "x86_64-darwin" + then [ "/usr/lib/libSystem.dylib" "/usr/lib/libSystem.B.dylib" "/usr/lib/libobjc.A.dylib" @@ -16,7 +17,8 @@ let "/usr/lib/libc++.1.dylib" "/usr/lib/libDiagnosticMessagesClient.dylib" "/usr/lib/system" - ]; + ] + else []; fetch = { file, sha256 }: derivation ((import { url = "https://dl.dropboxusercontent.com/u/2857322/${file}"; From 2a6cb7902e67efd2d7a3f59fbd6143035a50be2d Mon Sep 17 00:00:00 2001 From: Florian Paul Schmidt Date: Fri, 16 Oct 2015 00:09:26 +0200 Subject: [PATCH 040/196] ardour: 4.3 -> 4.4 --- pkgs/applications/audio/ardour/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/audio/ardour/default.nix b/pkgs/applications/audio/ardour/default.nix index c9075220cd6..f44f1a2b78a 100644 --- a/pkgs/applications/audio/ardour/default.nix +++ b/pkgs/applications/audio/ardour/default.nix @@ -15,7 +15,7 @@ let # "git describe" when _not_ on an annotated tag(!): MAJOR.MINOR-REV-HASH. # Version to build. - tag = "4.3"; + tag = "4.4"; in @@ -25,8 +25,8 @@ stdenv.mkDerivation rec { src = fetchFromGitHub { owner = "Ardour"; repo = "ardour"; - rev = "8d46cc99fe2778c5658b659f4f1fe6ac828bb9e9"; - sha256 = "0rr55s3rirlfq455x0xzx8w09kji1fac2n8cx9p6p57qsfvxxblp"; + rev = "b00d75adf63db155ef2873bd9d259dc8ca256be6"; + sha256 = "1gnrcnq2ksnh7fsa301v1c4p5dqrbqpjylf02rg3za3ab58wxi7l"; }; buildInputs = From 7fcad28102a072a97e8a876289d9f209cb8f3f3e Mon Sep 17 00:00:00 2001 From: Anders Lundstedt Date: Fri, 16 Oct 2015 00:16:21 +0200 Subject: [PATCH 041/196] zerotierone: 1.0.4 -> 1.0.5 --- pkgs/tools/networking/zerotierone/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/networking/zerotierone/default.nix b/pkgs/tools/networking/zerotierone/default.nix index c6a456e202a..f38b3becf4c 100644 --- a/pkgs/tools/networking/zerotierone/default.nix +++ b/pkgs/tools/networking/zerotierone/default.nix @@ -3,12 +3,12 @@ with stdenv.lib; stdenv.mkDerivation rec { - version = "1.0.4"; + version = "1.0.5"; name = "zerotierone"; src = fetchurl { url = "https://github.com/zerotier/ZeroTierOne/archive/${version}.tar.gz"; - sha256 = "1klnsjajlas71flbf6w2q3iqhhqrmzqpd2g4qw9my66l7kcsbxfd"; + sha256 = "6e2de5477fefdab21802b1047d753ac38c85074a7d6b41387125fd6941f25ab2"; }; preConfigure = '' From c4b29447308cefb29419bda2ad79e38e627afdce Mon Sep 17 00:00:00 2001 From: Florian Paul Schmidt Date: Fri, 16 Oct 2015 01:42:45 +0200 Subject: [PATCH 042/196] xonotic: 0.8.0 -> 0.8.1 --- pkgs/games/xonotic/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/games/xonotic/default.nix b/pkgs/games/xonotic/default.nix index 7b68e1e3d36..7fb7c11694f 100644 --- a/pkgs/games/xonotic/default.nix +++ b/pkgs/games/xonotic/default.nix @@ -8,11 +8,11 @@ }: stdenv.mkDerivation rec { - name = "xonotic-0.8.0"; + name = "xonotic-0.8.1"; src = fetchurl { url = "http://dl.xonotic.org/${name}.zip"; - sha256 = "0w336750sq8nwqljlcj3znk4iaj3nvn6id144d7j72vsh84ci1qa"; + sha256 = "0vy4hkrbpz9g91gb84cbv4xl845qxaknak6hshk2yflrw90wr2xy"; }; buildInputs = [ From c70ec3ec63dc0ee995ac16cd6699d20934911353 Mon Sep 17 00:00:00 2001 From: Jude Taylor Date: Thu, 15 Oct 2015 17:19:10 -0700 Subject: [PATCH 043/196] re-fix evaluation of libSystemClosure --- pkgs/stdenv/pure-darwin/default.nix | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/pkgs/stdenv/pure-darwin/default.nix b/pkgs/stdenv/pure-darwin/default.nix index 860d2e0b54b..5fbfb16a66e 100644 --- a/pkgs/stdenv/pure-darwin/default.nix +++ b/pkgs/stdenv/pure-darwin/default.nix @@ -6,8 +6,7 @@ let # libSystem and its transitive dependencies. Get used to this; it's a recurring theme in darwin land - libSystemClosure = if system == "x86_64-darwin" - then [ + libSystemClosure = [ "/usr/lib/libSystem.dylib" "/usr/lib/libSystem.B.dylib" "/usr/lib/libobjc.A.dylib" @@ -17,16 +16,18 @@ let "/usr/lib/libc++.1.dylib" "/usr/lib/libDiagnosticMessagesClient.dylib" "/usr/lib/system" - ] - else []; + ]; - fetch = { file, sha256 }: derivation ((import { + fetch = { file, sha256 }: let drv = import { url = "https://dl.dropboxusercontent.com/u/2857322/${file}"; inherit sha256; executable = true; - }).drvAttrs // { - __impureHostDeps = libSystemClosure; - }); + }; in + if drv.drvAttrs.system == "x86_64-darwin" + then derivation (drv.drvAttrs // { + __impureHostDeps = libSystemClosure; + }) + else drv; bootstrapFiles = { sh = fetch { file = "sh"; sha256 = "1qakpg37vl61jnkplz13m3g1csqr85cg8ybp6jwiv6apmg26isnm"; }; From 45705d584a39de206993ff2bf20e509d3f2dec37 Mon Sep 17 00:00:00 2001 From: taku0 Date: Fri, 16 Oct 2015 09:30:23 +0900 Subject: [PATCH 044/196] firefox-bin: 41.0.1 -> 41.0.2 --- .../browsers/firefox-bin/sources.nix | 358 +++++++++--------- 1 file changed, 179 insertions(+), 179 deletions(-) diff --git a/pkgs/applications/networking/browsers/firefox-bin/sources.nix b/pkgs/applications/networking/browsers/firefox-bin/sources.nix index f617cf5636b..2008822fddc 100644 --- a/pkgs/applications/networking/browsers/firefox-bin/sources.nix +++ b/pkgs/applications/networking/browsers/firefox-bin/sources.nix @@ -4,185 +4,185 @@ # ruby generate_source.rb > source.nix { - version = "41.0.1"; + version = "41.0.2"; sources = [ - { locale = "ach"; arch = "linux-i686"; sha1 = "cfb24e0fd6e10febf2381101d4a8f3de1516a732"; } - { locale = "ach"; arch = "linux-x86_64"; sha1 = "642d44d0fe13be4eaf4d1b495dfc7b285f7c2de7"; } - { locale = "af"; arch = "linux-i686"; sha1 = "b4e5ce516dbc5d4157bd1c85b23b5cc233bbf8d5"; } - { locale = "af"; arch = "linux-x86_64"; sha1 = "40f9b3a3ac3089f6bbf9c42a3259a484b49a659a"; } - { locale = "an"; arch = "linux-i686"; sha1 = "0bfa3cd6867316ca10ebe57ab2cebd03a59b096c"; } - { locale = "an"; arch = "linux-x86_64"; sha1 = "69369093f488223decdb77f2d12676be4aeb4d95"; } - { locale = "ar"; arch = "linux-i686"; sha1 = "3a091005a265c6b06a77416223caa45a51d36056"; } - { locale = "ar"; arch = "linux-x86_64"; sha1 = "0f9c79ae4aa4498bc9f8a3e372b26b0b000a0db9"; } - { locale = "as"; arch = "linux-i686"; sha1 = "cf996943809573aca05dc88ed4d843afda11710f"; } - { locale = "as"; arch = "linux-x86_64"; sha1 = "609860ebd75ea9731912b4fcbb343fa027ebbb77"; } - { locale = "ast"; arch = "linux-i686"; sha1 = "5adbd6c9194f8f214c94b587a41c5399116316d4"; } - { locale = "ast"; arch = "linux-x86_64"; sha1 = "feaeae77f9578a452cb98893701f14047d65a5d3"; } - { locale = "az"; arch = "linux-i686"; sha1 = "8718585cb6fb8b7823a572ddc21f910877287133"; } - { locale = "az"; arch = "linux-x86_64"; sha1 = "0834d8d8a29f805b435c2d6a29403c9180471837"; } - { locale = "be"; arch = "linux-i686"; sha1 = "abb5002f7275cb5b65942a735864783bf32c4d9e"; } - { locale = "be"; arch = "linux-x86_64"; sha1 = "bc0ef337ec080b46db30728a425695d78a908d46"; } - { locale = "bg"; arch = "linux-i686"; sha1 = "7bcee63546e75aa94ccd9fd65db18ebf8360e5ba"; } - { locale = "bg"; arch = "linux-x86_64"; sha1 = "8c9c23313710f7467bc34d2ea462dd8e9df6fcde"; } - { locale = "bn-BD"; arch = "linux-i686"; sha1 = "fa80f7049f926205878e1f9e99d2abba876ea9d9"; } - { locale = "bn-BD"; arch = "linux-x86_64"; sha1 = "add645cc1b73affbc35c265ec2f82a9d97abddf6"; } - { locale = "bn-IN"; arch = "linux-i686"; sha1 = "a391b6305ecf256a5be3e7b29427ff1979b90a9e"; } - { locale = "bn-IN"; arch = "linux-x86_64"; sha1 = "77d637809f26bf3214fc93d39547863d56b9949d"; } - { locale = "br"; arch = "linux-i686"; sha1 = "a7e0fc1a0b340232585c2b4630834e67b2ee565a"; } - { locale = "br"; arch = "linux-x86_64"; sha1 = "80f61d890df9c5c126846ee293a0c1295f3b52bc"; } - { locale = "bs"; arch = "linux-i686"; sha1 = "f007e6bac7ae796822496b4b06fed7f9112032ad"; } - { locale = "bs"; arch = "linux-x86_64"; sha1 = "7abfb01029faa86d2245a273381ef8e5453dc89a"; } - { locale = "ca"; arch = "linux-i686"; sha1 = "3bbdf70ed21803dacb4cf000055f27d8f11bf6a2"; } - { locale = "ca"; arch = "linux-x86_64"; sha1 = "de2696a5c031b05479d12319d57dd44dd644f1ff"; } - { locale = "cs"; arch = "linux-i686"; sha1 = "0d678464f64f2ba1ff8e924336992faf9f50659c"; } - { locale = "cs"; arch = "linux-x86_64"; sha1 = "86d68fde6d6255407b8b0f46845416141745b805"; } - { locale = "cy"; arch = "linux-i686"; sha1 = "eb0270f0315d31a0c8f9d2919eb4408996b4cdeb"; } - { locale = "cy"; arch = "linux-x86_64"; sha1 = "004c5d1cfbcf7535765bc1cb3d8a8ea2d72386e5"; } - { locale = "da"; arch = "linux-i686"; sha1 = "e333b6e553bc208c50c71d89d41ce0075e72bed9"; } - { locale = "da"; arch = "linux-x86_64"; sha1 = "dacd29f1fb10cfab134d302ca50092d50ebf8936"; } - { locale = "de"; arch = "linux-i686"; sha1 = "349d731fae24d6717d35e5b945add7c992a587e2"; } - { locale = "de"; arch = "linux-x86_64"; sha1 = "635fc409b6433c6a8b4bb48799fe76c50153f944"; } - { locale = "dsb"; arch = "linux-i686"; sha1 = "ed8520837da7170a1e6ba63b1c97e34730ad2f1d"; } - { locale = "dsb"; arch = "linux-x86_64"; sha1 = "7ea5a1cfe9f25364e9d7902cf93459478fddac5e"; } - { locale = "el"; arch = "linux-i686"; sha1 = "831e7929fa7fff2e410359b6a599e293f7587f71"; } - { locale = "el"; arch = "linux-x86_64"; sha1 = "fb9829b8a41fc07f54ca21260b0e33f178a8c392"; } - { locale = "en-GB"; arch = "linux-i686"; sha1 = "f122389f405bb36231139a50198e969a11898273"; } - { locale = "en-GB"; arch = "linux-x86_64"; sha1 = "919e765df3434d4349c3d5a8dbd5a3030f749d09"; } - { locale = "en-US"; arch = "linux-i686"; sha1 = "a75b1c5106eaefec2c6c68538b870f6fa21667c1"; } - { locale = "en-US"; arch = "linux-x86_64"; sha1 = "5ed50e7ba72beec9b46155ffc2958b7ec3c287af"; } - { locale = "en-ZA"; arch = "linux-i686"; sha1 = "061a683c163d48c79246a28562b7047f492f87e3"; } - { locale = "en-ZA"; arch = "linux-x86_64"; sha1 = "d10d80b665c85b8e90be69b3192ec8d0ec623bf3"; } - { locale = "eo"; arch = "linux-i686"; sha1 = "65e68765f422a3c829faf7f25f6b832223c27711"; } - { locale = "eo"; arch = "linux-x86_64"; sha1 = "a036d85b96a319bd677b17f640329a247d7046ed"; } - { locale = "es-AR"; arch = "linux-i686"; sha1 = "9fdccf38442e4d46aca7ad7f0d2936cf2430840f"; } - { locale = "es-AR"; arch = "linux-x86_64"; sha1 = "c28754a1f2dd926202edaf13241d0b22de744cd1"; } - { locale = "es-CL"; arch = "linux-i686"; sha1 = "900b4573ee4611c537cd97ac353c9200d4a09387"; } - { locale = "es-CL"; arch = "linux-x86_64"; sha1 = "235dfe745c2e5de80deadc22e9e0fcfef0d48ee4"; } - { locale = "es-ES"; arch = "linux-i686"; sha1 = "1236b095b4a6aed92a574c96aa0d724abf6de934"; } - { locale = "es-ES"; arch = "linux-x86_64"; sha1 = "f4d83aa231a22f981c4177971414061b562620fb"; } - { locale = "es-MX"; arch = "linux-i686"; sha1 = "fd5e4b7f019b12a307909ab481579d4b717a0ae2"; } - { locale = "es-MX"; arch = "linux-x86_64"; sha1 = "4b4a33fd2a6aa8061008f7a22c5c970490f64127"; } - { locale = "et"; arch = "linux-i686"; sha1 = "db06c7ea90e42b7dd55e95c3c1c65c3464842056"; } - { locale = "et"; arch = "linux-x86_64"; sha1 = "2842e4cb8c1c07dc221acca4dc4965ed25a2c993"; } - { locale = "eu"; arch = "linux-i686"; sha1 = "bf5d17a4ba5f08574e7aaa9d34507cff22da87d6"; } - { locale = "eu"; arch = "linux-x86_64"; sha1 = "74fef0cd9fe3ec31e2d3127662d33d0b2f02cfe5"; } - { locale = "fa"; arch = "linux-i686"; sha1 = "05b07e6d1d274fafbc9a2ce201d36ea3cccbffd3"; } - { locale = "fa"; arch = "linux-x86_64"; sha1 = "8e9ad7e990c8091fccda1a6651a5711b61147cd9"; } - { locale = "ff"; arch = "linux-i686"; sha1 = "86cf25b38865428ea4c744a3fe438bf88d2994f3"; } - { locale = "ff"; arch = "linux-x86_64"; sha1 = "c90ad173f42267a0b8ef16ad4c0b4f29299e6eed"; } - { locale = "fi"; arch = "linux-i686"; sha1 = "e22411eeb539a1fde08f20b44cfb1b5ff017b582"; } - { locale = "fi"; arch = "linux-x86_64"; sha1 = "ed7b3383209ceb588126a0bcb4433e5bbda2b46f"; } - { locale = "fr"; arch = "linux-i686"; sha1 = "90c2a9fb92335d504a9dc9d8a6afedd494b69f8b"; } - { locale = "fr"; arch = "linux-x86_64"; sha1 = "80e4efdd06b1aa47f348e4056c134bf24a74f4cc"; } - { locale = "fy-NL"; arch = "linux-i686"; sha1 = "122998b498e79a8eb6daf0e877e38fafeeedd679"; } - { locale = "fy-NL"; arch = "linux-x86_64"; sha1 = "99eb9694ecbd3aa892524467ced78bbc0a97d1fd"; } - { locale = "ga-IE"; arch = "linux-i686"; sha1 = "adb3d58c050adfb38576fcbbc62a28bfab5f196d"; } - { locale = "ga-IE"; arch = "linux-x86_64"; sha1 = "9a5a8a4a78c9b2f114609552e952a5ad4f7c1603"; } - { locale = "gd"; arch = "linux-i686"; sha1 = "876bb49fa2399e53d68bf8bd9c403b008068c5c9"; } - { locale = "gd"; arch = "linux-x86_64"; sha1 = "06dd806eba47b93f85d49cfabaefbb1d4ed04f49"; } - { locale = "gl"; arch = "linux-i686"; sha1 = "3b5867e14e051c8405ebe79f1147c89340ccdfed"; } - { locale = "gl"; arch = "linux-x86_64"; sha1 = "25f5e9ca92c194cbca6d3b06089e884b8c0aed13"; } - { locale = "gu-IN"; arch = "linux-i686"; sha1 = "df3db443c51ea75a22a9ca0666c92c28b43db5e4"; } - { locale = "gu-IN"; arch = "linux-x86_64"; sha1 = "2af9d3810a60e0cb2674c74925f9076996abef3d"; } - { locale = "he"; arch = "linux-i686"; sha1 = "b8b89d4a3e7836c2bf26819e917b7a655aee44d5"; } - { locale = "he"; arch = "linux-x86_64"; sha1 = "9a56a307750c21cdfbefda1abaf1763c2aab1875"; } - { locale = "hi-IN"; arch = "linux-i686"; sha1 = "0b8ddcb306d23fdd67abcc098c11420133fea996"; } - { locale = "hi-IN"; arch = "linux-x86_64"; sha1 = "ae56f2f5caf403ab2f569f843e234cb983e6eb85"; } - { locale = "hr"; arch = "linux-i686"; sha1 = "3a829bf25984b0004edb130ef9df5d826ddac5a9"; } - { locale = "hr"; arch = "linux-x86_64"; sha1 = "ada293b8ab51d393eda5be8f078e69c584ef6dda"; } - { locale = "hsb"; arch = "linux-i686"; sha1 = "3ed330ee86404bdc6080feaeef0f6a095ca0fbee"; } - { locale = "hsb"; arch = "linux-x86_64"; sha1 = "ee20f0c59b0340f68f066a78f7455d9c0d95fd2f"; } - { locale = "hu"; arch = "linux-i686"; sha1 = "ff66764fe50e5115bf70acce753aa240feffea28"; } - { locale = "hu"; arch = "linux-x86_64"; sha1 = "5e7605de920f18b64b0b4974d46e5fc2f2f4e869"; } - { locale = "hy-AM"; arch = "linux-i686"; sha1 = "c074b5ce903cd4d8ab66ea79a15025b4eb492774"; } - { locale = "hy-AM"; arch = "linux-x86_64"; sha1 = "7284c71aaa692a98a451ac862af9e0ed6519df55"; } - { locale = "id"; arch = "linux-i686"; sha1 = "80fa7c3cd2dea7ee4e4acccc74c8b6936cfe3fa7"; } - { locale = "id"; arch = "linux-x86_64"; sha1 = "7ddf8a8c2c3b590a76463e13f8f677c3cb985302"; } - { locale = "is"; arch = "linux-i686"; sha1 = "a52ad05729c59acfe826cb211f5da631036aa366"; } - { locale = "is"; arch = "linux-x86_64"; sha1 = "7e21475ef56523e7b7bd92cba2e2f4a46bb437e4"; } - { locale = "it"; arch = "linux-i686"; sha1 = "48191529939cf46cf0c0573a4fcd53a9703c8db8"; } - { locale = "it"; arch = "linux-x86_64"; sha1 = "6b1d93070e8c29573e32abd3ba7b7bf7f07ab269"; } - { locale = "ja"; arch = "linux-i686"; sha1 = "136b76925e0b7f766ccf9ca1ee1dcdb7a2046509"; } - { locale = "ja"; arch = "linux-x86_64"; sha1 = "0fe5a34c842963e83b14a79c2309b6a906eae5f8"; } - { locale = "kk"; arch = "linux-i686"; sha1 = "98c8801e99639de3609dcaba57eacfd2d3eaffc6"; } - { locale = "kk"; arch = "linux-x86_64"; sha1 = "ae3d6c13e877ae207c36c2c6e9e4eb5da3d76fff"; } - { locale = "km"; arch = "linux-i686"; sha1 = "4bfa2ddd28447fd34fd9e50b3f75033c8212d3c2"; } - { locale = "km"; arch = "linux-x86_64"; sha1 = "bbf1b20376f92c353859d671536436a22a87faa9"; } - { locale = "kn"; arch = "linux-i686"; sha1 = "edf31da5957d27e2b60a13d91b4520c7f67da77a"; } - { locale = "kn"; arch = "linux-x86_64"; sha1 = "275c253e1b913f8cc2a2437602c7edd66eaab011"; } - { locale = "ko"; arch = "linux-i686"; sha1 = "b213520660c5d6a1c85c3f6a11ff7c9d7f947274"; } - { locale = "ko"; arch = "linux-x86_64"; sha1 = "65a37cccaf55c9fa251157da1d93dcafc4ddc3b8"; } - { locale = "lij"; arch = "linux-i686"; sha1 = "368a3517809b7560908162efeee6d10842f537ea"; } - { locale = "lij"; arch = "linux-x86_64"; sha1 = "212b14ce7e8bbd96a60d23fcd8a8598f8f9ed900"; } - { locale = "lt"; arch = "linux-i686"; sha1 = "d27ccfe0459f6b3567818af9e5ccd5d84dd810ba"; } - { locale = "lt"; arch = "linux-x86_64"; sha1 = "f47264b2fa1e6f073d0300f0476fed32fb8bca48"; } - { locale = "lv"; arch = "linux-i686"; sha1 = "abf68081c4c011552974cf191463186fb350bf7e"; } - { locale = "lv"; arch = "linux-x86_64"; sha1 = "d3a3d999205418043bef4680c256f1555ab4e615"; } - { locale = "mai"; arch = "linux-i686"; sha1 = "2f88361cb70283bd29f641762b0ba9205a3db932"; } - { locale = "mai"; arch = "linux-x86_64"; sha1 = "4802f3a575d68d4e471eab9fbb638f8dcf6801f3"; } - { locale = "mk"; arch = "linux-i686"; sha1 = "1a82499a0b9eb4bcdc4ffcf305de7e250d4ddf91"; } - { locale = "mk"; arch = "linux-x86_64"; sha1 = "6d0eaf89b4f7d0821be181fbe877935db0cd6ea5"; } - { locale = "ml"; arch = "linux-i686"; sha1 = "16f7c329c62c7430b7e989e4d20b4fa406d34e57"; } - { locale = "ml"; arch = "linux-x86_64"; sha1 = "ea6b4c37abb4bde4c3c97a6de01414df336546b9"; } - { locale = "mr"; arch = "linux-i686"; sha1 = "e21203ab9285444b5dd19a7add22efd7750a75c4"; } - { locale = "mr"; arch = "linux-x86_64"; sha1 = "0992eabe63f8a9b759be99a410a600df53f70c80"; } - { locale = "ms"; arch = "linux-i686"; sha1 = "7c5314f43623fa25ca1813c58f8a0f3bfcb19624"; } - { locale = "ms"; arch = "linux-x86_64"; sha1 = "8be86e6ff4f8c0baa220143d2798c3f707db6752"; } - { locale = "nb-NO"; arch = "linux-i686"; sha1 = "fcc032e0ceddbe41527d8adad42c55a4a8626660"; } - { locale = "nb-NO"; arch = "linux-x86_64"; sha1 = "8c4365d752844adb31df201901c951b720b7401a"; } - { locale = "nl"; arch = "linux-i686"; sha1 = "42adac56689caf8c2cb838bad8c14b6a81c61456"; } - { locale = "nl"; arch = "linux-x86_64"; sha1 = "3c835567fe91ae8c386199957b2d64d185020ca9"; } - { locale = "nn-NO"; arch = "linux-i686"; sha1 = "47c29bceee08af768f90f54883300704630ac478"; } - { locale = "nn-NO"; arch = "linux-x86_64"; sha1 = "57ac712d8b93d19a155ebf08929ee395d5975b09"; } - { locale = "or"; arch = "linux-i686"; sha1 = "a96e39bb3eceb2e7252ad9e659981e14975c025b"; } - { locale = "or"; arch = "linux-x86_64"; sha1 = "004b52fb5ce3da6106c6875369299a85fd9f2091"; } - { locale = "pa-IN"; arch = "linux-i686"; sha1 = "4cf037c5878372a87f18122e8dc205ace8292f68"; } - { locale = "pa-IN"; arch = "linux-x86_64"; sha1 = "30128d1d927194cc1eac4b8d297faa5ab5d74b1c"; } - { locale = "pl"; arch = "linux-i686"; sha1 = "93aae61fcb7f17f5e83ee1ac8af190ee9c28bf5b"; } - { locale = "pl"; arch = "linux-x86_64"; sha1 = "f7ae0d826144607bb814c7b1c8dde63ad679148c"; } - { locale = "pt-BR"; arch = "linux-i686"; sha1 = "48cedf32ea01a9548902c8ce0a998c01d2c3da12"; } - { locale = "pt-BR"; arch = "linux-x86_64"; sha1 = "f31b4c25be102bc96f8795721a19c3c9fdd00043"; } - { locale = "pt-PT"; arch = "linux-i686"; sha1 = "e735996d21d15020bea72d9b01b0686d8fb1cd9e"; } - { locale = "pt-PT"; arch = "linux-x86_64"; sha1 = "705dedac0d8b9df87301eb06251b81e8d5f34d47"; } - { locale = "rm"; arch = "linux-i686"; sha1 = "ad7ce0ef601763795f5998e56b89d77f466f50de"; } - { locale = "rm"; arch = "linux-x86_64"; sha1 = "50f08008a9a12172f379dafaea656cae3f7a2d5b"; } - { locale = "ro"; arch = "linux-i686"; sha1 = "6f925c413fe655a35ffad0b9d3b22bc6c9af15d1"; } - { locale = "ro"; arch = "linux-x86_64"; sha1 = "6592bf15bdf465100dbb00a00b5e77eb10f42cae"; } - { locale = "ru"; arch = "linux-i686"; sha1 = "2bf3af22a827f6ea9ba849bcbe2da6687fecaa2c"; } - { locale = "ru"; arch = "linux-x86_64"; sha1 = "35817ed10d23415bc8c8359fc0ac080c84a648fc"; } - { locale = "si"; arch = "linux-i686"; sha1 = "084109d7bb0b17da1d44d0cd954d55e1ce0b03ee"; } - { locale = "si"; arch = "linux-x86_64"; sha1 = "83c8e57b708a62cfa159f5a58b3d808fd3ca7e2d"; } - { locale = "sk"; arch = "linux-i686"; sha1 = "ea7637b7c8228ae9edab0d82bebc4bb7bda7c2a1"; } - { locale = "sk"; arch = "linux-x86_64"; sha1 = "6b6a13d882eb59d14d51a24be90153b6c928ce01"; } - { locale = "sl"; arch = "linux-i686"; sha1 = "dfbce85ca19bdb9aeecf23027a9f4e6e4eb4dba8"; } - { locale = "sl"; arch = "linux-x86_64"; sha1 = "09ba3868ae42a1e937f21c30d7b56d8c74668e5c"; } - { locale = "son"; arch = "linux-i686"; sha1 = "05c37865cea7ebc007099c14b2a38c315541477b"; } - { locale = "son"; arch = "linux-x86_64"; sha1 = "de6aafaaff37f9ffd5dc2a5dc793a8034340eb16"; } - { locale = "sq"; arch = "linux-i686"; sha1 = "0c2b5a383d33a347e2c136a76f99c6a72fdf14a1"; } - { locale = "sq"; arch = "linux-x86_64"; sha1 = "e6fb929c285406656ae25156eeb8e446f69cb5ec"; } - { locale = "sr"; arch = "linux-i686"; sha1 = "2699adadaf32b89077b2e11fff1966841e4df500"; } - { locale = "sr"; arch = "linux-x86_64"; sha1 = "53c0d1d7559b4a9f6310b2bbec039a9d02a42200"; } - { locale = "sv-SE"; arch = "linux-i686"; sha1 = "5e680c4a9f9c0be0b74fee65688a4e748b73a7ec"; } - { locale = "sv-SE"; arch = "linux-x86_64"; sha1 = "feafa153bf9dc1827acb64a219e2eeecda99e49d"; } - { locale = "ta"; arch = "linux-i686"; sha1 = "d372de893c61af574ce5543dbea51b86e89ac24b"; } - { locale = "ta"; arch = "linux-x86_64"; sha1 = "774e8166ca5418be29bbf75665431301bab0c261"; } - { locale = "te"; arch = "linux-i686"; sha1 = "84619cf1f9fca5bc49312e6929e0e27fb38ea058"; } - { locale = "te"; arch = "linux-x86_64"; sha1 = "abc1565856241ebb91ceb41c6891c8db843946dd"; } - { locale = "th"; arch = "linux-i686"; sha1 = "337b5d30b5da8eef79992c33755956efd2c98297"; } - { locale = "th"; arch = "linux-x86_64"; sha1 = "02e7c2ab7ed3ff5da36cb3fca19e019961dd015c"; } - { locale = "tr"; arch = "linux-i686"; sha1 = "e3e0caef6f82a09edfbe9024701d829c0e5bc625"; } - { locale = "tr"; arch = "linux-x86_64"; sha1 = "184ffa3647d57adaf419f9209682aca913249b49"; } - { locale = "uk"; arch = "linux-i686"; sha1 = "0ae60e506d63373730895526bc7bcb9dc5c7b814"; } - { locale = "uk"; arch = "linux-x86_64"; sha1 = "f54d9fb8b704178bceed03646af17ab8e49a94d4"; } - { locale = "uz"; arch = "linux-i686"; sha1 = "77973a500608be31185ea172b4c4f21191838e9d"; } - { locale = "uz"; arch = "linux-x86_64"; sha1 = "5cb1cb1618cdc2b4515b3569c2ef8341b91d547b"; } - { locale = "vi"; arch = "linux-i686"; sha1 = "d957cedd5a36546f7d9cef3ddcdbdfb9dfb376a3"; } - { locale = "vi"; arch = "linux-x86_64"; sha1 = "992d5939c9db596dfc1e118c80a5fb2c08c96753"; } - { locale = "xh"; arch = "linux-i686"; sha1 = "1eab731be806a22e29940676d3766190becf9561"; } - { locale = "xh"; arch = "linux-x86_64"; sha1 = "fe4872dd673fdbf867921f7c1fbc36ae0be74c3e"; } - { locale = "zh-CN"; arch = "linux-i686"; sha1 = "8cc0e2ea6342577761a6ef9655c4f07f9dae1367"; } - { locale = "zh-CN"; arch = "linux-x86_64"; sha1 = "5854d58a2ec318d5dc16f905853fa808774c956d"; } - { locale = "zh-TW"; arch = "linux-i686"; sha1 = "875013ebba184c5a656abb2ab4fee3948689beef"; } - { locale = "zh-TW"; arch = "linux-x86_64"; sha1 = "7e416b11856aae2d52bc24b7629fc2d90719e9b1"; } + { locale = "ach"; arch = "linux-i686"; sha1 = "f28f6b40891d3e2626c752e94cb671bcd16cf09c"; } + { locale = "ach"; arch = "linux-x86_64"; sha1 = "b09ff7642423f0c94cd0acea890618dbb986b30a"; } + { locale = "af"; arch = "linux-i686"; sha1 = "98f6805e3fad98b1ff0ae260318566b279748927"; } + { locale = "af"; arch = "linux-x86_64"; sha1 = "1297fe1d68644b30d72f74010b4e93cb705ce084"; } + { locale = "an"; arch = "linux-i686"; sha1 = "0b9bf558713e7172aa1d6082b2ee706772dd7f50"; } + { locale = "an"; arch = "linux-x86_64"; sha1 = "e1a041106bb1e823359cc8aba5d6774e5622c065"; } + { locale = "ar"; arch = "linux-i686"; sha1 = "7dc31eb10e280c847b003167cba3566c7566eb8f"; } + { locale = "ar"; arch = "linux-x86_64"; sha1 = "2ac37f86880230b589bede4326f3a9fc51dc04a6"; } + { locale = "as"; arch = "linux-i686"; sha1 = "7157ef7c0cddaf2b5203134dd1a9c59257ba4e7b"; } + { locale = "as"; arch = "linux-x86_64"; sha1 = "2f8f4e33a321dc1a5f2ccf6c12ab564ef47c1351"; } + { locale = "ast"; arch = "linux-i686"; sha1 = "517d6cea54258e6f37534b7c59b00633e50264ba"; } + { locale = "ast"; arch = "linux-x86_64"; sha1 = "de74737e383ef9eb33ba9894bead1249d5bdfa17"; } + { locale = "az"; arch = "linux-i686"; sha1 = "2cb8468902daf4237ec3a307d89523db08256c17"; } + { locale = "az"; arch = "linux-x86_64"; sha1 = "26556ef189be09392a6dc2f057ab2eb78f1b86d8"; } + { locale = "be"; arch = "linux-i686"; sha1 = "c27213ffcd4718d5669dfca004ec3517264d1181"; } + { locale = "be"; arch = "linux-x86_64"; sha1 = "5c50b0b407268161ebaa1a6a1cdc67b4c66ac387"; } + { locale = "bg"; arch = "linux-i686"; sha1 = "6d8af51f1278731da288ef3638687a31fbc77335"; } + { locale = "bg"; arch = "linux-x86_64"; sha1 = "cd697af203a4c82afe06271059ba03ff01d81606"; } + { locale = "bn-BD"; arch = "linux-i686"; sha1 = "1b24d5641b50a2f22e72429d65a2c3bb266fb534"; } + { locale = "bn-BD"; arch = "linux-x86_64"; sha1 = "e470a6bc6b82c3145bc074b0a8f3b9bfff9bb219"; } + { locale = "bn-IN"; arch = "linux-i686"; sha1 = "0b2fe41d3ed5ccd9ceb941bdf72c27919258cd92"; } + { locale = "bn-IN"; arch = "linux-x86_64"; sha1 = "9c0253add017c3747fc59b89561baa1e348207f6"; } + { locale = "br"; arch = "linux-i686"; sha1 = "ed0292dda6fc1a42d636a10bb0c45f8918e9dc18"; } + { locale = "br"; arch = "linux-x86_64"; sha1 = "6f3dfed52c47f940de86a42598f7df81ff33f8ca"; } + { locale = "bs"; arch = "linux-i686"; sha1 = "9c78bd5b4f5be28557cb0576a0faa43b674ce481"; } + { locale = "bs"; arch = "linux-x86_64"; sha1 = "a2d41fb95f6c8acf6cc5b1bfd0dec5bce661a2e9"; } + { locale = "ca"; arch = "linux-i686"; sha1 = "9e0149621e049af657f1533a2ceebeb303eea9ff"; } + { locale = "ca"; arch = "linux-x86_64"; sha1 = "686bf22667c5c621e2182626edc21cb549253f8e"; } + { locale = "cs"; arch = "linux-i686"; sha1 = "38d487b5c1193608a3c4f9e83978c34f5c70e668"; } + { locale = "cs"; arch = "linux-x86_64"; sha1 = "2031026f3989429b87eaba9ceef96b7b59921725"; } + { locale = "cy"; arch = "linux-i686"; sha1 = "27f44852ca65bb2dd61375d7d52eb4a7b30d5cbe"; } + { locale = "cy"; arch = "linux-x86_64"; sha1 = "148da60b7247c602082c99ae451e62261602d6c4"; } + { locale = "da"; arch = "linux-i686"; sha1 = "4bec4af409742393fc91ff74689ede4dc872b0c2"; } + { locale = "da"; arch = "linux-x86_64"; sha1 = "e7a918306d7195a97933761699b74920b9d6bd2e"; } + { locale = "de"; arch = "linux-i686"; sha1 = "9295267b1d2e308335166e9ceaeedb7c223c6f5c"; } + { locale = "de"; arch = "linux-x86_64"; sha1 = "adab84a80a4cd32be09c6a90e47f99b4428024bb"; } + { locale = "dsb"; arch = "linux-i686"; sha1 = "79687bd933bb08a9c789976913a5ae7d90d4ef15"; } + { locale = "dsb"; arch = "linux-x86_64"; sha1 = "4c307bc31606a579b007cee13d1e7bf3a14f5286"; } + { locale = "el"; arch = "linux-i686"; sha1 = "02d0e04554ef168b84143b78180b9280c4ce4410"; } + { locale = "el"; arch = "linux-x86_64"; sha1 = "8c84668f4a856a5b5bcedc694d261bbeab71dfea"; } + { locale = "en-GB"; arch = "linux-i686"; sha1 = "c5949c47c761ee65707877a9449cd4f9aff3a76a"; } + { locale = "en-GB"; arch = "linux-x86_64"; sha1 = "c9a2fb70e37861983d33b5fe0c999e6091671fc1"; } + { locale = "en-US"; arch = "linux-i686"; sha1 = "c6fc2b42f50ae06c7fd91823ed61d755e0356d9b"; } + { locale = "en-US"; arch = "linux-x86_64"; sha1 = "68664136ec20e48faa4516d6a7d48081a365d3b2"; } + { locale = "en-ZA"; arch = "linux-i686"; sha1 = "4393198c2b4849d840b0e9c1e5ccbf20cbc9cf79"; } + { locale = "en-ZA"; arch = "linux-x86_64"; sha1 = "e533254eb720b64ca76ab3507a422e923048a7b7"; } + { locale = "eo"; arch = "linux-i686"; sha1 = "b4ebd01b5491c5ba159cf239783e4e5caef04690"; } + { locale = "eo"; arch = "linux-x86_64"; sha1 = "b25dc3f751e89e517f8cb1850ada4fdfbadf9f4a"; } + { locale = "es-AR"; arch = "linux-i686"; sha1 = "0839ccab9c807979f56346dc2470a56f5581ae68"; } + { locale = "es-AR"; arch = "linux-x86_64"; sha1 = "a82c320792f2ea05b29c5bc5ed643035d442fb95"; } + { locale = "es-CL"; arch = "linux-i686"; sha1 = "9d9d9261fbb51a830a10e83037b22e447ad6c27d"; } + { locale = "es-CL"; arch = "linux-x86_64"; sha1 = "07dee6c8bc2c980ecb8cd8cbb5a63600cf362f5f"; } + { locale = "es-ES"; arch = "linux-i686"; sha1 = "b01a5d91bdaade225269d3cf11d2084cfd4761cf"; } + { locale = "es-ES"; arch = "linux-x86_64"; sha1 = "4bfbf00ea35a78de8b090c08757f670c4627eef2"; } + { locale = "es-MX"; arch = "linux-i686"; sha1 = "7f23abb538237c2ee92877d8f101f4673ac0f2da"; } + { locale = "es-MX"; arch = "linux-x86_64"; sha1 = "cc75fba6bf1744d22aa74608bf09671b9d81506e"; } + { locale = "et"; arch = "linux-i686"; sha1 = "b4805599f84bbde52e46c2d171eca6107cba2aba"; } + { locale = "et"; arch = "linux-x86_64"; sha1 = "2893a417c825ea340c4ff1002679d0b2fd832903"; } + { locale = "eu"; arch = "linux-i686"; sha1 = "9f44826b49aa5302e1219f593b53d91ae9b158ab"; } + { locale = "eu"; arch = "linux-x86_64"; sha1 = "01367745cf5e68adedba8459e837d15d4be6bdb4"; } + { locale = "fa"; arch = "linux-i686"; sha1 = "776a0d78acc1f4cf4f1f6bfb6dfad251ad3ffd97"; } + { locale = "fa"; arch = "linux-x86_64"; sha1 = "aaa3ee98401cbe9d1e55284260077117eb80b6c2"; } + { locale = "ff"; arch = "linux-i686"; sha1 = "1294a53f08e1527b215ced2ac588c1f8c4f64c76"; } + { locale = "ff"; arch = "linux-x86_64"; sha1 = "ea127b16239a3c7916399f824ea0f06201509271"; } + { locale = "fi"; arch = "linux-i686"; sha1 = "84075e77d0cf621992620c9b1783da1306a83d95"; } + { locale = "fi"; arch = "linux-x86_64"; sha1 = "1c944f62ead881b5b48288afefb925db7cfbacde"; } + { locale = "fr"; arch = "linux-i686"; sha1 = "30eeed505e00b77aad1a31a969db78191e87cf87"; } + { locale = "fr"; arch = "linux-x86_64"; sha1 = "562f2d0c347dc531c8ac663e9ece59691394b148"; } + { locale = "fy-NL"; arch = "linux-i686"; sha1 = "8679515a53b1ef3f763c7b569ab326704988ca82"; } + { locale = "fy-NL"; arch = "linux-x86_64"; sha1 = "d8f3db4850fe58c7d059c368993f066d241b021f"; } + { locale = "ga-IE"; arch = "linux-i686"; sha1 = "508a198d8b02b25587d40ad246d5bdc1a44988b9"; } + { locale = "ga-IE"; arch = "linux-x86_64"; sha1 = "1a335d85bb0173b71de3d70c1d147cb905166e92"; } + { locale = "gd"; arch = "linux-i686"; sha1 = "316a75f2ee606b19eb83c5b8cd57258a8a6dc1dc"; } + { locale = "gd"; arch = "linux-x86_64"; sha1 = "55504df9a96de3319d2b3610512a6e2a2eed9cb9"; } + { locale = "gl"; arch = "linux-i686"; sha1 = "06be057d4d5480e239b5e368d16efe72c75196a2"; } + { locale = "gl"; arch = "linux-x86_64"; sha1 = "9026a4497593920a004cc1aec8ef0353144a56da"; } + { locale = "gu-IN"; arch = "linux-i686"; sha1 = "1149415676f1e3b9c9280c0579e0daff1da4b729"; } + { locale = "gu-IN"; arch = "linux-x86_64"; sha1 = "6b0047659dbe79c57949baf759ab17c498208d58"; } + { locale = "he"; arch = "linux-i686"; sha1 = "118dd35ef57c44057da4808884fbc8f8c8181246"; } + { locale = "he"; arch = "linux-x86_64"; sha1 = "c37aa77d1ff50384c6482efd67fa2fd3c9a13f9f"; } + { locale = "hi-IN"; arch = "linux-i686"; sha1 = "d9259311610b6fe978f2e45beda9f2a1b78c6cfa"; } + { locale = "hi-IN"; arch = "linux-x86_64"; sha1 = "b68136415d53dfb865fe82132457abf5016f4df0"; } + { locale = "hr"; arch = "linux-i686"; sha1 = "a6a6e98ac3932b5332b423a730806e4ee4bf834f"; } + { locale = "hr"; arch = "linux-x86_64"; sha1 = "34b8017490d86359fa6530fa5c3b1b5b15975c28"; } + { locale = "hsb"; arch = "linux-i686"; sha1 = "f8560358636bfd0d705b963b248dcdce34bbdb5d"; } + { locale = "hsb"; arch = "linux-x86_64"; sha1 = "287aba425ef473b8fe5c0ff0a8d75fafd8448bf2"; } + { locale = "hu"; arch = "linux-i686"; sha1 = "6cbe1731f7d28f91e4ce86e2d8a9816fc35eb3bd"; } + { locale = "hu"; arch = "linux-x86_64"; sha1 = "797ef6d8493bf3515ba25096dc8daeea8b9513f4"; } + { locale = "hy-AM"; arch = "linux-i686"; sha1 = "f2b64ab6b75736d93c8480854dc56563624c2b9d"; } + { locale = "hy-AM"; arch = "linux-x86_64"; sha1 = "8609dd55931b027665e3763ca13b7e6b9a313ca1"; } + { locale = "id"; arch = "linux-i686"; sha1 = "698a344f8ecf81f2d1a8526a32e3771e8461e809"; } + { locale = "id"; arch = "linux-x86_64"; sha1 = "291eb09d08e552231726639c9055d53ca5c2c016"; } + { locale = "is"; arch = "linux-i686"; sha1 = "fb30ef94ce3f31e65c67f176ed7adb59d91cf81e"; } + { locale = "is"; arch = "linux-x86_64"; sha1 = "ad932eb32b20745f34f91fdd91dc32bda217b19f"; } + { locale = "it"; arch = "linux-i686"; sha1 = "eae49df656303ae15411d398f998b21bd0e1657d"; } + { locale = "it"; arch = "linux-x86_64"; sha1 = "5461ae930d32eb51f2ffdcfc5bc22104454088df"; } + { locale = "ja"; arch = "linux-i686"; sha1 = "addac275389073eef9d0fbc296738eb3a61d532d"; } + { locale = "ja"; arch = "linux-x86_64"; sha1 = "6e07be0a7261d18b081241d237acb5c8d3f1b3b1"; } + { locale = "kk"; arch = "linux-i686"; sha1 = "85e79bf11e71b9163fa44e9bae325d10b8efd761"; } + { locale = "kk"; arch = "linux-x86_64"; sha1 = "1bab828e561666296b5e81bc191139d0f1609764"; } + { locale = "km"; arch = "linux-i686"; sha1 = "9651d39d746ceaadef2b7eda2bdb766beb4bf649"; } + { locale = "km"; arch = "linux-x86_64"; sha1 = "3d5ab65a949d78d8be8fc5ef7da2bbfe4fb76175"; } + { locale = "kn"; arch = "linux-i686"; sha1 = "ce1ba808ae2433cec57c7f46288cc5b19e127fc6"; } + { locale = "kn"; arch = "linux-x86_64"; sha1 = "8ab3ac9d4e1fcb034a726c85f4de64e8908a752f"; } + { locale = "ko"; arch = "linux-i686"; sha1 = "34914da7a6e0f1806f04fcb4327a7debdb90a2ea"; } + { locale = "ko"; arch = "linux-x86_64"; sha1 = "6084229e0f1b0861ad35ac958e8d788918955f1d"; } + { locale = "lij"; arch = "linux-i686"; sha1 = "a768cadd13ae282e977b44f18e71d232aeba5f56"; } + { locale = "lij"; arch = "linux-x86_64"; sha1 = "e47841fd4827a907380fe605643898dd8d88cf99"; } + { locale = "lt"; arch = "linux-i686"; sha1 = "10e8a3d6833f904d181daf974b6da2792681f824"; } + { locale = "lt"; arch = "linux-x86_64"; sha1 = "411ce9b9b89722de20310bc32b38edb82454ff58"; } + { locale = "lv"; arch = "linux-i686"; sha1 = "8d2ec7350ba90242a152024681e0812a6260f064"; } + { locale = "lv"; arch = "linux-x86_64"; sha1 = "9035394603007edd34946d32230386e4ebf861ce"; } + { locale = "mai"; arch = "linux-i686"; sha1 = "2df94bc41f93706d671de419481d8c90468b9fb0"; } + { locale = "mai"; arch = "linux-x86_64"; sha1 = "6f534e605bc96dfde98b699ca8b31d7b542f3342"; } + { locale = "mk"; arch = "linux-i686"; sha1 = "6d83eec6d7b54dad5c926da0efe7f205442ec7f8"; } + { locale = "mk"; arch = "linux-x86_64"; sha1 = "7e1c3bddcbeadebcaf1a2c0d30940617662f998d"; } + { locale = "ml"; arch = "linux-i686"; sha1 = "7b8cfb0adf27ca3cbe70b90b45a15e6ce17ecd6c"; } + { locale = "ml"; arch = "linux-x86_64"; sha1 = "8dada691c38ea84829e8f097d3a4c8c8f92b5dbb"; } + { locale = "mr"; arch = "linux-i686"; sha1 = "2f2558df6b06b948e1d80a6721021aff6080e23e"; } + { locale = "mr"; arch = "linux-x86_64"; sha1 = "6f6fda2c3c4194f4ec309c0ff9585c8f5f764f13"; } + { locale = "ms"; arch = "linux-i686"; sha1 = "3006ffc5a77760fb42f3e3ec47185f09cdb2bd71"; } + { locale = "ms"; arch = "linux-x86_64"; sha1 = "a5f6a23ba5ee065186fd6abde7678218013a1904"; } + { locale = "nb-NO"; arch = "linux-i686"; sha1 = "b4418503c6d4c6eb558f5ecbf752014e4daa9940"; } + { locale = "nb-NO"; arch = "linux-x86_64"; sha1 = "8551b8464566f57313b394de089545c5e3d30673"; } + { locale = "nl"; arch = "linux-i686"; sha1 = "e2fb71322600bee83e601309c956c8192dbdf2d7"; } + { locale = "nl"; arch = "linux-x86_64"; sha1 = "042a29623fca08048dddb2e3ecbde03fd4453d36"; } + { locale = "nn-NO"; arch = "linux-i686"; sha1 = "f72a166a539df1e45f8d9c5cd5529b2d0d01e813"; } + { locale = "nn-NO"; arch = "linux-x86_64"; sha1 = "f66d7d7f6218cd0f320ad1061aead0733ccab242"; } + { locale = "or"; arch = "linux-i686"; sha1 = "81f146d076fc68fd87956001b31a34adac1d1af0"; } + { locale = "or"; arch = "linux-x86_64"; sha1 = "87d7d7a747f83a26b1f9b501d902e88032af38da"; } + { locale = "pa-IN"; arch = "linux-i686"; sha1 = "49239260e0abb385e5b3c6ae23c0a809306402e8"; } + { locale = "pa-IN"; arch = "linux-x86_64"; sha1 = "105fae6a1e1e9a4ae186054c6bcb418ab607d587"; } + { locale = "pl"; arch = "linux-i686"; sha1 = "4f5d41cbe93f931d3751b7cf229ea0781edf9c7c"; } + { locale = "pl"; arch = "linux-x86_64"; sha1 = "0cce4925e602d36e9c25a6691b60dc61680c45bb"; } + { locale = "pt-BR"; arch = "linux-i686"; sha1 = "3b98ed2e3186ef2b6cd418fa45faec6a5acbbdd2"; } + { locale = "pt-BR"; arch = "linux-x86_64"; sha1 = "ccaab26ba92b44b60a1de4e1d75504e0233cbc76"; } + { locale = "pt-PT"; arch = "linux-i686"; sha1 = "159941d190c72b219586450acf1214f039d7207b"; } + { locale = "pt-PT"; arch = "linux-x86_64"; sha1 = "c650d657e97653364926ad1b877d3a186d3d6dca"; } + { locale = "rm"; arch = "linux-i686"; sha1 = "2b79dbc77bbf971a2856ae80107fabe0aa0e18cb"; } + { locale = "rm"; arch = "linux-x86_64"; sha1 = "e8584e6791dd50626cd9dcafe45e5536a1eb35fd"; } + { locale = "ro"; arch = "linux-i686"; sha1 = "8083ae297080f3543751a24ca3f8638a8bbc2a02"; } + { locale = "ro"; arch = "linux-x86_64"; sha1 = "43967d6adbe01454696de9330f056731048458a9"; } + { locale = "ru"; arch = "linux-i686"; sha1 = "c939bd0154475d4c3153446b6f6de1d5e17b1215"; } + { locale = "ru"; arch = "linux-x86_64"; sha1 = "58bc5cb7c33063455ea2ed79da9b9c38d2a8e061"; } + { locale = "si"; arch = "linux-i686"; sha1 = "4f66548142a828b9331f9588955eeae7ff8b4ffd"; } + { locale = "si"; arch = "linux-x86_64"; sha1 = "795f8920aafdf38feae90d6cf9013bb4da4d275c"; } + { locale = "sk"; arch = "linux-i686"; sha1 = "7fc858a8bea682e6c4b0b46dc0036f5b33d569b6"; } + { locale = "sk"; arch = "linux-x86_64"; sha1 = "15c049314dd8beb396c4f8f169b5c5d522d53d31"; } + { locale = "sl"; arch = "linux-i686"; sha1 = "2abcb66b66093b4b5a5c502d50b395d3967d5375"; } + { locale = "sl"; arch = "linux-x86_64"; sha1 = "deda484b890c22c0c15845891eb5ece860ecbca2"; } + { locale = "son"; arch = "linux-i686"; sha1 = "b031c68c64e77ae2e6332c141f367052afb571ba"; } + { locale = "son"; arch = "linux-x86_64"; sha1 = "2e6b18cb89b6bb6299caa0dd3c128e170984f394"; } + { locale = "sq"; arch = "linux-i686"; sha1 = "88295bd36eaa1ec0ba42b1b2eb8af581ef2efe51"; } + { locale = "sq"; arch = "linux-x86_64"; sha1 = "8e8b4782d6352bfe055482c2d82bc5356bb8059c"; } + { locale = "sr"; arch = "linux-i686"; sha1 = "399cd05823725f4e5d5514aad3c32716a7b69fb3"; } + { locale = "sr"; arch = "linux-x86_64"; sha1 = "d78069ed45897c256860cb7a2be74c42906f277c"; } + { locale = "sv-SE"; arch = "linux-i686"; sha1 = "90b136366b4309258417725c7979e424cd20236e"; } + { locale = "sv-SE"; arch = "linux-x86_64"; sha1 = "e604010468adfb6d6925c3d6e82b95a6836bd645"; } + { locale = "ta"; arch = "linux-i686"; sha1 = "d81a2a85e1f01f55d8e65b82d703a89391aff87a"; } + { locale = "ta"; arch = "linux-x86_64"; sha1 = "dbbd03bf0deae8dd50c264217c38d66eb8f6abb6"; } + { locale = "te"; arch = "linux-i686"; sha1 = "b9e27b19acdf0c6c97b85361e51d04ef4dfb71ef"; } + { locale = "te"; arch = "linux-x86_64"; sha1 = "a78bffc96adcedc797cd328c3aeda5cb59ff5154"; } + { locale = "th"; arch = "linux-i686"; sha1 = "df7728a57a7f46035b5a5b491c34110a1871316c"; } + { locale = "th"; arch = "linux-x86_64"; sha1 = "8ccd4665a12b5db9ab8457c2363243a1cbcd05ed"; } + { locale = "tr"; arch = "linux-i686"; sha1 = "49dca58d2925f70c8ec7fd7d28d04475c05acff1"; } + { locale = "tr"; arch = "linux-x86_64"; sha1 = "ae887516cf189462a38240d62a608f1bd86713fa"; } + { locale = "uk"; arch = "linux-i686"; sha1 = "fa1d11f740987538c0ca3967b3428a341e2f1c8d"; } + { locale = "uk"; arch = "linux-x86_64"; sha1 = "f65ae80186d0fa616197ee46968ec94c0dbebc2d"; } + { locale = "uz"; arch = "linux-i686"; sha1 = "69b24ed58ca2db356bf97c809f91b3551e9f1b20"; } + { locale = "uz"; arch = "linux-x86_64"; sha1 = "2fb40c9c55f1e0eb83602fa7cb06415846657b67"; } + { locale = "vi"; arch = "linux-i686"; sha1 = "1817398c00bfff76c09151450cba4e901c0fd93a"; } + { locale = "vi"; arch = "linux-x86_64"; sha1 = "f754bb817367da0640e6bfbe53129a4221250751"; } + { locale = "xh"; arch = "linux-i686"; sha1 = "8c3a7a0da6775d06b75d74e763add35eb2b02969"; } + { locale = "xh"; arch = "linux-x86_64"; sha1 = "724db968c33bfd30540ddb36f8d26e19073aa328"; } + { locale = "zh-CN"; arch = "linux-i686"; sha1 = "de2b4c514a237f120bb0d9de5039a75b8bb519b0"; } + { locale = "zh-CN"; arch = "linux-x86_64"; sha1 = "6b6f8caece54a911124b33c3fce9233d760ae46e"; } + { locale = "zh-TW"; arch = "linux-i686"; sha1 = "aa85f39ee92c62d2d1809cf50e158f04a1bb88ea"; } + { locale = "zh-TW"; arch = "linux-x86_64"; sha1 = "0f859da4a12559d8b28411b5206b17739ddf869b"; } ]; } From c7cc743b52e839960b935e4ad9c0cacb9f571abb Mon Sep 17 00:00:00 2001 From: Jude Taylor Date: Thu, 15 Oct 2015 18:08:53 -0700 Subject: [PATCH 045/196] inherit system for builtin fetchurl in PD --- pkgs/stdenv/pure-darwin/default.nix | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/pkgs/stdenv/pure-darwin/default.nix b/pkgs/stdenv/pure-darwin/default.nix index 5fbfb16a66e..c043da8a8a7 100644 --- a/pkgs/stdenv/pure-darwin/default.nix +++ b/pkgs/stdenv/pure-darwin/default.nix @@ -18,16 +18,13 @@ let "/usr/lib/system" ]; - fetch = { file, sha256 }: let drv = import { + fetch = { file, sha256 }: derivation ((import { url = "https://dl.dropboxusercontent.com/u/2857322/${file}"; - inherit sha256; + inherit sha256 system; executable = true; - }; in - if drv.drvAttrs.system == "x86_64-darwin" - then derivation (drv.drvAttrs // { - __impureHostDeps = libSystemClosure; - }) - else drv; + }).drvAttrs // { + __impureHostDeps = libSystemClosure; + }); bootstrapFiles = { sh = fetch { file = "sh"; sha256 = "1qakpg37vl61jnkplz13m3g1csqr85cg8ybp6jwiv6apmg26isnm"; }; From a7f09b201e85f3f30a83eb57751dda29d2aa1003 Mon Sep 17 00:00:00 2001 From: Jude Taylor Date: Thu, 15 Oct 2015 20:49:29 -0700 Subject: [PATCH 046/196] fix filepaths for darwin.security_tool --- pkgs/os-specific/darwin/apple-sdk/default.nix | 2 +- .../libsecurity_apple_csp/default.nix | 2 +- .../libsecurity_filedb/default.nix | 2 +- .../libsecurity_generic/default.nix | 2 +- .../libsecurity_keychain/default.nix | 16 ++++++++-------- .../libsecurity_utilities/default.nix | 6 +++--- .../os-specific/darwin/security-tool/default.nix | 12 +++++++++--- pkgs/top-level/all-packages.nix | 4 +++- 8 files changed, 27 insertions(+), 19 deletions(-) diff --git a/pkgs/os-specific/darwin/apple-sdk/default.nix b/pkgs/os-specific/darwin/apple-sdk/default.nix index 59a816e9b94..ff2d8b590b2 100644 --- a/pkgs/os-specific/darwin/apple-sdk/default.nix +++ b/pkgs/os-specific/darwin/apple-sdk/default.nix @@ -148,7 +148,7 @@ in rec { }; overrides = super: { - AppKit = stdenv.lib.overrideDerivation super.AppKit (drv: { + CoreText = stdenv.lib.overrideDerivation super.CoreText (drv: { propagatedNativeBuildInputs = drv.propagatedNativeBuildInputs ++ [ pkgs.darwin.cf-private ]; }); diff --git a/pkgs/os-specific/darwin/apple-source-releases/libsecurity_apple_csp/default.nix b/pkgs/os-specific/darwin/apple-source-releases/libsecurity_apple_csp/default.nix index add46454cbe..04b1e2f21fe 100644 --- a/pkgs/os-specific/darwin/apple-source-releases/libsecurity_apple_csp/default.nix +++ b/pkgs/os-specific/darwin/apple-source-releases/libsecurity_apple_csp/default.nix @@ -19,7 +19,7 @@ appleDerivation { for file in lib/castContext.h lib/gladmanContext.h lib/desContext.h lib/rc4Context.h; do substituteInPlace ''$file --replace \ '/usr/local/include/CommonCrypto/CommonCryptorSPI.h' \ - '${osx_private_sdk}/usr/include/CommonCrypto/CommonCryptorSPI.h' + '${osx_private_sdk}/PrivateSDK10.9.sparse.sdk/usr/include/CommonCrypto/CommonCryptorSPI.h' done substituteInPlace lib/opensshWrap.cpp --replace RSA_DSA_Keys.h RSA_DSA_keys.h diff --git a/pkgs/os-specific/darwin/apple-source-releases/libsecurity_filedb/default.nix b/pkgs/os-specific/darwin/apple-source-releases/libsecurity_filedb/default.nix index 86cc2a390db..0234cbc6279 100644 --- a/pkgs/os-specific/darwin/apple-source-releases/libsecurity_filedb/default.nix +++ b/pkgs/os-specific/darwin/apple-source-releases/libsecurity_filedb/default.nix @@ -6,7 +6,7 @@ appleDerivation { libsecurity_cdsa_plugin ]; patchPhase = '' - cp ${osx_private_sdk}/usr/local/include/sandbox_private.h . + cp ${osx_private_sdk}/PrivateSDK10.9.sparse.sdk/usr/local/include/sandbox_private.h . substituteInPlace sandbox_private.h --replace '' '"${apple_sdk.sdk}/include/sandbox.h"' substituteInPlace lib/AtomicFile.cpp --replace '' '"sandbox_private.h"' ''; diff --git a/pkgs/os-specific/darwin/apple-source-releases/libsecurity_generic/default.nix b/pkgs/os-specific/darwin/apple-source-releases/libsecurity_generic/default.nix index a94b9b455ef..4a739032e2a 100644 --- a/pkgs/os-specific/darwin/apple-source-releases/libsecurity_generic/default.nix +++ b/pkgs/os-specific/darwin/apple-source-releases/libsecurity_generic/default.nix @@ -10,7 +10,7 @@ name: version: sha256: args: let patchPhase = '' # allows including - ln -s ${pkgs.darwin.osx_private_sdk}/System/Library/Frameworks/Security.framework/Versions/A/PrivateHeaders Security + ln -s ${pkgs.darwin.osx_private_sdk}/PrivateSDK10.9.sparse.sdk/System/Library/Frameworks/Security.framework/Versions/A/PrivateHeaders Security grep -Rl MacErrors.h . | while read file; do substituteInPlace "''$file" --replace \ diff --git a/pkgs/os-specific/darwin/apple-source-releases/libsecurity_keychain/default.nix b/pkgs/os-specific/darwin/apple-source-releases/libsecurity_keychain/default.nix index de97950b765..34a2a49ea0e 100644 --- a/pkgs/os-specific/darwin/apple-source-releases/libsecurity_keychain/default.nix +++ b/pkgs/os-specific/darwin/apple-source-releases/libsecurity_keychain/default.nix @@ -15,25 +15,25 @@ appleDerivation { ]; patchPhase = '' substituteInPlace lib/Keychains.cpp --replace DLDbListCFPref.h DLDBListCFPref.h - + substituteInPlace lib/SecCertificate.cpp --replace '#include ' "" - - cp ${osx_private_sdk}/usr/include/xpc/private.h xpc + + cp ${osx_private_sdk}/PrivateSDK10.9.sparse.sdk/usr/include/xpc/private.h xpc cp ${apple_sdk.sdk}/include/xpc/*.h xpc - cp ${osx_private_sdk}/usr/local/include/sandbox_private.h lib/sandbox.h - + cp ${osx_private_sdk}/PrivateSDK10.9.sparse.sdk/usr/local/include/sandbox_private.h lib/sandbox.h + substituteInPlace lib/SecItemPriv.h \ --replace "extern CFTypeRef kSecAttrAccessGroup" "extern const CFTypeRef kSecAttrAccessGroup" \ --replace "extern CFTypeRef kSecAttrIsSensitive" "extern const CFTypeRef kSecAttrIsSensitive" \ --replace "extern CFTypeRef kSecAttrIsExtractable" "extern const CFTypeRef kSecAttrIsExtractable" - + substituteInPlace lib/Keychains.cpp --replace \ '' \ '"${apple_sdk.sdk}/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/Headers/MacErrors.h"' - + substituteInPlace lib/CertificateValues.cpp --replace \ '#include ' "" - + substituteInPlace lib/DLDBListCFPref.cpp --replace \ 'dispatch_once_t AppSandboxChecked;' ''$'namespace Security {\ndispatch_once_t AppSandboxChecked;' \ --replace 'return mLoginDLDbIdentifier;' 'return mLoginDLDbIdentifier; }' \ diff --git a/pkgs/os-specific/darwin/apple-source-releases/libsecurity_utilities/default.nix b/pkgs/os-specific/darwin/apple-source-releases/libsecurity_utilities/default.nix index 8cc74e2210f..23ac246b4af 100644 --- a/pkgs/os-specific/darwin/apple-source-releases/libsecurity_utilities/default.nix +++ b/pkgs/os-specific/darwin/apple-source-releases/libsecurity_utilities/default.nix @@ -14,9 +14,9 @@ appleDerivation { substituteInPlace lib/debugging.cpp --replace PATH_MAX 1024 substituteInPlace lib/superblob.h --replace 'result->at' 'result->template at' substituteInPlace lib/ccaudit.cpp --replace '' '"bsm/libbsm.h"' - - cp ${osx_private_sdk}/usr/include/security_utilities/utilities_dtrace.h lib - cp -R ${osx_private_sdk}/usr/local/include/bsm lib + + cp ${osx_private_sdk}/PrivateSDK10.9.sparse.sdk/usr/include/security_utilities/utilities_dtrace.h lib + cp -R ${osx_private_sdk}/PrivateSDK10.9.sparse.sdk/usr/local/include/bsm lib '' + stdenv.lib.optionalString (!stdenv.cc.nativeLibc) '' substituteInPlace lib/vproc++.cpp --replace /usr/local/include/vproc_priv.h ${stdenv.libc}/include/vproc_priv.h ''; diff --git a/pkgs/os-specific/darwin/security-tool/default.nix b/pkgs/os-specific/darwin/security-tool/default.nix index 7cff4fc3eef..f0877aa3404 100644 --- a/pkgs/os-specific/darwin/security-tool/default.nix +++ b/pkgs/os-specific/darwin/security-tool/default.nix @@ -1,4 +1,10 @@ -{ CoreServices, Foundation, PCSC, Security, GSS, Kerberos, makeWrapper, apple_sdk, fetchurl, gnustep-make, libobjc, libsecurity_apple_csp, libsecurity_apple_cspdl, libsecurity_apple_file_dl, libsecurity_apple_x509_cl, libsecurity_apple_x509_tp, libsecurity_asn1, libsecurity_cdsa_client, libsecurity_cdsa_plugin, libsecurity_cdsa_utilities, libsecurity_cdsa_utils, libsecurity_cssm, libsecurity_filedb, libsecurity_keychain, libsecurity_mds, libsecurity_pkcs12, libsecurity_sd_cspdl, libsecurity_utilities, libsecurityd, osx_private_sdk, stdenv }: +{ CoreServices, Foundation, PCSC, Security, GSS, Kerberos, makeWrapper, apple_sdk, +fetchurl, gnustep-make, libobjc, libsecurity_apple_csp, libsecurity_apple_cspdl, +libsecurity_apple_file_dl, libsecurity_apple_x509_cl, libsecurity_apple_x509_tp, +libsecurity_asn1, libsecurity_cdsa_client, libsecurity_cdsa_plugin, +libsecurity_cdsa_utilities, libsecurity_cdsa_utils, libsecurity_cssm, libsecurity_filedb, +libsecurity_keychain, libsecurity_mds, libsecurity_pkcs12, libsecurity_sd_cspdl, +libsecurity_utilities, libsecurityd, osx_private_sdk, Security-framework, stdenv }: stdenv.mkDerivation rec { version = "55115"; @@ -11,7 +17,7 @@ stdenv.mkDerivation rec { patchPhase = '' # copied from libsecurity_generic - ln -s ${osx_private_sdk}/System/Library/Frameworks/Security.framework/Versions/A/PrivateHeaders Security + ln -s ${osx_private_sdk}/PrivateSDK10.9.sparse.sdk/System/Library/Frameworks/Security.framework/Versions/A/PrivateHeaders Security substituteInPlace cmsutil.c --replace \ '' \ @@ -39,7 +45,7 @@ stdenv.mkDerivation rec { "security_INSTALL_DIR=\$(out)/bin" ]; - propagatedBuildInputs = [ GSS Kerberos Security PCSC Foundation ]; + propagatedBuildInputs = [ GSS Kerberos Security-framework PCSC Foundation ]; __propagatedImpureHostDeps = [ "/System/Library/Keychains" ]; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index c1362445f15..cf40adb5c7e 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -9527,7 +9527,9 @@ let osx_sdk = callPackage ../os-specific/darwin/osx-sdk {}; osx_private_sdk = callPackage ../os-specific/darwin/osx-private-sdk {}; - security_tool = (newScope (darwin.apple_sdk.frameworks // darwin)) ../os-specific/darwin/security-tool { }; + security_tool = (newScope (darwin.apple_sdk.frameworks // darwin)) ../os-specific/darwin/security-tool { + Security-framework = darwin.apple_sdk.frameworks.Security; + }; binutils = callPackage ../os-specific/darwin/binutils { inherit cctools; }; From 3ef956eb5077fed94aad2883811cd510449a69c3 Mon Sep 17 00:00:00 2001 From: Brian McKenna Date: Fri, 16 Oct 2015 17:38:41 +1100 Subject: [PATCH 047/196] nixos-generate-config: look at mmc_host for device drivers I needed to add sdhci_acpi and mmc_block to my initrd modules in order to boot my Chromebook. Looking under /sys/class/mmc_host/*/device/driver/module will give us the sdhci_acpi dependency. --- nixos/modules/installer/tools/nixos-generate-config.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/modules/installer/tools/nixos-generate-config.pl b/nixos/modules/installer/tools/nixos-generate-config.pl index 19656c9b9ea..c590c4cde3f 100644 --- a/nixos/modules/installer/tools/nixos-generate-config.pl +++ b/nixos/modules/installer/tools/nixos-generate-config.pl @@ -233,8 +233,8 @@ foreach my $path (glob "/sys/bus/usb/devices/*") { } -# Add the modules for all block devices. -foreach my $path (glob "/sys/class/block/*") { +# Add the modules for all block and MMC devices. +foreach my $path (glob "/sys/class/{block,mmc_host}/*") { my $module; if (-e "$path/device/driver/module") { $module = basename `readlink -f $path/device/driver/module`; From fccef131cd7e744abb1b7458a9c3f82b9cff5748 Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Fri, 16 Oct 2015 10:33:49 +0200 Subject: [PATCH 048/196] calibre: 2.40.0 -> 2.41.0 --- pkgs/applications/misc/calibre/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/misc/calibre/default.nix b/pkgs/applications/misc/calibre/default.nix index 9b1a6c6ad35..9d967e839f3 100644 --- a/pkgs/applications/misc/calibre/default.nix +++ b/pkgs/applications/misc/calibre/default.nix @@ -6,11 +6,11 @@ stdenv.mkDerivation rec { name = "calibre-${version}"; - version = "2.40.0"; + version = "2.41.0"; src = fetchurl { url = "https://github.com/kovidgoyal/calibre/releases/download/v${version}/${name}.tar.xz"; - sha256 = "1xzf910w3c15vajnlra32xzi0gwb4z7a9m9w5nfj0by2wss3fv7n"; + sha256 = "069fkcsx7kaazs7f095nkz4jw9jrm0k9zq16ayx41lxjbd1r97ik"; }; inherit python; From 301a1d366a1e0c3d9c2597dea4d0ef5a52f1765b Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 15 Oct 2015 18:31:21 +0200 Subject: [PATCH 049/196] hackage-packages.nix: update Haskell package set This update was generated by hackage2nix v20150922-18-g676e5bd using the following inputs: - Nixpkgs: https://github.com/NixOS/nixpkgs/commit/0d6c2ccabfffd3942f824ac359c8e36e21d4afb6 - Hackage: https://github.com/commercialhaskell/all-cabal-hashes/commit/4571e32cd95bf42a53c85e7c8a496d584c7b028f - LTS Haskell: https://github.com/fpco/lts-haskell/commit/0d493eae3616d7da684f1b6bf35709bc4408a5c0 - Stackage Nightly: https://github.com/fpco/stackage-nightly/commit/c10e6d05feb8b1d4a9cb2ef479d2a448934b7984 --- .../haskell-modules/configuration-lts-0.0.nix | 9 + .../haskell-modules/configuration-lts-0.1.nix | 9 + .../haskell-modules/configuration-lts-0.2.nix | 9 + .../haskell-modules/configuration-lts-0.3.nix | 9 + .../haskell-modules/configuration-lts-0.4.nix | 9 + .../haskell-modules/configuration-lts-0.5.nix | 9 + .../haskell-modules/configuration-lts-0.6.nix | 9 + .../haskell-modules/configuration-lts-0.7.nix | 9 + .../haskell-modules/configuration-lts-1.0.nix | 9 + .../haskell-modules/configuration-lts-1.1.nix | 9 + .../configuration-lts-1.10.nix | 9 + .../configuration-lts-1.11.nix | 9 + .../configuration-lts-1.12.nix | 9 + .../configuration-lts-1.13.nix | 9 + .../configuration-lts-1.14.nix | 9 + .../configuration-lts-1.15.nix | 9 + .../haskell-modules/configuration-lts-1.2.nix | 9 + .../haskell-modules/configuration-lts-1.4.nix | 9 + .../haskell-modules/configuration-lts-1.5.nix | 9 + .../haskell-modules/configuration-lts-1.7.nix | 9 + .../haskell-modules/configuration-lts-1.8.nix | 9 + .../haskell-modules/configuration-lts-1.9.nix | 9 + .../haskell-modules/configuration-lts-2.0.nix | 9 + .../haskell-modules/configuration-lts-2.1.nix | 9 + .../configuration-lts-2.10.nix | 9 + .../configuration-lts-2.11.nix | 9 + .../configuration-lts-2.12.nix | 9 + .../configuration-lts-2.13.nix | 9 + .../configuration-lts-2.14.nix | 9 + .../configuration-lts-2.15.nix | 9 + .../configuration-lts-2.16.nix | 9 + .../configuration-lts-2.17.nix | 9 + .../configuration-lts-2.18.nix | 9 + .../configuration-lts-2.19.nix | 9 + .../haskell-modules/configuration-lts-2.2.nix | 9 + .../configuration-lts-2.20.nix | 9 + .../configuration-lts-2.21.nix | 9 + .../configuration-lts-2.22.nix | 9 + .../haskell-modules/configuration-lts-2.3.nix | 9 + .../haskell-modules/configuration-lts-2.4.nix | 9 + .../haskell-modules/configuration-lts-2.5.nix | 9 + .../haskell-modules/configuration-lts-2.6.nix | 9 + .../haskell-modules/configuration-lts-2.7.nix | 9 + .../haskell-modules/configuration-lts-2.8.nix | 9 + .../haskell-modules/configuration-lts-2.9.nix | 9 + .../haskell-modules/configuration-lts-3.0.nix | 11 + .../haskell-modules/configuration-lts-3.1.nix | 11 + .../haskell-modules/configuration-lts-3.2.nix | 12 + .../haskell-modules/configuration-lts-3.3.nix | 12 + .../haskell-modules/configuration-lts-3.4.nix | 12 + .../haskell-modules/configuration-lts-3.5.nix | 12 + .../haskell-modules/configuration-lts-3.6.nix | 12 + .../haskell-modules/configuration-lts-3.7.nix | 13 + .../haskell-modules/configuration-lts-3.8.nix | 13 + .../haskell-modules/configuration-lts-3.9.nix | 14 + .../haskell-modules/hackage-packages.nix | 815 +++++++++++++++--- 56 files changed, 1202 insertions(+), 140 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-lts-0.0.nix b/pkgs/development/haskell-modules/configuration-lts-0.0.nix index 4e96633ffec..04195f0a435 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.0.nix @@ -1074,6 +1074,7 @@ self: super: { "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"; @@ -1410,6 +1411,7 @@ self: super: { "atomic-write" = dontDistribute super."atomic-write"; "atomo" = dontDistribute super."atomo"; "attempt" = dontDistribute super."attempt"; + "atto-lisp" = doDistribute super."atto-lisp_0_2_2"; "attoparsec" = doDistribute super."attoparsec_0_12_1_2"; "attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-binary" = dontDistribute super."attoparsec-binary"; @@ -5255,6 +5257,7 @@ self: super: { "markdown" = doDistribute super."markdown_0_1_13"; "markdown-kate" = dontDistribute super."markdown-kate"; "markdown-pap" = dontDistribute super."markdown-pap"; + "markdown-unlit" = doDistribute super."markdown-unlit_0_2_0_1"; "markdown2svg" = dontDistribute super."markdown2svg"; "marked-pretty" = dontDistribute super."marked-pretty"; "markov" = dontDistribute super."markov"; @@ -5468,6 +5471,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_6_3"; + "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-owns" = dontDistribute super."monoid-owns"; "monoid-record" = dontDistribute super."monoid-record"; @@ -5819,6 +5823,7 @@ self: super: { "opendatatable" = dontDistribute super."opendatatable"; "openexchangerates" = dontDistribute super."openexchangerates"; "openflow" = dontDistribute super."openflow"; + "opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo"; "opengles" = dontDistribute super."opengles"; "openid" = dontDistribute super."openid"; "openpgp" = dontDistribute super."openpgp"; @@ -6351,6 +6356,7 @@ self: super: { "qd-vec" = dontDistribute super."qd-vec"; "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; + "qt" = dontDistribute super."qt"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quantfin" = dontDistribute super."quantfin"; @@ -6418,6 +6424,7 @@ self: super: { "random-fu" = doDistribute super."random-fu_0_2_6_1"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; + "random-variates" = dontDistribute super."random-variates"; "randomgen" = dontDistribute super."randomgen"; "randproc" = dontDistribute super."randproc"; "randsolid" = dontDistribute super."randsolid"; @@ -6504,6 +6511,7 @@ self: super: { "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"; @@ -7082,6 +7090,7 @@ self: super: { "snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-environments" = dontDistribute super."snaplet-environments"; "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_8"; + "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; "snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-haxl" = dontDistribute super."snaplet-haxl"; "snaplet-hdbc" = dontDistribute super."snaplet-hdbc"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.1.nix b/pkgs/development/haskell-modules/configuration-lts-0.1.nix index a83b845553d..da42aa24f08 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.1.nix @@ -1074,6 +1074,7 @@ self: super: { "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"; @@ -1410,6 +1411,7 @@ self: super: { "atomic-write" = dontDistribute super."atomic-write"; "atomo" = dontDistribute super."atomo"; "attempt" = dontDistribute super."attempt"; + "atto-lisp" = doDistribute super."atto-lisp_0_2_2"; "attoparsec" = doDistribute super."attoparsec_0_12_1_2"; "attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-binary" = dontDistribute super."attoparsec-binary"; @@ -5254,6 +5256,7 @@ self: super: { "markdown" = doDistribute super."markdown_0_1_13"; "markdown-kate" = dontDistribute super."markdown-kate"; "markdown-pap" = dontDistribute super."markdown-pap"; + "markdown-unlit" = doDistribute super."markdown-unlit_0_2_0_1"; "markdown2svg" = dontDistribute super."markdown2svg"; "marked-pretty" = dontDistribute super."marked-pretty"; "markov" = dontDistribute super."markov"; @@ -5467,6 +5470,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_6_3"; + "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-owns" = dontDistribute super."monoid-owns"; "monoid-record" = dontDistribute super."monoid-record"; @@ -5818,6 +5822,7 @@ self: super: { "opendatatable" = dontDistribute super."opendatatable"; "openexchangerates" = dontDistribute super."openexchangerates"; "openflow" = dontDistribute super."openflow"; + "opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo"; "opengles" = dontDistribute super."opengles"; "openid" = dontDistribute super."openid"; "openpgp" = dontDistribute super."openpgp"; @@ -6350,6 +6355,7 @@ self: super: { "qd-vec" = dontDistribute super."qd-vec"; "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; + "qt" = dontDistribute super."qt"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quantfin" = dontDistribute super."quantfin"; @@ -6417,6 +6423,7 @@ self: super: { "random-fu" = doDistribute super."random-fu_0_2_6_1"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; + "random-variates" = dontDistribute super."random-variates"; "randomgen" = dontDistribute super."randomgen"; "randproc" = dontDistribute super."randproc"; "randsolid" = dontDistribute super."randsolid"; @@ -6503,6 +6510,7 @@ self: super: { "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"; @@ -7081,6 +7089,7 @@ self: super: { "snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-environments" = dontDistribute super."snaplet-environments"; "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_8"; + "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; "snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-haxl" = dontDistribute super."snaplet-haxl"; "snaplet-hdbc" = dontDistribute super."snaplet-hdbc"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.2.nix b/pkgs/development/haskell-modules/configuration-lts-0.2.nix index 2be11aabdd1..be3ff1887cf 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.2.nix @@ -1074,6 +1074,7 @@ self: super: { "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"; @@ -1410,6 +1411,7 @@ self: super: { "atomic-write" = dontDistribute super."atomic-write"; "atomo" = dontDistribute super."atomo"; "attempt" = dontDistribute super."attempt"; + "atto-lisp" = doDistribute super."atto-lisp_0_2_2"; "attoparsec" = doDistribute super."attoparsec_0_12_1_2"; "attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-binary" = dontDistribute super."attoparsec-binary"; @@ -5254,6 +5256,7 @@ self: super: { "markdown" = doDistribute super."markdown_0_1_13"; "markdown-kate" = dontDistribute super."markdown-kate"; "markdown-pap" = dontDistribute super."markdown-pap"; + "markdown-unlit" = doDistribute super."markdown-unlit_0_2_0_1"; "markdown2svg" = dontDistribute super."markdown2svg"; "marked-pretty" = dontDistribute super."marked-pretty"; "markov" = dontDistribute super."markov"; @@ -5467,6 +5470,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_6_3"; + "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-owns" = dontDistribute super."monoid-owns"; "monoid-record" = dontDistribute super."monoid-record"; @@ -5818,6 +5822,7 @@ self: super: { "opendatatable" = dontDistribute super."opendatatable"; "openexchangerates" = dontDistribute super."openexchangerates"; "openflow" = dontDistribute super."openflow"; + "opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo"; "opengles" = dontDistribute super."opengles"; "openid" = dontDistribute super."openid"; "openpgp" = dontDistribute super."openpgp"; @@ -6350,6 +6355,7 @@ self: super: { "qd-vec" = dontDistribute super."qd-vec"; "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; + "qt" = dontDistribute super."qt"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quantfin" = dontDistribute super."quantfin"; @@ -6417,6 +6423,7 @@ self: super: { "random-fu" = doDistribute super."random-fu_0_2_6_1"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; + "random-variates" = dontDistribute super."random-variates"; "randomgen" = dontDistribute super."randomgen"; "randproc" = dontDistribute super."randproc"; "randsolid" = dontDistribute super."randsolid"; @@ -6503,6 +6510,7 @@ self: super: { "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"; @@ -7081,6 +7089,7 @@ self: super: { "snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-environments" = dontDistribute super."snaplet-environments"; "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_8"; + "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; "snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-haxl" = dontDistribute super."snaplet-haxl"; "snaplet-hdbc" = dontDistribute super."snaplet-hdbc"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.3.nix b/pkgs/development/haskell-modules/configuration-lts-0.3.nix index 73960f178c4..5be3c16be86 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.3.nix @@ -1074,6 +1074,7 @@ self: super: { "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"; @@ -1410,6 +1411,7 @@ self: super: { "atomic-write" = dontDistribute super."atomic-write"; "atomo" = dontDistribute super."atomo"; "attempt" = dontDistribute super."attempt"; + "atto-lisp" = doDistribute super."atto-lisp_0_2_2"; "attoparsec" = doDistribute super."attoparsec_0_12_1_2"; "attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-binary" = dontDistribute super."attoparsec-binary"; @@ -5254,6 +5256,7 @@ self: super: { "markdown" = doDistribute super."markdown_0_1_13"; "markdown-kate" = dontDistribute super."markdown-kate"; "markdown-pap" = dontDistribute super."markdown-pap"; + "markdown-unlit" = doDistribute super."markdown-unlit_0_2_0_1"; "markdown2svg" = dontDistribute super."markdown2svg"; "marked-pretty" = dontDistribute super."marked-pretty"; "markov" = dontDistribute super."markov"; @@ -5467,6 +5470,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_6_3"; + "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-owns" = dontDistribute super."monoid-owns"; "monoid-record" = dontDistribute super."monoid-record"; @@ -5818,6 +5822,7 @@ self: super: { "opendatatable" = dontDistribute super."opendatatable"; "openexchangerates" = dontDistribute super."openexchangerates"; "openflow" = dontDistribute super."openflow"; + "opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo"; "opengles" = dontDistribute super."opengles"; "openid" = dontDistribute super."openid"; "openpgp" = dontDistribute super."openpgp"; @@ -6350,6 +6355,7 @@ self: super: { "qd-vec" = dontDistribute super."qd-vec"; "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; + "qt" = dontDistribute super."qt"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quantfin" = dontDistribute super."quantfin"; @@ -6417,6 +6423,7 @@ self: super: { "random-fu" = doDistribute super."random-fu_0_2_6_1"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; + "random-variates" = dontDistribute super."random-variates"; "randomgen" = dontDistribute super."randomgen"; "randproc" = dontDistribute super."randproc"; "randsolid" = dontDistribute super."randsolid"; @@ -6503,6 +6510,7 @@ self: super: { "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"; @@ -7081,6 +7089,7 @@ self: super: { "snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-environments" = dontDistribute super."snaplet-environments"; "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_8"; + "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; "snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-haxl" = dontDistribute super."snaplet-haxl"; "snaplet-hdbc" = dontDistribute super."snaplet-hdbc"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.4.nix b/pkgs/development/haskell-modules/configuration-lts-0.4.nix index ab5ed4f9716..ebcb6e0598a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.4.nix @@ -1074,6 +1074,7 @@ self: super: { "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"; @@ -1410,6 +1411,7 @@ self: super: { "atomic-write" = dontDistribute super."atomic-write"; "atomo" = dontDistribute super."atomo"; "attempt" = dontDistribute super."attempt"; + "atto-lisp" = doDistribute super."atto-lisp_0_2_2"; "attoparsec" = doDistribute super."attoparsec_0_12_1_2"; "attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-binary" = dontDistribute super."attoparsec-binary"; @@ -5251,6 +5253,7 @@ self: super: { "markdown" = doDistribute super."markdown_0_1_13"; "markdown-kate" = dontDistribute super."markdown-kate"; "markdown-pap" = dontDistribute super."markdown-pap"; + "markdown-unlit" = doDistribute super."markdown-unlit_0_2_0_1"; "markdown2svg" = dontDistribute super."markdown2svg"; "marked-pretty" = dontDistribute super."marked-pretty"; "markov" = dontDistribute super."markov"; @@ -5464,6 +5467,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_6_3"; + "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-owns" = dontDistribute super."monoid-owns"; "monoid-record" = dontDistribute super."monoid-record"; @@ -5815,6 +5819,7 @@ self: super: { "opendatatable" = dontDistribute super."opendatatable"; "openexchangerates" = dontDistribute super."openexchangerates"; "openflow" = dontDistribute super."openflow"; + "opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo"; "opengles" = dontDistribute super."opengles"; "openid" = dontDistribute super."openid"; "openpgp" = dontDistribute super."openpgp"; @@ -6347,6 +6352,7 @@ self: super: { "qd-vec" = dontDistribute super."qd-vec"; "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; + "qt" = dontDistribute super."qt"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quantfin" = dontDistribute super."quantfin"; @@ -6414,6 +6420,7 @@ self: super: { "random-fu" = doDistribute super."random-fu_0_2_6_1"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; + "random-variates" = dontDistribute super."random-variates"; "randomgen" = dontDistribute super."randomgen"; "randproc" = dontDistribute super."randproc"; "randsolid" = dontDistribute super."randsolid"; @@ -6500,6 +6507,7 @@ self: super: { "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"; @@ -7077,6 +7085,7 @@ self: super: { "snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-environments" = dontDistribute super."snaplet-environments"; "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_8"; + "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; "snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-haxl" = dontDistribute super."snaplet-haxl"; "snaplet-hdbc" = dontDistribute super."snaplet-hdbc"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.5.nix b/pkgs/development/haskell-modules/configuration-lts-0.5.nix index 03a086680ff..d485faeee95 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.5.nix @@ -1074,6 +1074,7 @@ self: super: { "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"; @@ -1410,6 +1411,7 @@ self: super: { "atomic-write" = dontDistribute super."atomic-write"; "atomo" = dontDistribute super."atomo"; "attempt" = dontDistribute super."attempt"; + "atto-lisp" = doDistribute super."atto-lisp_0_2_2"; "attoparsec" = doDistribute super."attoparsec_0_12_1_2"; "attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-binary" = dontDistribute super."attoparsec-binary"; @@ -5251,6 +5253,7 @@ self: super: { "markdown" = doDistribute super."markdown_0_1_13"; "markdown-kate" = dontDistribute super."markdown-kate"; "markdown-pap" = dontDistribute super."markdown-pap"; + "markdown-unlit" = doDistribute super."markdown-unlit_0_2_0_1"; "markdown2svg" = dontDistribute super."markdown2svg"; "marked-pretty" = dontDistribute super."marked-pretty"; "markov" = dontDistribute super."markov"; @@ -5464,6 +5467,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_6_3"; + "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-owns" = dontDistribute super."monoid-owns"; "monoid-record" = dontDistribute super."monoid-record"; @@ -5815,6 +5819,7 @@ self: super: { "opendatatable" = dontDistribute super."opendatatable"; "openexchangerates" = dontDistribute super."openexchangerates"; "openflow" = dontDistribute super."openflow"; + "opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo"; "opengles" = dontDistribute super."opengles"; "openid" = dontDistribute super."openid"; "openpgp" = dontDistribute super."openpgp"; @@ -6347,6 +6352,7 @@ self: super: { "qd-vec" = dontDistribute super."qd-vec"; "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; + "qt" = dontDistribute super."qt"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quantfin" = dontDistribute super."quantfin"; @@ -6414,6 +6420,7 @@ self: super: { "random-fu" = doDistribute super."random-fu_0_2_6_1"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; + "random-variates" = dontDistribute super."random-variates"; "randomgen" = dontDistribute super."randomgen"; "randproc" = dontDistribute super."randproc"; "randsolid" = dontDistribute super."randsolid"; @@ -6500,6 +6507,7 @@ self: super: { "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"; @@ -7077,6 +7085,7 @@ self: super: { "snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-environments" = dontDistribute super."snaplet-environments"; "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_8"; + "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; "snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-haxl" = dontDistribute super."snaplet-haxl"; "snaplet-hdbc" = dontDistribute super."snaplet-hdbc"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.6.nix b/pkgs/development/haskell-modules/configuration-lts-0.6.nix index 6053fa578c2..0ba1ec89862 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.6.nix @@ -1073,6 +1073,7 @@ self: super: { "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"; @@ -1408,6 +1409,7 @@ self: super: { "atomic-write" = dontDistribute super."atomic-write"; "atomo" = dontDistribute super."atomo"; "attempt" = dontDistribute super."attempt"; + "atto-lisp" = doDistribute super."atto-lisp_0_2_2"; "attoparsec" = doDistribute super."attoparsec_0_12_1_2"; "attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-binary" = dontDistribute super."attoparsec-binary"; @@ -5247,6 +5249,7 @@ self: super: { "markdown" = doDistribute super."markdown_0_1_13"; "markdown-kate" = dontDistribute super."markdown-kate"; "markdown-pap" = dontDistribute super."markdown-pap"; + "markdown-unlit" = doDistribute super."markdown-unlit_0_2_0_1"; "markdown2svg" = dontDistribute super."markdown2svg"; "marked-pretty" = dontDistribute super."marked-pretty"; "markov" = dontDistribute super."markov"; @@ -5460,6 +5463,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_6_3"; + "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-owns" = dontDistribute super."monoid-owns"; "monoid-record" = dontDistribute super."monoid-record"; @@ -5810,6 +5814,7 @@ self: super: { "opendatatable" = dontDistribute super."opendatatable"; "openexchangerates" = dontDistribute super."openexchangerates"; "openflow" = dontDistribute super."openflow"; + "opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo"; "opengles" = dontDistribute super."opengles"; "openid" = dontDistribute super."openid"; "openpgp" = dontDistribute super."openpgp"; @@ -6342,6 +6347,7 @@ self: super: { "qd-vec" = dontDistribute super."qd-vec"; "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; + "qt" = dontDistribute super."qt"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quantfin" = dontDistribute super."quantfin"; @@ -6409,6 +6415,7 @@ self: super: { "random-fu" = doDistribute super."random-fu_0_2_6_1"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; + "random-variates" = dontDistribute super."random-variates"; "randomgen" = dontDistribute super."randomgen"; "randproc" = dontDistribute super."randproc"; "randsolid" = dontDistribute super."randsolid"; @@ -6495,6 +6502,7 @@ self: super: { "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"; @@ -7071,6 +7079,7 @@ self: super: { "snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-environments" = dontDistribute super."snaplet-environments"; "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_8"; + "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; "snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-haxl" = dontDistribute super."snaplet-haxl"; "snaplet-hdbc" = dontDistribute super."snaplet-hdbc"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.7.nix b/pkgs/development/haskell-modules/configuration-lts-0.7.nix index 1b029b2e72e..90c449bd6e7 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.7.nix @@ -1073,6 +1073,7 @@ self: super: { "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"; @@ -1408,6 +1409,7 @@ self: super: { "atomic-write" = dontDistribute super."atomic-write"; "atomo" = dontDistribute super."atomo"; "attempt" = dontDistribute super."attempt"; + "atto-lisp" = doDistribute super."atto-lisp_0_2_2"; "attoparsec" = doDistribute super."attoparsec_0_12_1_2"; "attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-binary" = dontDistribute super."attoparsec-binary"; @@ -5247,6 +5249,7 @@ self: super: { "markdown" = doDistribute super."markdown_0_1_13"; "markdown-kate" = dontDistribute super."markdown-kate"; "markdown-pap" = dontDistribute super."markdown-pap"; + "markdown-unlit" = doDistribute super."markdown-unlit_0_2_0_1"; "markdown2svg" = dontDistribute super."markdown2svg"; "marked-pretty" = dontDistribute super."marked-pretty"; "markov" = dontDistribute super."markov"; @@ -5460,6 +5463,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_6_3"; + "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-owns" = dontDistribute super."monoid-owns"; "monoid-record" = dontDistribute super."monoid-record"; @@ -5810,6 +5814,7 @@ self: super: { "opendatatable" = dontDistribute super."opendatatable"; "openexchangerates" = dontDistribute super."openexchangerates"; "openflow" = dontDistribute super."openflow"; + "opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo"; "opengles" = dontDistribute super."opengles"; "openid" = dontDistribute super."openid"; "openpgp" = dontDistribute super."openpgp"; @@ -6342,6 +6347,7 @@ self: super: { "qd-vec" = dontDistribute super."qd-vec"; "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; + "qt" = dontDistribute super."qt"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quantfin" = dontDistribute super."quantfin"; @@ -6409,6 +6415,7 @@ self: super: { "random-fu" = doDistribute super."random-fu_0_2_6_1"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; + "random-variates" = dontDistribute super."random-variates"; "randomgen" = dontDistribute super."randomgen"; "randproc" = dontDistribute super."randproc"; "randsolid" = dontDistribute super."randsolid"; @@ -6495,6 +6502,7 @@ self: super: { "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"; @@ -7071,6 +7079,7 @@ self: super: { "snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-environments" = dontDistribute super."snaplet-environments"; "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_8"; + "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; "snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-haxl" = dontDistribute super."snaplet-haxl"; "snaplet-hdbc" = dontDistribute super."snaplet-hdbc"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.0.nix b/pkgs/development/haskell-modules/configuration-lts-1.0.nix index cfda037af8b..fc79794edd3 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.0.nix @@ -1069,6 +1069,7 @@ self: super: { "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"; @@ -1404,6 +1405,7 @@ self: super: { "atomic-write" = dontDistribute super."atomic-write"; "atomo" = dontDistribute super."atomo"; "attempt" = dontDistribute super."attempt"; + "atto-lisp" = doDistribute super."atto-lisp_0_2_2"; "attoparsec" = doDistribute super."attoparsec_0_12_1_2"; "attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-binary" = dontDistribute super."attoparsec-binary"; @@ -5235,6 +5237,7 @@ self: super: { "markdown" = doDistribute super."markdown_0_1_13"; "markdown-kate" = dontDistribute super."markdown-kate"; "markdown-pap" = dontDistribute super."markdown-pap"; + "markdown-unlit" = doDistribute super."markdown-unlit_0_2_0_1"; "markdown2svg" = dontDistribute super."markdown2svg"; "marked-pretty" = dontDistribute super."marked-pretty"; "markov" = dontDistribute super."markov"; @@ -5448,6 +5451,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_7_0"; + "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-owns" = dontDistribute super."monoid-owns"; "monoid-record" = dontDistribute super."monoid-record"; @@ -5798,6 +5802,7 @@ self: super: { "opendatatable" = dontDistribute super."opendatatable"; "openexchangerates" = dontDistribute super."openexchangerates"; "openflow" = dontDistribute super."openflow"; + "opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo"; "opengles" = dontDistribute super."opengles"; "openid" = dontDistribute super."openid"; "openpgp" = dontDistribute super."openpgp"; @@ -6329,6 +6334,7 @@ self: super: { "qd-vec" = dontDistribute super."qd-vec"; "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; + "qt" = dontDistribute super."qt"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quantfin" = dontDistribute super."quantfin"; @@ -6396,6 +6402,7 @@ self: super: { "random-fu" = doDistribute super."random-fu_0_2_6_1"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; + "random-variates" = dontDistribute super."random-variates"; "randomgen" = dontDistribute super."randomgen"; "randproc" = dontDistribute super."randproc"; "randsolid" = dontDistribute super."randsolid"; @@ -6481,6 +6488,7 @@ self: super: { "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"; @@ -7056,6 +7064,7 @@ self: super: { "snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-environments" = dontDistribute super."snaplet-environments"; "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_8"; + "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; "snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-haxl" = dontDistribute super."snaplet-haxl"; "snaplet-hdbc" = dontDistribute super."snaplet-hdbc"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.1.nix b/pkgs/development/haskell-modules/configuration-lts-1.1.nix index 88fe2a12f3b..d097006e4df 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.1.nix @@ -1069,6 +1069,7 @@ self: super: { "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"; @@ -1403,6 +1404,7 @@ self: super: { "atomic-write" = dontDistribute super."atomic-write"; "atomo" = dontDistribute super."atomo"; "attempt" = dontDistribute super."attempt"; + "atto-lisp" = doDistribute super."atto-lisp_0_2_2"; "attoparsec" = doDistribute super."attoparsec_0_12_1_2"; "attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-binary" = dontDistribute super."attoparsec-binary"; @@ -5223,6 +5225,7 @@ self: super: { "markdown" = doDistribute super."markdown_0_1_13_1"; "markdown-kate" = dontDistribute super."markdown-kate"; "markdown-pap" = dontDistribute super."markdown-pap"; + "markdown-unlit" = doDistribute super."markdown-unlit_0_2_0_1"; "markdown2svg" = dontDistribute super."markdown2svg"; "marked-pretty" = dontDistribute super."marked-pretty"; "markov" = dontDistribute super."markov"; @@ -5435,6 +5438,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_7_0"; + "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-owns" = dontDistribute super."monoid-owns"; "monoid-record" = dontDistribute super."monoid-record"; @@ -5785,6 +5789,7 @@ self: super: { "opendatatable" = dontDistribute super."opendatatable"; "openexchangerates" = dontDistribute super."openexchangerates"; "openflow" = dontDistribute super."openflow"; + "opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo"; "opengles" = dontDistribute super."opengles"; "openid" = dontDistribute super."openid"; "openpgp" = dontDistribute super."openpgp"; @@ -6316,6 +6321,7 @@ self: super: { "qd-vec" = dontDistribute super."qd-vec"; "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; + "qt" = dontDistribute super."qt"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quantfin" = dontDistribute super."quantfin"; @@ -6383,6 +6389,7 @@ self: super: { "random-fu" = doDistribute super."random-fu_0_2_6_1"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; + "random-variates" = dontDistribute super."random-variates"; "randomgen" = dontDistribute super."randomgen"; "randproc" = dontDistribute super."randproc"; "randsolid" = dontDistribute super."randsolid"; @@ -6468,6 +6475,7 @@ self: super: { "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"; @@ -7042,6 +7050,7 @@ self: super: { "snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-environments" = dontDistribute super."snaplet-environments"; "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_9"; + "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; "snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-haxl" = dontDistribute super."snaplet-haxl"; "snaplet-hdbc" = dontDistribute super."snaplet-hdbc"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.10.nix b/pkgs/development/haskell-modules/configuration-lts-1.10.nix index 37ecceb293d..ca611fa0abf 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.10.nix @@ -1068,6 +1068,7 @@ self: super: { "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"; @@ -1402,6 +1403,7 @@ self: super: { "atomic-write" = dontDistribute super."atomic-write"; "atomo" = dontDistribute super."atomo"; "attempt" = dontDistribute super."attempt"; + "atto-lisp" = doDistribute super."atto-lisp_0_2_2"; "attoparsec" = doDistribute super."attoparsec_0_12_1_3"; "attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-binary" = dontDistribute super."attoparsec-binary"; @@ -5199,6 +5201,7 @@ self: super: { "markdown" = doDistribute super."markdown_0_1_13_1"; "markdown-kate" = dontDistribute super."markdown-kate"; "markdown-pap" = dontDistribute super."markdown-pap"; + "markdown-unlit" = doDistribute super."markdown-unlit_0_2_0_1"; "markdown2svg" = dontDistribute super."markdown2svg"; "marked-pretty" = dontDistribute super."marked-pretty"; "markov" = dontDistribute super."markov"; @@ -5411,6 +5414,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_7_0"; + "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-owns" = dontDistribute super."monoid-owns"; "monoid-record" = dontDistribute super."monoid-record"; @@ -5759,6 +5763,7 @@ self: super: { "opendatatable" = dontDistribute super."opendatatable"; "openexchangerates" = dontDistribute super."openexchangerates"; "openflow" = dontDistribute super."openflow"; + "opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo"; "opengles" = dontDistribute super."opengles"; "openid" = dontDistribute super."openid"; "openpgp" = dontDistribute super."openpgp"; @@ -6286,6 +6291,7 @@ self: super: { "qd-vec" = dontDistribute super."qd-vec"; "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; + "qt" = dontDistribute super."qt"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quantfin" = dontDistribute super."quantfin"; @@ -6352,6 +6358,7 @@ self: super: { "random-extras" = dontDistribute super."random-extras"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; + "random-variates" = dontDistribute super."random-variates"; "randomgen" = dontDistribute super."randomgen"; "randproc" = dontDistribute super."randproc"; "randsolid" = dontDistribute super."randsolid"; @@ -6437,6 +6444,7 @@ self: super: { "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"; @@ -7009,6 +7017,7 @@ self: super: { "snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-environments" = dontDistribute super."snaplet-environments"; "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_10"; + "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; "snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-haxl" = dontDistribute super."snaplet-haxl"; "snaplet-hdbc" = dontDistribute super."snaplet-hdbc"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.11.nix b/pkgs/development/haskell-modules/configuration-lts-1.11.nix index 0a719cd2991..48b2cc61777 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.11.nix @@ -1068,6 +1068,7 @@ self: super: { "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"; @@ -1402,6 +1403,7 @@ self: super: { "atomic-write" = dontDistribute super."atomic-write"; "atomo" = dontDistribute super."atomo"; "attempt" = dontDistribute super."attempt"; + "atto-lisp" = doDistribute super."atto-lisp_0_2_2"; "attoparsec" = doDistribute super."attoparsec_0_12_1_3"; "attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-binary" = dontDistribute super."attoparsec-binary"; @@ -5195,6 +5197,7 @@ self: super: { "markdown" = doDistribute super."markdown_0_1_13_1"; "markdown-kate" = dontDistribute super."markdown-kate"; "markdown-pap" = dontDistribute super."markdown-pap"; + "markdown-unlit" = doDistribute super."markdown-unlit_0_2_0_1"; "markdown2svg" = dontDistribute super."markdown2svg"; "marked-pretty" = dontDistribute super."marked-pretty"; "markov" = dontDistribute super."markov"; @@ -5407,6 +5410,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_7_0"; + "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-owns" = dontDistribute super."monoid-owns"; "monoid-record" = dontDistribute super."monoid-record"; @@ -5755,6 +5759,7 @@ self: super: { "opendatatable" = dontDistribute super."opendatatable"; "openexchangerates" = dontDistribute super."openexchangerates"; "openflow" = dontDistribute super."openflow"; + "opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo"; "opengles" = dontDistribute super."opengles"; "openid" = dontDistribute super."openid"; "openpgp" = dontDistribute super."openpgp"; @@ -6281,6 +6286,7 @@ self: super: { "qd-vec" = dontDistribute super."qd-vec"; "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; + "qt" = dontDistribute super."qt"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quantfin" = dontDistribute super."quantfin"; @@ -6347,6 +6353,7 @@ self: super: { "random-extras" = dontDistribute super."random-extras"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; + "random-variates" = dontDistribute super."random-variates"; "randomgen" = dontDistribute super."randomgen"; "randproc" = dontDistribute super."randproc"; "randsolid" = dontDistribute super."randsolid"; @@ -6432,6 +6439,7 @@ self: super: { "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"; @@ -7003,6 +7011,7 @@ self: super: { "snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-environments" = dontDistribute super."snaplet-environments"; "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_10"; + "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; "snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-haxl" = dontDistribute super."snaplet-haxl"; "snaplet-hdbc" = dontDistribute super."snaplet-hdbc"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.12.nix b/pkgs/development/haskell-modules/configuration-lts-1.12.nix index 807e25d18c6..41b9faaaf3b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.12.nix @@ -1068,6 +1068,7 @@ self: super: { "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"; @@ -1402,6 +1403,7 @@ self: super: { "atomic-write" = dontDistribute super."atomic-write"; "atomo" = dontDistribute super."atomo"; "attempt" = dontDistribute super."attempt"; + "atto-lisp" = doDistribute super."atto-lisp_0_2_2"; "attoparsec" = doDistribute super."attoparsec_0_12_1_3"; "attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-binary" = dontDistribute super."attoparsec-binary"; @@ -5194,6 +5196,7 @@ self: super: { "markdown" = doDistribute super."markdown_0_1_13_1"; "markdown-kate" = dontDistribute super."markdown-kate"; "markdown-pap" = dontDistribute super."markdown-pap"; + "markdown-unlit" = doDistribute super."markdown-unlit_0_2_0_1"; "markdown2svg" = dontDistribute super."markdown2svg"; "marked-pretty" = dontDistribute super."marked-pretty"; "markov" = dontDistribute super."markov"; @@ -5406,6 +5409,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_7_0"; + "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-owns" = dontDistribute super."monoid-owns"; "monoid-record" = dontDistribute super."monoid-record"; @@ -5754,6 +5758,7 @@ self: super: { "opendatatable" = dontDistribute super."opendatatable"; "openexchangerates" = dontDistribute super."openexchangerates"; "openflow" = dontDistribute super."openflow"; + "opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo"; "opengles" = dontDistribute super."opengles"; "openid" = dontDistribute super."openid"; "openpgp" = dontDistribute super."openpgp"; @@ -6280,6 +6285,7 @@ self: super: { "qd-vec" = dontDistribute super."qd-vec"; "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; + "qt" = dontDistribute super."qt"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quantfin" = dontDistribute super."quantfin"; @@ -6346,6 +6352,7 @@ self: super: { "random-extras" = dontDistribute super."random-extras"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; + "random-variates" = dontDistribute super."random-variates"; "randomgen" = dontDistribute super."randomgen"; "randproc" = dontDistribute super."randproc"; "randsolid" = dontDistribute super."randsolid"; @@ -6431,6 +6438,7 @@ self: super: { "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"; @@ -7002,6 +7010,7 @@ self: super: { "snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-environments" = dontDistribute super."snaplet-environments"; "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_11"; + "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; "snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-haxl" = dontDistribute super."snaplet-haxl"; "snaplet-hdbc" = dontDistribute super."snaplet-hdbc"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.13.nix b/pkgs/development/haskell-modules/configuration-lts-1.13.nix index 3d185d8b333..8f92b3dcfbe 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.13.nix @@ -1068,6 +1068,7 @@ self: super: { "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"; @@ -1402,6 +1403,7 @@ self: super: { "atomic-write" = dontDistribute super."atomic-write"; "atomo" = dontDistribute super."atomo"; "attempt" = dontDistribute super."attempt"; + "atto-lisp" = doDistribute super."atto-lisp_0_2_2"; "attoparsec" = doDistribute super."attoparsec_0_12_1_3"; "attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-binary" = dontDistribute super."attoparsec-binary"; @@ -5191,6 +5193,7 @@ self: super: { "markdown" = doDistribute super."markdown_0_1_13_1"; "markdown-kate" = dontDistribute super."markdown-kate"; "markdown-pap" = dontDistribute super."markdown-pap"; + "markdown-unlit" = doDistribute super."markdown-unlit_0_2_0_1"; "markdown2svg" = dontDistribute super."markdown2svg"; "marked-pretty" = dontDistribute super."marked-pretty"; "markov" = dontDistribute super."markov"; @@ -5403,6 +5406,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_7_0"; + "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-owns" = dontDistribute super."monoid-owns"; "monoid-record" = dontDistribute super."monoid-record"; @@ -5751,6 +5755,7 @@ self: super: { "opendatatable" = dontDistribute super."opendatatable"; "openexchangerates" = dontDistribute super."openexchangerates"; "openflow" = dontDistribute super."openflow"; + "opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo"; "opengles" = dontDistribute super."opengles"; "openid" = dontDistribute super."openid"; "openpgp" = dontDistribute super."openpgp"; @@ -6277,6 +6282,7 @@ self: super: { "qd-vec" = dontDistribute super."qd-vec"; "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; + "qt" = dontDistribute super."qt"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quantfin" = dontDistribute super."quantfin"; @@ -6343,6 +6349,7 @@ self: super: { "random-extras" = dontDistribute super."random-extras"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; + "random-variates" = dontDistribute super."random-variates"; "randomgen" = dontDistribute super."randomgen"; "randproc" = dontDistribute super."randproc"; "randsolid" = dontDistribute super."randsolid"; @@ -6428,6 +6435,7 @@ self: super: { "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"; @@ -6999,6 +7007,7 @@ self: super: { "snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-environments" = dontDistribute super."snaplet-environments"; "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_11"; + "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; "snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-haxl" = dontDistribute super."snaplet-haxl"; "snaplet-hdbc" = dontDistribute super."snaplet-hdbc"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.14.nix b/pkgs/development/haskell-modules/configuration-lts-1.14.nix index 03b0d820f99..a9d4e40d1fb 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.14.nix @@ -1067,6 +1067,7 @@ self: super: { "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"; @@ -1401,6 +1402,7 @@ self: super: { "atomic-write" = dontDistribute super."atomic-write"; "atomo" = dontDistribute super."atomo"; "attempt" = dontDistribute super."attempt"; + "atto-lisp" = doDistribute super."atto-lisp_0_2_2"; "attoparsec" = doDistribute super."attoparsec_0_12_1_3"; "attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-binary" = dontDistribute super."attoparsec-binary"; @@ -5186,6 +5188,7 @@ self: super: { "markdown" = doDistribute super."markdown_0_1_13_1"; "markdown-kate" = dontDistribute super."markdown-kate"; "markdown-pap" = dontDistribute super."markdown-pap"; + "markdown-unlit" = doDistribute super."markdown-unlit_0_2_0_1"; "markdown2svg" = dontDistribute super."markdown2svg"; "marked-pretty" = dontDistribute super."marked-pretty"; "markov" = dontDistribute super."markov"; @@ -5396,6 +5399,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_7_0"; + "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-owns" = dontDistribute super."monoid-owns"; "monoid-record" = dontDistribute super."monoid-record"; @@ -5744,6 +5748,7 @@ self: super: { "opendatatable" = dontDistribute super."opendatatable"; "openexchangerates" = dontDistribute super."openexchangerates"; "openflow" = dontDistribute super."openflow"; + "opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo"; "opengles" = dontDistribute super."opengles"; "openid" = dontDistribute super."openid"; "openpgp" = dontDistribute super."openpgp"; @@ -6270,6 +6275,7 @@ self: super: { "qd-vec" = dontDistribute super."qd-vec"; "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; + "qt" = dontDistribute super."qt"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quantfin" = dontDistribute super."quantfin"; @@ -6335,6 +6341,7 @@ self: super: { "random-extras" = dontDistribute super."random-extras"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; + "random-variates" = dontDistribute super."random-variates"; "randomgen" = dontDistribute super."randomgen"; "randproc" = dontDistribute super."randproc"; "randsolid" = dontDistribute super."randsolid"; @@ -6420,6 +6427,7 @@ self: super: { "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"; @@ -6991,6 +6999,7 @@ self: super: { "snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-environments" = dontDistribute super."snaplet-environments"; "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_11"; + "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; "snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-haxl" = dontDistribute super."snaplet-haxl"; "snaplet-hdbc" = dontDistribute super."snaplet-hdbc"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.15.nix b/pkgs/development/haskell-modules/configuration-lts-1.15.nix index d9021160b64..b30f65ba73c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.15.nix @@ -1066,6 +1066,7 @@ self: super: { "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"; @@ -1400,6 +1401,7 @@ self: super: { "atomic-write" = dontDistribute super."atomic-write"; "atomo" = dontDistribute super."atomo"; "attempt" = dontDistribute super."attempt"; + "atto-lisp" = doDistribute super."atto-lisp_0_2_2"; "attoparsec" = doDistribute super."attoparsec_0_12_1_5"; "attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-binary" = dontDistribute super."attoparsec-binary"; @@ -5180,6 +5182,7 @@ self: super: { "markdown" = doDistribute super."markdown_0_1_13_1"; "markdown-kate" = dontDistribute super."markdown-kate"; "markdown-pap" = dontDistribute super."markdown-pap"; + "markdown-unlit" = doDistribute super."markdown-unlit_0_2_0_1"; "markdown2svg" = dontDistribute super."markdown2svg"; "marked-pretty" = dontDistribute super."marked-pretty"; "markov" = dontDistribute super."markov"; @@ -5390,6 +5393,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_7_0"; + "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-owns" = dontDistribute super."monoid-owns"; "monoid-record" = dontDistribute super."monoid-record"; @@ -5736,6 +5740,7 @@ self: super: { "opendatatable" = dontDistribute super."opendatatable"; "openexchangerates" = dontDistribute super."openexchangerates"; "openflow" = dontDistribute super."openflow"; + "opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo"; "opengles" = dontDistribute super."opengles"; "openid" = dontDistribute super."openid"; "openpgp" = dontDistribute super."openpgp"; @@ -6262,6 +6267,7 @@ self: super: { "qd-vec" = dontDistribute super."qd-vec"; "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; + "qt" = dontDistribute super."qt"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quantfin" = dontDistribute super."quantfin"; @@ -6325,6 +6331,7 @@ self: super: { "random-extras" = dontDistribute super."random-extras"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; + "random-variates" = dontDistribute super."random-variates"; "randomgen" = dontDistribute super."randomgen"; "randproc" = dontDistribute super."randproc"; "randsolid" = dontDistribute super."randsolid"; @@ -6410,6 +6417,7 @@ self: super: { "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"; @@ -6981,6 +6989,7 @@ self: super: { "snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-environments" = dontDistribute super."snaplet-environments"; "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_11"; + "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; "snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-haxl" = dontDistribute super."snaplet-haxl"; "snaplet-hdbc" = dontDistribute super."snaplet-hdbc"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.2.nix b/pkgs/development/haskell-modules/configuration-lts-1.2.nix index 72bc49e3c83..fa6cf263256 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.2.nix @@ -1069,6 +1069,7 @@ self: super: { "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"; @@ -1403,6 +1404,7 @@ self: super: { "atomic-write" = dontDistribute super."atomic-write"; "atomo" = dontDistribute super."atomo"; "attempt" = dontDistribute super."attempt"; + "atto-lisp" = doDistribute super."atto-lisp_0_2_2"; "attoparsec" = doDistribute super."attoparsec_0_12_1_2"; "attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-binary" = dontDistribute super."attoparsec-binary"; @@ -5220,6 +5222,7 @@ self: super: { "markdown" = doDistribute super."markdown_0_1_13_1"; "markdown-kate" = dontDistribute super."markdown-kate"; "markdown-pap" = dontDistribute super."markdown-pap"; + "markdown-unlit" = doDistribute super."markdown-unlit_0_2_0_1"; "markdown2svg" = dontDistribute super."markdown2svg"; "marked-pretty" = dontDistribute super."marked-pretty"; "markov" = dontDistribute super."markov"; @@ -5432,6 +5435,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_7_0"; + "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-owns" = dontDistribute super."monoid-owns"; "monoid-record" = dontDistribute super."monoid-record"; @@ -5782,6 +5786,7 @@ self: super: { "opendatatable" = dontDistribute super."opendatatable"; "openexchangerates" = dontDistribute super."openexchangerates"; "openflow" = dontDistribute super."openflow"; + "opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo"; "opengles" = dontDistribute super."opengles"; "openid" = dontDistribute super."openid"; "openpgp" = dontDistribute super."openpgp"; @@ -6312,6 +6317,7 @@ self: super: { "qd-vec" = dontDistribute super."qd-vec"; "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; + "qt" = dontDistribute super."qt"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quantfin" = dontDistribute super."quantfin"; @@ -6378,6 +6384,7 @@ self: super: { "random-extras" = dontDistribute super."random-extras"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; + "random-variates" = dontDistribute super."random-variates"; "randomgen" = dontDistribute super."randomgen"; "randproc" = dontDistribute super."randproc"; "randsolid" = dontDistribute super."randsolid"; @@ -6463,6 +6470,7 @@ self: super: { "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"; @@ -7036,6 +7044,7 @@ self: super: { "snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-environments" = dontDistribute super."snaplet-environments"; "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_9"; + "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; "snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-haxl" = dontDistribute super."snaplet-haxl"; "snaplet-hdbc" = dontDistribute super."snaplet-hdbc"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.4.nix b/pkgs/development/haskell-modules/configuration-lts-1.4.nix index 4e3b1824c72..7fab0d8b8a8 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.4.nix @@ -1068,6 +1068,7 @@ self: super: { "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"; @@ -1402,6 +1403,7 @@ self: super: { "atomic-write" = dontDistribute super."atomic-write"; "atomo" = dontDistribute super."atomo"; "attempt" = dontDistribute super."attempt"; + "atto-lisp" = doDistribute super."atto-lisp_0_2_2"; "attoparsec" = doDistribute super."attoparsec_0_12_1_2"; "attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-binary" = dontDistribute super."attoparsec-binary"; @@ -5216,6 +5218,7 @@ self: super: { "markdown" = doDistribute super."markdown_0_1_13_1"; "markdown-kate" = dontDistribute super."markdown-kate"; "markdown-pap" = dontDistribute super."markdown-pap"; + "markdown-unlit" = doDistribute super."markdown-unlit_0_2_0_1"; "markdown2svg" = dontDistribute super."markdown2svg"; "marked-pretty" = dontDistribute super."marked-pretty"; "markov" = dontDistribute super."markov"; @@ -5428,6 +5431,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_7_0"; + "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-owns" = dontDistribute super."monoid-owns"; "monoid-record" = dontDistribute super."monoid-record"; @@ -5777,6 +5781,7 @@ self: super: { "opendatatable" = dontDistribute super."opendatatable"; "openexchangerates" = dontDistribute super."openexchangerates"; "openflow" = dontDistribute super."openflow"; + "opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo"; "opengles" = dontDistribute super."opengles"; "openid" = dontDistribute super."openid"; "openpgp" = dontDistribute super."openpgp"; @@ -6306,6 +6311,7 @@ self: super: { "qd-vec" = dontDistribute super."qd-vec"; "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; + "qt" = dontDistribute super."qt"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quantfin" = dontDistribute super."quantfin"; @@ -6372,6 +6378,7 @@ self: super: { "random-extras" = dontDistribute super."random-extras"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; + "random-variates" = dontDistribute super."random-variates"; "randomgen" = dontDistribute super."randomgen"; "randproc" = dontDistribute super."randproc"; "randsolid" = dontDistribute super."randsolid"; @@ -6457,6 +6464,7 @@ self: super: { "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"; @@ -7030,6 +7038,7 @@ self: super: { "snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-environments" = dontDistribute super."snaplet-environments"; "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_9"; + "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; "snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-haxl" = dontDistribute super."snaplet-haxl"; "snaplet-hdbc" = dontDistribute super."snaplet-hdbc"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.5.nix b/pkgs/development/haskell-modules/configuration-lts-1.5.nix index 3bde16664d9..206dbf81be2 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.5.nix @@ -1068,6 +1068,7 @@ self: super: { "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"; @@ -1402,6 +1403,7 @@ self: super: { "atomic-write" = dontDistribute super."atomic-write"; "atomo" = dontDistribute super."atomo"; "attempt" = dontDistribute super."attempt"; + "atto-lisp" = doDistribute super."atto-lisp_0_2_2"; "attoparsec" = doDistribute super."attoparsec_0_12_1_2"; "attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-binary" = dontDistribute super."attoparsec-binary"; @@ -5214,6 +5216,7 @@ self: super: { "markdown" = doDistribute super."markdown_0_1_13_1"; "markdown-kate" = dontDistribute super."markdown-kate"; "markdown-pap" = dontDistribute super."markdown-pap"; + "markdown-unlit" = doDistribute super."markdown-unlit_0_2_0_1"; "markdown2svg" = dontDistribute super."markdown2svg"; "marked-pretty" = dontDistribute super."marked-pretty"; "markov" = dontDistribute super."markov"; @@ -5426,6 +5429,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_7_0"; + "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-owns" = dontDistribute super."monoid-owns"; "monoid-record" = dontDistribute super."monoid-record"; @@ -5775,6 +5779,7 @@ self: super: { "opendatatable" = dontDistribute super."opendatatable"; "openexchangerates" = dontDistribute super."openexchangerates"; "openflow" = dontDistribute super."openflow"; + "opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo"; "opengles" = dontDistribute super."opengles"; "openid" = dontDistribute super."openid"; "openpgp" = dontDistribute super."openpgp"; @@ -6304,6 +6309,7 @@ self: super: { "qd-vec" = dontDistribute super."qd-vec"; "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; + "qt" = dontDistribute super."qt"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quantfin" = dontDistribute super."quantfin"; @@ -6370,6 +6376,7 @@ self: super: { "random-extras" = dontDistribute super."random-extras"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; + "random-variates" = dontDistribute super."random-variates"; "randomgen" = dontDistribute super."randomgen"; "randproc" = dontDistribute super."randproc"; "randsolid" = dontDistribute super."randsolid"; @@ -6455,6 +6462,7 @@ self: super: { "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"; @@ -7028,6 +7036,7 @@ self: super: { "snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-environments" = dontDistribute super."snaplet-environments"; "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_9"; + "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; "snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-haxl" = dontDistribute super."snaplet-haxl"; "snaplet-hdbc" = dontDistribute super."snaplet-hdbc"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.7.nix b/pkgs/development/haskell-modules/configuration-lts-1.7.nix index a4735937363..d886cad1bfc 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.7.nix @@ -1068,6 +1068,7 @@ self: super: { "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"; @@ -1402,6 +1403,7 @@ self: super: { "atomic-write" = dontDistribute super."atomic-write"; "atomo" = dontDistribute super."atomo"; "attempt" = dontDistribute super."attempt"; + "atto-lisp" = doDistribute super."atto-lisp_0_2_2"; "attoparsec" = doDistribute super."attoparsec_0_12_1_2"; "attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-binary" = dontDistribute super."attoparsec-binary"; @@ -5208,6 +5210,7 @@ self: super: { "markdown" = doDistribute super."markdown_0_1_13_1"; "markdown-kate" = dontDistribute super."markdown-kate"; "markdown-pap" = dontDistribute super."markdown-pap"; + "markdown-unlit" = doDistribute super."markdown-unlit_0_2_0_1"; "markdown2svg" = dontDistribute super."markdown2svg"; "marked-pretty" = dontDistribute super."marked-pretty"; "markov" = dontDistribute super."markov"; @@ -5420,6 +5423,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_7_0"; + "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-owns" = dontDistribute super."monoid-owns"; "monoid-record" = dontDistribute super."monoid-record"; @@ -5769,6 +5773,7 @@ self: super: { "opendatatable" = dontDistribute super."opendatatable"; "openexchangerates" = dontDistribute super."openexchangerates"; "openflow" = dontDistribute super."openflow"; + "opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo"; "opengles" = dontDistribute super."opengles"; "openid" = dontDistribute super."openid"; "openpgp" = dontDistribute super."openpgp"; @@ -6298,6 +6303,7 @@ self: super: { "qd-vec" = dontDistribute super."qd-vec"; "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; + "qt" = dontDistribute super."qt"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quantfin" = dontDistribute super."quantfin"; @@ -6364,6 +6370,7 @@ self: super: { "random-extras" = dontDistribute super."random-extras"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; + "random-variates" = dontDistribute super."random-variates"; "randomgen" = dontDistribute super."randomgen"; "randproc" = dontDistribute super."randproc"; "randsolid" = dontDistribute super."randsolid"; @@ -6449,6 +6456,7 @@ self: super: { "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"; @@ -7022,6 +7030,7 @@ self: super: { "snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-environments" = dontDistribute super."snaplet-environments"; "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_9"; + "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; "snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-haxl" = dontDistribute super."snaplet-haxl"; "snaplet-hdbc" = dontDistribute super."snaplet-hdbc"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.8.nix b/pkgs/development/haskell-modules/configuration-lts-1.8.nix index f8436e1c0b1..2dd1b479ea5 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.8.nix @@ -1068,6 +1068,7 @@ self: super: { "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"; @@ -1402,6 +1403,7 @@ self: super: { "atomic-write" = dontDistribute super."atomic-write"; "atomo" = dontDistribute super."atomo"; "attempt" = dontDistribute super."attempt"; + "atto-lisp" = doDistribute super."atto-lisp_0_2_2"; "attoparsec" = doDistribute super."attoparsec_0_12_1_2"; "attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-binary" = dontDistribute super."attoparsec-binary"; @@ -5203,6 +5205,7 @@ self: super: { "markdown" = doDistribute super."markdown_0_1_13_1"; "markdown-kate" = dontDistribute super."markdown-kate"; "markdown-pap" = dontDistribute super."markdown-pap"; + "markdown-unlit" = doDistribute super."markdown-unlit_0_2_0_1"; "markdown2svg" = dontDistribute super."markdown2svg"; "marked-pretty" = dontDistribute super."marked-pretty"; "markov" = dontDistribute super."markov"; @@ -5415,6 +5418,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_7_0"; + "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-owns" = dontDistribute super."monoid-owns"; "monoid-record" = dontDistribute super."monoid-record"; @@ -5764,6 +5768,7 @@ self: super: { "opendatatable" = dontDistribute super."opendatatable"; "openexchangerates" = dontDistribute super."openexchangerates"; "openflow" = dontDistribute super."openflow"; + "opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo"; "opengles" = dontDistribute super."opengles"; "openid" = dontDistribute super."openid"; "openpgp" = dontDistribute super."openpgp"; @@ -6293,6 +6298,7 @@ self: super: { "qd-vec" = dontDistribute super."qd-vec"; "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; + "qt" = dontDistribute super."qt"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quantfin" = dontDistribute super."quantfin"; @@ -6359,6 +6365,7 @@ self: super: { "random-extras" = dontDistribute super."random-extras"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; + "random-variates" = dontDistribute super."random-variates"; "randomgen" = dontDistribute super."randomgen"; "randproc" = dontDistribute super."randproc"; "randsolid" = dontDistribute super."randsolid"; @@ -6444,6 +6451,7 @@ self: super: { "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"; @@ -7017,6 +7025,7 @@ self: super: { "snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-environments" = dontDistribute super."snaplet-environments"; "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_10"; + "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; "snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-haxl" = dontDistribute super."snaplet-haxl"; "snaplet-hdbc" = dontDistribute super."snaplet-hdbc"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.9.nix b/pkgs/development/haskell-modules/configuration-lts-1.9.nix index a9e76b26d8a..7cec4a7306b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.9.nix @@ -1068,6 +1068,7 @@ self: super: { "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"; @@ -1402,6 +1403,7 @@ self: super: { "atomic-write" = dontDistribute super."atomic-write"; "atomo" = dontDistribute super."atomo"; "attempt" = dontDistribute super."attempt"; + "atto-lisp" = doDistribute super."atto-lisp_0_2_2"; "attoparsec" = doDistribute super."attoparsec_0_12_1_3"; "attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-binary" = dontDistribute super."attoparsec-binary"; @@ -5201,6 +5203,7 @@ self: super: { "markdown" = doDistribute super."markdown_0_1_13_1"; "markdown-kate" = dontDistribute super."markdown-kate"; "markdown-pap" = dontDistribute super."markdown-pap"; + "markdown-unlit" = doDistribute super."markdown-unlit_0_2_0_1"; "markdown2svg" = dontDistribute super."markdown2svg"; "marked-pretty" = dontDistribute super."marked-pretty"; "markov" = dontDistribute super."markov"; @@ -5413,6 +5416,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_7_0"; + "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-owns" = dontDistribute super."monoid-owns"; "monoid-record" = dontDistribute super."monoid-record"; @@ -5762,6 +5766,7 @@ self: super: { "opendatatable" = dontDistribute super."opendatatable"; "openexchangerates" = dontDistribute super."openexchangerates"; "openflow" = dontDistribute super."openflow"; + "opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo"; "opengles" = dontDistribute super."opengles"; "openid" = dontDistribute super."openid"; "openpgp" = dontDistribute super."openpgp"; @@ -6290,6 +6295,7 @@ self: super: { "qd-vec" = dontDistribute super."qd-vec"; "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; + "qt" = dontDistribute super."qt"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quantfin" = dontDistribute super."quantfin"; @@ -6356,6 +6362,7 @@ self: super: { "random-extras" = dontDistribute super."random-extras"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; + "random-variates" = dontDistribute super."random-variates"; "randomgen" = dontDistribute super."randomgen"; "randproc" = dontDistribute super."randproc"; "randsolid" = dontDistribute super."randsolid"; @@ -6441,6 +6448,7 @@ self: super: { "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"; @@ -7014,6 +7022,7 @@ self: super: { "snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-environments" = dontDistribute super."snaplet-environments"; "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_10"; + "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; "snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-haxl" = dontDistribute super."snaplet-haxl"; "snaplet-hdbc" = dontDistribute super."snaplet-hdbc"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.0.nix b/pkgs/development/haskell-modules/configuration-lts-2.0.nix index f029092a405..c146bcf2fec 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.0.nix @@ -1057,6 +1057,7 @@ self: super: { "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"; @@ -1389,6 +1390,7 @@ self: super: { "atomic-write" = dontDistribute super."atomic-write"; "atomo" = dontDistribute super."atomo"; "attempt" = dontDistribute super."attempt"; + "atto-lisp" = doDistribute super."atto-lisp_0_2_2"; "attoparsec" = doDistribute super."attoparsec_0_12_1_5"; "attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-binary" = dontDistribute super."attoparsec-binary"; @@ -5130,6 +5132,7 @@ self: super: { "markdown" = doDistribute super."markdown_0_1_13_1"; "markdown-kate" = dontDistribute super."markdown-kate"; "markdown-pap" = dontDistribute super."markdown-pap"; + "markdown-unlit" = doDistribute super."markdown-unlit_0_2_0_1"; "markdown2svg" = dontDistribute super."markdown2svg"; "marked-pretty" = dontDistribute super."marked-pretty"; "markov" = dontDistribute super."markov"; @@ -5333,6 +5336,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_9_1"; + "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-owns" = dontDistribute super."monoid-owns"; "monoid-record" = dontDistribute super."monoid-record"; @@ -5674,6 +5678,7 @@ self: super: { "opendatatable" = dontDistribute super."opendatatable"; "openexchangerates" = dontDistribute super."openexchangerates"; "openflow" = dontDistribute super."openflow"; + "opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo"; "opengles" = dontDistribute super."opengles"; "openid" = dontDistribute super."openid"; "openpgp" = dontDistribute super."openpgp"; @@ -6193,6 +6198,7 @@ self: super: { "qd-vec" = dontDistribute super."qd-vec"; "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; + "qt" = dontDistribute super."qt"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quantfin" = dontDistribute super."quantfin"; @@ -6256,6 +6262,7 @@ self: super: { "random-extras" = dontDistribute super."random-extras"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; + "random-variates" = dontDistribute super."random-variates"; "randomgen" = dontDistribute super."randomgen"; "randproc" = dontDistribute super."randproc"; "randsolid" = dontDistribute super."randsolid"; @@ -6341,6 +6348,7 @@ self: super: { "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"; @@ -6909,6 +6917,7 @@ self: super: { "snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-environments" = dontDistribute super."snaplet-environments"; "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_11"; + "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; "snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-haxl" = dontDistribute super."snaplet-haxl"; "snaplet-hdbc" = dontDistribute super."snaplet-hdbc"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.1.nix b/pkgs/development/haskell-modules/configuration-lts-2.1.nix index ec9899ec447..e9def84f9cf 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.1.nix @@ -1057,6 +1057,7 @@ self: super: { "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"; @@ -1389,6 +1390,7 @@ self: super: { "atomic-write" = dontDistribute super."atomic-write"; "atomo" = dontDistribute super."atomo"; "attempt" = dontDistribute super."attempt"; + "atto-lisp" = doDistribute super."atto-lisp_0_2_2"; "attoparsec" = doDistribute super."attoparsec_0_12_1_5"; "attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-binary" = dontDistribute super."attoparsec-binary"; @@ -5128,6 +5130,7 @@ self: super: { "markdown" = doDistribute super."markdown_0_1_13_1"; "markdown-kate" = dontDistribute super."markdown-kate"; "markdown-pap" = dontDistribute super."markdown-pap"; + "markdown-unlit" = doDistribute super."markdown-unlit_0_2_0_1"; "markdown2svg" = dontDistribute super."markdown2svg"; "marked-pretty" = dontDistribute super."marked-pretty"; "markov" = dontDistribute super."markov"; @@ -5331,6 +5334,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_9_1"; + "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-owns" = dontDistribute super."monoid-owns"; "monoid-record" = dontDistribute super."monoid-record"; @@ -5672,6 +5676,7 @@ self: super: { "opendatatable" = dontDistribute super."opendatatable"; "openexchangerates" = dontDistribute super."openexchangerates"; "openflow" = dontDistribute super."openflow"; + "opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo"; "opengles" = dontDistribute super."opengles"; "openid" = dontDistribute super."openid"; "openpgp" = dontDistribute super."openpgp"; @@ -6191,6 +6196,7 @@ self: super: { "qd-vec" = dontDistribute super."qd-vec"; "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; + "qt" = dontDistribute super."qt"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quantfin" = dontDistribute super."quantfin"; @@ -6254,6 +6260,7 @@ self: super: { "random-extras" = dontDistribute super."random-extras"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; + "random-variates" = dontDistribute super."random-variates"; "randomgen" = dontDistribute super."randomgen"; "randproc" = dontDistribute super."randproc"; "randsolid" = dontDistribute super."randsolid"; @@ -6339,6 +6346,7 @@ self: super: { "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"; @@ -6907,6 +6915,7 @@ self: super: { "snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-environments" = dontDistribute super."snaplet-environments"; "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_11"; + "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; "snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-haxl" = dontDistribute super."snaplet-haxl"; "snaplet-hdbc" = dontDistribute super."snaplet-hdbc"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.10.nix b/pkgs/development/haskell-modules/configuration-lts-2.10.nix index fa6fe9727c1..d616805b2d7 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.10.nix @@ -1052,6 +1052,7 @@ self: super: { "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"; @@ -1384,6 +1385,7 @@ self: super: { "atomic-write" = dontDistribute super."atomic-write"; "atomo" = dontDistribute super."atomo"; "attempt" = dontDistribute super."attempt"; + "atto-lisp" = doDistribute super."atto-lisp_0_2_2"; "attoparsec" = doDistribute super."attoparsec_0_12_1_6"; "attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-binary" = dontDistribute super."attoparsec-binary"; @@ -5086,6 +5088,7 @@ self: super: { "marionetta" = dontDistribute super."marionetta"; "markdown-kate" = dontDistribute super."markdown-kate"; "markdown-pap" = dontDistribute super."markdown-pap"; + "markdown-unlit" = doDistribute super."markdown-unlit_0_2_0_1"; "markdown2svg" = dontDistribute super."markdown2svg"; "marked-pretty" = dontDistribute super."marked-pretty"; "markov" = dontDistribute super."markov"; @@ -5288,6 +5291,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_9_1"; + "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-owns" = dontDistribute super."monoid-owns"; "monoid-record" = dontDistribute super."monoid-record"; @@ -5628,6 +5632,7 @@ self: super: { "opendatatable" = dontDistribute super."opendatatable"; "openexchangerates" = dontDistribute super."openexchangerates"; "openflow" = dontDistribute super."openflow"; + "opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo"; "opengles" = dontDistribute super."opengles"; "openid" = dontDistribute super."openid"; "openpgp" = dontDistribute super."openpgp"; @@ -6140,6 +6145,7 @@ self: super: { "qd-vec" = dontDistribute super."qd-vec"; "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"; @@ -6202,6 +6208,7 @@ self: super: { "random-extras" = dontDistribute super."random-extras"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; + "random-variates" = dontDistribute super."random-variates"; "randomgen" = dontDistribute super."randomgen"; "randproc" = dontDistribute super."randproc"; "randsolid" = dontDistribute super."randsolid"; @@ -6287,6 +6294,7 @@ self: super: { "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"; @@ -6849,6 +6857,7 @@ self: super: { "snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-environments" = dontDistribute super."snaplet-environments"; "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_11"; + "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; "snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-haxl" = dontDistribute super."snaplet-haxl"; "snaplet-hdbc" = dontDistribute super."snaplet-hdbc"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.11.nix b/pkgs/development/haskell-modules/configuration-lts-2.11.nix index 9aa629669e0..8ab9b42e5d7 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.11.nix @@ -1052,6 +1052,7 @@ self: super: { "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"; @@ -1383,6 +1384,7 @@ self: super: { "atomic-write" = dontDistribute super."atomic-write"; "atomo" = dontDistribute super."atomo"; "attempt" = dontDistribute super."attempt"; + "atto-lisp" = doDistribute super."atto-lisp_0_2_2"; "attoparsec" = doDistribute super."attoparsec_0_12_1_6"; "attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-binary" = dontDistribute super."attoparsec-binary"; @@ -5079,6 +5081,7 @@ self: super: { "marionetta" = dontDistribute super."marionetta"; "markdown-kate" = dontDistribute super."markdown-kate"; "markdown-pap" = dontDistribute super."markdown-pap"; + "markdown-unlit" = doDistribute super."markdown-unlit_0_2_0_1"; "markdown2svg" = dontDistribute super."markdown2svg"; "marked-pretty" = dontDistribute super."marked-pretty"; "markov" = dontDistribute super."markov"; @@ -5280,6 +5283,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_9_1"; + "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-owns" = dontDistribute super."monoid-owns"; "monoid-record" = dontDistribute super."monoid-record"; @@ -5620,6 +5624,7 @@ self: super: { "opendatatable" = dontDistribute super."opendatatable"; "openexchangerates" = dontDistribute super."openexchangerates"; "openflow" = dontDistribute super."openflow"; + "opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo"; "opengles" = dontDistribute super."opengles"; "openid" = dontDistribute super."openid"; "openpgp" = dontDistribute super."openpgp"; @@ -6131,6 +6136,7 @@ self: super: { "qd-vec" = dontDistribute super."qd-vec"; "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"; @@ -6193,6 +6199,7 @@ self: super: { "random-extras" = dontDistribute super."random-extras"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; + "random-variates" = dontDistribute super."random-variates"; "randomgen" = dontDistribute super."randomgen"; "randproc" = dontDistribute super."randproc"; "randsolid" = dontDistribute super."randsolid"; @@ -6278,6 +6285,7 @@ self: super: { "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"; @@ -6839,6 +6847,7 @@ self: super: { "snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-environments" = dontDistribute super."snaplet-environments"; "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_11"; + "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; "snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-haxl" = dontDistribute super."snaplet-haxl"; "snaplet-hdbc" = dontDistribute super."snaplet-hdbc"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.12.nix b/pkgs/development/haskell-modules/configuration-lts-2.12.nix index 5c43ee1b2de..cad506695d3 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.12.nix @@ -1052,6 +1052,7 @@ self: super: { "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"; @@ -1383,6 +1384,7 @@ self: super: { "atomic-write" = dontDistribute super."atomic-write"; "atomo" = dontDistribute super."atomo"; "attempt" = dontDistribute super."attempt"; + "atto-lisp" = doDistribute super."atto-lisp_0_2_2"; "attoparsec" = doDistribute super."attoparsec_0_12_1_6"; "attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-binary" = dontDistribute super."attoparsec-binary"; @@ -5079,6 +5081,7 @@ self: super: { "marionetta" = dontDistribute super."marionetta"; "markdown-kate" = dontDistribute super."markdown-kate"; "markdown-pap" = dontDistribute super."markdown-pap"; + "markdown-unlit" = doDistribute super."markdown-unlit_0_2_0_1"; "markdown2svg" = dontDistribute super."markdown2svg"; "marked-pretty" = dontDistribute super."marked-pretty"; "markov" = dontDistribute super."markov"; @@ -5280,6 +5283,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_9_1"; + "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-owns" = dontDistribute super."monoid-owns"; "monoid-record" = dontDistribute super."monoid-record"; @@ -5620,6 +5624,7 @@ self: super: { "opendatatable" = dontDistribute super."opendatatable"; "openexchangerates" = dontDistribute super."openexchangerates"; "openflow" = dontDistribute super."openflow"; + "opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo"; "opengles" = dontDistribute super."opengles"; "openid" = dontDistribute super."openid"; "openpgp" = dontDistribute super."openpgp"; @@ -6131,6 +6136,7 @@ self: super: { "qd-vec" = dontDistribute super."qd-vec"; "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"; @@ -6193,6 +6199,7 @@ self: super: { "random-extras" = dontDistribute super."random-extras"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; + "random-variates" = dontDistribute super."random-variates"; "randomgen" = dontDistribute super."randomgen"; "randproc" = dontDistribute super."randproc"; "randsolid" = dontDistribute super."randsolid"; @@ -6278,6 +6285,7 @@ self: super: { "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"; @@ -6838,6 +6846,7 @@ self: super: { "snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-environments" = dontDistribute super."snaplet-environments"; "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_11"; + "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; "snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-haxl" = dontDistribute super."snaplet-haxl"; "snaplet-hdbc" = dontDistribute super."snaplet-hdbc"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.13.nix b/pkgs/development/haskell-modules/configuration-lts-2.13.nix index 11fda4472e3..d6f5835bec5 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.13.nix @@ -1052,6 +1052,7 @@ self: super: { "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"; @@ -1383,6 +1384,7 @@ self: super: { "atomic-write" = dontDistribute super."atomic-write"; "atomo" = dontDistribute super."atomo"; "attempt" = dontDistribute super."attempt"; + "atto-lisp" = doDistribute super."atto-lisp_0_2_2"; "attoparsec" = doDistribute super."attoparsec_0_12_1_6"; "attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-binary" = dontDistribute super."attoparsec-binary"; @@ -5077,6 +5079,7 @@ self: super: { "marionetta" = dontDistribute super."marionetta"; "markdown-kate" = dontDistribute super."markdown-kate"; "markdown-pap" = dontDistribute super."markdown-pap"; + "markdown-unlit" = doDistribute super."markdown-unlit_0_2_0_1"; "markdown2svg" = dontDistribute super."markdown2svg"; "marked-pretty" = dontDistribute super."marked-pretty"; "markov" = dontDistribute super."markov"; @@ -5278,6 +5281,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_9_1"; + "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-owns" = dontDistribute super."monoid-owns"; "monoid-record" = dontDistribute super."monoid-record"; @@ -5617,6 +5621,7 @@ self: super: { "opendatatable" = dontDistribute super."opendatatable"; "openexchangerates" = dontDistribute super."openexchangerates"; "openflow" = dontDistribute super."openflow"; + "opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo"; "opengles" = dontDistribute super."opengles"; "openid" = dontDistribute super."openid"; "openpgp" = dontDistribute super."openpgp"; @@ -6128,6 +6133,7 @@ self: super: { "qd-vec" = dontDistribute super."qd-vec"; "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"; @@ -6190,6 +6196,7 @@ self: super: { "random-extras" = dontDistribute super."random-extras"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; + "random-variates" = dontDistribute super."random-variates"; "randomgen" = dontDistribute super."randomgen"; "randproc" = dontDistribute super."randproc"; "randsolid" = dontDistribute super."randsolid"; @@ -6275,6 +6282,7 @@ self: super: { "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"; @@ -6834,6 +6842,7 @@ self: super: { "snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-environments" = dontDistribute super."snaplet-environments"; "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_11"; + "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; "snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-haxl" = dontDistribute super."snaplet-haxl"; "snaplet-hdbc" = dontDistribute super."snaplet-hdbc"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.14.nix b/pkgs/development/haskell-modules/configuration-lts-2.14.nix index 289ca8719fe..35ff99c90fb 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.14.nix @@ -1052,6 +1052,7 @@ self: super: { "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"; @@ -1382,6 +1383,7 @@ self: super: { "atomic-write" = dontDistribute super."atomic-write"; "atomo" = dontDistribute super."atomo"; "attempt" = dontDistribute super."attempt"; + "atto-lisp" = doDistribute super."atto-lisp_0_2_2"; "attoparsec" = doDistribute super."attoparsec_0_12_1_6"; "attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-binary" = dontDistribute super."attoparsec-binary"; @@ -5074,6 +5076,7 @@ self: super: { "marionetta" = dontDistribute super."marionetta"; "markdown-kate" = dontDistribute super."markdown-kate"; "markdown-pap" = dontDistribute super."markdown-pap"; + "markdown-unlit" = doDistribute super."markdown-unlit_0_2_0_1"; "markdown2svg" = dontDistribute super."markdown2svg"; "marked-pretty" = dontDistribute super."marked-pretty"; "markov" = dontDistribute super."markov"; @@ -5275,6 +5278,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_9_1"; + "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-owns" = dontDistribute super."monoid-owns"; "monoid-record" = dontDistribute super."monoid-record"; @@ -5614,6 +5618,7 @@ self: super: { "opendatatable" = dontDistribute super."opendatatable"; "openexchangerates" = dontDistribute super."openexchangerates"; "openflow" = dontDistribute super."openflow"; + "opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo"; "opengles" = dontDistribute super."opengles"; "openid" = dontDistribute super."openid"; "openpgp" = dontDistribute super."openpgp"; @@ -6124,6 +6129,7 @@ self: super: { "qd-vec" = dontDistribute super."qd-vec"; "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"; @@ -6186,6 +6192,7 @@ self: super: { "random-extras" = dontDistribute super."random-extras"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; + "random-variates" = dontDistribute super."random-variates"; "randomgen" = dontDistribute super."randomgen"; "randproc" = dontDistribute super."randproc"; "randsolid" = dontDistribute super."randsolid"; @@ -6271,6 +6278,7 @@ self: super: { "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"; @@ -6829,6 +6837,7 @@ self: super: { "snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-environments" = dontDistribute super."snaplet-environments"; "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_11"; + "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; "snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-haxl" = dontDistribute super."snaplet-haxl"; "snaplet-hdbc" = dontDistribute super."snaplet-hdbc"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.15.nix b/pkgs/development/haskell-modules/configuration-lts-2.15.nix index 9d1bf3da059..9e2245d2d94 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.15.nix @@ -1052,6 +1052,7 @@ self: super: { "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"; @@ -1382,6 +1383,7 @@ self: super: { "atomic-write" = dontDistribute super."atomic-write"; "atomo" = dontDistribute super."atomo"; "attempt" = dontDistribute super."attempt"; + "atto-lisp" = doDistribute super."atto-lisp_0_2_2"; "attoparsec" = doDistribute super."attoparsec_0_12_1_6"; "attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-binary" = dontDistribute super."attoparsec-binary"; @@ -5072,6 +5074,7 @@ self: super: { "marionetta" = dontDistribute super."marionetta"; "markdown-kate" = dontDistribute super."markdown-kate"; "markdown-pap" = dontDistribute super."markdown-pap"; + "markdown-unlit" = doDistribute super."markdown-unlit_0_2_0_1"; "markdown2svg" = dontDistribute super."markdown2svg"; "marked-pretty" = dontDistribute super."marked-pretty"; "markov" = dontDistribute super."markov"; @@ -5272,6 +5275,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_9_2_1"; + "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-owns" = dontDistribute super."monoid-owns"; "monoid-record" = dontDistribute super."monoid-record"; @@ -5609,6 +5613,7 @@ self: super: { "opendatatable" = dontDistribute super."opendatatable"; "openexchangerates" = dontDistribute super."openexchangerates"; "openflow" = dontDistribute super."openflow"; + "opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo"; "opengles" = dontDistribute super."opengles"; "openid" = dontDistribute super."openid"; "openpgp" = dontDistribute super."openpgp"; @@ -6119,6 +6124,7 @@ self: super: { "qd-vec" = dontDistribute super."qd-vec"; "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"; @@ -6181,6 +6187,7 @@ self: super: { "random-extras" = dontDistribute super."random-extras"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; + "random-variates" = dontDistribute super."random-variates"; "randomgen" = dontDistribute super."randomgen"; "randproc" = dontDistribute super."randproc"; "randsolid" = dontDistribute super."randsolid"; @@ -6266,6 +6273,7 @@ self: super: { "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"; @@ -6824,6 +6832,7 @@ self: super: { "snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-environments" = dontDistribute super."snaplet-environments"; "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_11"; + "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; "snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-haxl" = dontDistribute super."snaplet-haxl"; "snaplet-hdbc" = dontDistribute super."snaplet-hdbc"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.16.nix b/pkgs/development/haskell-modules/configuration-lts-2.16.nix index 9d052f9785f..ee0f925afc0 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.16.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.16.nix @@ -1050,6 +1050,7 @@ self: super: { "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"; @@ -1380,6 +1381,7 @@ self: super: { "atomic-write" = dontDistribute super."atomic-write"; "atomo" = dontDistribute super."atomo"; "attempt" = dontDistribute super."attempt"; + "atto-lisp" = doDistribute super."atto-lisp_0_2_2"; "attoparsec" = doDistribute super."attoparsec_0_12_1_6"; "attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-binary" = dontDistribute super."attoparsec-binary"; @@ -5062,6 +5064,7 @@ self: super: { "marionetta" = dontDistribute super."marionetta"; "markdown-kate" = dontDistribute super."markdown-kate"; "markdown-pap" = dontDistribute super."markdown-pap"; + "markdown-unlit" = doDistribute super."markdown-unlit_0_2_0_1"; "markdown2svg" = dontDistribute super."markdown2svg"; "marked-pretty" = dontDistribute super."marked-pretty"; "markov" = dontDistribute super."markov"; @@ -5262,6 +5265,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_9_2_1"; + "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-owns" = dontDistribute super."monoid-owns"; "monoid-record" = dontDistribute super."monoid-record"; @@ -5599,6 +5603,7 @@ self: super: { "opendatatable" = dontDistribute super."opendatatable"; "openexchangerates" = dontDistribute super."openexchangerates"; "openflow" = dontDistribute super."openflow"; + "opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo"; "opengles" = dontDistribute super."opengles"; "openid" = dontDistribute super."openid"; "openpgp" = dontDistribute super."openpgp"; @@ -6108,6 +6113,7 @@ self: super: { "qd-vec" = dontDistribute super."qd-vec"; "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"; @@ -6170,6 +6176,7 @@ self: super: { "random-extras" = dontDistribute super."random-extras"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; + "random-variates" = dontDistribute super."random-variates"; "randomgen" = dontDistribute super."randomgen"; "randproc" = dontDistribute super."randproc"; "randsolid" = dontDistribute super."randsolid"; @@ -6255,6 +6262,7 @@ self: super: { "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"; @@ -6812,6 +6820,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.17.nix b/pkgs/development/haskell-modules/configuration-lts-2.17.nix index b0675f292f8..53f20e89e00 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.17.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.17.nix @@ -1050,6 +1050,7 @@ self: super: { "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"; @@ -1379,6 +1380,7 @@ self: super: { "atomic-write" = dontDistribute super."atomic-write"; "atomo" = dontDistribute super."atomo"; "attempt" = dontDistribute super."attempt"; + "atto-lisp" = doDistribute super."atto-lisp_0_2_2"; "attoparsec" = doDistribute super."attoparsec_0_12_1_6"; "attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-binary" = dontDistribute super."attoparsec-binary"; @@ -5054,6 +5056,7 @@ self: super: { "marionetta" = dontDistribute super."marionetta"; "markdown-kate" = dontDistribute super."markdown-kate"; "markdown-pap" = dontDistribute super."markdown-pap"; + "markdown-unlit" = doDistribute super."markdown-unlit_0_2_0_1"; "markdown2svg" = dontDistribute super."markdown2svg"; "marked-pretty" = dontDistribute super."marked-pretty"; "markov" = dontDistribute super."markov"; @@ -5254,6 +5257,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_9_2_1"; + "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-owns" = dontDistribute super."monoid-owns"; "monoid-record" = dontDistribute super."monoid-record"; @@ -5589,6 +5593,7 @@ self: super: { "opendatatable" = dontDistribute super."opendatatable"; "openexchangerates" = dontDistribute super."openexchangerates"; "openflow" = dontDistribute super."openflow"; + "opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo"; "opengles" = dontDistribute super."opengles"; "openid" = dontDistribute super."openid"; "openpgp" = dontDistribute super."openpgp"; @@ -6098,6 +6103,7 @@ self: super: { "qd-vec" = dontDistribute super."qd-vec"; "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"; @@ -6160,6 +6166,7 @@ self: super: { "random-extras" = dontDistribute super."random-extras"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; + "random-variates" = dontDistribute super."random-variates"; "randomgen" = dontDistribute super."randomgen"; "randproc" = dontDistribute super."randproc"; "randsolid" = dontDistribute super."randsolid"; @@ -6245,6 +6252,7 @@ self: super: { "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"; @@ -6801,6 +6809,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.18.nix b/pkgs/development/haskell-modules/configuration-lts-2.18.nix index f11cb01559d..d27201f5ddb 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.18.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.18.nix @@ -1049,6 +1049,7 @@ self: super: { "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"; @@ -1377,6 +1378,7 @@ self: super: { "atomic-write" = dontDistribute super."atomic-write"; "atomo" = dontDistribute super."atomo"; "attempt" = dontDistribute super."attempt"; + "atto-lisp" = doDistribute super."atto-lisp_0_2_2"; "attoparsec" = doDistribute super."attoparsec_0_12_1_6"; "attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-binary" = dontDistribute super."attoparsec-binary"; @@ -5046,6 +5048,7 @@ self: super: { "marionetta" = dontDistribute super."marionetta"; "markdown-kate" = dontDistribute super."markdown-kate"; "markdown-pap" = dontDistribute super."markdown-pap"; + "markdown-unlit" = doDistribute super."markdown-unlit_0_2_0_1"; "markdown2svg" = dontDistribute super."markdown2svg"; "marked-pretty" = dontDistribute super."marked-pretty"; "markov" = dontDistribute super."markov"; @@ -5246,6 +5249,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_9_2_1"; + "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-owns" = dontDistribute super."monoid-owns"; "monoid-record" = dontDistribute super."monoid-record"; @@ -5580,6 +5584,7 @@ self: super: { "opendatatable" = dontDistribute super."opendatatable"; "openexchangerates" = dontDistribute super."openexchangerates"; "openflow" = dontDistribute super."openflow"; + "opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo"; "opengles" = dontDistribute super."opengles"; "openid" = dontDistribute super."openid"; "openpgp" = dontDistribute super."openpgp"; @@ -6088,6 +6093,7 @@ self: super: { "qd-vec" = dontDistribute super."qd-vec"; "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"; @@ -6150,6 +6156,7 @@ self: super: { "random-extras" = dontDistribute super."random-extras"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; + "random-variates" = dontDistribute super."random-variates"; "randomgen" = dontDistribute super."randomgen"; "randproc" = dontDistribute super."randproc"; "randsolid" = dontDistribute super."randsolid"; @@ -6235,6 +6242,7 @@ self: super: { "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"; @@ -6791,6 +6799,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.19.nix b/pkgs/development/haskell-modules/configuration-lts-2.19.nix index c6858c8f66b..136c0c70035 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.19.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.19.nix @@ -1049,6 +1049,7 @@ self: super: { "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"; @@ -1377,6 +1378,7 @@ self: super: { "atomic-write" = dontDistribute super."atomic-write"; "atomo" = dontDistribute super."atomo"; "attempt" = dontDistribute super."attempt"; + "atto-lisp" = doDistribute super."atto-lisp_0_2_2"; "attoparsec" = doDistribute super."attoparsec_0_12_1_6"; "attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-binary" = dontDistribute super."attoparsec-binary"; @@ -5045,6 +5047,7 @@ self: super: { "marionetta" = dontDistribute super."marionetta"; "markdown-kate" = dontDistribute super."markdown-kate"; "markdown-pap" = dontDistribute super."markdown-pap"; + "markdown-unlit" = doDistribute super."markdown-unlit_0_2_0_1"; "markdown2svg" = dontDistribute super."markdown2svg"; "marked-pretty" = dontDistribute super."marked-pretty"; "markov" = dontDistribute super."markov"; @@ -5244,6 +5247,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_9_2_1"; + "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-owns" = dontDistribute super."monoid-owns"; "monoid-record" = dontDistribute super."monoid-record"; @@ -5577,6 +5581,7 @@ self: super: { "opendatatable" = dontDistribute super."opendatatable"; "openexchangerates" = dontDistribute super."openexchangerates"; "openflow" = dontDistribute super."openflow"; + "opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo"; "opengles" = dontDistribute super."opengles"; "openid" = dontDistribute super."openid"; "openpgp" = dontDistribute super."openpgp"; @@ -6085,6 +6090,7 @@ self: super: { "qd-vec" = dontDistribute super."qd-vec"; "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"; @@ -6147,6 +6153,7 @@ self: super: { "random-extras" = dontDistribute super."random-extras"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; + "random-variates" = dontDistribute super."random-variates"; "randomgen" = dontDistribute super."randomgen"; "randproc" = dontDistribute super."randproc"; "randsolid" = dontDistribute super."randsolid"; @@ -6232,6 +6239,7 @@ self: super: { "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"; @@ -6787,6 +6795,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.2.nix b/pkgs/development/haskell-modules/configuration-lts-2.2.nix index eb52972daf7..d2fef21db72 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.2.nix @@ -1056,6 +1056,7 @@ self: super: { "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"; @@ -1388,6 +1389,7 @@ self: super: { "atomic-write" = dontDistribute super."atomic-write"; "atomo" = dontDistribute super."atomo"; "attempt" = dontDistribute super."attempt"; + "atto-lisp" = doDistribute super."atto-lisp_0_2_2"; "attoparsec" = doDistribute super."attoparsec_0_12_1_6"; "attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-binary" = dontDistribute super."attoparsec-binary"; @@ -5124,6 +5126,7 @@ self: super: { "markdown" = doDistribute super."markdown_0_1_13_1"; "markdown-kate" = dontDistribute super."markdown-kate"; "markdown-pap" = dontDistribute super."markdown-pap"; + "markdown-unlit" = doDistribute super."markdown-unlit_0_2_0_1"; "markdown2svg" = dontDistribute super."markdown2svg"; "marked-pretty" = dontDistribute super."marked-pretty"; "markov" = dontDistribute super."markov"; @@ -5327,6 +5330,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_9_1"; + "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-owns" = dontDistribute super."monoid-owns"; "monoid-record" = dontDistribute super."monoid-record"; @@ -5668,6 +5672,7 @@ self: super: { "opendatatable" = dontDistribute super."opendatatable"; "openexchangerates" = dontDistribute super."openexchangerates"; "openflow" = dontDistribute super."openflow"; + "opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo"; "opengles" = dontDistribute super."opengles"; "openid" = dontDistribute super."openid"; "openpgp" = dontDistribute super."openpgp"; @@ -6186,6 +6191,7 @@ self: super: { "qd-vec" = dontDistribute super."qd-vec"; "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; + "qt" = dontDistribute super."qt"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quantfin" = dontDistribute super."quantfin"; @@ -6249,6 +6255,7 @@ self: super: { "random-extras" = dontDistribute super."random-extras"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; + "random-variates" = dontDistribute super."random-variates"; "randomgen" = dontDistribute super."randomgen"; "randproc" = dontDistribute super."randproc"; "randsolid" = dontDistribute super."randsolid"; @@ -6334,6 +6341,7 @@ self: super: { "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"; @@ -6902,6 +6910,7 @@ self: super: { "snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-environments" = dontDistribute super."snaplet-environments"; "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_11"; + "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; "snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-haxl" = dontDistribute super."snaplet-haxl"; "snaplet-hdbc" = dontDistribute super."snaplet-hdbc"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.20.nix b/pkgs/development/haskell-modules/configuration-lts-2.20.nix index a645487603d..a49867586e4 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.20.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.20.nix @@ -1049,6 +1049,7 @@ self: super: { "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"; @@ -1377,6 +1378,7 @@ self: super: { "atomic-write" = dontDistribute super."atomic-write"; "atomo" = dontDistribute super."atomo"; "attempt" = dontDistribute super."attempt"; + "atto-lisp" = doDistribute super."atto-lisp_0_2_2"; "attoparsec" = doDistribute super."attoparsec_0_12_1_6"; "attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-binary" = dontDistribute super."attoparsec-binary"; @@ -5040,6 +5042,7 @@ self: super: { "marionetta" = dontDistribute super."marionetta"; "markdown-kate" = dontDistribute super."markdown-kate"; "markdown-pap" = dontDistribute super."markdown-pap"; + "markdown-unlit" = doDistribute super."markdown-unlit_0_2_0_1"; "markdown2svg" = dontDistribute super."markdown2svg"; "marked-pretty" = dontDistribute super."marked-pretty"; "markov" = dontDistribute super."markov"; @@ -5239,6 +5242,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_9_2_1"; + "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-owns" = dontDistribute super."monoid-owns"; "monoid-record" = dontDistribute super."monoid-record"; @@ -5572,6 +5576,7 @@ self: super: { "opendatatable" = dontDistribute super."opendatatable"; "openexchangerates" = dontDistribute super."openexchangerates"; "openflow" = dontDistribute super."openflow"; + "opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo"; "opengles" = dontDistribute super."opengles"; "openid" = dontDistribute super."openid"; "openpgp" = dontDistribute super."openpgp"; @@ -6079,6 +6084,7 @@ self: super: { "qd-vec" = dontDistribute super."qd-vec"; "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"; @@ -6141,6 +6147,7 @@ self: super: { "random-extras" = dontDistribute super."random-extras"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; + "random-variates" = dontDistribute super."random-variates"; "randomgen" = dontDistribute super."randomgen"; "randproc" = dontDistribute super."randproc"; "randsolid" = dontDistribute super."randsolid"; @@ -6226,6 +6233,7 @@ self: super: { "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"; @@ -6780,6 +6788,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.21.nix b/pkgs/development/haskell-modules/configuration-lts-2.21.nix index fa1cd007556..26c157dd30e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.21.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.21.nix @@ -1049,6 +1049,7 @@ self: super: { "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"; @@ -1377,6 +1378,7 @@ self: super: { "atomic-write" = dontDistribute super."atomic-write"; "atomo" = dontDistribute super."atomo"; "attempt" = dontDistribute super."attempt"; + "atto-lisp" = doDistribute super."atto-lisp_0_2_2"; "attoparsec" = doDistribute super."attoparsec_0_12_1_6"; "attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-binary" = dontDistribute super."attoparsec-binary"; @@ -5038,6 +5040,7 @@ self: super: { "marionetta" = dontDistribute super."marionetta"; "markdown-kate" = dontDistribute super."markdown-kate"; "markdown-pap" = dontDistribute super."markdown-pap"; + "markdown-unlit" = doDistribute super."markdown-unlit_0_2_0_1"; "markdown2svg" = dontDistribute super."markdown2svg"; "marked-pretty" = dontDistribute super."marked-pretty"; "markov" = dontDistribute super."markov"; @@ -5237,6 +5240,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_9_2_1"; + "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-owns" = dontDistribute super."monoid-owns"; "monoid-record" = dontDistribute super."monoid-record"; @@ -5570,6 +5574,7 @@ self: super: { "opendatatable" = dontDistribute super."opendatatable"; "openexchangerates" = dontDistribute super."openexchangerates"; "openflow" = dontDistribute super."openflow"; + "opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo"; "opengles" = dontDistribute super."opengles"; "openid" = dontDistribute super."openid"; "openpgp" = dontDistribute super."openpgp"; @@ -6074,6 +6079,7 @@ self: super: { "qd-vec" = dontDistribute super."qd-vec"; "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"; @@ -6136,6 +6142,7 @@ self: super: { "random-extras" = dontDistribute super."random-extras"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; + "random-variates" = dontDistribute super."random-variates"; "randomgen" = dontDistribute super."randomgen"; "randproc" = dontDistribute super."randproc"; "randsolid" = dontDistribute super."randsolid"; @@ -6221,6 +6228,7 @@ self: super: { "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"; @@ -6774,6 +6782,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.22.nix b/pkgs/development/haskell-modules/configuration-lts-2.22.nix index 13f101981d4..b58696e7c63 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.22.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.22.nix @@ -1048,6 +1048,7 @@ self: super: { "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"; @@ -1376,6 +1377,7 @@ self: super: { "atomic-write" = dontDistribute super."atomic-write"; "atomo" = dontDistribute super."atomo"; "attempt" = dontDistribute super."attempt"; + "atto-lisp" = doDistribute super."atto-lisp_0_2_2"; "attoparsec" = doDistribute super."attoparsec_0_12_1_6"; "attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-binary" = dontDistribute super."attoparsec-binary"; @@ -5035,6 +5037,7 @@ self: super: { "marionetta" = dontDistribute super."marionetta"; "markdown-kate" = dontDistribute super."markdown-kate"; "markdown-pap" = dontDistribute super."markdown-pap"; + "markdown-unlit" = doDistribute super."markdown-unlit_0_2_0_1"; "markdown2svg" = dontDistribute super."markdown2svg"; "marked-pretty" = dontDistribute super."marked-pretty"; "markov" = dontDistribute super."markov"; @@ -5233,6 +5236,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_9_2_1"; + "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-owns" = dontDistribute super."monoid-owns"; "monoid-record" = dontDistribute super."monoid-record"; @@ -5566,6 +5570,7 @@ self: super: { "opendatatable" = dontDistribute super."opendatatable"; "openexchangerates" = dontDistribute super."openexchangerates"; "openflow" = dontDistribute super."openflow"; + "opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo"; "opengles" = dontDistribute super."opengles"; "openid" = dontDistribute super."openid"; "openpgp" = dontDistribute super."openpgp"; @@ -6070,6 +6075,7 @@ self: super: { "qd-vec" = dontDistribute super."qd-vec"; "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"; @@ -6132,6 +6138,7 @@ self: super: { "random-extras" = dontDistribute super."random-extras"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; + "random-variates" = dontDistribute super."random-variates"; "randomgen" = dontDistribute super."randomgen"; "randproc" = dontDistribute super."randproc"; "randsolid" = dontDistribute super."randsolid"; @@ -6217,6 +6224,7 @@ self: super: { "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"; @@ -6770,6 +6778,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.3.nix b/pkgs/development/haskell-modules/configuration-lts-2.3.nix index efc5e18e7f8..32920ffdf1b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.3.nix @@ -1056,6 +1056,7 @@ self: super: { "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"; @@ -1388,6 +1389,7 @@ self: super: { "atomic-write" = dontDistribute super."atomic-write"; "atomo" = dontDistribute super."atomo"; "attempt" = dontDistribute super."attempt"; + "atto-lisp" = doDistribute super."atto-lisp_0_2_2"; "attoparsec" = doDistribute super."attoparsec_0_12_1_6"; "attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-binary" = dontDistribute super."attoparsec-binary"; @@ -5122,6 +5124,7 @@ self: super: { "markdown" = doDistribute super."markdown_0_1_13_1"; "markdown-kate" = dontDistribute super."markdown-kate"; "markdown-pap" = dontDistribute super."markdown-pap"; + "markdown-unlit" = doDistribute super."markdown-unlit_0_2_0_1"; "markdown2svg" = dontDistribute super."markdown2svg"; "marked-pretty" = dontDistribute super."marked-pretty"; "markov" = dontDistribute super."markov"; @@ -5325,6 +5328,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_9_1"; + "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-owns" = dontDistribute super."monoid-owns"; "monoid-record" = dontDistribute super."monoid-record"; @@ -5666,6 +5670,7 @@ self: super: { "opendatatable" = dontDistribute super."opendatatable"; "openexchangerates" = dontDistribute super."openexchangerates"; "openflow" = dontDistribute super."openflow"; + "opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo"; "opengles" = dontDistribute super."opengles"; "openid" = dontDistribute super."openid"; "openpgp" = dontDistribute super."openpgp"; @@ -6184,6 +6189,7 @@ self: super: { "qd-vec" = dontDistribute super."qd-vec"; "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; + "qt" = dontDistribute super."qt"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quantfin" = dontDistribute super."quantfin"; @@ -6247,6 +6253,7 @@ self: super: { "random-extras" = dontDistribute super."random-extras"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; + "random-variates" = dontDistribute super."random-variates"; "randomgen" = dontDistribute super."randomgen"; "randproc" = dontDistribute super."randproc"; "randsolid" = dontDistribute super."randsolid"; @@ -6332,6 +6339,7 @@ self: super: { "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"; @@ -6899,6 +6907,7 @@ self: super: { "snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-environments" = dontDistribute super."snaplet-environments"; "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_11"; + "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; "snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-haxl" = dontDistribute super."snaplet-haxl"; "snaplet-hdbc" = dontDistribute super."snaplet-hdbc"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.4.nix b/pkgs/development/haskell-modules/configuration-lts-2.4.nix index e385c5e8041..f3741eadc61 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.4.nix @@ -1056,6 +1056,7 @@ self: super: { "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"; @@ -1388,6 +1389,7 @@ self: super: { "atomic-write" = dontDistribute super."atomic-write"; "atomo" = dontDistribute super."atomo"; "attempt" = dontDistribute super."attempt"; + "atto-lisp" = doDistribute super."atto-lisp_0_2_2"; "attoparsec" = doDistribute super."attoparsec_0_12_1_6"; "attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-binary" = dontDistribute super."attoparsec-binary"; @@ -5121,6 +5123,7 @@ self: super: { "markdown" = doDistribute super."markdown_0_1_13_1"; "markdown-kate" = dontDistribute super."markdown-kate"; "markdown-pap" = dontDistribute super."markdown-pap"; + "markdown-unlit" = doDistribute super."markdown-unlit_0_2_0_1"; "markdown2svg" = dontDistribute super."markdown2svg"; "marked-pretty" = dontDistribute super."marked-pretty"; "markov" = dontDistribute super."markov"; @@ -5323,6 +5326,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_9_1"; + "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-owns" = dontDistribute super."monoid-owns"; "monoid-record" = dontDistribute super."monoid-record"; @@ -5664,6 +5668,7 @@ self: super: { "opendatatable" = dontDistribute super."opendatatable"; "openexchangerates" = dontDistribute super."openexchangerates"; "openflow" = dontDistribute super."openflow"; + "opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo"; "opengles" = dontDistribute super."opengles"; "openid" = dontDistribute super."openid"; "openpgp" = dontDistribute super."openpgp"; @@ -6180,6 +6185,7 @@ self: super: { "qd-vec" = dontDistribute super."qd-vec"; "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; + "qt" = dontDistribute super."qt"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quantfin" = dontDistribute super."quantfin"; @@ -6243,6 +6249,7 @@ self: super: { "random-extras" = dontDistribute super."random-extras"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; + "random-variates" = dontDistribute super."random-variates"; "randomgen" = dontDistribute super."randomgen"; "randproc" = dontDistribute super."randproc"; "randsolid" = dontDistribute super."randsolid"; @@ -6328,6 +6335,7 @@ self: super: { "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"; @@ -6893,6 +6901,7 @@ self: super: { "snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-environments" = dontDistribute super."snaplet-environments"; "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_11"; + "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; "snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-haxl" = dontDistribute super."snaplet-haxl"; "snaplet-hdbc" = dontDistribute super."snaplet-hdbc"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.5.nix b/pkgs/development/haskell-modules/configuration-lts-2.5.nix index 4d8785f64de..d962d5a7305 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.5.nix @@ -1056,6 +1056,7 @@ self: super: { "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"; @@ -1388,6 +1389,7 @@ self: super: { "atomic-write" = dontDistribute super."atomic-write"; "atomo" = dontDistribute super."atomo"; "attempt" = dontDistribute super."attempt"; + "atto-lisp" = doDistribute super."atto-lisp_0_2_2"; "attoparsec" = doDistribute super."attoparsec_0_12_1_6"; "attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-binary" = dontDistribute super."attoparsec-binary"; @@ -5118,6 +5120,7 @@ self: super: { "markdown" = doDistribute super."markdown_0_1_13_1"; "markdown-kate" = dontDistribute super."markdown-kate"; "markdown-pap" = dontDistribute super."markdown-pap"; + "markdown-unlit" = doDistribute super."markdown-unlit_0_2_0_1"; "markdown2svg" = dontDistribute super."markdown2svg"; "marked-pretty" = dontDistribute super."marked-pretty"; "markov" = dontDistribute super."markov"; @@ -5320,6 +5323,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_9_1"; + "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-owns" = dontDistribute super."monoid-owns"; "monoid-record" = dontDistribute super."monoid-record"; @@ -5661,6 +5665,7 @@ self: super: { "opendatatable" = dontDistribute super."opendatatable"; "openexchangerates" = dontDistribute super."openexchangerates"; "openflow" = dontDistribute super."openflow"; + "opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo"; "opengles" = dontDistribute super."opengles"; "openid" = dontDistribute super."openid"; "openpgp" = dontDistribute super."openpgp"; @@ -6177,6 +6182,7 @@ self: super: { "qd-vec" = dontDistribute super."qd-vec"; "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; + "qt" = dontDistribute super."qt"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quantfin" = dontDistribute super."quantfin"; @@ -6240,6 +6246,7 @@ self: super: { "random-extras" = dontDistribute super."random-extras"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; + "random-variates" = dontDistribute super."random-variates"; "randomgen" = dontDistribute super."randomgen"; "randproc" = dontDistribute super."randproc"; "randsolid" = dontDistribute super."randsolid"; @@ -6325,6 +6332,7 @@ self: super: { "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"; @@ -6890,6 +6898,7 @@ self: super: { "snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-environments" = dontDistribute super."snaplet-environments"; "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_11"; + "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; "snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-haxl" = dontDistribute super."snaplet-haxl"; "snaplet-hdbc" = dontDistribute super."snaplet-hdbc"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.6.nix b/pkgs/development/haskell-modules/configuration-lts-2.6.nix index a508c266754..00b891a1d02 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.6.nix @@ -1054,6 +1054,7 @@ self: super: { "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"; @@ -1386,6 +1387,7 @@ self: super: { "atomic-write" = dontDistribute super."atomic-write"; "atomo" = dontDistribute super."atomo"; "attempt" = dontDistribute super."attempt"; + "atto-lisp" = doDistribute super."atto-lisp_0_2_2"; "attoparsec" = doDistribute super."attoparsec_0_12_1_6"; "attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-binary" = dontDistribute super."attoparsec-binary"; @@ -5112,6 +5114,7 @@ self: super: { "markdown" = doDistribute super."markdown_0_1_13_1"; "markdown-kate" = dontDistribute super."markdown-kate"; "markdown-pap" = dontDistribute super."markdown-pap"; + "markdown-unlit" = doDistribute super."markdown-unlit_0_2_0_1"; "markdown2svg" = dontDistribute super."markdown2svg"; "marked-pretty" = dontDistribute super."marked-pretty"; "markov" = dontDistribute super."markov"; @@ -5314,6 +5317,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_9_1"; + "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-owns" = dontDistribute super."monoid-owns"; "monoid-record" = dontDistribute super."monoid-record"; @@ -5654,6 +5658,7 @@ self: super: { "opendatatable" = dontDistribute super."opendatatable"; "openexchangerates" = dontDistribute super."openexchangerates"; "openflow" = dontDistribute super."openflow"; + "opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo"; "opengles" = dontDistribute super."opengles"; "openid" = dontDistribute super."openid"; "openpgp" = dontDistribute super."openpgp"; @@ -6170,6 +6175,7 @@ self: super: { "qd-vec" = dontDistribute super."qd-vec"; "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; + "qt" = dontDistribute super."qt"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quantfin" = dontDistribute super."quantfin"; @@ -6233,6 +6239,7 @@ self: super: { "random-extras" = dontDistribute super."random-extras"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; + "random-variates" = dontDistribute super."random-variates"; "randomgen" = dontDistribute super."randomgen"; "randproc" = dontDistribute super."randproc"; "randsolid" = dontDistribute super."randsolid"; @@ -6318,6 +6325,7 @@ self: super: { "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"; @@ -6883,6 +6891,7 @@ self: super: { "snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-environments" = dontDistribute super."snaplet-environments"; "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_11"; + "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; "snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-haxl" = dontDistribute super."snaplet-haxl"; "snaplet-hdbc" = dontDistribute super."snaplet-hdbc"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.7.nix b/pkgs/development/haskell-modules/configuration-lts-2.7.nix index 6e9e7ff7f10..1f84761ef23 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.7.nix @@ -1053,6 +1053,7 @@ self: super: { "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"; @@ -1385,6 +1386,7 @@ self: super: { "atomic-write" = dontDistribute super."atomic-write"; "atomo" = dontDistribute super."atomo"; "attempt" = dontDistribute super."attempt"; + "atto-lisp" = doDistribute super."atto-lisp_0_2_2"; "attoparsec" = doDistribute super."attoparsec_0_12_1_6"; "attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-binary" = dontDistribute super."attoparsec-binary"; @@ -5111,6 +5113,7 @@ self: super: { "markdown" = doDistribute super."markdown_0_1_13_1"; "markdown-kate" = dontDistribute super."markdown-kate"; "markdown-pap" = dontDistribute super."markdown-pap"; + "markdown-unlit" = doDistribute super."markdown-unlit_0_2_0_1"; "markdown2svg" = dontDistribute super."markdown2svg"; "marked-pretty" = dontDistribute super."marked-pretty"; "markov" = dontDistribute super."markov"; @@ -5313,6 +5316,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_9_1"; + "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-owns" = dontDistribute super."monoid-owns"; "monoid-record" = dontDistribute super."monoid-record"; @@ -5653,6 +5657,7 @@ self: super: { "opendatatable" = dontDistribute super."opendatatable"; "openexchangerates" = dontDistribute super."openexchangerates"; "openflow" = dontDistribute super."openflow"; + "opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo"; "opengles" = dontDistribute super."opengles"; "openid" = dontDistribute super."openid"; "openpgp" = dontDistribute super."openpgp"; @@ -6169,6 +6174,7 @@ self: super: { "qd-vec" = dontDistribute super."qd-vec"; "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; + "qt" = dontDistribute super."qt"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quantfin" = dontDistribute super."quantfin"; @@ -6232,6 +6238,7 @@ self: super: { "random-extras" = dontDistribute super."random-extras"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; + "random-variates" = dontDistribute super."random-variates"; "randomgen" = dontDistribute super."randomgen"; "randproc" = dontDistribute super."randproc"; "randsolid" = dontDistribute super."randsolid"; @@ -6317,6 +6324,7 @@ self: super: { "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"; @@ -6882,6 +6890,7 @@ self: super: { "snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-environments" = dontDistribute super."snaplet-environments"; "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_11"; + "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; "snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-haxl" = dontDistribute super."snaplet-haxl"; "snaplet-hdbc" = dontDistribute super."snaplet-hdbc"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.8.nix b/pkgs/development/haskell-modules/configuration-lts-2.8.nix index e9b2c5052dc..6c63780de42 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.8.nix @@ -1052,6 +1052,7 @@ self: super: { "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"; @@ -1384,6 +1385,7 @@ self: super: { "atomic-write" = dontDistribute super."atomic-write"; "atomo" = dontDistribute super."atomo"; "attempt" = dontDistribute super."attempt"; + "atto-lisp" = doDistribute super."atto-lisp_0_2_2"; "attoparsec" = doDistribute super."attoparsec_0_12_1_6"; "attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-binary" = dontDistribute super."attoparsec-binary"; @@ -5107,6 +5109,7 @@ self: super: { "markdown" = doDistribute super."markdown_0_1_13_1"; "markdown-kate" = dontDistribute super."markdown-kate"; "markdown-pap" = dontDistribute super."markdown-pap"; + "markdown-unlit" = doDistribute super."markdown-unlit_0_2_0_1"; "markdown2svg" = dontDistribute super."markdown2svg"; "marked-pretty" = dontDistribute super."marked-pretty"; "markov" = dontDistribute super."markov"; @@ -5309,6 +5312,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_9_1"; + "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-owns" = dontDistribute super."monoid-owns"; "monoid-record" = dontDistribute super."monoid-record"; @@ -5649,6 +5653,7 @@ self: super: { "opendatatable" = dontDistribute super."opendatatable"; "openexchangerates" = dontDistribute super."openexchangerates"; "openflow" = dontDistribute super."openflow"; + "opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo"; "opengles" = dontDistribute super."opengles"; "openid" = dontDistribute super."openid"; "openpgp" = dontDistribute super."openpgp"; @@ -6165,6 +6170,7 @@ self: super: { "qd-vec" = dontDistribute super."qd-vec"; "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; + "qt" = dontDistribute super."qt"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quantfin" = dontDistribute super."quantfin"; @@ -6228,6 +6234,7 @@ self: super: { "random-extras" = dontDistribute super."random-extras"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; + "random-variates" = dontDistribute super."random-variates"; "randomgen" = dontDistribute super."randomgen"; "randproc" = dontDistribute super."randproc"; "randsolid" = dontDistribute super."randsolid"; @@ -6313,6 +6320,7 @@ self: super: { "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"; @@ -6876,6 +6884,7 @@ self: super: { "snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-environments" = dontDistribute super."snaplet-environments"; "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_11"; + "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; "snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-haxl" = dontDistribute super."snaplet-haxl"; "snaplet-hdbc" = dontDistribute super."snaplet-hdbc"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.9.nix b/pkgs/development/haskell-modules/configuration-lts-2.9.nix index 3ad75c3f98e..4ee765bce03 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.9.nix @@ -1052,6 +1052,7 @@ self: super: { "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"; @@ -1384,6 +1385,7 @@ self: super: { "atomic-write" = dontDistribute super."atomic-write"; "atomo" = dontDistribute super."atomo"; "attempt" = dontDistribute super."attempt"; + "atto-lisp" = doDistribute super."atto-lisp_0_2_2"; "attoparsec" = doDistribute super."attoparsec_0_12_1_6"; "attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-binary" = dontDistribute super."attoparsec-binary"; @@ -5097,6 +5099,7 @@ self: super: { "marionetta" = dontDistribute super."marionetta"; "markdown-kate" = dontDistribute super."markdown-kate"; "markdown-pap" = dontDistribute super."markdown-pap"; + "markdown-unlit" = doDistribute super."markdown-unlit_0_2_0_1"; "markdown2svg" = dontDistribute super."markdown2svg"; "marked-pretty" = dontDistribute super."marked-pretty"; "markov" = dontDistribute super."markov"; @@ -5299,6 +5302,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_9_1"; + "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-owns" = dontDistribute super."monoid-owns"; "monoid-record" = dontDistribute super."monoid-record"; @@ -5639,6 +5643,7 @@ self: super: { "opendatatable" = dontDistribute super."opendatatable"; "openexchangerates" = dontDistribute super."openexchangerates"; "openflow" = dontDistribute super."openflow"; + "opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo"; "opengles" = dontDistribute super."opengles"; "openid" = dontDistribute super."openid"; "openpgp" = dontDistribute super."openpgp"; @@ -6152,6 +6157,7 @@ self: super: { "qd-vec" = dontDistribute super."qd-vec"; "qhull-simple" = dontDistribute super."qhull-simple"; "qrcode" = dontDistribute super."qrcode"; + "qt" = dontDistribute super."qt"; "quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quantfin" = dontDistribute super."quantfin"; @@ -6215,6 +6221,7 @@ self: super: { "random-extras" = dontDistribute super."random-extras"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; + "random-variates" = dontDistribute super."random-variates"; "randomgen" = dontDistribute super."randomgen"; "randproc" = dontDistribute super."randproc"; "randsolid" = dontDistribute super."randsolid"; @@ -6300,6 +6307,7 @@ self: super: { "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"; @@ -6863,6 +6871,7 @@ self: super: { "snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-environments" = dontDistribute super."snaplet-environments"; "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_11"; + "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; "snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-haxl" = dontDistribute super."snaplet-haxl"; "snaplet-hdbc" = dontDistribute super."snaplet-hdbc"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.0.nix b/pkgs/development/haskell-modules/configuration-lts-3.0.nix index 09a04be9184..c9d0bf2a3c8 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.0.nix @@ -162,6 +162,7 @@ self: super: { "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; "Chart" = doDistribute super."Chart_1_5_1"; + "Chart-diagrams" = doDistribute super."Chart-diagrams_1_5_1"; "Chart-gtk" = dontDistribute super."Chart-gtk"; "Chart-simple" = dontDistribute super."Chart-simple"; "CheatSheet" = dontDistribute super."CheatSheet"; @@ -1021,6 +1022,7 @@ self: super: { "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"; @@ -1327,6 +1329,7 @@ self: super: { "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; "atom-msp430" = dontDistribute super."atom-msp430"; + "atomic-primops" = doDistribute super."atomic-primops_0_8"; "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign"; "atomic-primops-vector" = dontDistribute super."atomic-primops-vector"; "atomic-write" = dontDistribute super."atomic-write"; @@ -4367,6 +4370,7 @@ self: super: { "jonathanscard" = dontDistribute super."jonathanscard"; "jort" = dontDistribute super."jort"; "jose" = dontDistribute super."jose"; + "jose-jwt" = doDistribute super."jose-jwt_0_6_2"; "jpeg" = dontDistribute super."jpeg"; "js-good-parts" = dontDistribute super."js-good-parts"; "jsaddle" = dontDistribute super."jsaddle"; @@ -5015,6 +5019,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_9_2_1"; + "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_4_0_1"; "monoid-owns" = dontDistribute super."monoid-owns"; "monoid-record" = dontDistribute super."monoid-record"; @@ -5335,6 +5340,7 @@ self: super: { "opendatatable" = dontDistribute super."opendatatable"; "openexchangerates" = dontDistribute super."openexchangerates"; "openflow" = dontDistribute super."openflow"; + "opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo"; "opengles" = dontDistribute super."opengles"; "openid" = dontDistribute super."openid"; "openpgp" = dontDistribute super."openpgp"; @@ -5818,6 +5824,7 @@ self: super: { "qd-vec" = dontDistribute super."qd-vec"; "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"; @@ -5879,6 +5886,7 @@ self: super: { "random-extras" = dontDistribute super."random-extras"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; + "random-variates" = dontDistribute super."random-variates"; "randomgen" = dontDistribute super."randomgen"; "randproc" = dontDistribute super."randproc"; "randsolid" = dontDistribute super."randsolid"; @@ -5958,6 +5966,7 @@ self: super: { "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"; @@ -6493,6 +6502,7 @@ self: super: { "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"; @@ -7537,6 +7547,7 @@ self: super: { "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; "withdependencies" = dontDistribute super."withdependencies"; + "witherable" = doDistribute super."witherable_0_1_3"; "witness" = dontDistribute super."witness"; "witty" = dontDistribute super."witty"; "wkt" = dontDistribute super."wkt"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.1.nix b/pkgs/development/haskell-modules/configuration-lts-3.1.nix index 50d34a82985..d07a15de613 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.1.nix @@ -162,6 +162,7 @@ self: super: { "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; "Chart" = doDistribute super."Chart_1_5_1"; + "Chart-diagrams" = doDistribute super."Chart-diagrams_1_5_1"; "Chart-gtk" = dontDistribute super."Chart-gtk"; "Chart-simple" = dontDistribute super."Chart-simple"; "CheatSheet" = dontDistribute super."CheatSheet"; @@ -1021,6 +1022,7 @@ self: super: { "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"; @@ -1325,6 +1327,7 @@ self: super: { "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; "atom-msp430" = dontDistribute super."atom-msp430"; + "atomic-primops" = doDistribute super."atomic-primops_0_8"; "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign"; "atomic-primops-vector" = dontDistribute super."atomic-primops-vector"; "atomic-write" = dontDistribute super."atomic-write"; @@ -4360,6 +4363,7 @@ self: super: { "jonathanscard" = dontDistribute super."jonathanscard"; "jort" = dontDistribute super."jort"; "jose" = dontDistribute super."jose"; + "jose-jwt" = doDistribute super."jose-jwt_0_6_2"; "jpeg" = dontDistribute super."jpeg"; "js-good-parts" = dontDistribute super."js-good-parts"; "jsaddle" = dontDistribute super."jsaddle"; @@ -5007,6 +5011,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_9_2_1"; + "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_4_0_1"; "monoid-owns" = dontDistribute super."monoid-owns"; "monoid-record" = dontDistribute super."monoid-record"; @@ -5326,6 +5331,7 @@ self: super: { "opendatatable" = dontDistribute super."opendatatable"; "openexchangerates" = dontDistribute super."openexchangerates"; "openflow" = dontDistribute super."openflow"; + "opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo"; "opengles" = dontDistribute super."opengles"; "openid" = dontDistribute super."openid"; "openpgp" = dontDistribute super."openpgp"; @@ -5808,6 +5814,7 @@ self: super: { "qd-vec" = dontDistribute super."qd-vec"; "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"; @@ -5869,6 +5876,7 @@ self: super: { "random-extras" = dontDistribute super."random-extras"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; + "random-variates" = dontDistribute super."random-variates"; "randomgen" = dontDistribute super."randomgen"; "randproc" = dontDistribute super."randproc"; "randsolid" = dontDistribute super."randsolid"; @@ -5948,6 +5956,7 @@ self: super: { "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"; @@ -6482,6 +6491,7 @@ self: super: { "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"; @@ -7525,6 +7535,7 @@ self: super: { "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; "withdependencies" = dontDistribute super."withdependencies"; + "witherable" = doDistribute super."witherable_0_1_3"; "witness" = dontDistribute super."witness"; "witty" = dontDistribute super."witty"; "wkt" = dontDistribute super."wkt"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.2.nix b/pkgs/development/haskell-modules/configuration-lts-3.2.nix index baec2a6a87e..e49acc129f8 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.2.nix @@ -161,6 +161,8 @@ self: super: { "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; + "Chart" = doDistribute super."Chart_1_5_3"; + "Chart-diagrams" = doDistribute super."Chart-diagrams_1_5_1"; "Chart-gtk" = dontDistribute super."Chart-gtk"; "Chart-simple" = dontDistribute super."Chart-simple"; "CheatSheet" = dontDistribute super."CheatSheet"; @@ -1018,6 +1020,7 @@ self: super: { "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"; @@ -1321,6 +1324,7 @@ self: super: { "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; "atom-msp430" = dontDistribute super."atom-msp430"; + "atomic-primops" = doDistribute super."atomic-primops_0_8"; "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign"; "atomic-primops-vector" = dontDistribute super."atomic-primops-vector"; "atomic-write" = dontDistribute super."atomic-write"; @@ -4352,6 +4356,7 @@ self: super: { "jonathanscard" = dontDistribute super."jonathanscard"; "jort" = dontDistribute super."jort"; "jose" = dontDistribute super."jose"; + "jose-jwt" = doDistribute super."jose-jwt_0_6_2"; "jpeg" = dontDistribute super."jpeg"; "js-good-parts" = dontDistribute super."js-good-parts"; "jsaddle" = dontDistribute super."jsaddle"; @@ -4997,6 +5002,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_9_2_1"; + "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_4_0_1"; "monoid-owns" = dontDistribute super."monoid-owns"; "monoid-record" = dontDistribute super."monoid-record"; @@ -5316,6 +5322,7 @@ self: super: { "opendatatable" = dontDistribute super."opendatatable"; "openexchangerates" = dontDistribute super."openexchangerates"; "openflow" = dontDistribute super."openflow"; + "opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo"; "opengles" = dontDistribute super."opengles"; "openid" = dontDistribute super."openid"; "openpgp" = dontDistribute super."openpgp"; @@ -5797,6 +5804,7 @@ self: super: { "qd-vec" = dontDistribute super."qd-vec"; "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"; @@ -5857,6 +5865,7 @@ self: super: { "random-extras" = dontDistribute super."random-extras"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; + "random-variates" = dontDistribute super."random-variates"; "randomgen" = dontDistribute super."randomgen"; "randproc" = dontDistribute super."randproc"; "randsolid" = dontDistribute super."randsolid"; @@ -5936,6 +5945,7 @@ self: super: { "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"; @@ -6466,6 +6476,7 @@ self: super: { "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"; @@ -7506,6 +7517,7 @@ self: super: { "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; "withdependencies" = dontDistribute super."withdependencies"; + "witherable" = doDistribute super."witherable_0_1_3"; "witness" = dontDistribute super."witness"; "witty" = dontDistribute super."witty"; "wkt" = dontDistribute super."wkt"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.3.nix b/pkgs/development/haskell-modules/configuration-lts-3.3.nix index c83d3237350..d09df4b2ac4 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.3.nix @@ -161,6 +161,8 @@ self: super: { "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; + "Chart" = doDistribute super."Chart_1_5_3"; + "Chart-diagrams" = doDistribute super."Chart-diagrams_1_5_1"; "Chart-gtk" = dontDistribute super."Chart-gtk"; "Chart-simple" = dontDistribute super."Chart-simple"; "CheatSheet" = dontDistribute super."CheatSheet"; @@ -1017,6 +1019,7 @@ self: super: { "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"; @@ -1319,6 +1322,7 @@ self: super: { "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; "atom-msp430" = dontDistribute super."atom-msp430"; + "atomic-primops" = doDistribute super."atomic-primops_0_8"; "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign"; "atomic-primops-vector" = dontDistribute super."atomic-primops-vector"; "atomic-write" = dontDistribute super."atomic-write"; @@ -4344,6 +4348,7 @@ self: super: { "jonathanscard" = dontDistribute super."jonathanscard"; "jort" = dontDistribute super."jort"; "jose" = dontDistribute super."jose"; + "jose-jwt" = doDistribute super."jose-jwt_0_6_2"; "jpeg" = dontDistribute super."jpeg"; "js-good-parts" = dontDistribute super."js-good-parts"; "jsaddle" = dontDistribute super."jsaddle"; @@ -4989,6 +4994,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_9_3"; + "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_4_0_1"; "monoid-owns" = dontDistribute super."monoid-owns"; "monoid-record" = dontDistribute super."monoid-record"; @@ -5307,6 +5313,7 @@ self: super: { "opendatatable" = dontDistribute super."opendatatable"; "openexchangerates" = dontDistribute super."openexchangerates"; "openflow" = dontDistribute super."openflow"; + "opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo"; "opengles" = dontDistribute super."opengles"; "openid" = dontDistribute super."openid"; "openpgp" = dontDistribute super."openpgp"; @@ -5787,6 +5794,7 @@ self: super: { "qd-vec" = dontDistribute super."qd-vec"; "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"; @@ -5847,6 +5855,7 @@ self: super: { "random-extras" = dontDistribute super."random-extras"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; + "random-variates" = dontDistribute super."random-variates"; "randomgen" = dontDistribute super."randomgen"; "randproc" = dontDistribute super."randproc"; "randsolid" = dontDistribute super."randsolid"; @@ -5926,6 +5935,7 @@ self: super: { "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"; @@ -6455,6 +6465,7 @@ self: super: { "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"; @@ -7492,6 +7503,7 @@ self: super: { "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; "withdependencies" = dontDistribute super."withdependencies"; + "witherable" = doDistribute super."witherable_0_1_3"; "witness" = dontDistribute super."witness"; "witty" = dontDistribute super."witty"; "wkt" = dontDistribute super."wkt"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.4.nix b/pkgs/development/haskell-modules/configuration-lts-3.4.nix index 74cf66b00f3..7752315a4a2 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.4.nix @@ -161,6 +161,8 @@ self: super: { "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; + "Chart" = doDistribute super."Chart_1_5_3"; + "Chart-diagrams" = doDistribute super."Chart-diagrams_1_5_1"; "Chart-gtk" = dontDistribute super."Chart-gtk"; "Chart-simple" = dontDistribute super."Chart-simple"; "CheatSheet" = dontDistribute super."CheatSheet"; @@ -1017,6 +1019,7 @@ self: super: { "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"; @@ -1319,6 +1322,7 @@ self: super: { "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; "atom-msp430" = dontDistribute super."atom-msp430"; + "atomic-primops" = doDistribute super."atomic-primops_0_8"; "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign"; "atomic-primops-vector" = dontDistribute super."atomic-primops-vector"; "atomic-write" = dontDistribute super."atomic-write"; @@ -4343,6 +4347,7 @@ self: super: { "jonathanscard" = dontDistribute super."jonathanscard"; "jort" = dontDistribute super."jort"; "jose" = dontDistribute super."jose"; + "jose-jwt" = doDistribute super."jose-jwt_0_6_2"; "jpeg" = dontDistribute super."jpeg"; "js-good-parts" = dontDistribute super."js-good-parts"; "jsaddle" = dontDistribute super."jsaddle"; @@ -4988,6 +4993,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_9_3"; + "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_4_0_1"; "monoid-owns" = dontDistribute super."monoid-owns"; "monoid-record" = dontDistribute super."monoid-record"; @@ -5306,6 +5312,7 @@ self: super: { "opendatatable" = dontDistribute super."opendatatable"; "openexchangerates" = dontDistribute super."openexchangerates"; "openflow" = dontDistribute super."openflow"; + "opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo"; "opengles" = dontDistribute super."opengles"; "openid" = dontDistribute super."openid"; "openpgp" = dontDistribute super."openpgp"; @@ -5786,6 +5793,7 @@ self: super: { "qd-vec" = dontDistribute super."qd-vec"; "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"; @@ -5846,6 +5854,7 @@ self: super: { "random-extras" = dontDistribute super."random-extras"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; + "random-variates" = dontDistribute super."random-variates"; "randomgen" = dontDistribute super."randomgen"; "randproc" = dontDistribute super."randproc"; "randsolid" = dontDistribute super."randsolid"; @@ -5925,6 +5934,7 @@ self: super: { "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"; @@ -6453,6 +6463,7 @@ self: super: { "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"; @@ -7488,6 +7499,7 @@ self: super: { "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; "withdependencies" = dontDistribute super."withdependencies"; + "witherable" = doDistribute super."witherable_0_1_3"; "witness" = dontDistribute super."witness"; "witty" = dontDistribute super."witty"; "wkt" = dontDistribute super."wkt"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.5.nix b/pkgs/development/haskell-modules/configuration-lts-3.5.nix index a238a1165eb..062b528c3be 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.5.nix @@ -161,6 +161,8 @@ self: super: { "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; + "Chart" = doDistribute super."Chart_1_5_3"; + "Chart-diagrams" = doDistribute super."Chart-diagrams_1_5_1"; "Chart-gtk" = dontDistribute super."Chart-gtk"; "Chart-simple" = dontDistribute super."Chart-simple"; "CheatSheet" = dontDistribute super."CheatSheet"; @@ -1017,6 +1019,7 @@ self: super: { "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"; @@ -1318,6 +1321,7 @@ self: super: { "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; "atom-msp430" = dontDistribute super."atom-msp430"; + "atomic-primops" = doDistribute super."atomic-primops_0_8"; "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign"; "atomic-primops-vector" = dontDistribute super."atomic-primops-vector"; "atomic-write" = dontDistribute super."atomic-write"; @@ -4332,6 +4336,7 @@ self: super: { "jonathanscard" = dontDistribute super."jonathanscard"; "jort" = dontDistribute super."jort"; "jose" = dontDistribute super."jose"; + "jose-jwt" = doDistribute super."jose-jwt_0_6_2"; "jpeg" = dontDistribute super."jpeg"; "js-good-parts" = dontDistribute super."js-good-parts"; "jsaddle" = dontDistribute super."jsaddle"; @@ -4976,6 +4981,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_9_3"; + "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_4_0_1"; "monoid-owns" = dontDistribute super."monoid-owns"; "monoid-record" = dontDistribute super."monoid-record"; @@ -5293,6 +5299,7 @@ self: super: { "opendatatable" = dontDistribute super."opendatatable"; "openexchangerates" = dontDistribute super."openexchangerates"; "openflow" = dontDistribute super."openflow"; + "opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo"; "opengles" = dontDistribute super."opengles"; "openid" = dontDistribute super."openid"; "openpgp" = dontDistribute super."openpgp"; @@ -5769,6 +5776,7 @@ self: super: { "qd-vec" = dontDistribute super."qd-vec"; "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"; @@ -5829,6 +5837,7 @@ self: super: { "random-extras" = dontDistribute super."random-extras"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; + "random-variates" = dontDistribute super."random-variates"; "randomgen" = dontDistribute super."randomgen"; "randproc" = dontDistribute super."randproc"; "randsolid" = dontDistribute super."randsolid"; @@ -5908,6 +5917,7 @@ self: super: { "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"; @@ -6435,6 +6445,7 @@ self: super: { "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"; @@ -7465,6 +7476,7 @@ self: super: { "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; "withdependencies" = dontDistribute super."withdependencies"; + "witherable" = doDistribute super."witherable_0_1_3"; "witness" = dontDistribute super."witness"; "witty" = dontDistribute super."witty"; "wkt" = dontDistribute super."wkt"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.6.nix b/pkgs/development/haskell-modules/configuration-lts-3.6.nix index 28533c82c11..6828d438427 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.6.nix @@ -161,6 +161,8 @@ self: super: { "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; + "Chart" = doDistribute super."Chart_1_5_3"; + "Chart-diagrams" = doDistribute super."Chart-diagrams_1_5_1"; "Chart-gtk" = dontDistribute super."Chart-gtk"; "Chart-simple" = dontDistribute super."Chart-simple"; "CheatSheet" = dontDistribute super."CheatSheet"; @@ -1017,6 +1019,7 @@ self: super: { "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"; @@ -1316,6 +1319,7 @@ self: super: { "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; "atom-msp430" = dontDistribute super."atom-msp430"; + "atomic-primops" = doDistribute super."atomic-primops_0_8"; "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign"; "atomic-primops-vector" = dontDistribute super."atomic-primops-vector"; "atomic-write" = dontDistribute super."atomic-write"; @@ -4316,6 +4320,7 @@ self: super: { "jonathanscard" = dontDistribute super."jonathanscard"; "jort" = dontDistribute super."jort"; "jose" = dontDistribute super."jose"; + "jose-jwt" = doDistribute super."jose-jwt_0_6_2"; "jpeg" = dontDistribute super."jpeg"; "js-good-parts" = dontDistribute super."js-good-parts"; "jsaddle" = dontDistribute super."jsaddle"; @@ -4956,6 +4961,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_9_3"; + "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-owns" = dontDistribute super."monoid-owns"; "monoid-record" = dontDistribute super."monoid-record"; "monoid-statistics" = dontDistribute super."monoid-statistics"; @@ -5271,6 +5277,7 @@ self: super: { "opendatatable" = dontDistribute super."opendatatable"; "openexchangerates" = dontDistribute super."openexchangerates"; "openflow" = dontDistribute super."openflow"; + "opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo"; "opengles" = dontDistribute super."opengles"; "openid" = dontDistribute super."openid"; "openpgp" = dontDistribute super."openpgp"; @@ -5743,6 +5750,7 @@ self: super: { "qd-vec" = dontDistribute super."qd-vec"; "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"; @@ -5803,6 +5811,7 @@ self: super: { "random-extras" = dontDistribute super."random-extras"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; + "random-variates" = dontDistribute super."random-variates"; "randomgen" = dontDistribute super."randomgen"; "randproc" = dontDistribute super."randproc"; "randsolid" = dontDistribute super."randsolid"; @@ -5882,6 +5891,7 @@ self: super: { "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"; @@ -6408,6 +6418,7 @@ self: super: { "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"; @@ -7434,6 +7445,7 @@ self: super: { "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; "withdependencies" = dontDistribute super."withdependencies"; + "witherable" = doDistribute super."witherable_0_1_3"; "witness" = dontDistribute super."witness"; "witty" = dontDistribute super."witty"; "wkt" = dontDistribute super."wkt"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.7.nix b/pkgs/development/haskell-modules/configuration-lts-3.7.nix index 440d6163086..9eb767dc814 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.7.nix @@ -122,6 +122,7 @@ self: super: { "BitSyntax" = dontDistribute super."BitSyntax"; "Bitly" = dontDistribute super."Bitly"; "Blobs" = dontDistribute super."Blobs"; + "BlogLiterately" = doDistribute super."BlogLiterately_0_8_1_2"; "BluePrintCSS" = dontDistribute super."BluePrintCSS"; "Blueprint" = dontDistribute super."Blueprint"; "Bookshelf" = dontDistribute super."Bookshelf"; @@ -159,6 +160,8 @@ self: super: { "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; + "Chart" = doDistribute super."Chart_1_5_3"; + "Chart-diagrams" = doDistribute super."Chart-diagrams_1_5_1"; "Chart-gtk" = dontDistribute super."Chart-gtk"; "Chart-simple" = dontDistribute super."Chart-simple"; "CheatSheet" = dontDistribute super."CheatSheet"; @@ -1015,6 +1018,7 @@ self: super: { "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"; @@ -1310,6 +1314,7 @@ self: super: { "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; "atom-msp430" = dontDistribute super."atom-msp430"; + "atomic-primops" = doDistribute super."atomic-primops_0_8"; "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign"; "atomic-primops-vector" = dontDistribute super."atomic-primops-vector"; "atomic-write" = dontDistribute super."atomic-write"; @@ -4297,6 +4302,7 @@ self: super: { "jonathanscard" = dontDistribute super."jonathanscard"; "jort" = dontDistribute super."jort"; "jose" = dontDistribute super."jose"; + "jose-jwt" = doDistribute super."jose-jwt_0_6_2"; "jpeg" = dontDistribute super."jpeg"; "js-good-parts" = dontDistribute super."js-good-parts"; "jsaddle" = dontDistribute super."jsaddle"; @@ -4934,6 +4940,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_9_3"; + "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-owns" = dontDistribute super."monoid-owns"; "monoid-record" = dontDistribute super."monoid-record"; "monoid-statistics" = dontDistribute super."monoid-statistics"; @@ -5249,6 +5256,7 @@ self: super: { "opendatatable" = dontDistribute super."opendatatable"; "openexchangerates" = dontDistribute super."openexchangerates"; "openflow" = dontDistribute super."openflow"; + "opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo"; "opengles" = dontDistribute super."opengles"; "openid" = dontDistribute super."openid"; "openpgp" = dontDistribute super."openpgp"; @@ -5716,6 +5724,7 @@ self: super: { "qd-vec" = dontDistribute super."qd-vec"; "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"; @@ -5775,6 +5784,7 @@ self: super: { "random-extras" = dontDistribute super."random-extras"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; + "random-variates" = dontDistribute super."random-variates"; "randomgen" = dontDistribute super."randomgen"; "randproc" = dontDistribute super."randproc"; "randsolid" = dontDistribute super."randsolid"; @@ -5854,6 +5864,7 @@ self: super: { "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"; @@ -6378,6 +6389,7 @@ self: super: { "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"; @@ -7398,6 +7410,7 @@ self: super: { "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; "withdependencies" = dontDistribute super."withdependencies"; + "witherable" = doDistribute super."witherable_0_1_3"; "witness" = dontDistribute super."witness"; "witty" = dontDistribute super."witty"; "wkt" = dontDistribute super."wkt"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.8.nix b/pkgs/development/haskell-modules/configuration-lts-3.8.nix index c2b6eabf5f0..671e459c6fe 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.8.nix @@ -122,6 +122,7 @@ self: super: { "BitSyntax" = dontDistribute super."BitSyntax"; "Bitly" = dontDistribute super."Bitly"; "Blobs" = dontDistribute super."Blobs"; + "BlogLiterately" = doDistribute super."BlogLiterately_0_8_1_2"; "BluePrintCSS" = dontDistribute super."BluePrintCSS"; "Blueprint" = dontDistribute super."Blueprint"; "Bookshelf" = dontDistribute super."Bookshelf"; @@ -159,6 +160,8 @@ self: super: { "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; + "Chart" = doDistribute super."Chart_1_5_3"; + "Chart-diagrams" = doDistribute super."Chart-diagrams_1_5_1"; "Chart-gtk" = dontDistribute super."Chart-gtk"; "Chart-simple" = dontDistribute super."Chart-simple"; "CheatSheet" = dontDistribute super."CheatSheet"; @@ -1014,6 +1017,7 @@ self: super: { "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"; @@ -1309,6 +1313,7 @@ self: super: { "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; "atom-msp430" = dontDistribute super."atom-msp430"; + "atomic-primops" = doDistribute super."atomic-primops_0_8"; "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign"; "atomic-primops-vector" = dontDistribute super."atomic-primops-vector"; "atomic-write" = dontDistribute super."atomic-write"; @@ -4280,6 +4285,7 @@ self: super: { "jonathanscard" = dontDistribute super."jonathanscard"; "jort" = dontDistribute super."jort"; "jose" = dontDistribute super."jose"; + "jose-jwt" = doDistribute super."jose-jwt_0_6_2"; "jpeg" = dontDistribute super."jpeg"; "js-good-parts" = dontDistribute super."js-good-parts"; "jsaddle" = dontDistribute super."jsaddle"; @@ -4914,6 +4920,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_9_3"; + "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-owns" = dontDistribute super."monoid-owns"; "monoid-record" = dontDistribute super."monoid-record"; "monoid-statistics" = dontDistribute super."monoid-statistics"; @@ -5229,6 +5236,7 @@ self: super: { "opendatatable" = dontDistribute super."opendatatable"; "openexchangerates" = dontDistribute super."openexchangerates"; "openflow" = dontDistribute super."openflow"; + "opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo"; "opengles" = dontDistribute super."opengles"; "openid" = dontDistribute super."openid"; "openpgp" = dontDistribute super."openpgp"; @@ -5693,6 +5701,7 @@ self: super: { "qd-vec" = dontDistribute super."qd-vec"; "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"; @@ -5752,6 +5761,7 @@ self: super: { "random-extras" = dontDistribute super."random-extras"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; + "random-variates" = dontDistribute super."random-variates"; "randomgen" = dontDistribute super."randomgen"; "randproc" = dontDistribute super."randproc"; "randsolid" = dontDistribute super."randsolid"; @@ -5830,6 +5840,7 @@ self: super: { "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"; @@ -6354,6 +6365,7 @@ self: super: { "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"; @@ -7368,6 +7380,7 @@ self: super: { "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; "withdependencies" = dontDistribute super."withdependencies"; + "witherable" = doDistribute super."witherable_0_1_3"; "witness" = dontDistribute super."witness"; "witty" = dontDistribute super."witty"; "wkt" = dontDistribute super."wkt"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.9.nix b/pkgs/development/haskell-modules/configuration-lts-3.9.nix index ea7dd04fa31..f287ddbc898 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.9.nix @@ -122,6 +122,7 @@ self: super: { "BitSyntax" = dontDistribute super."BitSyntax"; "Bitly" = dontDistribute super."Bitly"; "Blobs" = dontDistribute super."Blobs"; + "BlogLiterately" = doDistribute super."BlogLiterately_0_8_1_2"; "BluePrintCSS" = dontDistribute super."BluePrintCSS"; "Blueprint" = dontDistribute super."Blueprint"; "Bookshelf" = dontDistribute super."Bookshelf"; @@ -159,6 +160,8 @@ self: super: { "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; + "Chart" = doDistribute super."Chart_1_5_3"; + "Chart-diagrams" = doDistribute super."Chart-diagrams_1_5_1"; "Chart-gtk" = dontDistribute super."Chart-gtk"; "Chart-simple" = dontDistribute super."Chart-simple"; "CheatSheet" = dontDistribute super."CheatSheet"; @@ -1012,6 +1015,7 @@ self: super: { "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"; @@ -1306,6 +1310,7 @@ self: super: { "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; "atom-msp430" = dontDistribute super."atom-msp430"; + "atomic-primops" = doDistribute super."atomic-primops_0_8"; "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign"; "atomic-primops-vector" = dontDistribute super."atomic-primops-vector"; "atomic-write" = dontDistribute super."atomic-write"; @@ -4269,6 +4274,7 @@ self: super: { "jonathanscard" = dontDistribute super."jonathanscard"; "jort" = dontDistribute super."jort"; "jose" = dontDistribute super."jose"; + "jose-jwt" = doDistribute super."jose-jwt_0_6_2"; "jpeg" = dontDistribute super."jpeg"; "js-good-parts" = dontDistribute super."js-good-parts"; "jsaddle" = dontDistribute super."jsaddle"; @@ -4405,6 +4411,7 @@ self: super: { "language-boogie" = dontDistribute super."language-boogie"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; + "language-c-quote" = doDistribute super."language-c-quote_0_11_2_1"; "language-cil" = dontDistribute super."language-cil"; "language-css" = dontDistribute super."language-css"; "language-dot" = dontDistribute super."language-dot"; @@ -4901,6 +4908,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_9_3"; + "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-owns" = dontDistribute super."monoid-owns"; "monoid-record" = dontDistribute super."monoid-record"; "monoid-statistics" = dontDistribute super."monoid-statistics"; @@ -5215,6 +5223,7 @@ self: super: { "opendatatable" = dontDistribute super."opendatatable"; "openexchangerates" = dontDistribute super."openexchangerates"; "openflow" = dontDistribute super."openflow"; + "opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo"; "opengles" = dontDistribute super."opengles"; "openid" = dontDistribute super."openid"; "openpgp" = dontDistribute super."openpgp"; @@ -5678,6 +5687,7 @@ self: super: { "qd-vec" = dontDistribute super."qd-vec"; "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"; @@ -5737,6 +5747,7 @@ self: super: { "random-extras" = dontDistribute super."random-extras"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; + "random-variates" = dontDistribute super."random-variates"; "randomgen" = dontDistribute super."randomgen"; "randproc" = dontDistribute super."randproc"; "randsolid" = dontDistribute super."randsolid"; @@ -5815,6 +5826,7 @@ self: super: { "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"; @@ -6337,6 +6349,7 @@ self: super: { "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"; @@ -7350,6 +7363,7 @@ self: super: { "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; "withdependencies" = dontDistribute super."withdependencies"; + "witherable" = doDistribute super."witherable_0_1_3"; "witness" = dontDistribute super."witness"; "witty" = dontDistribute super."witty"; "wkt" = dontDistribute super."wkt"; diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix index c9c4b5b2575..2a5fc069b1a 100644 --- a/pkgs/development/haskell-modules/hackage-packages.nix +++ b/pkgs/development/haskell-modules/hackage-packages.nix @@ -1729,7 +1729,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "BlogLiterately" = callPackage + "BlogLiterately_0_8_1_2" = callPackage ({ mkDerivation, base, blaze-html, bool-extras, bytestring, cmdargs , containers, data-default, directory, filepath, HaXml, haxr , highlighting-kate, hscolour, lens, mtl, pandoc, pandoc-citeproc @@ -1752,6 +1752,32 @@ self: { homepage = "http://byorgey.wordpress.com/blogliterately/"; description = "A tool for posting Haskelly articles to blogs"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "BlogLiterately" = callPackage + ({ mkDerivation, base, blaze-html, bool-extras, bytestring, cmdargs + , containers, data-default, directory, filepath, HaXml, haxr + , highlighting-kate, hscolour, lens, mtl, pandoc, pandoc-citeproc + , pandoc-types, parsec, process, split, strict, temporary + , transformers + }: + mkDerivation { + pname = "BlogLiterately"; + version = "0.8.1.3"; + sha256 = "2a8e5ade78fed2e6e23ac35869871f11b2dbdd58701f76243ab00773b7572e73"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base blaze-html bool-extras bytestring cmdargs containers + data-default directory filepath HaXml haxr highlighting-kate + hscolour lens mtl pandoc pandoc-citeproc pandoc-types parsec + process split strict temporary transformers + ]; + executableHaskellDepends = [ base cmdargs ]; + homepage = "http://byorgey.wordpress.com/blogliterately/"; + description = "A tool for posting Haskelly articles to blogs"; + license = "GPL"; }) {}; "BlogLiterately-diagrams_0_1_4_3" = callPackage @@ -2589,7 +2615,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "Chart" = callPackage + "Chart_1_5_3" = callPackage ({ mkDerivation, array, base, colour, data-default-class, lens, mtl , old-locale, operational, time, vector }: @@ -2604,6 +2630,24 @@ self: { homepage = "https://github.com/timbod7/haskell-chart/wiki"; description = "A library for generating 2D Charts and Plots"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "Chart" = callPackage + ({ mkDerivation, array, base, colour, data-default-class, lens, mtl + , old-locale, operational, time, vector + }: + mkDerivation { + pname = "Chart"; + version = "1.5.4"; + sha256 = "d2c460a7c6367f5343565781a2757de7c5c6288adb14e5eed51be0d4f4a5eded"; + libraryHaskellDepends = [ + array base colour data-default-class lens mtl old-locale + operational time vector + ]; + homepage = "https://github.com/timbod7/haskell-chart/wiki"; + description = "A library for generating 2D Charts and Plots"; + license = stdenv.lib.licenses.bsd3; }) {}; "Chart-cairo" = callPackage @@ -2667,7 +2711,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "Chart-diagrams" = callPackage + "Chart-diagrams_1_5_1" = callPackage ({ mkDerivation, base, blaze-markup, bytestring, Chart, colour , containers, data-default-class, diagrams-core, diagrams-lib , diagrams-postscript, diagrams-svg, lens, lucid-svg, mtl @@ -2686,6 +2730,28 @@ self: { homepage = "https://github.com/timbod7/haskell-chart/wiki"; description = "Diagrams backend for Charts"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "Chart-diagrams" = callPackage + ({ mkDerivation, base, blaze-markup, bytestring, Chart, colour + , containers, data-default-class, diagrams-core, diagrams-lib + , diagrams-postscript, diagrams-svg, lens, lucid-svg, mtl + , old-locale, operational, SVGFonts, text, time + }: + mkDerivation { + pname = "Chart-diagrams"; + version = "1.5.4"; + sha256 = "e2dcab357629b180bb05b905de995475a6ed5644437aba79f4bcc4ebae5f0b10"; + libraryHaskellDepends = [ + base blaze-markup bytestring Chart colour containers + data-default-class diagrams-core diagrams-lib diagrams-postscript + diagrams-svg lens lucid-svg mtl old-locale operational SVGFonts + text time + ]; + homepage = "https://github.com/timbod7/haskell-chart/wiki"; + description = "Diagrams backend for Charts"; + license = stdenv.lib.licenses.bsd3; }) {}; "Chart-gtk" = callPackage @@ -3962,14 +4028,15 @@ self: { "Deadpan-DDP" = callPackage ({ mkDerivation, aeson, base, base64-bytestring, bytestring - , containers, doctest, hashable, haskeline, lens, mtl, network - , network-uri, QuickCheck, random, safe, scientific, stm, text - , time, transformers, unordered-containers, vector, websockets + , containers, doctest, filemanip, hashable, haskeline, lens, mtl + , network, network-uri, QuickCheck, random, safe, scientific, stm + , text, time, transformers, unordered-containers, vector + , websockets }: mkDerivation { pname = "Deadpan-DDP"; - version = "0.9.3.0"; - sha256 = "7ae38223fe42f09b268c298cef7da7556f66e3824685fadce31c20c5f6257a0f"; + version = "0.9.6.0"; + sha256 = "dcb8603347c3e6fef34a3524636b95c7db01096956707a1d27eada526d5778c6"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -3982,7 +4049,7 @@ self: { haskeline lens mtl network network-uri random safe scientific stm text time transformers unordered-containers vector websockets ]; - testHaskellDepends = [ base doctest QuickCheck ]; + testHaskellDepends = [ base doctest filemanip QuickCheck ]; homepage = "http://github.com/sordina/Deadpan-DDP"; description = "Write clients for Meteor's DDP Protocol"; license = stdenv.lib.licenses.mit; @@ -6073,6 +6140,7 @@ self: { sha256 = "1b52c2637820c2bea38f40acdd217a68c0dd3849f7ed1308959aa324b6b2c8f1"; libraryHaskellDepends = [ base OpenGLRaw transformers ]; librarySystemDepends = [ freeglut mesa ]; + jailbreak = true; homepage = "http://www.haskell.org/haskellwiki/Opengl"; description = "A raw binding for the OpenGL graphics system"; license = stdenv.lib.licenses.bsd3; @@ -6154,8 +6222,8 @@ self: { }: mkDerivation { pname = "GLUT"; - version = "2.7.0.2"; - sha256 = "f48d9b1f5a00df06490ad669b1615b6c966ca3f09dd7a193f2bc22730c70c363"; + version = "2.7.0.3"; + sha256 = "6292074f55c781f98468a526b09b70e6c08a3c108c10abac3aa44a10d8a5d1e1"; libraryHaskellDepends = [ array base containers OpenGL OpenGLRaw StateVar transformers ]; @@ -11361,8 +11429,8 @@ self: { ({ mkDerivation, base, mtl, unix }: mkDerivation { pname = "Lambdaya"; - version = "0.1.0.0"; - sha256 = "99107e7588c63f173c085c6310ab122cee45ce55f16f6ded2eed7b279f0c7301"; + version = "0.1.1.0"; + sha256 = "5ca6d20aa36b1dbc5a2583fe43dc943cd348eaabeef78c5cba65ce4cc0ef685a"; libraryHaskellDepends = [ base mtl unix ]; description = "Library for RedPitaya"; license = stdenv.lib.licenses.gpl3; @@ -12384,8 +12452,8 @@ self: { pname = "MonadRandom"; version = "0.3.0.1"; sha256 = "40e6a19cecf9c72a5281e813c982e037104c287eef3e4b49a03b4fdd6736722d"; - revision = "1"; - editedCabalFile = "aef6c8f98c9f4c1fc09753192ec83a6c259087dd098ca2e6cacd3219872f071c"; + revision = "2"; + editedCabalFile = "51fe20cc3b144ba6d33bb082f1eb387ee41de06d9f694d4fc368ff1785637db1"; libraryHaskellDepends = [ base mtl random transformers ]; description = "Random-number generation monad"; license = "unknown"; @@ -12400,8 +12468,8 @@ self: { pname = "MonadRandom"; version = "0.3.0.2"; sha256 = "71afdea34f7836678d989cef3373f76a62cca5f47440aa0185c85fff5694eaa1"; - revision = "1"; - editedCabalFile = "1b96fa21489194e7d5634e42f1f4efef26c5e0f9c0cea47c0ea0ca86dc4fd2e6"; + revision = "2"; + editedCabalFile = "35d3a9af010fbf89a42e8d49bd4ac8d163625753a5710d82378c2d17dee2caf2"; libraryHaskellDepends = [ base mtl random transformers transformers-compat ]; @@ -12418,8 +12486,8 @@ self: { pname = "MonadRandom"; version = "0.4"; sha256 = "d32f3f7a8390125f43a67b78741c6655452dfc4388009ab4ca5a265ab5b86f93"; - revision = "1"; - editedCabalFile = "d913e82863e6b10963cc9f48a74e70739336e17debbcccef66f7e5068cdf7f1d"; + revision = "2"; + editedCabalFile = "2e218afd5b29c8682b4fb9859ceec1809ac680b2f27eb17107b18cf84fcc00f2"; libraryHaskellDepends = [ base mtl random transformers transformers-compat ]; @@ -13619,6 +13687,7 @@ self: { base bytestring GLURaw ObjectName OpenGLRaw StateVar text transformers ]; + jailbreak = true; homepage = "http://www.haskell.org/haskellwiki/Opengl"; description = "A binding for the OpenGL graphics system"; license = stdenv.lib.licenses.bsd3; @@ -13626,16 +13695,16 @@ self: { }) {}; "OpenGL" = callPackage - ({ mkDerivation, base, bytestring, GLURaw, ObjectName, OpenGLRaw - , StateVar, text, transformers + ({ mkDerivation, base, bytestring, containers, GLURaw, ObjectName + , OpenGLRaw, StateVar, text, transformers }: mkDerivation { pname = "OpenGL"; - version = "2.13.0.0"; - sha256 = "0f3b4d4dbe8630f405dcbddda3989cfe3811bf547b6e1cf6f8bcd45655ab9182"; + version = "2.13.1.0"; + sha256 = "f90dd7cf444ff6827ba947a91a3c513f54e4e987aed51ec741a43202ba0ed325"; libraryHaskellDepends = [ - base bytestring GLURaw ObjectName OpenGLRaw StateVar text - transformers + base bytestring containers GLURaw ObjectName OpenGLRaw StateVar + text transformers ]; homepage = "http://www.haskell.org/haskellwiki/Opengl"; description = "A binding for the OpenGL graphics system"; @@ -13699,23 +13768,6 @@ self: { }) {inherit (pkgs) mesa;}; "OpenGLRaw" = callPackage - ({ mkDerivation, base, bytestring, containers, mesa, text - , transformers - }: - mkDerivation { - pname = "OpenGLRaw"; - version = "2.5.5.0"; - sha256 = "6313c6ae052eed18b5e4b154819c1fd968e7b0a29b9ea556dff1ca7efa8b9635"; - libraryHaskellDepends = [ - base bytestring containers text transformers - ]; - librarySystemDepends = [ mesa ]; - homepage = "http://www.haskell.org/haskellwiki/Opengl"; - description = "A raw binding for the OpenGL graphics system"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) mesa;}; - - "OpenGLRaw_2_6_0_0" = callPackage ({ mkDerivation, base, bytestring, containers, half, mesa, text , transformers }: @@ -13730,7 +13782,6 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Opengl"; description = "A raw binding for the OpenGL graphics system"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) mesa;}; "OpenGLRaw21" = callPackage @@ -19643,17 +19694,14 @@ self: { }: mkDerivation { pname = "accelerate-cuda"; - version = "0.15.0.0"; - sha256 = "bec5de97e2a621d8eab3da2598143e34c4145fb10adad6d4164ed4ce237316fd"; - revision = "3"; - editedCabalFile = "14c5a52cc4989793c20d22d81dec4aa91e4c64be122fde0453b0bd6cd790af82"; + version = "0.15.1.0"; + sha256 = "c05cb24ac4a98a0b962ffd5eaed2befe2b02815e1f8ed219e1d3d6a8b7f60650"; libraryHaskellDepends = [ accelerate array base binary bytestring cryptohash cuda directory fclabels filepath hashable hashtables language-c-quote mainland-pretty mtl old-time pretty process SafeSemaphore srcloc template-haskell text transformers unix unordered-containers ]; - jailbreak = true; homepage = "https://github.com/AccelerateHS/accelerate-cuda/"; description = "Accelerate backend for NVIDIA GPUs"; license = stdenv.lib.licenses.bsd3; @@ -19703,14 +19751,11 @@ self: { ({ mkDerivation, accelerate, accelerate-cuda, base, cuda, cufft }: mkDerivation { pname = "accelerate-fft"; - version = "0.15.0.0"; - sha256 = "db4c4fbc40e53674af21b54e8ca5c142e6842be76b6122ee4e22db753ee2b45b"; - revision = "1"; - editedCabalFile = "c23b93ae20f528782aeb10b528fa2a7847cce5c1aa9db546f3b000d7f05f53ca"; + version = "0.15.1.0"; + sha256 = "fd2648931ce4607aba4ad527691a4bba0f043ea4182a160aa8f024152101a702"; libraryHaskellDepends = [ accelerate accelerate-cuda base cuda cufft ]; - jailbreak = true; homepage = "https://github.com/AccelerateHS/accelerate-fft"; description = "FFT using the Accelerate library"; license = stdenv.lib.licenses.bsd3; @@ -19797,6 +19842,17 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "accelerate-random" = callPackage + ({ mkDerivation, accelerate, base, mwc-random }: + mkDerivation { + pname = "accelerate-random"; + version = "0.15.0.0"; + sha256 = "6d2600b2b4eac2246658e926a088447b1aa8add76994071a3cf8a5c455081ef3"; + libraryHaskellDepends = [ accelerate base mwc-random ]; + description = "Generate Accelerate arrays filled with high quality pseudorandom numbers"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "accelerate-utility" = callPackage ({ mkDerivation, accelerate, base, utility-ht }: mkDerivation { @@ -28769,7 +28825,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "atomic-primops" = callPackage + "atomic-primops_0_8" = callPackage ({ mkDerivation, base, ghc-prim, primitive }: mkDerivation { pname = "atomic-primops"; @@ -28779,6 +28835,19 @@ self: { homepage = "https://github.com/rrnewton/haskell-lockfree/wiki"; description = "A safe approach to CAS and other atomic ops in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "atomic-primops" = callPackage + ({ mkDerivation, base, ghc-prim, primitive }: + mkDerivation { + pname = "atomic-primops"; + version = "0.8.0.2"; + sha256 = "6684b0f7f11922a5a8d038155e634ecffa32c95800326fbe6f2a45eadf07f0a0"; + libraryHaskellDepends = [ base ghc-prim primitive ]; + homepage = "https://github.com/rrnewton/haskell-lockfree/wiki"; + description = "A safe approach to CAS and other atomic ops in Haskell"; + license = stdenv.lib.licenses.bsd3; }) {}; "atomic-primops-foreign" = callPackage @@ -28872,7 +28941,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "atto-lisp" = callPackage + "atto-lisp_0_2_2" = callPackage ({ mkDerivation, attoparsec, base, blaze-builder, blaze-textual , bytestring, containers, deepseq, HUnit, test-framework , test-framework-hunit, text @@ -28895,6 +28964,30 @@ self: { homepage = "http://github.com/nominolo/atto-lisp"; description = "Efficient parsing and serialisation of S-Expressions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "atto-lisp" = callPackage + ({ mkDerivation, attoparsec, base, blaze-builder, blaze-textual + , bytestring, containers, deepseq, HUnit, test-framework + , test-framework-hunit, text + }: + mkDerivation { + pname = "atto-lisp"; + version = "0.2.2.1"; + sha256 = "d7027a3dc085155a52bd215ed1dc00b36218f8439f9ebd2caf5eca77aa3c0189"; + libraryHaskellDepends = [ + attoparsec base blaze-builder blaze-textual bytestring containers + deepseq text + ]; + testHaskellDepends = [ + attoparsec base bytestring HUnit test-framework + test-framework-hunit text + ]; + jailbreak = true; + homepage = "http://github.com/nominolo/atto-lisp"; + description = "Efficient parsing and serialisation of S-Expressions"; + license = stdenv.lib.licenses.bsd3; }) {}; "attoparsec_0_12_1_2" = callPackage @@ -30529,6 +30622,40 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "b9_0_5_14" = callPackage + ({ mkDerivation, aeson, async, base, bifunctors, binary, boxes + , bytestring, conduit, conduit-extra, ConfigFile, directory + , filepath, free, hashable, hspec, hspec-expectations, mtl + , optparse-applicative, parallel, parsec, pretty, pretty-show + , process, QuickCheck, random, semigroups, syb, template, text + , time, transformers, unordered-containers, vector, yaml + }: + mkDerivation { + pname = "b9"; + version = "0.5.14"; + sha256 = "91c6cc0304fdfb4428c872fa532e62748f5944f239f69c27f6b6ac0d81bb8d95"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson async base bifunctors binary boxes bytestring conduit + conduit-extra ConfigFile directory filepath free hashable mtl + parallel parsec pretty pretty-show process QuickCheck random + semigroups syb template text time transformers unordered-containers + vector yaml + ]; + executableHaskellDepends = [ + base bytestring directory optparse-applicative + ]; + testHaskellDepends = [ + aeson base bytestring hspec hspec-expectations QuickCheck + semigroups text unordered-containers vector yaml + ]; + homepage = "https://github.com/sheyll/b9-vm-image-builder"; + description = "A tool and library for building virtual machine images"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "babylon" = callPackage ({ mkDerivation, array, base, containers, random, wx, wxcore }: mkDerivation { @@ -45425,8 +45552,8 @@ self: { ({ mkDerivation, base, hspec, QuickCheck }: mkDerivation { pname = "compose-ltr"; - version = "0.1.1"; - sha256 = "b30225b7dfa3909aefc2373e1338de8a3fc02c9de154639a83289b7b1edabbab"; + version = "0.1.2"; + sha256 = "9d4bd35d7d5b5cfcc530281a9d55d508d719414d50dcb835b3c9097d51854123"; libraryHaskellDepends = [ base ]; testHaskellDepends = [ base hspec QuickCheck ]; description = "More intuitive, left-to-right function composition"; @@ -67280,13 +67407,13 @@ self: { }) {}; "first-and-last" = callPackage - ({ mkDerivation, base, Cabal }: + ({ mkDerivation, base, doctest }: mkDerivation { pname = "first-and-last"; - version = "0.1.0.0"; - sha256 = "d3d54fb686d09717501eed65a1ae21fdd5434ad73f958ff57d7ae849b1519653"; + version = "0.1.0.1"; + sha256 = "f25888d5530a969c40555d3f947d1f5b2254afe33787a040a32663b3e7d3f9da"; libraryHaskellDepends = [ base ]; - testHaskellDepends = [ base Cabal ]; + testHaskellDepends = [ base doctest ]; homepage = "https://github.com/markandrus/first-and-last"; description = "First and Last generalized to return up to n values"; license = stdenv.lib.licenses.bsd3; @@ -68212,8 +68339,8 @@ self: { }: mkDerivation { pname = "fltkhs"; - version = "0.2.0.1"; - sha256 = "90f88822a01ce585217f1115aa99c705fdf0984443c68aef24cd93f3c2850c43"; + version = "0.2.0.2"; + sha256 = "89bdc1cdc7710db7a57076e8bd0908c7d950ff725dee6227605bfd952eea68ea"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base bytestring ]; @@ -75272,6 +75399,7 @@ self: { version = "0.1.0.0"; sha256 = "f224cc55134f260e9b5edd908f4534a41a2c47a63388c9b34022d58fe95e545a"; libraryHaskellDepends = [ base renderable transformers varying ]; + jailbreak = true; description = "Graphical user interfaces that are renderable, change over time and eventually produce a value"; license = stdenv.lib.licenses.mit; }) {}; @@ -80064,6 +80192,46 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "hakyll_4_7_3_1" = 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, snap-core + , snap-server, system-filepath, tagsoup, test-framework + , test-framework-hunit, test-framework-quickcheck2, text, time + , time-locale-compat + }: + mkDerivation { + pname = "hakyll"; + version = "4.7.3.1"; + sha256 = "ad8b0bd9fc7508978cef1edd5a4b11432d7bcffa84940472ebe81fa28ad00740"; + 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 + snap-core snap-server system-filepath tagsoup text time + time-locale-compat + ]; + 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 snap-core snap-server system-filepath tagsoup + test-framework test-framework-hunit test-framework-quickcheck2 text + time time-locale-compat + ]; + 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 }: @@ -83154,16 +83322,17 @@ self: { }) {}; "haskell-src-exts-qq" = callPackage - ({ mkDerivation, base, haskell-src-exts, haskell-src-meta, syb - , template-haskell + ({ mkDerivation, base, haskell-src-exts, haskell-src-meta, hspec + , syb, template-haskell }: mkDerivation { pname = "haskell-src-exts-qq"; - version = "0.6.1"; - sha256 = "b66abebb58f42d075ff91f945c54e4d321a5baf2957ffeb5192299311dda7431"; + version = "0.7"; + sha256 = "b61fd34e379b80c45013ba70441261ab41d49f60c12dab880b487edabc99a82f"; libraryHaskellDepends = [ base haskell-src-exts haskell-src-meta syb template-haskell ]; + testHaskellDepends = [ base haskell-src-exts hspec ]; description = "A quasiquoter for haskell-src-exts"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -90745,14 +90914,14 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) gsl;}; - "hmatrix-gsl-stats_0_4_1_2" = callPackage + "hmatrix-gsl-stats_0_4_1_3" = callPackage ({ mkDerivation, base, binary, gsl, hmatrix, storable-complex , vector }: mkDerivation { pname = "hmatrix-gsl-stats"; - version = "0.4.1.2"; - sha256 = "af2694c1f7477faf4cae13f650c6953b3ecf6838b4a28eb8804ef30cee8bffb7"; + version = "0.4.1.3"; + sha256 = "d4852352ed9b5ee4b8e7f519d512047e5976804563151c3bd092589248fc7738"; libraryHaskellDepends = [ base binary hmatrix storable-complex vector ]; @@ -96973,6 +97142,7 @@ self: { testHaskellDepends = [ base hspec test-sandbox ]; description = "Hspec convenience functions for use with test-sandbox"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hspec-wai_0_6_2" = callPackage @@ -97097,6 +97267,25 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "hspec-webdriver_1_1_0" = callPackage + ({ mkDerivation, base, data-default, hashable, hspec, hspec-core + , HUnit, lifted-base, stm, text, transformers, unordered-containers + , webdriver + }: + mkDerivation { + pname = "hspec-webdriver"; + version = "1.1.0"; + sha256 = "42c890d5f5c20f1e4eb7c21a5c33cab13adcc609e17f71495a136710186a6e69"; + libraryHaskellDepends = [ + base data-default hashable hspec hspec-core HUnit lifted-base stm + text transformers unordered-containers webdriver + ]; + homepage = "https://bitbucket.org/wuzzeb/webdriver-utils"; + description = "Write end2end web application tests using webdriver and hspec"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "hspec2" = callPackage ({ mkDerivation, base, hspec, hspec-discover }: mkDerivation { @@ -106832,7 +107021,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "jose-jwt" = callPackage + "jose-jwt_0_6_2" = callPackage ({ mkDerivation, aeson, aeson-qq, base, base64-bytestring, byteable , bytestring, cereal, cipher-aes, containers, cprng-aes , crypto-cipher-types, crypto-numbers, crypto-pubkey @@ -106861,6 +107050,29 @@ self: { homepage = "http://github.com/tekul/jose-jwt"; description = "JSON Object Signing and Encryption Library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "jose-jwt" = callPackage + ({ mkDerivation, aeson, aeson-qq, base, bytestring, cereal + , containers, cryptonite, doctest, either, hspec, HUnit, memory + , mtl, QuickCheck, text, time, unordered-containers, vector + }: + mkDerivation { + pname = "jose-jwt"; + version = "0.7"; + sha256 = "60d5bf047e6ba6081b4ca7a86fe78a371594aa9ed1fec808a8c3628b5b0eca62"; + libraryHaskellDepends = [ + aeson base bytestring cereal containers cryptonite either memory + mtl text time unordered-containers vector + ]; + testHaskellDepends = [ + aeson aeson-qq base bytestring cryptonite doctest either hspec + HUnit memory mtl QuickCheck text unordered-containers vector + ]; + homepage = "http://github.com/tekul/jose-jwt"; + description = "JSON Object Signing and Encryption Library"; + license = stdenv.lib.licenses.bsd3; hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; @@ -110876,7 +111088,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "language-c-quote" = callPackage + "language-c-quote_0_11_2_1" = callPackage ({ mkDerivation, alex, array, base, bytestring, containers , exception-mtl, exception-transformers, filepath, happy , haskell-src-meta, HUnit, mainland-pretty, mtl, srcloc, syb @@ -110900,6 +111112,33 @@ self: { homepage = "http://www.cs.drexel.edu/~mainland/"; description = "C/CUDA/OpenCL/Objective-C quasiquoting library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "language-c-quote" = callPackage + ({ mkDerivation, alex, array, base, bytestring, containers + , exception-mtl, exception-transformers, filepath, happy + , haskell-src-meta, HUnit, mainland-pretty, mtl, srcloc, syb + , symbol, template-haskell, test-framework, test-framework-hunit + }: + mkDerivation { + pname = "language-c-quote"; + version = "0.11.3"; + sha256 = "42f9b13e7e1b9d9106158671ec3fc42d7375d61e50f7739a714e5f69caee02d0"; + libraryHaskellDepends = [ + array base bytestring containers exception-mtl + exception-transformers filepath haskell-src-meta mainland-pretty + mtl srcloc syb symbol template-haskell + ]; + libraryToolDepends = [ alex happy ]; + testHaskellDepends = [ + base bytestring HUnit mainland-pretty srcloc symbol test-framework + test-framework-hunit + ]; + doCheck = false; + homepage = "http://www.cs.drexel.edu/~mainland/"; + description = "C/CUDA/OpenCL/Objective-C quasiquoting library"; + license = stdenv.lib.licenses.bsd3; }) {}; "language-cil" = callPackage @@ -111364,8 +111603,8 @@ self: { }: mkDerivation { pname = "language-lua2"; - version = "0.1.0.4"; - sha256 = "3d5e92e4ec4b096cb44432fc7e2ee2620470c4912c3fd85e30b07a7b834c422b"; + version = "0.1.0.5"; + sha256 = "4f24d7b015dbe1c7e9d1ead835ce426223531b8b6f408ee97b3d18904424393d"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -117076,16 +117315,18 @@ self: { }) {objc = null;}; "luminance" = callPackage - ({ mkDerivation, base, contravariant, gl, mtl, resourcet + ({ mkDerivation, base, contravariant, gl, linear, mtl, resourcet , semigroups, transformers, void }: mkDerivation { pname = "luminance"; - version = "0.3.1.1"; - sha256 = "7b4339e714601dcf1cd52e5d2bdcd22f949f3935de4f3bd2d574ebf9c021c1cb"; + version = "0.4"; + sha256 = "30cbf60f084e195bcc6166df357ec74e04f1b190aab53d3aa964f1c406cae4cc"; libraryHaskellDepends = [ - base contravariant gl mtl resourcet semigroups transformers void + base contravariant gl linear mtl resourcet semigroups transformers + void ]; + jailbreak = true; homepage = "https://github.com/phaazon/luminance"; description = "Type-safe, dependently-typed and stateless graphics framework"; license = stdenv.lib.licenses.bsd3; @@ -117097,8 +117338,8 @@ self: { }: mkDerivation { pname = "luminance-samples"; - version = "0.3"; - sha256 = "fa4b87f4c49815f0d8335303c35e3f71b13de5c6dcc156d40b820bc8713bee89"; + version = "0.4"; + sha256 = "49f9b316faa13098b3757032e1d7ab9664ae602f39e3e2ccb8ee7887dbfd7ff3"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -118864,7 +119105,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "markdown-unlit" = callPackage + "markdown-unlit_0_2_0_1" = callPackage ({ mkDerivation, base, directory, hspec, QuickCheck, silently , stringbuilder }: @@ -118881,6 +119122,28 @@ self: { ]; description = "Literate Haskell support for Markdown"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "markdown-unlit" = callPackage + ({ mkDerivation, base, base-compat, directory, hspec, QuickCheck + , silently, stringbuilder, temporary + }: + mkDerivation { + pname = "markdown-unlit"; + version = "0.3.1"; + sha256 = "31d36cb8f2517798ad640a7fcd04afa2bc2f0524756e644987c1a8ce15bb3196"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base base-compat ]; + executableHaskellDepends = [ base base-compat ]; + testHaskellDepends = [ + base base-compat directory hspec QuickCheck silently stringbuilder + temporary + ]; + homepage = "https://github.com/sol/markdown-unlit#readme"; + description = "Literate Haskell support for Markdown"; + license = stdenv.lib.licenses.mit; }) {}; "markdown2svg" = callPackage @@ -119808,6 +120071,27 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "megaparsec_4_1_0" = callPackage + ({ mkDerivation, base, bytestring, HUnit, mtl, QuickCheck + , test-framework, test-framework-hunit, test-framework-quickcheck2 + , text, transformers + }: + mkDerivation { + pname = "megaparsec"; + version = "4.1.0"; + sha256 = "abe7835c01760d0fa0ab703b6948fa191799c9ddb08fb85c9e9642550508e0b9"; + libraryHaskellDepends = [ base bytestring mtl text transformers ]; + testHaskellDepends = [ + base HUnit mtl QuickCheck test-framework test-framework-hunit + test-framework-quickcheck2 transformers + ]; + jailbreak = true; + homepage = "https://github.com/mrkkrp/megaparsec"; + description = "Monadic parser combinators"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "meldable-heap" = callPackage ({ mkDerivation, base }: mkDerivation { @@ -123647,6 +123931,18 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "monoid-absorbing" = callPackage + ({ mkDerivation, base, mtl }: + mkDerivation { + pname = "monoid-absorbing"; + version = "0.1.0.1"; + sha256 = "b2c51c949445862ce641bff764bccaac1e5da796448863ede8fe6ae5403278d9"; + libraryHaskellDepends = [ base mtl ]; + homepage = "http://github.com/maciejpirog/monoid-absorbing"; + description = "A library for (left, right) zero monoids and backtracking with cut"; + license = stdenv.lib.licenses.mit; + }) {}; + "monoid-extras_0_3_3_5" = callPackage ({ mkDerivation, base, groups, semigroupoids, semigroups }: mkDerivation { @@ -126547,8 +126843,8 @@ self: { }: mkDerivation { pname = "naver-translate"; - version = "0.1.0.1"; - sha256 = "8a1cd7b0f04d9c8445bc33d999fd144421d4a59c6779d5dbe2b45e55f2d35f8e"; + version = "0.1.0.2"; + sha256 = "ea4bd9f0eb8eef5f89d9715ab893238db39cdc186617ec8ec93b8c9fce817542"; libraryHaskellDepends = [ aeson base iso639 lens lens-aeson network-uri random text wreq ]; @@ -127879,6 +128175,19 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "network-info_0_2_0_8" = callPackage + ({ mkDerivation, base }: + mkDerivation { + pname = "network-info"; + version = "0.2.0.8"; + sha256 = "ecdff121f3e154c480f363bc8660959a051790bfae5b5fe573810873cedbcd76"; + libraryHaskellDepends = [ base ]; + homepage = "http://github.com/jystic/network-info"; + description = "Access the local computer's basic network configuration"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "network-interfacerequest" = callPackage ({ mkDerivation, base, bytestring, ioctl, network }: mkDerivation { @@ -130857,6 +131166,21 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "opengl-dlp-stereo" = callPackage + ({ mkDerivation, base, GLUT, OpenGL, vector }: + mkDerivation { + pname = "opengl-dlp-stereo"; + version = "0.1.2.5"; + sha256 = "076a1640f83131f1134328b9d1b8fa0ff9da51527f2d9337f5fceebb55c0d85a"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base OpenGL vector ]; + executableHaskellDepends = [ base GLUT OpenGL vector ]; + homepage = "https://bitbucket.org/bwbush/opengl-dlp-stereo"; + description = "Library and example for using DLP stereo in OpenGL"; + license = stdenv.lib.licenses.mit; + }) {}; + "opengles" = callPackage ({ mkDerivation, base, bytestring, distributive, EGL , future-resource, ghc-prim, GLESv2, lens, linear, packer, vector @@ -132767,7 +133091,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "pandoc-citeproc_0_8" = callPackage + "pandoc-citeproc_0_8_0_1" = callPackage ({ mkDerivation, aeson, aeson-pretty, attoparsec, base, bytestring , containers, data-default, directory, filepath, hs-bibutils, mtl , old-locale, pandoc, pandoc-types, parsec, process, rfc5051 @@ -132776,8 +133100,8 @@ self: { }: mkDerivation { pname = "pandoc-citeproc"; - version = "0.8"; - sha256 = "834ba89edc9d92dd2e9bf0f001a5ce3d5713b8a7b580232b6a088b5f7f6ddc5e"; + version = "0.8.0.1"; + sha256 = "f9e1edb8ac529d4177feb0c374cf2b31f03dfcb53eabc342adb43d5aeaa37269"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -139896,8 +140220,8 @@ self: { }: mkDerivation { pname = "postgresql-schema"; - version = "0.1.7"; - sha256 = "7d64e812b6a03e119a1ae44d274518a75d4b84e42f4d887fb58d51e8ebceb499"; + version = "0.1.8"; + sha256 = "4ede410d51b86429f98b2a8fd61a49441df1030ef1e50444c841ea2ebbcb7962"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -140001,6 +140325,8 @@ self: { pname = "postgresql-simple"; version = "0.5.0.1"; sha256 = "1b045b957533eba33fd7a93bf4b4aecc685cdb6592b635a2a383b71502efcb6c"; + revision = "1"; + editedCabalFile = "8d5aa9ab427874998dd710c17cea06ca14c8628a688a6249b3746b200171add7"; libraryHaskellDepends = [ aeson attoparsec base bytestring bytestring-builder case-insensitive containers hashable postgresql-libpq scientific @@ -141643,8 +141969,8 @@ self: { }: mkDerivation { pname = "profiteur"; - version = "0.2.0.1"; - sha256 = "ce361bfce2ee9138aa50a3061c466f858796dec1dd0b5d3b5b5b77742a48069e"; + version = "0.2.0.2"; + sha256 = "fe2d0a9a44785ee2fb7ea54ceb73088fab3f81179c1c1541cbb183ad188229e3"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -143162,8 +143488,8 @@ self: { }: mkDerivation { pname = "pusher-http-haskell"; - version = "0.2.0.0"; - sha256 = "439fbfb5244ef1ccd2f7ed0854ec199c70912ecaf76465871b741dcc86ed8129"; + version = "0.2.1.0"; + sha256 = "deb588bf92977fccb22a731a5e9b31f70c4b6fe8b2fb4048df10f6123580b562"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -143488,6 +143814,24 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "qt" = callPackage + ({ mkDerivation, base, OpenGL, qtc_core, qtc_gui, qtc_network + , qtc_opengl, qtc_script, qtc_tools + }: + mkDerivation { + pname = "qt"; + version = "1.1.6.1"; + sha256 = "64d3d24dbdace1a10aaafb24f943b3d4ac8dd0e6eaf1750c4347995a9a153f82"; + libraryHaskellDepends = [ base OpenGL ]; + librarySystemDepends = [ + qtc_core qtc_gui qtc_network qtc_opengl qtc_script qtc_tools + ]; + homepage = "http://github.com/keerastudios/hsQt"; + description = "Qt bindings"; + license = "unknown"; + }) {qtc_core = null; qtc_gui = null; qtc_network = null; + qtc_opengl = null; qtc_script = null; qtc_tools = null;}; + "quadratic-irrational" = callPackage ({ mkDerivation, arithmoi, base, containers, directory, doctest , filepath, mtl, numbers, QuickCheck, tasty, tasty-quickcheck @@ -144796,6 +145140,22 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "random-variates" = callPackage + ({ mkDerivation, base, containers, lens, random, reinterpret-cast + }: + mkDerivation { + pname = "random-variates"; + version = "0.1.0.0"; + sha256 = "e7fd6b27efc856a7eed4eaa55cb5b96e43f76b0b2af3936e8fbbc48e1736f604"; + libraryHaskellDepends = [ + base containers lens random reinterpret-cast + ]; + jailbreak = true; + homepage = "https://bitbucket.org/kpratt/random-variate"; + description = "\"Uniform RNG => Non-Uniform RNGs\""; + license = stdenv.lib.licenses.mit; + }) {}; + "randomgen" = callPackage ({ mkDerivation, base, binary, bytestring, mersenne-random-pure64 , openssl @@ -146416,6 +146776,23 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "reflex-animation" = callPackage + ({ mkDerivation, base, bifunctors, containers, profunctors, reflex + , reflex-transformers, semigroups, vector-space + }: + mkDerivation { + pname = "reflex-animation"; + version = "0.1.3"; + sha256 = "9ea13b90681e35b0d91a1aed2d2bca90dc304e9769865c0c1325a9f80b06a42b"; + libraryHaskellDepends = [ + base bifunctors containers profunctors reflex reflex-transformers + semigroups vector-space + ]; + homepage = "https://github.com/saulzar/reflex-animation"; + description = "Continuous animations support for reflex"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "reflex-dom" = callPackage ({ mkDerivation, aeson, base, bifunctors, bytestring, containers , data-default, dependent-map, dependent-sum @@ -146485,8 +146862,8 @@ self: { }: mkDerivation { pname = "reflex-transformers"; - version = "0.2"; - sha256 = "81ab5c2fd634285c6c3044310ec37082e2d2350a8857f29c3c615198593b8430"; + version = "0.2.1"; + sha256 = "df901365231fc8db36e70a579173be8d663c7eb6f3c7e351f5977322e8ccbd72"; libraryHaskellDepends = [ base containers lens mtl reflex semigroups stateWriter transformers ]; @@ -147276,8 +147653,8 @@ self: { }: mkDerivation { pname = "rei"; - version = "0.3.0.0"; - sha256 = "6e8fb86fe10c3355c932d33df4a783b8bf3a923b37b8010c9c5564e06325ad0d"; + version = "0.3.2.0"; + sha256 = "703dbda6815d7427f35ccf2c8d4f37bd3f2a3863c7aa01d9bd098cfce90ffdda"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -153498,12 +153875,12 @@ self: { ({ mkDerivation, base, cairo, linear, mtl, random, sdl2, time }: mkDerivation { pname = "sdl2-cairo"; - version = "0.1.0.1"; - sha256 = "c544c6efc61dea4a81068fbac71ae2da92a2da22dfd4012b127725f63b70f720"; + version = "0.1.0.2"; + sha256 = "e536adc0c2439267d3496cb5d33899c83d2e6d8debf2d56c69abd3c947704a86"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base cairo linear mtl random sdl2 time ]; - description = "Binding to render with Cairo on SDL textures and optional convenience drawing API"; + description = "Render with Cairo on SDL textures. Includes optional convenience drawing API."; license = stdenv.lib.licenses.mit; }) {}; @@ -153791,8 +154168,8 @@ self: { }: mkDerivation { pname = "secp256k1"; - version = "0.1.1"; - sha256 = "ea4dadb68f6704d9dd30c3b7aa92c9fad1c0ebc00ac6e2d64457af31f0112c1f"; + version = "0.1.2"; + sha256 = "c9e871d98a6a9e4e7b66b620c3b467fec4584cbc3b821aecbfb0a40b0deac634"; libraryHaskellDepends = [ base bytestring entropy mtl ]; librarySystemDepends = [ secp256k1 ]; testHaskellDepends = [ @@ -153803,6 +154180,7 @@ self: { homepage = "http://github.com/haskoin/secp256k1#readme"; description = "secp256k1 bindings for Haskell"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {secp256k1 = null;}; "secret-santa" = callPackage @@ -156741,6 +157119,26 @@ self: { license = stdenv.lib.licenses.asl20; }) {}; + "shake-language-c_0_8_4" = callPackage + ({ mkDerivation, base, data-default-class, directory, doctest + , fclabels, hspec, process, shake, split, unordered-containers + }: + mkDerivation { + pname = "shake-language-c"; + version = "0.8.4"; + sha256 = "c2cb7de12f645b63d3990579a493a4f81bb4b676f05f5436f5ea43318feab3ce"; + libraryHaskellDepends = [ + base data-default-class fclabels process shake split + unordered-containers + ]; + testHaskellDepends = [ base directory doctest hspec shake ]; + doCheck = false; + homepage = "https://github.com/samplecount/shake-language-c"; + description = "Utilities for cross-compiling with Shake"; + license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "shake-minify" = callPackage ({ mkDerivation, base, bytestring, css-text, hjsmin, shake, text }: mkDerivation { @@ -160858,6 +161256,22 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "snaplet-ghcjs" = callPackage + ({ mkDerivation, base, directory, filepath, lens, mtl, process + , snap, snap-core, string-conversions, transformers + }: + mkDerivation { + pname = "snaplet-ghcjs"; + version = "0.1.0.0"; + sha256 = "9661f47bf1ce7ef88b61aabddd81be04616a723afc2de4c8e66471f1fa95c229"; + libraryHaskellDepends = [ + base directory filepath lens mtl process snap snap-core + string-conversions transformers + ]; + description = "Serve javascript files compiled with GHCJS"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "snaplet-hasql" = callPackage ({ mkDerivation, aeson, base, bytestring, clientsession , configurator, hasql, hasql-backend, lens, mtl, snap, text, time @@ -161134,6 +161548,8 @@ self: { pname = "snaplet-postgresql-simple"; version = "0.6.0.4"; sha256 = "44cca67347a81257533edc9570bf9303081a11d40e8000390a75f3f48e071687"; + revision = "1"; + editedCabalFile = "09d597fa224d73971ff8f370992d6da00381af34a36d8199a21b5396477e5b00"; libraryHaskellDepends = [ base bytestring clientsession configurator lens MonadCatchIO-transformers mtl postgresql-simple @@ -163800,6 +164216,75 @@ self: { maintainers = with stdenv.lib.maintainers; [ simons ]; }) {}; + "stack_0_1_6_0" = callPackage + ({ mkDerivation, aeson, ansi-terminal, async, attoparsec, base + , base16-bytestring, base64-bytestring, bifunctors, binary + , binary-tagged, blaze-builder, byteable, bytestring, Cabal + , conduit, conduit-combinators, conduit-extra, containers + , cryptohash, cryptohash-conduit, deepseq, directory, either + , enclosed-exceptions, exceptions, extra, fast-logger, file-embed + , filelock, filepath, fsnotify, gitrev, hashable, hastache, hpc + , hspec, http-client, http-client-tls, http-conduit, http-types + , ignore, lifted-base, monad-control, monad-logger, monad-loops + , mtl, old-locale, optparse-applicative, optparse-simple, path + , persistent, persistent-sqlite, persistent-template, pretty + , process, project-template, QuickCheck, resourcet, retry, safe + , split, stm, streaming-commons, tar, template-haskell, temporary + , text, time, transformers, transformers-base, unix, unix-compat + , unordered-containers, vector, vector-binary-instances, void + , word8, yaml, zlib + }: + mkDerivation { + pname = "stack"; + version = "0.1.6.0"; + sha256 = "a47ffc204b9caef8281d1e5daebc21bc9d4d2414ed695dc10d32fcca4d81978d"; + revision = "2"; + editedCabalFile = "7965c68610808ca9ce3e8fe57ca5fd1d3adb6b1536bb807cfaaf6f7e5a4260fd"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson ansi-terminal async attoparsec base base16-bytestring + base64-bytestring bifunctors binary binary-tagged blaze-builder + byteable bytestring Cabal conduit conduit-combinators conduit-extra + containers cryptohash cryptohash-conduit deepseq directory + enclosed-exceptions exceptions extra fast-logger file-embed + filelock filepath fsnotify gitrev hashable hastache hpc http-client + http-client-tls http-conduit http-types ignore lifted-base + monad-control monad-logger monad-loops mtl old-locale + optparse-applicative optparse-simple path persistent + persistent-sqlite persistent-template pretty process + project-template resourcet retry safe split stm streaming-commons + tar template-haskell temporary text time transformers + transformers-base unix unix-compat unordered-containers vector + vector-binary-instances void word8 yaml zlib + ]; + executableHaskellDepends = [ + base bytestring Cabal conduit containers directory either + exceptions filelock filepath gitrev hashable http-client + http-conduit lifted-base monad-control monad-logger mtl old-locale + optparse-applicative optparse-simple path process resourcet split + text transformers unordered-containers + ]; + testHaskellDepends = [ + async base bytestring Cabal conduit conduit-extra containers + cryptohash directory exceptions filepath hspec http-conduit + monad-logger optparse-applicative path process QuickCheck resourcet + retry temporary text transformers unix-compat + ]; + jailbreak = true; + enableSharedExecutables = false; + postInstall = '' + exe=$out/bin/stack + mkdir -p $out/share/bash-completion/completions + $exe --bash-completion-script $exe >$out/share/bash-completion/completions/stack + ''; + homepage = "https://github.com/commercialhaskell/stack"; + description = "The Haskell Tool Stack"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + maintainers = with stdenv.lib.maintainers; [ simons ]; + }) {}; + "stack-prism" = callPackage ({ mkDerivation, base, profunctors, tagged, template-haskell , transformers @@ -166653,6 +167138,7 @@ self: { http-types template-haskell text time transformers ]; testHaskellDepends = [ base bytestring hlint markdown-unlit time ]; + jailbreak = true; homepage = "http://taylor.fausak.me/strive/"; description = "A Haskell client for the Strava V3 API"; license = stdenv.lib.licenses.mit; @@ -171746,6 +172232,31 @@ self: { license = "GPL"; }) {}; + "texmath_0_8_4" = callPackage + ({ mkDerivation, base, bytestring, containers, directory, filepath + , mtl, network-uri, pandoc-types, parsec, process, split, syb + , temporary, text, utf8-string, xml + }: + mkDerivation { + pname = "texmath"; + version = "0.8.4"; + sha256 = "318b8d640e6badd1ccc5b4cbb9c3c7186103959ee5d2a778267939629e0c0295"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base containers mtl pandoc-types parsec syb xml + ]; + executableHaskellDepends = [ network-uri ]; + testHaskellDepends = [ + base bytestring directory filepath process split temporary text + utf8-string xml + ]; + homepage = "http://github.com/jgm/texmath"; + description = "Conversion between formats used to represent mathematics"; + license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "texrunner" = callPackage ({ mkDerivation, attoparsec, base, bytestring, directory, filepath , HUnit, io-streams, lens, mtl, process, temporary, test-framework @@ -176042,18 +176553,19 @@ self: { "trurl" = callPackage ({ mkDerivation, aeson, base, bytestring, directory, filemanip - , hastache, http-conduit, MissingH, safe, scientific, tar, tasty - , tasty-hunit, text, unordered-containers + , filepath, hastache, hastache-aeson, http-conduit, MissingH, safe + , split, tar, tasty, tasty-hunit, text, unordered-containers }: mkDerivation { pname = "trurl"; - version = "0.3.1.0"; - sha256 = "fb2075917ddbc42eef2f5fad3224dcd1b483b28c9a36992b18bebd6eee4bcf2f"; + version = "0.4.0.1"; + sha256 = "7b1a7565f7b41e570905fc3f0b91720a51060d04fdc71554c507e2f160ff7e7d"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - aeson base bytestring directory filemanip hastache http-conduit - MissingH safe scientific tar text unordered-containers + aeson base bytestring directory filemanip filepath hastache + hastache-aeson http-conduit MissingH safe split tar text + unordered-containers ]; executableHaskellDepends = [ base ]; testHaskellDepends = [ base hastache tasty tasty-hunit ]; @@ -176921,16 +177433,15 @@ self: { "twitter-conduit" = callPackage ({ mkDerivation, aeson, attoparsec, authenticate-oauth, base , bytestring, case-insensitive, conduit, conduit-extra, containers - , data-default, directory, doctest, filepath, hlint, hspec - , http-client, http-conduit, http-types, lens, lens-aeson - , monad-control, network-uri, resourcet, template-haskell, text - , time, transformers, transformers-base, twitter-types - , twitter-types-lens + , data-default, doctest, hlint, hspec, http-client, http-conduit + , http-types, lens, lens-aeson, monad-control, network-uri + , resourcet, template-haskell, text, time, transformers + , transformers-base, twitter-types, twitter-types-lens }: mkDerivation { pname = "twitter-conduit"; - version = "0.1.1"; - sha256 = "bd8fbca549627725b5901298a705d7c511c3a81d6fc00dda2def496ec6c85165"; + version = "0.1.1.1"; + sha256 = "904b9413e8f729c52f16f6251c5edd641a938f5740392cc0e7a53ab24ce0e593"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -176943,10 +177454,10 @@ self: { testHaskellDepends = [ aeson attoparsec authenticate-oauth base bytestring case-insensitive conduit conduit-extra containers data-default - directory doctest filepath hlint hspec http-client http-conduit - http-types lens lens-aeson monad-control network-uri resourcet - template-haskell text time transformers transformers-base - twitter-types twitter-types-lens + doctest hlint hspec http-client http-conduit http-types lens + lens-aeson monad-control network-uri resourcet template-haskell + text time transformers transformers-base twitter-types + twitter-types-lens ]; doCheck = false; homepage = "https://github.com/himura/twitter-conduit"; @@ -177047,8 +177558,8 @@ self: { }: mkDerivation { pname = "twitter-types"; - version = "0.7.1"; - sha256 = "678c7897361513bbfd337afb6f1024b99da38d0be885e29147f756a4cd6a8801"; + version = "0.7.1.1"; + sha256 = "677b4273c13540602e7dd6c75736693092287da251d8e4658128666bc148ddf5"; libraryHaskellDepends = [ aeson base text time unordered-containers ]; @@ -181127,14 +181638,14 @@ self: { ({ mkDerivation, base, time, transformers }: mkDerivation { pname = "varying"; - version = "0.1.5.0"; - sha256 = "458e51ea43a096848e80df6d2ec79756bfefc7a3c10f84a69793fd5c3e81013b"; + version = "0.2.0.0"; + sha256 = "67389aa73d8968809ef4431a898131128f2ef89f9d15ca408ac8871f5857bcea"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base time transformers ]; executableHaskellDepends = [ base time transformers ]; homepage = "https://github.com/schell/varying"; - description = "FRP through varying values and monadic splines"; + description = "FRP through value streams and monadic splines"; license = stdenv.lib.licenses.mit; }) {}; @@ -185982,8 +186493,8 @@ self: { }: mkDerivation { pname = "wavefront"; - version = "0.3"; - sha256 = "65443f1ca1ceb6418e3740c085bd8f6f85c6ca2033deeafd7c7e4f418043e3a2"; + version = "0.4"; + sha256 = "a8da7cc39a38adee0fe230cb1732a525a979dc34f9ecd33600921583e3c04e3a"; libraryHaskellDepends = [ attoparsec base dlist filepath mtl text transformers vector ]; @@ -186584,9 +187095,9 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "webdriver_0_8" = callPackage + "webdriver_0_8_0_3" = callPackage ({ mkDerivation, aeson, attoparsec, base, base64-bytestring - , bytestring, cond, data-default-class, directory, directory-tree + , bytestring, data-default-class, directory, directory-tree , exceptions, filepath, http-client, http-types, lifted-base , monad-control, network, network-uri, scientific, temporary, text , time, transformers, transformers-base, unordered-containers @@ -186594,10 +187105,10 @@ self: { }: mkDerivation { pname = "webdriver"; - version = "0.8"; - sha256 = "357b6d21d9c3e322a7d85868e40464505d30fce3d3e3fd318c1742247cc431aa"; + version = "0.8.0.3"; + sha256 = "3caa382fdb75533be48b3bbf3c1d7f0c11dcbed76d49b002b9a16591b62903e4"; libraryHaskellDepends = [ - aeson attoparsec base base64-bytestring bytestring cond + aeson attoparsec base base64-bytestring bytestring data-default-class directory directory-tree exceptions filepath http-client http-types lifted-base monad-control network network-uri scientific temporary text time transformers @@ -186633,6 +187144,29 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "webdriver-angular_0_1_9" = callPackage + ({ mkDerivation, aeson, base, hspec, hspec-webdriver + , language-javascript, template-haskell, text, transformers + , unordered-containers, wai-app-static, warp, webdriver + }: + mkDerivation { + pname = "webdriver-angular"; + version = "0.1.9"; + sha256 = "84640b2c9152c2349319b8156c0f98a65bf52a913f010cc68f4ec2343a93d239"; + libraryHaskellDepends = [ + aeson base language-javascript template-haskell text transformers + unordered-containers webdriver + ]; + testHaskellDepends = [ + base hspec hspec-webdriver transformers wai-app-static warp + webdriver + ]; + homepage = "https://bitbucket.org/wuzzeb/webdriver-utils"; + description = "Webdriver actions to assist with testing a webpage which uses Angular.Js"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "webdriver-snoy" = callPackage ({ mkDerivation, aeson, attoparsec, base, base64-bytestring , bytestring, cond, data-default, directory, directory-tree @@ -187452,7 +187986,7 @@ self: { license = stdenv.lib.licenses.gpl3; }) {}; - "witherable" = callPackage + "witherable_0_1_3" = callPackage ({ mkDerivation, base, base-orphans, containers, hashable , transformers, unordered-containers, vector }: @@ -187467,16 +188001,17 @@ self: { homepage = "https://github.com/fumieval/witherable"; description = "Generalization of filter and catMaybes"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "witherable_0_1_3_1" = callPackage + "witherable" = callPackage ({ mkDerivation, base, base-orphans, containers, hashable , transformers, unordered-containers, vector }: mkDerivation { pname = "witherable"; - version = "0.1.3.1"; - sha256 = "4b11917e2d562ce725394d994600ef59c7d1928dccbffe44a5bdf6de62af2fd0"; + version = "0.1.3.2"; + sha256 = "070dd7a703d4d3a1f59a44a977b14cdf1c255ffab764e71ff47efd6f14740edd"; libraryHaskellDepends = [ base base-orphans containers hashable transformers unordered-containers vector @@ -187484,7 +188019,6 @@ self: { homepage = "https://github.com/fumieval/witherable"; description = "Generalization of filter and catMaybes"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "witness" = callPackage @@ -193917,15 +194451,16 @@ self: { "yesod-content-pdf" = callPackage ({ mkDerivation, base, blaze-builder, blaze-html, bytestring - , conduit, directory, network-uri, process, temporary, yesod-core + , conduit, data-default, directory, network-uri, process, temporary + , transformers, yesod-core }: mkDerivation { pname = "yesod-content-pdf"; - version = "0.1.0.2"; - sha256 = "26cf3132c03deedc76b672b979c4c0588f341109df7f142031ca456d5271a547"; + version = "0.2.0.0"; + sha256 = "322c650af8e43d9074d9b0b4a7dc8adc77a2fd3cdde61f6b7325bb4e858a9160"; libraryHaskellDepends = [ - base blaze-builder blaze-html bytestring conduit directory - network-uri process temporary yesod-core + base blaze-builder blaze-html bytestring conduit data-default + directory network-uri process temporary transformers yesod-core ]; testHaskellDepends = [ base ]; homepage = "https://github.com/alexkyllo/yesod-content-pdf#readme"; From 840d5489a53ab90c9c726ab46661b1c8c7703d0f Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 15 Oct 2015 10:07:33 +0200 Subject: [PATCH 050/196] configuration-hackage2nix.yaml: disable broken builds --- pkgs/development/haskell-modules/configuration-hackage2nix.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml index 51f40a5b504..3fc7731ef05 100644 --- a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml +++ b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml @@ -1833,6 +1833,7 @@ dont-distribute-packages: hspear: [ i686-linux, x86_64-linux, x86_64-darwin ] hspec-experimental: [ i686-linux, x86_64-linux, x86_64-darwin ] hspec-shouldbe: [ i686-linux, x86_64-linux, x86_64-darwin ] + hspec-test-sandbox: [ i686-linux, x86_64-linux, x86_64-darwin ] HsPerl5: [ i686-linux, x86_64-linux, x86_64-darwin ] hs-pgms: [ i686-linux, x86_64-linux, x86_64-darwin ] hs-pkpass: [ i686-linux, x86_64-linux, x86_64-darwin ] @@ -3006,6 +3007,7 @@ dont-distribute-packages: seacat: [ i686-linux, x86_64-linux, x86_64-darwin ] search: [ i686-linux, x86_64-linux, x86_64-darwin ] secdh: [ i686-linux, x86_64-linux, x86_64-darwin ] + secp256k1: [ i686-linux, x86_64-linux, x86_64-darwin ] secret-santa: [ i686-linux, x86_64-linux, x86_64-darwin ] secret-sharing: [ i686-linux, x86_64-linux, x86_64-darwin ] secrm: [ i686-linux, x86_64-linux, x86_64-darwin ] From 731bb36652ce04935e0093e901c70ec528cba590 Mon Sep 17 00:00:00 2001 From: Rok Garbas Date: Fri, 16 Oct 2015 12:55:56 +0200 Subject: [PATCH 051/196] vimPlugins: some vim addons got removed in e206ea5b probably by accident --- pkgs/misc/vim-plugins/default.nix | 44 +++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) diff --git a/pkgs/misc/vim-plugins/default.nix b/pkgs/misc/vim-plugins/default.nix index 5110ed409c6..601f99c7f4b 100644 --- a/pkgs/misc/vim-plugins/default.nix +++ b/pkgs/misc/vim-plugins/default.nix @@ -1191,6 +1191,17 @@ rec { ''; }; + tlib = buildVimPluginFrom2Nix { # created by nix#NixDerivation + name = "tlib-2015-08-05"; + src = fetchgit { + url = "git://github.com/tomtom/tlib_vim"; + rev = "4c128ee2fee6d97cc5c6089e7797b4ad536de2a4"; + sha256 = "9cd0fc23bb332d5ae939019929d989b636b891c894f350c38234eaf084e0656c"; + }; + dependencies = []; + + }; + undotree = buildVimPluginFrom2Nix { # created by nix#NixDerivation name = "undotree-2015-08-19"; src = fetchgit { @@ -1202,6 +1213,17 @@ rec { }; + vim-addon-actions = buildVimPluginFrom2Nix { # created by nix#NixDerivation + name = "vim-addon-actions-2014-09-22"; + src = fetchgit { + url = "git://github.com/MarcWeber/vim-addon-actions"; + rev = "a5d20500fb8812958540cf17862bd73e7af64936"; + sha256 = "d2c3eb7a1f29e7233c6fcf3b02d07efebe8252d404ee593419ad399a5fdf6383"; + }; + dependencies = ["vim-addon-mw-utils" "tlib"]; + + }; + vim-addon-async = buildVimPluginFrom2Nix { # created by nix#NixDerivation name = "vim-addon-async-2013-10-18"; src = fetchgit { @@ -1235,6 +1257,28 @@ rec { }; + vim-addon-errorformats = buildVimPluginFrom2Nix { # created by nix#NixDerivation + name = "vim-addon-errorformats-2014-11-05"; + src = fetchgit { + url = "git://github.com/MarcWeber/vim-addon-errorformats"; + rev = "dcbb203ad5f56e47e75fdee35bc92e2ba69e1d28"; + sha256 = "a1260206545d5ae17f2e6b3319f5cf1808b74e792979b1c6667d75974cc53f95"; + }; + dependencies = []; + + }; + + vim-addon-goto-thing-at-cursor = buildVimPluginFrom2Nix { # created by nix#NixDerivation + name = "vim-addon-goto-thing-at-cursor-2012-01-11"; + src = fetchgit { + url = "git://github.com/MarcWeber/vim-addon-goto-thing-at-cursor"; + rev = "f052e094bdb351829bf72ae3435af9042e09a6e4"; + sha256 = "34658ac99d9a630db9c544b3dfcd2c3df69afa5209e27558cc022b7afc2078ea"; + }; + dependencies = ["tlib"]; + + }; + vim-addon-local-vimrc = buildVimPluginFrom2Nix { # created by nix#NixDerivation name = "vim-addon-local-vimrc-2015-03-19"; src = fetchgit { From d0de36ba7ada3c60b387d873621980eede27fa74 Mon Sep 17 00:00:00 2001 From: Brian McKenna Date: Tue, 6 Oct 2015 11:04:40 +1100 Subject: [PATCH 052/196] leela: init at 12.fe7a35a --- pkgs/tools/graphics/leela/default.nix | 23 +++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 25 insertions(+) create mode 100644 pkgs/tools/graphics/leela/default.nix diff --git a/pkgs/tools/graphics/leela/default.nix b/pkgs/tools/graphics/leela/default.nix new file mode 100644 index 00000000000..fa151420ebb --- /dev/null +++ b/pkgs/tools/graphics/leela/default.nix @@ -0,0 +1,23 @@ +{ stdenv, fetchFromGitHub, pkgconfig, poppler }: + +stdenv.mkDerivation { + name = "leela-12.fe7a35a"; + + src = fetchFromGitHub { + owner = "TrilbyWhite"; + repo = "Leela"; + rev = "576a60185b191d3a3030fef10492fe32d2125563"; + sha256 = "1k6n758r9dhjmc1pnpk6qzpg0q7pkq2hf18z3b0s2z198jpkg9s3"; + }; + + buildInputs = [ pkgconfig poppler ]; + + installFlags = [ "PREFIX=$(out)" "MANDIR=$(out)/share/man" ]; + + meta = { + description = "CLI frontend to the poppler-glib libary of PDF tools"; + homepage = https://github.com/TrilbyWhite/Leela; + license = stdenv.lib.licenses.gpl3; + maintainers = [ stdenv.lib.maintainers.puffnfresh ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index cf40adb5c7e..8476d3cd37f 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -2057,6 +2057,8 @@ let leafpad = callPackage ../applications/editors/leafpad { }; + leela = callPackage ../tools/graphics/leela { }; + lftp = callPackage ../tools/networking/lftp { }; libconfig = callPackage ../development/libraries/libconfig { }; From 6a567319657262bf213c08e8553ce4b9711dc914 Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Fri, 16 Oct 2015 13:01:46 +0200 Subject: [PATCH 053/196] radicale: 0.10 -> 1.0.1 --- pkgs/top-level/python-packages.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index d7bedaec8d4..ad6af6032bc 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -4753,11 +4753,11 @@ let radicale = buildPythonPackage rec { name = "radicale-${version}"; namePrefix = ""; - version = "0.10"; + version = "1.0.1"; src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/R/Radicale/Radicale-${version}.tar.gz"; - sha256 = "0r1x23h9raadpdmxnanvhajvkk0ix377mv94jlazr18nfpsj4r8c"; + sha256 = "0q0vxqg32lp9bzbqn06x7igwq3a9hcmpspvj3icyf0rlg786i2p1"; }; propagatedBuildInputs = with self; [ From a222473b063d5ea7fb585538767e17ae9cead8d9 Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Fri, 16 Oct 2015 12:30:18 +0200 Subject: [PATCH 054/196] ocaml-ctypes: requires OCaml >= 4 --- pkgs/development/ocaml-modules/ctypes/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/ocaml-modules/ctypes/default.nix b/pkgs/development/ocaml-modules/ctypes/default.nix index 43c7ddbb290..e64310f6db8 100644 --- a/pkgs/development/ocaml-modules/ctypes/default.nix +++ b/pkgs/development/ocaml-modules/ctypes/default.nix @@ -4,6 +4,8 @@ buildOcaml rec { name = "ctypes"; version = "0.4.1"; + minimumSupportedOcamlVersion = "4"; + src = fetchurl { url = "https://github.com/ocamllabs/ocaml-ctypes/archive/${version}.tar.gz"; sha256 = "74564e049de5d3c0e76ea284c225cb658ac1a2b483345be1efb9be4b3c1702f5"; From 620063af36ff12dd0bf54e0680ef653f0ba9f204 Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Fri, 16 Oct 2015 13:22:36 +0200 Subject: [PATCH 055/196] ocaml-llvm: init at 3.7.0 --- .../ocaml-modules/llvm/default.nix | 35 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 4 +++ 2 files changed, 39 insertions(+) create mode 100644 pkgs/development/ocaml-modules/llvm/default.nix diff --git a/pkgs/development/ocaml-modules/llvm/default.nix b/pkgs/development/ocaml-modules/llvm/default.nix new file mode 100644 index 00000000000..57cf9fe4678 --- /dev/null +++ b/pkgs/development/ocaml-modules/llvm/default.nix @@ -0,0 +1,35 @@ +{ stdenv, python, llvm, ocaml, findlib, ctypes }: + +let version = stdenv.lib.getVersion llvm; in + +stdenv.mkDerivation { + name = "ocaml-llvm-${version}"; + + inherit (llvm) src; + + buildInputs = [ python llvm ocaml findlib ctypes ]; + + configurePhase = '' + mkdir build + cd build + ../configure CC=gcc CXX=g++ --disable-compiler-version-checks --prefix=$out \ + --disable-doxygen --disable-docs --with-ocaml-libdir=$OCAMLFIND_DESTDIR/llvm \ + --enable-static + ''; + + enableParallelBuilding = false; + + makeFlags = [ "-C bindings" "SYSTEM_LLVM_CONFIG=llvm-config" ]; + + postInstall = '' + mv $OCAMLFIND_DESTDIR/llvm/META{.llvm,} + ''; + + meta = { + inherit (llvm.meta) license homepage; + inherit (ocaml.meta) platforms; + description = "OCaml bindings distributed with LLVM"; + maintainers = with stdenv.lib.maintainers; [ vbgl ]; + }; + +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 8476d3cd37f..8a70dab70d5 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -4467,6 +4467,10 @@ let then callPackage ../development/ocaml-modules/lambda-term { } else lambdaTerm-1_6; + llvm = callPackage ../development/ocaml-modules/llvm { + llvm = pkgs.llvm_37; + }; + macaque = callPackage ../development/ocaml-modules/macaque { }; magic-mime = callPackage ../development/ocaml-modules/magic-mime { }; From f17ae73d584692f544476227ec2f49dee0019ffb Mon Sep 17 00:00:00 2001 From: Shea Levy Date: Fri, 16 Oct 2015 12:08:28 -0400 Subject: [PATCH 056/196] haskell-hscurses: fix undeclared dependency on ncurses --- pkgs/development/haskell-modules/configuration-common.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index ad26ad43bdf..7b8a5be19d6 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -915,4 +915,9 @@ self: super: { }); fltkhs-fluid-examples = dontDistribute super.fltkhs-fluid-examples; + # https://github.com/skogsbaer/hscurses/pull/26 + hscurses = overrideCabal super.hscurses (drv: { + librarySystemDepends = (drv.librarySystemDepends or []) ++ [ pkgs.ncurses ]; + }); + } From fe6226af8ac1dc65c554664a7e2f9cbd9fe1bb47 Mon Sep 17 00:00:00 2001 From: Michael Raskin <7c6f434c@mail.ru> Date: Fri, 16 Oct 2015 12:49:14 +0300 Subject: [PATCH 057/196] firefox: 41.0.1 -> 41.0.2 --- pkgs/applications/networking/browsers/firefox/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/browsers/firefox/default.nix b/pkgs/applications/networking/browsers/firefox/default.nix index df176caaa2d..c2efc370631 100644 --- a/pkgs/applications/networking/browsers/firefox/default.nix +++ b/pkgs/applications/networking/browsers/firefox/default.nix @@ -129,8 +129,8 @@ in { firefox = common { pname = "firefox"; - version = "41.0.1"; - sha1 = "4f6bf34b7b286e033f401d7d4112ec6310577aae"; + version = "41.0.2"; + sha1 = "5e8243cbbd3ea306bd1e5f1b16079bdcc9af95a4"; }; firefox-esr = common { From 7a692670e3cc3e3b26c99013912019f2034a4abb Mon Sep 17 00:00:00 2001 From: Igor Sharonov Date: Sat, 27 Jun 2015 15:16:30 +0300 Subject: [PATCH 058/196] numlockx: init at 1.2 --- pkgs/tools/X11/numlockx/default.nix | 22 ++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 24 insertions(+) create mode 100644 pkgs/tools/X11/numlockx/default.nix diff --git a/pkgs/tools/X11/numlockx/default.nix b/pkgs/tools/X11/numlockx/default.nix new file mode 100644 index 00000000000..2c4807e4661 --- /dev/null +++ b/pkgs/tools/X11/numlockx/default.nix @@ -0,0 +1,22 @@ +{ stdenv, fetchFromGitHub, libX11, libXext, autoconf }: + +stdenv.mkDerivation rec { + name = "${pname}-${version}"; + version = "1.2"; + pname = "numlockx"; + + src = fetchFromGitHub { + owner = "rg3"; + repo = pname; + rev = "9159fd3c5717c595dadfcb33b380a85c88406185"; + sha256 = "1w49fayhwzn5rx0z1q2lrvm7z8jrd34lgb89p853a024bixc3cf2"; + }; + + buildInputs = [ libX11 libXext autoconf ]; + + meta = with stdenv.lib; { + description = "Allows to start X with NumLock turned on"; + license = licenses.mit; + platforms = platforms.all; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 8a70dab70d5..341acaf3a36 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -2426,6 +2426,8 @@ let numdiff = callPackage ../tools/text/numdiff { }; + numlockx = callPackage ../tools/X11/numlockx { }; + nssmdns = callPackage ../tools/networking/nss-mdns { }; nwdiag = pythonPackages.nwdiag; From d1360231d1a963f1e01c2f43fb542b8d0098a6df Mon Sep 17 00:00:00 2001 From: David Waern Date: Fri, 16 Oct 2015 21:58:44 +0200 Subject: [PATCH 059/196] ghcjs: make it easier to override shims and ghcjs-boot --- pkgs/development/compilers/ghcjs/default.nix | 20 +++++-------------- .../compilers/ghcjs/ghcjs-boot.nix | 7 +++++++ pkgs/development/compilers/ghcjs/shims.nix | 7 +++++++ 3 files changed, 19 insertions(+), 15 deletions(-) create mode 100644 pkgs/development/compilers/ghcjs/ghcjs-boot.nix create mode 100644 pkgs/development/compilers/ghcjs/shims.nix diff --git a/pkgs/development/compilers/ghcjs/default.nix b/pkgs/development/compilers/ghcjs/default.nix index ab1a0f521c6..8652c27e153 100644 --- a/pkgs/development/compilers/ghcjs/default.nix +++ b/pkgs/development/compilers/ghcjs/default.nix @@ -36,22 +36,12 @@ , haddock, hspec, xhtml, primitive, cacert, pkgs , coreutils , libiconv + +, ghcjsBoot ? import ./ghcjs-boot.nix { inherit fetchgit; } +, shims ? import ./shims.nix { inherit fetchFromGitHub; } }: -let - version = "0.1.0"; - ghcjsBoot = fetchgit { - url = "git://github.com/ghcjs/ghcjs-boot.git"; - rev = "39cd58e12f02fa99f493387ba4c3708819a72294"; - sha256 = "0s7hvg60piklrg9ypa7r44l4qzvpinrgsaffak6fr7gd3k08wn9d"; - fetchSubmodules = true; - }; - shims = fetchFromGitHub { - owner = "ghcjs"; - repo = "shims"; - rev = "f17d10cf47450fe4e00433e988db0bddddb35cc0"; - sha256 = "1kgnkkz1khzkmb0dm0ssp8l17iy9d9n9phszcj6vg9vi7v9y7l05"; - }; -in mkDerivation (rec { +let version = "0.1.0"; in +mkDerivation (rec { pname = "ghcjs"; inherit version; src = fetchFromGitHub { diff --git a/pkgs/development/compilers/ghcjs/ghcjs-boot.nix b/pkgs/development/compilers/ghcjs/ghcjs-boot.nix new file mode 100644 index 00000000000..9e5584a6ade --- /dev/null +++ b/pkgs/development/compilers/ghcjs/ghcjs-boot.nix @@ -0,0 +1,7 @@ +{ fetchgit }: +fetchgit { + url = git://github.com/ghcjs/ghcjs-boot.git; + rev = "39cd58e12f02fa99f493387ba4c3708819a72294"; + sha256 = "0s7hvg60piklrg9ypa7r44l4qzvpinrgsaffak6fr7gd3k08wn9d"; + fetchSubmodules = true; +} diff --git a/pkgs/development/compilers/ghcjs/shims.nix b/pkgs/development/compilers/ghcjs/shims.nix new file mode 100644 index 00000000000..512d1c8e9b3 --- /dev/null +++ b/pkgs/development/compilers/ghcjs/shims.nix @@ -0,0 +1,7 @@ +{ fetchFromGitHub }: +fetchFromGitHub { + owner = "ghcjs"; + repo = "shims"; + rev = "f17d10cf47450fe4e00433e988db0bddddb35cc0"; + sha256 = "1kgnkkz1khzkmb0dm0ssp8l17iy9d9n9phszcj6vg9vi7v9y7l05"; +} From 21bb385af51e4728301bd4ca7506e59e9520619d Mon Sep 17 00:00:00 2001 From: "William A. Kennington III" Date: Fri, 16 Oct 2015 16:44:34 -0700 Subject: [PATCH 060/196] ceph: 0.94.3 -> 0.94.3.2 --- pkgs/tools/filesystems/ceph/0.94.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/filesystems/ceph/0.94.nix b/pkgs/tools/filesystems/ceph/0.94.nix index f564e28c5a3..f35df749f38 100644 --- a/pkgs/tools/filesystems/ceph/0.94.nix +++ b/pkgs/tools/filesystems/ceph/0.94.nix @@ -1,12 +1,12 @@ { callPackage, fetchgit, ... } @ args: callPackage ./generic.nix (args // rec { - version = "0.94.3"; + version = "0.94.3.2"; src = fetchgit { url = "https://github.com/ceph/ceph.git"; rev = "refs/tags/v${version}"; - sha256 = "020khb9978wayi4jnx7f9g1fzfg3r2xn9qw66snpd3k8w2dmycxy"; + sha256 = "112yprdy39cmhfgh6pfx34rlw9sp83fgzqixvgpq34akpykhad8c"; }; patches = [ ./fix-pgrefdebugging.patch ]; From b7c3a9647ab70b4a1377b5e094ccfa5667d3cf51 Mon Sep 17 00:00:00 2001 From: "William A. Kennington III" Date: Fri, 16 Oct 2015 16:44:46 -0700 Subject: [PATCH 061/196] ceph-dev: 9.0.3 -> 9.1.0 --- pkgs/tools/filesystems/ceph/dev.nix | 9 +++------ pkgs/tools/filesystems/ceph/generic.nix | 4 ++-- 2 files changed, 5 insertions(+), 8 deletions(-) diff --git a/pkgs/tools/filesystems/ceph/dev.nix b/pkgs/tools/filesystems/ceph/dev.nix index 23757278b6f..d092b4057e5 100644 --- a/pkgs/tools/filesystems/ceph/dev.nix +++ b/pkgs/tools/filesystems/ceph/dev.nix @@ -1,16 +1,13 @@ { callPackage, fetchgit, ... } @ args: callPackage ./generic.nix (args // rec { - version = "9.0.3"; + version = "9.1.0"; src = fetchgit { url = "https://github.com/ceph/ceph.git"; rev = "refs/tags/v${version}"; - sha256 = "08ccy735srzmi505qlrpqdh5js40mpd5k1vdhnysknra0vqlpmdx"; + sha256 = "1f8z0dxl945370ifz2ila9bc55d81h41bmdq241y9z4pvaynl6pz"; }; - patches = [ - ./fix-pythonpath.patch - ./9.0.3-i686-fix.patch - ]; + patches = [ ./fix-pythonpath.patch ]; }) diff --git a/pkgs/tools/filesystems/ceph/generic.nix b/pkgs/tools/filesystems/ceph/generic.nix index cfc020b107d..8c169f131ed 100644 --- a/pkgs/tools/filesystems/ceph/generic.nix +++ b/pkgs/tools/filesystems/ceph/generic.nix @@ -206,10 +206,10 @@ stdenv.mkDerivation { ] ++ optional (versionAtLeast version "9.0.2") [ (mkWith true "man-pages" null) (mkWith true "systemd-libexec-dir" "\${out}/libexec") - ] ++ optional (versionOlder version "10.0.0") [ + ] ++ optional (versionOlder version "9.1.0") [ (mkWith (optLibs3 != null) "system-libs3" null) (mkWith true "rest-bench" null) - ] ++ optional (versionAtLeast version "10.0.0") [ + ] ++ optional (versionAtLeast version "9.1.0") [ (mkWith true "rgw-user" "rgw") (mkWith true "rgw-group" "rgw") (mkWith true "systemd-unit-dir" "\${out}/etc/systemd/system") From b6710cba151f06140d966c56c1e8326823933118 Mon Sep 17 00:00:00 2001 From: "William A. Kennington III" Date: Fri, 16 Oct 2015 16:45:00 -0700 Subject: [PATCH 062/196] ceph-git: 2015-09-22 -> 2015-10-16 --- pkgs/tools/filesystems/ceph/git.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/filesystems/ceph/git.nix b/pkgs/tools/filesystems/ceph/git.nix index 5b44a7d20f8..53fe43b93fa 100644 --- a/pkgs/tools/filesystems/ceph/git.nix +++ b/pkgs/tools/filesystems/ceph/git.nix @@ -1,12 +1,12 @@ { callPackage, fetchgit, ... } @ args: callPackage ./generic.nix (args // rec { - version = "2015-09-22"; + version = "2015-10-16"; src = fetchgit { url = "git://github.com/ceph/ceph.git"; - rev = "f1ead76f80cc3d078778080c35a6427256874062"; - sha256 = "16c01b9v04slp80dlgw8n9a5ndjqxi6lv0pnklh1ykh4xb248gjh"; + rev = "63d868106efd4d8aef71d498ba84cb2271a95a07"; + sha256 = "1sx0j50zp0is34x7rpddiizspg2qfscyfwc5yrw3y6hiklpzhz96"; }; patches = [ ./fix-pythonpath.patch ]; From de497895aeeab8c806aeb44a482b5e8da45c2869 Mon Sep 17 00:00:00 2001 From: Jude Taylor Date: Fri, 16 Oct 2015 18:37:45 -0700 Subject: [PATCH 063/196] nodejs-0.10: apply gyp patches to node-gyp in fixup --- pkgs/development/web/nodejs/v0_10.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pkgs/development/web/nodejs/v0_10.nix b/pkgs/development/web/nodejs/v0_10.nix index 47de2e72d40..a5ee621de34 100644 --- a/pkgs/development/web/nodejs/v0_10.nix +++ b/pkgs/development/web/nodejs/v0_10.nix @@ -56,6 +56,13 @@ in stdenv.mkDerivation { enableParallelBuilding = true; + postFixup = '' + pushd $out/lib/node_modules/npm/node_modules/node-gyp + patch -p2 < ${./no-xcode.patch} + popd + sed -i 's/raise.*No Xcode or CLT version detected.*/version = "7.0.0"/' $out/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/xcode_emulation.py + ''; + passthru.interpreterName = "nodejs-0.10"; meta = { From 4c95dc541b72061d644a47eed87b7e23f3765355 Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Sat, 17 Oct 2015 05:42:40 +0200 Subject: [PATCH 064/196] musescore: 2.0.1 -> 2.0.2 --- pkgs/applications/audio/musescore/default.nix | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/audio/musescore/default.nix b/pkgs/applications/audio/musescore/default.nix index 9dbfc96d571..e1f0472ce9e 100644 --- a/pkgs/applications/audio/musescore/default.nix +++ b/pkgs/applications/audio/musescore/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, cmake, pkgconfig +{ stdenv, fetchzip, cmake, pkgconfig , alsaLib, freetype, libjack2, lame, libogg, libpulseaudio, libsndfile, libvorbis , portaudio, qtbase, qtdeclarative, qtenginio, qtscript, qtsvg, qttools , qtwebkit, qtxmlpatterns @@ -6,11 +6,11 @@ stdenv.mkDerivation rec { name = "musescore-${version}"; - version = "2.0.1"; + version = "2.0.2"; - src = fetchurl { + src = fetchzip { url = "https://github.com/musescore/MuseScore/archive/v${version}.tar.gz"; - sha256 = "0n4xk35jggdq2dcizqjq1kdpclih4scpl93ymmxahvfa1vvwn5iw"; + sha256 = "12a83v4i830gj76z5744034y1vvwzgy27mjbjp508yh9bd328yqw"; }; makeFlags = [ @@ -33,8 +33,14 @@ stdenv.mkDerivation rec { make lrelease ''; + postBuild = '' + make manpages + ''; + nativeBuildInputs = [ cmake pkgconfig ]; + enableParallelBuilding = true; + buildInputs = [ alsaLib libjack2 freetype lame libogg libpulseaudio libsndfile libvorbis portaudio qtbase qtdeclarative qtenginio qtscript qtsvg qttools From f4c250f76ffa151bcc6cf3ac37d368f85ae14f16 Mon Sep 17 00:00:00 2001 From: Lancelot SIX Date: Sat, 17 Oct 2015 10:22:12 +0200 Subject: [PATCH 065/196] pkgs.complexity: 0.4 -> 1.3 See https://lists.gnu.org/archive/html/info-gnu/2015-10/msg00004.html for announcement --- .../tools/misc/complexity/default.nix | 23 ++++--------------- 1 file changed, 5 insertions(+), 18 deletions(-) diff --git a/pkgs/development/tools/misc/complexity/default.nix b/pkgs/development/tools/misc/complexity/default.nix index 4508fd64119..35c332f2877 100644 --- a/pkgs/development/tools/misc/complexity/default.nix +++ b/pkgs/development/tools/misc/complexity/default.nix @@ -1,31 +1,18 @@ -{ fetchurl, stdenv, autogen, texinfo }: +{ fetchurl, stdenv, autogen }: stdenv.mkDerivation rec { - # FIXME: Currently fails to build. - name = "complexity-0.4"; + name = "complexity-${version}"; + version = "1.3"; src = fetchurl { url = "mirror://gnu/complexity/${name}.tar.gz"; - sha256 = "0dmk2pm7vi95482hnbbp597640bsjw5gg57j8cpy87855cl69yr8"; + sha256 = "19bc64sxpqd5rqylqaa7dijz2x7qp2b0dg3ah3fb3qbcvd8b4wgy"; }; - buildInputs = - [ autogen - texinfo # XXX: shouldn't be needed, per GCS - ]; - - # Hack to work around build defect. - makeFlags = "MAKEINFOFLAGS=--no-validate"; + buildInputs = [ autogen ]; doCheck = true; - preBuild = '' - sed -i -e '/gets is a security/d' lib/stdio.in.h - sed -i '42 i\ - #undef false\ - #undef true' src/complexity.h - ''; - meta = { description = "C code complexity measurement tool"; From 29119dfb69d9736f215bbcb9dc8b05d439dc86ed Mon Sep 17 00:00:00 2001 From: Igor Sharonov Date: Sat, 17 Oct 2015 09:22:33 +0300 Subject: [PATCH 066/196] pymetar: init at 0.20 --- pkgs/top-level/python-packages.nix | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index ad6af6032bc..8e31451208e 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -10413,6 +10413,25 @@ let }; }; + pymetar = buildPythonPackage rec { + name = "${pname}-${version}"; + pname = "pymetar"; + version = "0.20"; + + disabled = isPy3k; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/p/${pname}/${name}.tar.gz"; + sha256 = "1rxyg9465cp6nc47pqxqf092wmbvv2zhffzvaf2w74laal43pgxw"; + }; + + meta = { + description = "A command-line tool to show the weather report by a given station ID"; + homepage = http://www.schwarzvogel.de/software/pymetar.html; + license = licenses.gpl2; + }; + }; + pysftp = buildPythonPackage rec { name = "pysftp-${version}"; version = "0.2.8"; From cdef0549411096e2e1a8d86722a427a519734bfa Mon Sep 17 00:00:00 2001 From: Kamil Chmielewski Date: Sat, 17 Oct 2015 12:19:42 +0200 Subject: [PATCH 067/196] goPackages.glide: 0.5.0 -> 0.6.1 --- pkgs/top-level/go-packages.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index 8bd1df44119..28b8360262a 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -700,10 +700,10 @@ let }; glide = buildFromGitHub { - rev = "0.5.0"; + rev = "0.6.1"; owner = "Masterminds"; repo = "glide"; - sha256 = "10jg3h1zprx2ylmmcvmy94k4pw7lc9a6xfgr2ld8rih642sqg9wh"; + sha256 = "1v66c2igm8lmljqrrsyq3cl416162yc5l597582bqsnhshj2kk4m"; buildInputs = [ cookoo cli-go go-gypsy vcs ]; }; @@ -2994,10 +2994,10 @@ let }; vcs = buildFromGitHub { - rev = "c709a4244b817af98a8ecb495ca4ab0b11f27ecd"; + rev = "1.0.0"; owner = "Masterminds"; repo = "vcs"; - sha256 = "04gw4pp1f9wp36nvp9y234bmp267c4ajwcc39wa975cd89zhlhn4"; + sha256 = "1qav4lf4ln5gs81714876q2cy9gfaxblbvawg3hxznbwakd9zmd8"; }; vulcand = buildGoPackage rec { From c20e79abb9961d8b72d70dd7cc640558cd6f3a8e Mon Sep 17 00:00:00 2001 From: Allan Espinosa Date: Sat, 17 Oct 2015 22:26:49 +0900 Subject: [PATCH 068/196] ruby: adjust the libPath --- pkgs/development/interpreters/ruby/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/interpreters/ruby/default.nix b/pkgs/development/interpreters/ruby/default.nix index 89e0016f98d..185d6619596 100644 --- a/pkgs/development/interpreters/ruby/default.nix +++ b/pkgs/development/interpreters/ruby/default.nix @@ -129,7 +129,7 @@ let inherit majorVersion minorVersion teenyVersion patchLevel; rubyEngine = "ruby"; baseRuby = baseruby; - libPath = "lib/${versionNoPatch}"; + libPath = "lib/${rubyEngine}/${versionNoPatch}"; gemPath = "lib/${rubyEngine}/gems/${versionNoPatch}"; }; } From af8850eed6fa76be48f20dd6f2fc90a6a5f4a98a Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Sat, 17 Oct 2015 15:55:54 +0200 Subject: [PATCH 069/196] refind: 0.8.4 -> 0.9.2 --- pkgs/tools/bootloaders/refind/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/bootloaders/refind/default.nix b/pkgs/tools/bootloaders/refind/default.nix index aa44c1924bf..896a02be2b5 100644 --- a/pkgs/tools/bootloaders/refind/default.nix +++ b/pkgs/tools/bootloaders/refind/default.nix @@ -7,11 +7,11 @@ stdenv.mkDerivation rec { name = "refind-${version}"; srcName = "refind-src-${version}"; - version = "0.8.4"; + version = "0.9.2"; src = fetchurl { url = "http://downloads.sourceforge.net/project/refind/${version}/${srcName}.zip"; - sha256 = "09g6x41fc7vvwv2y9kggjmazyhdvkn8qr02v769x33f20bfiz2zc"; + sha256 = "0ai150rzx20sfl92j6y1p6qnyy0wbmazrlp2fg19acs98qyxl8lh"; }; buildInputs = [ unzip gnu-efi efibootmgr dosfstools imagemagick ]; From ad2c49c02c67c1ca798742428250de5ab59026ae Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Sat, 17 Oct 2015 15:56:23 +0200 Subject: [PATCH 070/196] i3: 4.10.4 -> 4.11 --- pkgs/applications/window-managers/i3/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/window-managers/i3/default.nix b/pkgs/applications/window-managers/i3/default.nix index 9ac17566b94..8cd7932a8d1 100644 --- a/pkgs/applications/window-managers/i3/default.nix +++ b/pkgs/applications/window-managers/i3/default.nix @@ -5,11 +5,11 @@ stdenv.mkDerivation rec { name = "i3-${version}"; - version = "4.10.4"; + version = "4.11"; src = fetchurl { url = "http://i3wm.org/downloads/${name}.tar.bz2"; - sha256 = "0pk580jkv7cxmsrr276q25fgdbrkzldiiz4ny61szzmqqnjsfkyx"; + sha256 = "0bwqklb6irgjmgvj7mlyz4brr4lggfm3zqmvclvxcbyrzc31xkkq"; }; buildInputs = [ From 2480f6ecd7efa2d89f4f48f6c7be48b33a0d41df Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Sat, 17 Oct 2015 15:56:58 +0200 Subject: [PATCH 071/196] kid3: 3.1.2 -> 3.3.0 --- pkgs/applications/audio/kid3/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/audio/kid3/default.nix b/pkgs/applications/audio/kid3/default.nix index 58a64758c35..7cc1b1f665f 100644 --- a/pkgs/applications/audio/kid3/default.nix +++ b/pkgs/applications/audio/kid3/default.nix @@ -10,11 +10,11 @@ stdenv.mkDerivation rec { name = "kid3-${version}"; - version = "3.1.2"; + version = "3.3.0"; src = fetchurl { url = "http://downloads.sourceforge.net/project/kid3/kid3/${version}/${name}.tar.gz"; - sha256 = "0ik2bxg2im7nwcgi85g2dj148n80mfhks20rsxnzazl7afk9fl08"; + sha256 = "12sa54mg1b3wkagmh5yi20ski8km9d199lk0a1yfxy0ffjfld7js"; }; buildInputs = with stdenv.lib; From 057964e8dbe890bf16245785bf938fe2a10ff468 Mon Sep 17 00:00:00 2001 From: Louis Taylor Date: Sat, 17 Oct 2015 19:01:46 +0100 Subject: [PATCH 072/196] Update email address to currently preferred one --- lib/maintainers.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/maintainers.nix b/lib/maintainers.nix index 6248ecadb7d..48b71855c3e 100644 --- a/lib/maintainers.nix +++ b/lib/maintainers.nix @@ -153,7 +153,7 @@ kkallio = "Karn Kallio "; koral = "Koral "; kovirobi = "Kovacsics Robert "; - kragniz = "Louis Taylor "; + kragniz = "Louis Taylor "; ktosiek = "Tomasz Kontusz "; lassulus = "Lassulus "; layus = "Guillaume Maudoux "; From d639a9b82317acdae43082fe52598c0ef5619ede Mon Sep 17 00:00:00 2001 From: "William A. Kennington III" Date: Sat, 17 Oct 2015 11:53:44 -0700 Subject: [PATCH 073/196] mbedtls: 1.3.11 -> 1.3.14 --- pkgs/development/libraries/mbedtls/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/mbedtls/default.nix b/pkgs/development/libraries/mbedtls/default.nix index c37aea46eed..7c7b82d9eef 100644 --- a/pkgs/development/libraries/mbedtls/default.nix +++ b/pkgs/development/libraries/mbedtls/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, perl }: stdenv.mkDerivation rec { - name = "mbedtls-1.3.11"; + name = "mbedtls-1.3.14"; src = fetchurl { url = "https://polarssl.org/download/${name}-gpl.tgz"; - sha256 = "1js1lk6hvw9l3nhjhnhzfazfbnlcmk229hmnlm7jli3agc1979b7"; + sha256 = "1y3gr3kfai3d13j08r4pv42sh47nbfm4nqi9jq8c9d06qidr2xmy"; }; nativeBuildInputs = [ perl ]; From 82792959b4df1b565de42b36aa218fc739e4b1f1 Mon Sep 17 00:00:00 2001 From: "William A. Kennington III" Date: Sat, 17 Oct 2015 13:46:44 -0700 Subject: [PATCH 074/196] grub2: 2015-07-27 -> 2015-10-13 --- pkgs/tools/misc/grub/2.0x.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/misc/grub/2.0x.nix b/pkgs/tools/misc/grub/2.0x.nix index 2880666e8db..84a021d2b32 100644 --- a/pkgs/tools/misc/grub/2.0x.nix +++ b/pkgs/tools/misc/grub/2.0x.nix @@ -20,7 +20,7 @@ let canEfi = any (system: stdenv.system == system) (mapAttrsToList (name: _: name) efiSystems); inPCSystems = any (system: stdenv.system == system) (mapAttrsToList (name: _: name) pcSystems); - version = "2.x-2015-07-27"; + version = "2.x-2015-10-13"; unifont_bdf = fetchurl { url = "http://unifoundry.com/unifont-5.1.20080820.bdf.gz"; @@ -43,8 +43,8 @@ stdenv.mkDerivation rec { src = fetchFromSavannah { repo = "grub"; - rev = "72fc110d95129410443b898e931ff7a1db75312e"; - sha256 = "0l2hws8h1jhww5s0m8pkwdggacpqb7fvz2jx83syg7ynczpgzbxs"; + rev = "a3645c1240a0b89c3b51593bd3efc14fe66d67cf"; + sha256 = "0vxc2hi4qgv3hm90q6m3s5a9xi3j40fkc0wqv09hfkw25rabqk60"; }; nativeBuildInputs = [ autogen flex bison python autoconf automake ]; From 270062dbb3a12d93aabe00f5d9a115d735cdaece Mon Sep 17 00:00:00 2001 From: Eric Seidel Date: Sat, 17 Oct 2015 14:09:27 -0700 Subject: [PATCH 075/196] emacsPackagesNg: add avy, hydra. update async, magit, swiper --- pkgs/top-level/emacs-packages.nix | 40 ++++++++++++++++++++++++------- 1 file changed, 32 insertions(+), 8 deletions(-) diff --git a/pkgs/top-level/emacs-packages.nix b/pkgs/top-level/emacs-packages.nix index d331850b504..534fedddcc2 100644 --- a/pkgs/top-level/emacs-packages.nix +++ b/pkgs/top-level/emacs-packages.nix @@ -183,12 +183,12 @@ let self = _self // overrides; async = melpaBuild rec { pname = "async"; - version = "1.2"; + version = "1.5"; src = fetchFromGitHub { owner = "jwiegley"; repo = "emacs-async"; rev = "v${version}"; - sha256 = "1j6mbvvbnm2m1gpsy9ipxiv76b684nn57yssbqdyiwyy499cma6q"; + sha256 = "1yq1aby4n5k3caasynhxhakng01qp4099zjbsm633d351ib3h20g"; }; meta = { description = "Asynchronous processing in Emacs"; @@ -243,6 +243,18 @@ let self = _self // overrides; meta = { license = unlicense; }; }; + avy = melpaBuild rec { + pname = "avy"; + version = "0.3.0"; + src = fetchFromGitHub { + owner = "abo-abo"; + repo = pname; + rev = version; + sha256 = "15xfgmsy4sqs3cmk7dwmj21g3r9dqb3fra7n7ly306bwgzh4vm8k"; + }; + meta = { license = gpl3Plus; }; + }; + bind-key = melpaBuild { pname = "bind-key"; version = "20150317"; @@ -914,6 +926,18 @@ let self = _self // overrides; }; }; + hydra = melpaBuild rec { + pname = "hydra"; + version = "0.13.3"; + src = fetchFromGitHub { + owner = "abo-abo"; + repo = pname; + rev = version; + sha256 = "08iw95lyizcyf6cjl37fm8wvay0vsk9758pk9gq9f2xiafcchl7f"; + }; + meta = { license = gpl3Plus; }; + }; + ibuffer-vc = melpaBuild rec { pname = "ibuffer-vc"; version = "0.10"; @@ -1009,12 +1033,12 @@ let self = _self // overrides; magit = melpaBuild rec { pname = "magit"; - version = "2.1.0"; + version = "2.2.2"; src = fetchFromGitHub { owner = pname; repo = pname; rev = version; - sha256 = "0pyqa79km1y58phsf4sq2a25rx9lw0di1hb6a5y17xisa8li7sfl"; + sha256 = "1niajikvhj22saz68y0zcazh9imji76g48rc5rs20nlp76hybifc"; }; packageRequires = [ dash git-commit magit-popup with-editor ]; fileSpecs = [ "lisp/magit-utils.el" @@ -1063,7 +1087,7 @@ let self = _self // overrides; pname = "with-editor"; version = magit.version; src = magit.src; - packageRequires = [ dash ]; + packageRequires = [ async dash ]; fileSpecs = [ "Documentation/with-editor.texi" "lisp/with-editor.el" ]; meta = { license = gpl3Plus; }; }; @@ -1455,12 +1479,12 @@ let self = _self // overrides; swiper = melpaBuild rec { pname = "swiper"; - version = "0.5.0"; + version = "0.6.0"; src = fetchFromGitHub { owner = "abo-abo"; repo = pname; rev = version; - sha256 = "1a28vignwpcn62xk46w5p5wjfrbcmvs0gz1jgn4ba7ibmn4cmnnm"; + sha256 = "18madh4hvrk8sxrll84ry13n1l3ad1gnp3prj828sszrbbdp20ly"; }; fileSpecs = [ "swiper.el" "ivy.el" "colir.el" "counsel.el" ]; meta = { license = gpl3Plus; }; @@ -1499,7 +1523,7 @@ let self = _self // overrides; owner = "ocaml"; repo = pname; rev = version; - sha256 = "1j2smhqrwy0zydhbyjkpnwzq05fgfa85kc0d9kzwq0mppdndspp4"; + sha256 = "0jpcjy2a77mywba2vm61knj26pgylsmv5a21cdp80q40bac4i6bb"; }; packageRequires = [ caml ]; meta = { license = gpl3Plus; }; From dd6a98b42a455eb93b5cb073fe4d548f8337e328 Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Sun, 18 Oct 2015 00:13:16 +0200 Subject: [PATCH 076/196] ocaml-x509: init at 0.4.0 X.509 (RFC5280 and RFC6125) handling in OCaml. Homepage: https://github.com/mirleft/ocaml-x509 --- .../ocaml-modules/x509/default.nix | 28 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 30 insertions(+) create mode 100644 pkgs/development/ocaml-modules/x509/default.nix diff --git a/pkgs/development/ocaml-modules/x509/default.nix b/pkgs/development/ocaml-modules/x509/default.nix new file mode 100644 index 00000000000..6fdbbc346d9 --- /dev/null +++ b/pkgs/development/ocaml-modules/x509/default.nix @@ -0,0 +1,28 @@ +{ stdenv, fetchzip, ocaml, findlib, asn1-combinators, nocrypto, ounit }: + +let version = "0.4.0"; in + +stdenv.mkDerivation { + name = "ocaml-x509-${version}"; + + src = fetchzip { + url = "https://github.com/mirleft/ocaml-x509/archive/${version}.tar.gz"; + sha256 = "0z4c19y625ipx2anpq25pzly1fdi3cklhk130kriybrczvmd2b29"; + }; + + buildInputs = [ ocaml findlib ounit ]; + propagatedBuildInputs = [ asn1-combinators nocrypto ]; + + configureFlags = "--enable-tests"; + doCheck = true; + checkTarget = "test"; + createFindlibDestdir = true; + + meta = { + homepage = https://github.com/mirleft/ocaml-x509; + description = "X509 (RFC5280) handling in OCaml"; + platforms = ocaml.meta.platforms; + license = stdenv.lib.licenses.bsd2; + maintainers = with stdenv.lib.maintainers; [ vbgl ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 341acaf3a36..95a17101120 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -4656,6 +4656,8 @@ let vg = callPackage ../development/ocaml-modules/vg { }; + x509 = callPackage ../development/ocaml-modules/x509 { }; + xmlm = callPackage ../development/ocaml-modules/xmlm { }; xml-light = callPackage ../development/ocaml-modules/xml-light { }; From 8fc076246be05c24014b66d370f7cd4786f9f1b7 Mon Sep 17 00:00:00 2001 From: "S. Nordin" Date: Sat, 17 Oct 2015 20:47:02 -0400 Subject: [PATCH 077/196] apulse: 0.1.5 -> 0.1.6 --- pkgs/misc/apulse/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/misc/apulse/default.nix b/pkgs/misc/apulse/default.nix index fc297ca9553..4a902b640cb 100644 --- a/pkgs/misc/apulse/default.nix +++ b/pkgs/misc/apulse/default.nix @@ -2,13 +2,13 @@ stdenv.mkDerivation rec { name = "apulse-${version}"; - version = "0.1.5"; + version = "0.1.6"; src = fetchFromGitHub { owner = "i-rinat"; repo = "apulse"; rev = "v${version}"; - sha256 = "0b384dr415flxk3n4abfwfljlh7vvr1g9gad15zc5fgbyxsinv12"; + sha256 = "1w0mqa8gcrvvlns3pryhmlsc0g1irdnwsawx4g34wgwrp9paqqzm"; }; buildInputs = From 3d5ba0d5d6c28c08cd6eff77ca60d4015d656bce Mon Sep 17 00:00:00 2001 From: "Ricardo M. Correia" Date: Sat, 17 Oct 2015 18:39:50 +0200 Subject: [PATCH 078/196] rustcMaster: 2015-09-23 -> 2015-10-17 The build was changed to compile with the bundled LLVM because compiling against the system's LLVM now fails with compilation errors. --- pkgs/development/compilers/rustc/generic.nix | 17 ++++++++++------- pkgs/development/compilers/rustc/head.nix | 7 ++++--- 2 files changed, 14 insertions(+), 10 deletions(-) diff --git a/pkgs/development/compilers/rustc/generic.nix b/pkgs/development/compilers/rustc/generic.nix index 2dc91cb5ec4..9b3dca42b62 100644 --- a/pkgs/development/compilers/rustc/generic.nix +++ b/pkgs/development/compilers/rustc/generic.nix @@ -2,6 +2,7 @@ , llvmPackages_37, jemalloc, ncurses , shortVersion, isRelease +, forceBundledLLVM ? false , srcSha, srcRev ? "" , snapshotHashLinux686, snapshotHashLinux64 , snapshotHashDarwin686, snapshotHashDarwin64 @@ -76,7 +77,7 @@ let version = if isRelease then snapshotName = "rust-stage0-${snapshotDate}-${snapshotRev}-${platform}-${snapshotHash}.tar.bz2"; in -stdenv.mkDerivation { +with stdenv.lib; stdenv.mkDerivation { inherit name; inherit version; inherit meta; @@ -106,7 +107,7 @@ stdenv.mkDerivation { installPhase = '' mkdir -p "$out" cp -r bin "$out/bin" - '' + stdenv.lib.optionalString stdenv.isLinux '' + '' + optionalString stdenv.isLinux '' patchelf --interpreter "${stdenv.glibc}/lib/${stdenv.cc.dynamicLinker}" \ --set-rpath "${stdenv.cc.cc}/lib/:${stdenv.cc.cc}/lib64/" \ "$out/bin/rustc" @@ -115,9 +116,10 @@ stdenv.mkDerivation { configureFlags = configureFlags ++ [ "--enable-local-rust" "--local-rust-root=$snapshot" "--enable-rpath" ] - ++ [ "--llvm-root=${llvmPackages_37.llvm}" ] #"--jemalloc-root=${jemalloc}/lib" ] + # ++ [ "--jemalloc-root=${jemalloc}/lib" ++ [ "--default-linker=${stdenv.cc}/bin/cc" "--default-ar=${stdenv.cc.binutils}/bin/ar" ] - ++ stdenv.lib.optional (stdenv.cc.cc ? isClang) "--enable-clang"; + ++ optional (stdenv.cc.cc ? isClang) "--enable-clang" + ++ optional (!forceBundledLLVM) "--llvm-root=${llvmPackages_37.llvm}"; inherit patches; @@ -132,7 +134,7 @@ stdenv.mkDerivation { --replace "\$\$(subst /,//," "\$\$(subst /,/," # Fix dynamic linking against llvm - sed -i 's/, kind = \\"static\\"//g' src/etc/mklldeps.py + ${optionalString (!forceBundledLLVM) ''sed -i 's/, kind = \\"static\\"//g' src/etc/mklldeps.py''} # Fix the configure script to not require curl as we won't use it sed -i configure \ @@ -155,8 +157,9 @@ stdenv.mkDerivation { # Procps is needed for one of the test cases nativeBuildInputs = [ file python2 ] - ++ stdenv.lib.optionals stdenv.isLinux [ procps ]; - buildInputs = [ llvmPackages_37.llvm ncurses ]; + ++ optionals stdenv.isLinux [ procps ]; + buildInputs = [ ncurses ] + ++ optional (!forceBundledLLVM) llvmPackages_37.llvm; enableParallelBuilding = true; diff --git a/pkgs/development/compilers/rustc/head.nix b/pkgs/development/compilers/rustc/head.nix index 016d09b3cf1..94fdb0b3424 100644 --- a/pkgs/development/compilers/rustc/head.nix +++ b/pkgs/development/compilers/rustc/head.nix @@ -2,10 +2,11 @@ { stdenv, callPackage }: callPackage ./generic.nix { - shortVersion = "2015-09-23"; + shortVersion = "2015-10-17"; isRelease = false; - srcRev = "b2f379cdc23aec5c5d0d62acfcc5a4a18ebf0e30"; - srcSha = "1z710f5vv9pbis1q96dc6kqvi0j7xgg95r5f5c3czbvndrxjwm03"; + forceBundledLLVM = true; + srcRev = "20a6938c0"; + srcSha = "18dalmwmyw2csnm72qwkkh37ixxbrn2i5lmwp2q0x9plh5qj5627"; /* Rust is bootstrapped from an earlier built version. We need to fetch these earlier versions, which vary per platform. From ef8b078ce77aede0014b6c7fe3ee9831274c1185 Mon Sep 17 00:00:00 2001 From: "Ricardo M. Correia" Date: Sun, 18 Oct 2015 03:36:15 +0200 Subject: [PATCH 079/196] rustfmt: 2015-09-23 -> 2015-10-17 Also convert from fetchgit to fetchFromGitHub. --- pkgs/development/tools/rust/rustfmt/default.nix | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/pkgs/development/tools/rust/rustfmt/default.nix b/pkgs/development/tools/rust/rustfmt/default.nix index 95818a323d6..c72668540b3 100644 --- a/pkgs/development/tools/rust/rustfmt/default.nix +++ b/pkgs/development/tools/rust/rustfmt/default.nix @@ -1,18 +1,17 @@ -{ stdenv, fetchgit, rustUnstable, makeWrapper, llvmPackages_37 }: +{ stdenv, fetchFromGitHub, rustUnstable, makeWrapper }: with rustUnstable; buildRustPackage rec { - name = "rustfmt-git-2015-09-23"; - src = fetchgit { - url = https://github.com/nrc/rustfmt; - rev = "c14cfca0e3de3dfa5fd91d39a85c5b452e7756e3"; - sha256 = "0q72mfj2ph2n4cd0cs4p2mpyr2ixd6ss607kjlgfinjv6klk1i3b"; + name = "rustfmt-git-2015-10-17"; + src = fetchFromGitHub { + owner = "nrc"; + repo = "rustfmt"; + rev = "36c9a3acf95a036f3f9fa72ff3fe175fba55e20b"; + sha256 = "1vjnfq3al73qljalr2rvymabcksx6y690gg5r9kgz1lnizlb7yrz"; }; - buildInputs = [ llvmPackages_37.llvm ]; - - depsSha256 = "13i9qaia1wn18lgfl69rrxw7b24bq1bpqhdck2jzxpv3wi2xshlw"; + depsSha256 = "0vzpq58vfswdwdm2bk44ynk43cmwdxppcbkvpjyfa6sjs2s5x8n9"; meta = with stdenv.lib; { description = "A tool for formatting Rust code according to style guidelines"; From ad0d3bd1107fb9b1fd3a59463ed8ca48dc29a792 Mon Sep 17 00:00:00 2001 From: "Ricardo M. Correia" Date: Sun, 18 Oct 2015 03:45:19 +0200 Subject: [PATCH 080/196] rustRegistry: 2015-09-23 -> 2015-10-18 --- pkgs/top-level/rust-packages.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/top-level/rust-packages.nix b/pkgs/top-level/rust-packages.nix index e5d76276301..ccbaeeaf8ee 100644 --- a/pkgs/top-level/rust-packages.nix +++ b/pkgs/top-level/rust-packages.nix @@ -7,15 +7,15 @@ { runCommand, fetchFromGitHub, git }: let - version = "2015-09-23"; - rev = "14906530682acd6fa4bac6a8578f6fd1c1090081"; + version = "2015-10-18"; + rev = "f2f3ea941d46aa06422e8ac4543ff7db900fbbe4"; src = fetchFromGitHub { inherit rev; owner = "rust-lang"; repo = "crates.io-index"; - sha256 = "1ycrf8qb776lsgcw9rfz5r63rih2m35n4p4h76hq1dxgvp1f2awh"; + sha256 = "1a4qy5n88hsnjzn52zsi7yq08h2j5qcgaas260wfppy371pv2jlz"; }; in From 888a7358f51dc6aec770250f8e10acc95eddf07f Mon Sep 17 00:00:00 2001 From: Anders Papitto Date: Sat, 17 Oct 2015 21:13:37 -0700 Subject: [PATCH 081/196] i3: 4.10.4 -> 4.11 --- pkgs/applications/window-managers/i3/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/window-managers/i3/default.nix b/pkgs/applications/window-managers/i3/default.nix index 9ac17566b94..8cd7932a8d1 100644 --- a/pkgs/applications/window-managers/i3/default.nix +++ b/pkgs/applications/window-managers/i3/default.nix @@ -5,11 +5,11 @@ stdenv.mkDerivation rec { name = "i3-${version}"; - version = "4.10.4"; + version = "4.11"; src = fetchurl { url = "http://i3wm.org/downloads/${name}.tar.bz2"; - sha256 = "0pk580jkv7cxmsrr276q25fgdbrkzldiiz4ny61szzmqqnjsfkyx"; + sha256 = "0bwqklb6irgjmgvj7mlyz4brr4lggfm3zqmvclvxcbyrzc31xkkq"; }; buildInputs = [ From 11af8857cdf0c62c0b96d39d9d8ee683afed10f5 Mon Sep 17 00:00:00 2001 From: taku0 Date: Sun, 18 Oct 2015 19:02:23 +0900 Subject: [PATCH 082/196] android-sdk: 24.3.4 -> 24.4, android-ndk: r10c -> r10e --- pkgs/development/mobile/androidenv/addon.xml | 22 +++++++++---------- pkgs/development/mobile/androidenv/addons.nix | 4 ++-- .../mobile/androidenv/androidndk.nix | 6 ++--- .../mobile/androidenv/androidsdk.nix | 6 ++--- .../development/mobile/androidenv/default.nix | 8 +++++++ .../mobile/androidenv/support-repository.nix | 4 ++-- .../development/mobile/androidenv/support.nix | 4 ++-- 7 files changed, 31 insertions(+), 23 deletions(-) diff --git a/pkgs/development/mobile/androidenv/addon.xml b/pkgs/development/mobile/androidenv/addon.xml index 9892b386d00..e5f679b54ba 100644 --- a/pkgs/development/mobile/androidenv/addon.xml +++ b/pkgs/development/mobile/androidenv/addon.xml @@ -1019,11 +1019,11 @@ August 15, 2011 - + 23 - 0 - 1 + 1 + 0 Android android @@ -1032,18 +1032,18 @@ August 15, 2011 compatibility - 9553739 - fbe529716943053d0ce0d7f058d79f1a848cdff9 - support_r23.0.1.zip + 10217600 + c43a56fcd1c2aa620f6178a0ef529623ed77b3c7 + support_r23.1.zip - + - 21 + 24 Android android @@ -1052,9 +1052,9 @@ August 15, 2011 m2repository - 142136028 - acb915c5d2c730bf98303c0cd0122bedb2954cb3 - android_m2repository_r21.zip + 149070460 + 5b6d328a572172ec51dc25c3514392760e49bb81 + android_m2repository_r24.zip diff --git a/pkgs/development/mobile/androidenv/addons.nix b/pkgs/development/mobile/androidenv/addons.nix index d397cd766fb..8ed0e260459 100644 --- a/pkgs/development/mobile/androidenv/addons.nix +++ b/pkgs/development/mobile/androidenv/addons.nix @@ -259,8 +259,8 @@ in android_support_extra = buildGoogleApis { name = "android_support_extra"; src = fetchurl { - url = https://dl.google.com/android/repository/support_r23.0.1.zip; - sha1 = "fbe529716943053d0ce0d7f058d79f1a848cdff9"; + url = https://dl.google.com/android/repository/support_r23.1.zip; + sha1 = "c43a56fcd1c2aa620f6178a0ef529623ed77b3c7"; }; meta = { description = "Android Support Library"; diff --git a/pkgs/development/mobile/androidenv/androidndk.nix b/pkgs/development/mobile/androidenv/androidndk.nix index cc1c2810524..595c98f76aa 100644 --- a/pkgs/development/mobile/androidenv/androidndk.nix +++ b/pkgs/development/mobile/androidenv/androidndk.nix @@ -6,16 +6,16 @@ assert stdenv.isLinux; stdenv.mkDerivation rec { - name = "android-ndk-r10c"; + name = "android-ndk-r10e"; src = if stdenv.system == "i686-linux" then fetchurl { url = "http://dl.google.com/android/ndk/${name}-linux-x86.bin"; - sha256 = "0gyq68zrpzj3gkh81czs6r0jmikg5rwzh1bqg4rk16g2nxm4lll3"; + sha256 = "1xbxra5v3bm6cmxyx8yyya5r93jh5m064aibgwd396xdm8jpvc4j"; } else if stdenv.system == "x86_64-linux" then fetchurl { url = "http://dl.google.com/android/ndk/${name}-linux-x86_64.bin"; - sha256 = "126rqzkmf8xz1hqdziwx81yln17hpivs2j45rxhzdr45iw9b758c"; + sha256 = "0nhxixd0mq4ib176ya0hclnlbmhm8f2lab6i611kiwbzyqinfb8h"; } else throw "platform ${stdenv.system} not supported!"; diff --git a/pkgs/development/mobile/androidenv/androidsdk.nix b/pkgs/development/mobile/androidenv/androidsdk.nix index 055c307f2cc..02c1546ace7 100644 --- a/pkgs/development/mobile/androidenv/androidsdk.nix +++ b/pkgs/development/mobile/androidenv/androidsdk.nix @@ -9,16 +9,16 @@ stdenv.mkDerivation rec { name = "android-sdk-${version}"; - version = "24.3.4"; + version = "24.4"; src = if (stdenv.system == "i686-linux" || stdenv.system == "x86_64-linux") then fetchurl { url = "http://dl.google.com/android/android-sdk_r${version}-linux.tgz"; - sha1 = "fb293d7bca42e05580be56b1adc22055d46603dd"; + sha1 = "eec87cdb9778718e4073b4ca326a46cdd084f901"; } else if stdenv.system == "x86_64-darwin" then fetchurl { url = "http://dl.google.com/android/android-sdk_r${version}-macosx.zip"; - sha1 = "128f10fba668ea490cc94a08e505a48a608879b9"; + sha1 = "a9b6f025a9691aef430b19b52e01844dbbcbf6b4"; } else throw "platform not ${stdenv.system} supported!"; diff --git a/pkgs/development/mobile/androidenv/default.nix b/pkgs/development/mobile/androidenv/default.nix index 86d82abbea4..d975b5fa839 100644 --- a/pkgs/development/mobile/androidenv/default.nix +++ b/pkgs/development/mobile/androidenv/default.nix @@ -164,6 +164,14 @@ rec { useGoogleAPIs = true; }; + androidsdk_6_0_extras = androidsdk { + platformVersions = [ "23" ]; + abiVersions = [ "armeabi-v7a" "x86" "x86_64"]; + useGoogleAPIs = true; + useExtraSupportLibs = true; + useGooglePlayServices = true; + }; + androidndk = import ./androidndk.nix { inherit (pkgs) stdenv fetchurl zlib ncurses p7zip lib makeWrapper; inherit (pkgs) coreutils file findutils gawk gnugrep gnused jdk which; diff --git a/pkgs/development/mobile/androidenv/support-repository.nix b/pkgs/development/mobile/androidenv/support-repository.nix index 436936f7c42..0e60768a4cc 100644 --- a/pkgs/development/mobile/androidenv/support-repository.nix +++ b/pkgs/development/mobile/androidenv/support-repository.nix @@ -1,11 +1,11 @@ {stdenv, fetchurl, unzip}: stdenv.mkDerivation rec { - version = "21"; + version = "24"; name = "android-support-repository-r${version}"; src = fetchurl { url = "http://dl.google.com/android/repository/android_m2repository_r${version}.zip"; - sha1 = "acb915c5d2c730bf98303c0cd0122bedb2954cb3"; + sha1 = "5b6d328a572172ec51dc25c3514392760e49bb81"; }; buildCommand = '' diff --git a/pkgs/development/mobile/androidenv/support.nix b/pkgs/development/mobile/androidenv/support.nix index 17125c60dd2..28587f494fb 100644 --- a/pkgs/development/mobile/androidenv/support.nix +++ b/pkgs/development/mobile/androidenv/support.nix @@ -1,11 +1,11 @@ {stdenv, fetchurl, unzip}: stdenv.mkDerivation rec { - version = "23.0.1"; + version = "23.1"; name = "android-support-r${version}"; src = fetchurl { url = "https://dl.google.com/android/repository/support_r${version}.zip"; - sha1 = "fbe529716943053d0ce0d7f058d79f1a848cdff9"; + sha1 = "c43a56fcd1c2aa620f6178a0ef529623ed77b3c7"; }; buildCommand = '' From 5815b9517620f9eefb8ad53f07be8712e7fd411b Mon Sep 17 00:00:00 2001 From: Robin Gloster Date: Sun, 18 Oct 2015 10:21:18 +0000 Subject: [PATCH 083/196] flow: 0.14.0 -> 0.17.0 --- pkgs/development/tools/analysis/flow/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/tools/analysis/flow/default.nix b/pkgs/development/tools/analysis/flow/default.nix index b0e021f54cc..83ef68ffa54 100644 --- a/pkgs/development/tools/analysis/flow/default.nix +++ b/pkgs/development/tools/analysis/flow/default.nix @@ -1,13 +1,13 @@ { stdenv, fetchFromGitHub, ocaml, libelf }: stdenv.mkDerivation rec { - version = "0.14.0"; + version = "0.17.0"; name = "flow-${version}"; src = fetchFromGitHub { owner = "facebook"; repo = "flow"; rev = "v${version}"; - sha256 = "02adbn2h5bfc4drcpbalq7acx573a657ik3008fr8s9qyqdp2nl6"; + sha256 = "1hc4gspxp43svr36l4fn4fpd7d9myg8hf5hph5y1lq9ihqaiymsp"; }; installPhase = '' @@ -22,6 +22,6 @@ stdenv.mkDerivation rec { description = "A static type checker for JavaScript"; license = stdenv.lib.licenses.bsd3; platforms = stdenv.lib.platforms.unix; - maintainers = with maintainers; [ puffnfresh ]; + maintainers = with maintainers; [ puffnfresh globin ]; }; } From 5a34219430b1019a9532dc62208cc225740a5603 Mon Sep 17 00:00:00 2001 From: Robin Gloster Date: Sat, 10 Oct 2015 11:22:53 +0000 Subject: [PATCH 084/196] poezio: fix plugin dependencies --- pkgs/top-level/python-packages.nix | 28 +++++++++++++++++++++++----- 1 file changed, 23 insertions(+), 5 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 851aaddebd2..b8c942e338a 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -18474,12 +18474,11 @@ let namePrefix = ""; disabled = (!isPy34); - propagatedBuildInputs = with self ; [ aiodns slixmpp ]; + propagatedBuildInputs = with self ; [ aiodns slixmpp pyinotify potr ]; - patches = - let patch_base = ../development/python-modules/poezio ; - in [ "${patch_base}/make_default_config_writable.patch" - ]; + patches = + let patch_base = ../development/python-modules/poezio; + in [ "${patch_base}/make_default_config_writable.patch" ]; src = pkgs.fetchurl { url = "http://dev.louiz.org/attachments/download/91/${name}.tar.xz"; @@ -18494,6 +18493,25 @@ let }; }; + potr = buildPythonPackage rec { + version = "1.0.1"; + name = "potr-${version}"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/p/python-potr/python-${name}.zip"; + sha256 = "1b3vjbv8hvynwj6amw3rg5zj8bagynbj0ipy09xwksf1mb0kz8m8"; + }; + + propagatedBuildInputs = with self ; [ pycrypto ]; + + meta = { + description = "A pure Python OTR implementation"; + homepage = "http://python-otr.pentabarf.de/"; + license = licenses.lgpl3Plus; + maintainers = with maintainers; [ globin ]; + }; + }; + xcffib = buildPythonPackage rec { version = "0.3.2"; name = "xcffib-${version}"; From e64f9f2d1ec662a6a257a60121dd422e5aeea319 Mon Sep 17 00:00:00 2001 From: Robert Helgesson Date: Sun, 18 Oct 2015 14:31:03 +0200 Subject: [PATCH 085/196] svtplay-dl: 0.20.2015.09.13 -> 0.20.2015.10.08 --- pkgs/tools/misc/svtplay-dl/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/misc/svtplay-dl/default.nix b/pkgs/tools/misc/svtplay-dl/default.nix index e29556faad4..3c73272e4fb 100644 --- a/pkgs/tools/misc/svtplay-dl/default.nix +++ b/pkgs/tools/misc/svtplay-dl/default.nix @@ -3,13 +3,13 @@ stdenv.mkDerivation rec { name = "svtplay-dl-${version}"; - version = "0.20.2015.09.13"; + version = "0.20.2015.10.08"; src = fetchFromGitHub { owner = "spaam"; repo = "svtplay-dl"; rev = version; - sha256 = "07wcjwc6kk0z8s7i3sc2n7zbbkbc2wwiclf3n0h5yk54marixql0"; + sha256 = "0mf5w4js2q4ahhkv3k6vs88haf02krhyl217cy05nw7wgxlrr5fx"; }; pythonPaths = [ pycrypto requests2 ]; From ab605f0a990a1833af732567e46abc7f7d14312b Mon Sep 17 00:00:00 2001 From: Robert Helgesson Date: Sun, 18 Oct 2015 14:34:34 +0200 Subject: [PATCH 086/196] eclipse-plugin-checkstyle: 6.11.0 -> 6.11.1 --- pkgs/applications/editors/eclipse/plugins.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/editors/eclipse/plugins.nix b/pkgs/applications/editors/eclipse/plugins.nix index 493858f93c8..6b63efbb8fc 100644 --- a/pkgs/applications/editors/eclipse/plugins.nix +++ b/pkgs/applications/editors/eclipse/plugins.nix @@ -171,12 +171,12 @@ rec { checkstyle = buildEclipseUpdateSite rec { name = "checkstyle-${version}"; - version = "6.11.0.201510052139"; + version = "6.11.1.201510102004"; src = fetchzip { stripRoot = false; - url = "mirror://sourceforge/project/eclipse-cs/Eclipse%20Checkstyle%20Plug-in/6.11.0/net.sf.eclipsecs-updatesite_${version}-bin.zip"; - sha256 = "166nasgv3zsys7rlafvfnldfb6hiwiq3vil3papd59prwvky75fz"; + url = "mirror://sourceforge/project/eclipse-cs/Eclipse%20Checkstyle%20Plug-in/6.11.1/net.sf.eclipsecs-updatesite_${version}-bin.zip"; + sha256 = "0l9nfx7a3qdx1pvjgc6ck4rxh7yrvqsskr190yrxxwmpnyj9cjs4"; }; meta = with stdenv.lib; { From 95df56a0219f16c0a264657f9cad908ecd145575 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Sun, 18 Oct 2015 17:21:22 +0200 Subject: [PATCH 087/196] electrum: 2.4.3 -> 2.5.1 --- pkgs/applications/misc/electrum/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/misc/electrum/default.nix b/pkgs/applications/misc/electrum/default.nix index ed37b0d96bc..4ac4c93471e 100644 --- a/pkgs/applications/misc/electrum/default.nix +++ b/pkgs/applications/misc/electrum/default.nix @@ -2,11 +2,11 @@ buildPythonPackage rec { name = "electrum-${version}"; - version = "2.4.3"; + version = "2.5.1"; src = fetchurl { url = "https://download.electrum.org/Electrum-${version}.tar.gz"; - sha256 = "00z02rdlhasryccjsw1j7563xl76i6x40ah1lnn9asad1gp6520f"; + sha256 = "0wjqf2ifw1ww6iyj0h0i63zjmy0yhmzl91sgc5hc4j2x5bd2c3am"; }; propagatedBuildInputs = with pythonPackages; [ From 3a6439f8d51e145cc37a6bd8fe3458be588dafe9 Mon Sep 17 00:00:00 2001 From: Robert Helgesson Date: Sun, 18 Oct 2015 18:19:55 +0200 Subject: [PATCH 088/196] eclipse-plugin-testng: 6.9.7 -> 6.9.8 --- pkgs/applications/editors/eclipse/plugins.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/editors/eclipse/plugins.nix b/pkgs/applications/editors/eclipse/plugins.nix index 493858f93c8..d437c222fa8 100644 --- a/pkgs/applications/editors/eclipse/plugins.nix +++ b/pkgs/applications/editors/eclipse/plugins.nix @@ -335,16 +335,16 @@ rec { testng = buildEclipsePlugin rec { name = "testng-${version}"; - version = "6.9.7.201510070420"; + version = "6.9.8.201510130443"; srcFeature = fetchurl { url = "http://beust.com/eclipse/features/org.testng.eclipse_${version}.jar"; - sha256 = "185m6zcz1havhl94qgwms9szcs7vhrrq8rckbrb1vz02208yyhpn"; + sha256 = "0g0dva1zpqk0rz0vgr025g2cfc47snr857fsqcrssmp9qmy8x0i0"; }; srcPlugin = fetchurl { url = "http://beust.com/eclipse/plugins/org.testng.eclipse_${version}.jar"; - sha256 = "1rw678cd9nm623dvaddncadaclif62zcb15jl7ryzcmck2y380l5"; + sha256 = "16mnvqkakixqp3bcnyx6x2iwkhnv3k4q561c97kssz98xsrr8f54"; }; meta = with stdenv.lib; { From 401b766299e96092043ac36b316af26e748a8a54 Mon Sep 17 00:00:00 2001 From: Igor Sharonov Date: Sun, 18 Oct 2015 16:47:04 +0300 Subject: [PATCH 089/196] fuse-7z-ng: init at git-2014-06-08 --- pkgs/tools/filesystems/fuse-7z-ng/default.nix | 34 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 36 insertions(+) create mode 100644 pkgs/tools/filesystems/fuse-7z-ng/default.nix diff --git a/pkgs/tools/filesystems/fuse-7z-ng/default.nix b/pkgs/tools/filesystems/fuse-7z-ng/default.nix new file mode 100644 index 00000000000..4e8df9cacbe --- /dev/null +++ b/pkgs/tools/filesystems/fuse-7z-ng/default.nix @@ -0,0 +1,34 @@ +{ stdenv, fetchFromGitHub, fuse, p7zip, autoconf, automake, pkgconfig, makeWrapper }: + +stdenv.mkDerivation rec { + name = "${pname}-${version}"; + pname = "fuse-7z-ng"; + version = "git-2014-06-08"; + + src = fetchFromGitHub { + owner = "kedazo"; + repo = pname; + rev = "eb5efb1f304c2b7bc2e0389ba06c9bf2ac4b932c"; + sha256 = "17v1gcmg5q661b047zxjar735i4d3508dimw1x3z1pk4d1zjhp3x"; + }; + + buildInputs = [ fuse autoconf automake pkgconfig makeWrapper ]; + + preConfigure = "./autogen.sh"; + + libs = stdenv.lib.makeLibraryPath [ p7zip ]; # 'cause 7z.so is loaded manually + postInstall = '' + wrapProgram $out/bin/${pname} --suffix LD_LIBRARY_PATH : "${libs}/p7zip" + + mkdir -p $out/share/doc/${pname} + cp TODO README NEWS COPYING ChangeLog AUTHORS $out/share/doc/${pname}/ + ''; + + meta = with stdenv.lib; { + inherit version; + inherit (src.homepage); + description = "A FUSE-based filesystem that uses the p7zip library"; + platforms = platforms.linux; + license = licenses.gpl3Plus; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 95a17101120..da538d8d3cd 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1538,6 +1538,8 @@ let fuseiso = callPackage ../tools/filesystems/fuseiso { }; + fuse-7z-ng = callPackage ../tools/filesystems/fuse-7z-ng { }; + fuse_zip = callPackage ../tools/filesystems/fuse-zip { }; exfat = callPackage ../tools/filesystems/exfat { }; From 7256b0a0ceed006840a495ca6d64fef48f885d8f Mon Sep 17 00:00:00 2001 From: "William A. Kennington III" Date: Sun, 18 Oct 2015 09:52:58 -0700 Subject: [PATCH 090/196] btrfsProgs: 4.2.1 -> 4.2.2 --- pkgs/tools/filesystems/btrfsprogs/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/filesystems/btrfsprogs/default.nix b/pkgs/tools/filesystems/btrfsprogs/default.nix index d0fac3c93c9..4c328d70fd6 100644 --- a/pkgs/tools/filesystems/btrfsprogs/default.nix +++ b/pkgs/tools/filesystems/btrfsprogs/default.nix @@ -2,14 +2,14 @@ , asciidoc, xmlto, docbook_xml_dtd_45, docbook_xsl, libxslt }: -let version = "4.2.1"; in +let version = "4.2.2"; in stdenv.mkDerivation rec { name = "btrfs-progs-${version}"; src = fetchurl { url = "mirror://kernel/linux/kernel/people/kdave/btrfs-progs/btrfs-progs-v${version}.tar.xz"; - sha256 = "1nzyyfj84q98n7lf798k6695pbsd02hg2ffd1kgn8g3qcbwqhwar"; + sha256 = "05hkj8fpgc2c9068f167hp8k8h28zadlh7krcz0qi8m3nbmy91sx"; }; buildInputs = [ From 8521bc097ca1a0b5f290a0c50be4aefcda41ea1a Mon Sep 17 00:00:00 2001 From: Robin Gloster Date: Sun, 18 Oct 2015 17:42:10 +0000 Subject: [PATCH 091/196] apacheHttpd: 2.4.16 -> 2.4.17 --- pkgs/servers/http/apache-httpd/2.4.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/http/apache-httpd/2.4.nix b/pkgs/servers/http/apache-httpd/2.4.nix index 29f8a9621c9..0b1ed992439 100644 --- a/pkgs/servers/http/apache-httpd/2.4.nix +++ b/pkgs/servers/http/apache-httpd/2.4.nix @@ -14,12 +14,12 @@ assert sslSupport -> aprutil.sslSupport && openssl != null; assert ldapSupport -> aprutil.ldapSupport && openldap != null; stdenv.mkDerivation rec { - version = "2.4.16"; + version = "2.4.17"; name = "apache-httpd-${version}"; src = fetchurl { url = "mirror://apache/httpd/httpd-${version}.tar.bz2"; - sha256 = "0hrpy6gjwma0kba7p7m61vwh82qcnkf08123lrwpg257m93hnrmc"; + sha256 = "165p5qgwyk1dwjypgcx5vb47xadiszs3dw28n2axplw1xifh67ik"; }; buildInputs = [perl] ++ From 215e7a6f006a86040bbf77dca2d355f8e1e4c510 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 16 Oct 2015 16:19:27 +0200 Subject: [PATCH 092/196] hackage-packages.nix: update Haskell package set This update was generated by hackage2nix v20150922-22-g7ae1e4c using the following inputs: - Nixpkgs: https://github.com/NixOS/nixpkgs/commit/ecd4f778f13aaf6c0cf738c523c1e426e72a59f7 - Hackage: https://github.com/commercialhaskell/all-cabal-hashes/commit/873ad146ce6200f5b90739a46889a0e13d2678f8 - LTS Haskell: https://github.com/fpco/lts-haskell/commit/0c2d9478c40ebf63cd6ae0f19a84ffaeed4fbe1c - Stackage Nightly: https://github.com/fpco/stackage-nightly/commit/3f21ac8e0f24870dfadf10d96e32b2ed943efe2e --- .../haskell-modules/configuration-lts-0.0.nix | 5 + .../haskell-modules/configuration-lts-0.1.nix | 5 + .../haskell-modules/configuration-lts-0.2.nix | 5 + .../haskell-modules/configuration-lts-0.3.nix | 5 + .../haskell-modules/configuration-lts-0.4.nix | 5 + .../haskell-modules/configuration-lts-0.5.nix | 5 + .../haskell-modules/configuration-lts-0.6.nix | 5 + .../haskell-modules/configuration-lts-0.7.nix | 5 + .../haskell-modules/configuration-lts-1.0.nix | 5 + .../haskell-modules/configuration-lts-1.1.nix | 5 + .../configuration-lts-1.10.nix | 6 + .../configuration-lts-1.11.nix | 7 + .../configuration-lts-1.12.nix | 7 + .../configuration-lts-1.13.nix | 8 + .../configuration-lts-1.14.nix | 8 + .../configuration-lts-1.15.nix | 8 + .../haskell-modules/configuration-lts-1.2.nix | 5 + .../haskell-modules/configuration-lts-1.4.nix | 6 + .../haskell-modules/configuration-lts-1.5.nix | 6 + .../haskell-modules/configuration-lts-1.7.nix | 6 + .../haskell-modules/configuration-lts-1.8.nix | 6 + .../haskell-modules/configuration-lts-1.9.nix | 6 + .../haskell-modules/configuration-lts-2.0.nix | 12 + .../haskell-modules/configuration-lts-2.1.nix | 12 + .../configuration-lts-2.10.nix | 12 + .../configuration-lts-2.11.nix | 13 + .../configuration-lts-2.12.nix | 13 + .../configuration-lts-2.13.nix | 13 + .../configuration-lts-2.14.nix | 13 + .../configuration-lts-2.15.nix | 13 + .../configuration-lts-2.16.nix | 13 + .../configuration-lts-2.17.nix | 14 + .../configuration-lts-2.18.nix | 14 + .../configuration-lts-2.19.nix | 14 + .../haskell-modules/configuration-lts-2.2.nix | 12 + .../configuration-lts-2.20.nix | 14 + .../configuration-lts-2.21.nix | 15 + .../configuration-lts-2.22.nix | 15 + .../haskell-modules/configuration-lts-2.3.nix | 12 + .../haskell-modules/configuration-lts-2.4.nix | 12 + .../haskell-modules/configuration-lts-2.5.nix | 12 + .../haskell-modules/configuration-lts-2.6.nix | 12 + .../haskell-modules/configuration-lts-2.7.nix | 12 + .../haskell-modules/configuration-lts-2.8.nix | 12 + .../haskell-modules/configuration-lts-2.9.nix | 12 + .../haskell-modules/configuration-lts-3.0.nix | 22 + .../haskell-modules/configuration-lts-3.1.nix | 22 + .../configuration-lts-3.10.nix | 7634 +++++++++++++++++ .../haskell-modules/configuration-lts-3.2.nix | 24 + .../haskell-modules/configuration-lts-3.3.nix | 24 + .../haskell-modules/configuration-lts-3.4.nix | 24 + .../haskell-modules/configuration-lts-3.5.nix | 24 + .../haskell-modules/configuration-lts-3.6.nix | 26 + .../haskell-modules/configuration-lts-3.7.nix | 28 + .../haskell-modules/configuration-lts-3.8.nix | 30 + .../haskell-modules/configuration-lts-3.9.nix | 32 + .../haskell-modules/hackage-packages.nix | 1249 ++- 57 files changed, 9264 insertions(+), 300 deletions(-) create mode 100644 pkgs/development/haskell-modules/configuration-lts-3.10.nix diff --git a/pkgs/development/haskell-modules/configuration-lts-0.0.nix b/pkgs/development/haskell-modules/configuration-lts-0.0.nix index 04195f0a435..168b68affb4 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.0.nix @@ -531,6 +531,7 @@ self: super: { "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"; @@ -1640,6 +1641,7 @@ self: super: { "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; "bindings-yices" = dontDistribute super."bindings-yices"; + "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; "binembed-example" = dontDistribute super."binembed-example"; "bio" = dontDistribute super."bio"; @@ -5506,6 +5508,7 @@ self: super: { "msgpack-aeson" = dontDistribute super."msgpack-aeson"; "msgpack-idl" = dontDistribute super."msgpack-idl"; "msgpack-rpc" = dontDistribute super."msgpack-rpc"; + "msh" = dontDistribute super."msh"; "msi-kb-backlit" = dontDistribute super."msi-kb-backlit"; "mstate" = dontDistribute super."mstate"; "msu" = dontDistribute super."msu"; @@ -5963,6 +5966,7 @@ self: super: { "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; "pathtype" = dontDistribute super."pathtype"; + "pathwalk" = dontDistribute super."pathwalk"; "patronscraper" = dontDistribute super."patronscraper"; "pattern-arrows" = dontDistribute super."pattern-arrows"; "patterns" = dontDistribute super."patterns"; @@ -6515,6 +6519,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.1.nix b/pkgs/development/haskell-modules/configuration-lts-0.1.nix index da42aa24f08..7c4a66ea63b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.1.nix @@ -531,6 +531,7 @@ self: super: { "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"; @@ -1640,6 +1641,7 @@ self: super: { "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; "bindings-yices" = dontDistribute super."bindings-yices"; + "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; "binembed-example" = dontDistribute super."binembed-example"; "bio" = dontDistribute super."bio"; @@ -5505,6 +5507,7 @@ self: super: { "msgpack-aeson" = dontDistribute super."msgpack-aeson"; "msgpack-idl" = dontDistribute super."msgpack-idl"; "msgpack-rpc" = dontDistribute super."msgpack-rpc"; + "msh" = dontDistribute super."msh"; "msi-kb-backlit" = dontDistribute super."msi-kb-backlit"; "mstate" = dontDistribute super."mstate"; "msu" = dontDistribute super."msu"; @@ -5962,6 +5965,7 @@ self: super: { "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; "pathtype" = dontDistribute super."pathtype"; + "pathwalk" = dontDistribute super."pathwalk"; "patronscraper" = dontDistribute super."patronscraper"; "pattern-arrows" = dontDistribute super."pattern-arrows"; "patterns" = dontDistribute super."patterns"; @@ -6514,6 +6518,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.2.nix b/pkgs/development/haskell-modules/configuration-lts-0.2.nix index be3ff1887cf..9d55147000e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.2.nix @@ -531,6 +531,7 @@ self: super: { "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"; @@ -1640,6 +1641,7 @@ self: super: { "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; "bindings-yices" = dontDistribute super."bindings-yices"; + "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; "binembed-example" = dontDistribute super."binembed-example"; "bio" = dontDistribute super."bio"; @@ -5505,6 +5507,7 @@ self: super: { "msgpack-aeson" = dontDistribute super."msgpack-aeson"; "msgpack-idl" = dontDistribute super."msgpack-idl"; "msgpack-rpc" = dontDistribute super."msgpack-rpc"; + "msh" = dontDistribute super."msh"; "msi-kb-backlit" = dontDistribute super."msi-kb-backlit"; "mstate" = dontDistribute super."mstate"; "msu" = dontDistribute super."msu"; @@ -5962,6 +5965,7 @@ self: super: { "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; "pathtype" = dontDistribute super."pathtype"; + "pathwalk" = dontDistribute super."pathwalk"; "patronscraper" = dontDistribute super."patronscraper"; "pattern-arrows" = dontDistribute super."pattern-arrows"; "patterns" = dontDistribute super."patterns"; @@ -6514,6 +6518,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.3.nix b/pkgs/development/haskell-modules/configuration-lts-0.3.nix index 5be3c16be86..4216561cca1 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.3.nix @@ -531,6 +531,7 @@ self: super: { "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"; @@ -1640,6 +1641,7 @@ self: super: { "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; "bindings-yices" = dontDistribute super."bindings-yices"; + "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; "binembed-example" = dontDistribute super."binembed-example"; "bio" = dontDistribute super."bio"; @@ -5505,6 +5507,7 @@ self: super: { "msgpack-aeson" = dontDistribute super."msgpack-aeson"; "msgpack-idl" = dontDistribute super."msgpack-idl"; "msgpack-rpc" = dontDistribute super."msgpack-rpc"; + "msh" = dontDistribute super."msh"; "msi-kb-backlit" = dontDistribute super."msi-kb-backlit"; "mstate" = dontDistribute super."mstate"; "msu" = dontDistribute super."msu"; @@ -5962,6 +5965,7 @@ self: super: { "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; "pathtype" = dontDistribute super."pathtype"; + "pathwalk" = dontDistribute super."pathwalk"; "patronscraper" = dontDistribute super."patronscraper"; "pattern-arrows" = dontDistribute super."pattern-arrows"; "patterns" = dontDistribute super."patterns"; @@ -6514,6 +6518,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.4.nix b/pkgs/development/haskell-modules/configuration-lts-0.4.nix index ebcb6e0598a..dceb79d4edd 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.4.nix @@ -531,6 +531,7 @@ self: super: { "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"; @@ -1640,6 +1641,7 @@ self: super: { "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; "bindings-yices" = dontDistribute super."bindings-yices"; + "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; "binembed-example" = dontDistribute super."binembed-example"; "bio" = dontDistribute super."bio"; @@ -5502,6 +5504,7 @@ self: super: { "msgpack-aeson" = dontDistribute super."msgpack-aeson"; "msgpack-idl" = dontDistribute super."msgpack-idl"; "msgpack-rpc" = dontDistribute super."msgpack-rpc"; + "msh" = dontDistribute super."msh"; "msi-kb-backlit" = dontDistribute super."msi-kb-backlit"; "mstate" = dontDistribute super."mstate"; "msu" = dontDistribute super."msu"; @@ -5959,6 +5962,7 @@ self: super: { "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; "pathtype" = dontDistribute super."pathtype"; + "pathwalk" = dontDistribute super."pathwalk"; "patronscraper" = dontDistribute super."patronscraper"; "pattern-arrows" = dontDistribute super."pattern-arrows"; "patterns" = dontDistribute super."patterns"; @@ -6511,6 +6515,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.5.nix b/pkgs/development/haskell-modules/configuration-lts-0.5.nix index d485faeee95..18bbaa88355 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.5.nix @@ -531,6 +531,7 @@ self: super: { "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"; @@ -1640,6 +1641,7 @@ self: super: { "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; "bindings-yices" = dontDistribute super."bindings-yices"; + "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; "binembed-example" = dontDistribute super."binembed-example"; "bio" = dontDistribute super."bio"; @@ -5502,6 +5504,7 @@ self: super: { "msgpack-aeson" = dontDistribute super."msgpack-aeson"; "msgpack-idl" = dontDistribute super."msgpack-idl"; "msgpack-rpc" = dontDistribute super."msgpack-rpc"; + "msh" = dontDistribute super."msh"; "msi-kb-backlit" = dontDistribute super."msi-kb-backlit"; "mstate" = dontDistribute super."mstate"; "msu" = dontDistribute super."msu"; @@ -5959,6 +5962,7 @@ self: super: { "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; "pathtype" = dontDistribute super."pathtype"; + "pathwalk" = dontDistribute super."pathwalk"; "patronscraper" = dontDistribute super."patronscraper"; "pattern-arrows" = dontDistribute super."pattern-arrows"; "patterns" = dontDistribute super."patterns"; @@ -6511,6 +6515,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.6.nix b/pkgs/development/haskell-modules/configuration-lts-0.6.nix index 0ba1ec89862..4f6e916ed23 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.6.nix @@ -531,6 +531,7 @@ self: super: { "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"; @@ -1637,6 +1638,7 @@ self: super: { "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; "bindings-yices" = dontDistribute super."bindings-yices"; + "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; "binembed-example" = dontDistribute super."binembed-example"; "bio" = dontDistribute super."bio"; @@ -5498,6 +5500,7 @@ self: super: { "msgpack-aeson" = dontDistribute super."msgpack-aeson"; "msgpack-idl" = dontDistribute super."msgpack-idl"; "msgpack-rpc" = dontDistribute super."msgpack-rpc"; + "msh" = dontDistribute super."msh"; "msi-kb-backlit" = dontDistribute super."msi-kb-backlit"; "mstate" = dontDistribute super."mstate"; "msu" = dontDistribute super."msu"; @@ -5954,6 +5957,7 @@ self: super: { "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; "pathtype" = dontDistribute super."pathtype"; + "pathwalk" = dontDistribute super."pathwalk"; "patronscraper" = dontDistribute super."patronscraper"; "pattern-arrows" = dontDistribute super."pattern-arrows"; "patterns" = dontDistribute super."patterns"; @@ -6506,6 +6510,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.7.nix b/pkgs/development/haskell-modules/configuration-lts-0.7.nix index 90c449bd6e7..11462a24978 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.7.nix @@ -531,6 +531,7 @@ self: super: { "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"; @@ -1637,6 +1638,7 @@ self: super: { "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; "bindings-yices" = dontDistribute super."bindings-yices"; + "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; "binembed-example" = dontDistribute super."binembed-example"; "bio" = dontDistribute super."bio"; @@ -5498,6 +5500,7 @@ self: super: { "msgpack-aeson" = dontDistribute super."msgpack-aeson"; "msgpack-idl" = dontDistribute super."msgpack-idl"; "msgpack-rpc" = dontDistribute super."msgpack-rpc"; + "msh" = dontDistribute super."msh"; "msi-kb-backlit" = dontDistribute super."msi-kb-backlit"; "mstate" = dontDistribute super."mstate"; "msu" = dontDistribute super."msu"; @@ -5954,6 +5957,7 @@ self: super: { "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; "pathtype" = dontDistribute super."pathtype"; + "pathwalk" = dontDistribute super."pathwalk"; "patronscraper" = dontDistribute super."patronscraper"; "pattern-arrows" = dontDistribute super."pattern-arrows"; "patterns" = dontDistribute super."patterns"; @@ -6506,6 +6510,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.0.nix b/pkgs/development/haskell-modules/configuration-lts-1.0.nix index fc79794edd3..3d3f8a986a5 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.0.nix @@ -529,6 +529,7 @@ self: super: { "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"; @@ -1632,6 +1633,7 @@ self: super: { "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; "bindings-yices" = dontDistribute super."bindings-yices"; + "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; "binembed-example" = dontDistribute super."binembed-example"; "bio" = dontDistribute super."bio"; @@ -5486,6 +5488,7 @@ self: super: { "msgpack-aeson" = dontDistribute super."msgpack-aeson"; "msgpack-idl" = dontDistribute super."msgpack-idl"; "msgpack-rpc" = dontDistribute super."msgpack-rpc"; + "msh" = dontDistribute super."msh"; "msi-kb-backlit" = dontDistribute super."msi-kb-backlit"; "mstate" = dontDistribute super."mstate"; "msu" = dontDistribute super."msu"; @@ -5941,6 +5944,7 @@ self: super: { "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; "pathtype" = dontDistribute super."pathtype"; + "pathwalk" = dontDistribute super."pathwalk"; "patronscraper" = dontDistribute super."patronscraper"; "pattern-arrows" = dontDistribute super."pattern-arrows"; "patterns" = dontDistribute super."patterns"; @@ -6492,6 +6496,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.1.nix b/pkgs/development/haskell-modules/configuration-lts-1.1.nix index d097006e4df..58b390203f1 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.1.nix @@ -529,6 +529,7 @@ self: super: { "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"; @@ -1631,6 +1632,7 @@ self: super: { "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; "bindings-yices" = dontDistribute super."bindings-yices"; + "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; "binembed-example" = dontDistribute super."binembed-example"; "bio" = dontDistribute super."bio"; @@ -5473,6 +5475,7 @@ self: super: { "msgpack-aeson" = dontDistribute super."msgpack-aeson"; "msgpack-idl" = dontDistribute super."msgpack-idl"; "msgpack-rpc" = dontDistribute super."msgpack-rpc"; + "msh" = dontDistribute super."msh"; "msi-kb-backlit" = dontDistribute super."msi-kb-backlit"; "mstate" = dontDistribute super."mstate"; "msu" = dontDistribute super."msu"; @@ -5928,6 +5931,7 @@ self: super: { "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; "pathtype" = dontDistribute super."pathtype"; + "pathwalk" = dontDistribute super."pathwalk"; "patronscraper" = dontDistribute super."patronscraper"; "pattern-arrows" = dontDistribute super."pattern-arrows"; "patterns" = dontDistribute super."patterns"; @@ -6479,6 +6483,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.10.nix b/pkgs/development/haskell-modules/configuration-lts-1.10.nix index ca611fa0abf..884e249219b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.10.nix @@ -528,6 +528,7 @@ self: super: { "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"; @@ -1630,6 +1631,7 @@ self: super: { "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; "bindings-yices" = dontDistribute super."bindings-yices"; + "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; "binembed-example" = dontDistribute super."binembed-example"; "bio" = dontDistribute super."bio"; @@ -4013,6 +4015,7 @@ self: super: { "hmatrix-banded" = dontDistribute super."hmatrix-banded"; "hmatrix-csv" = dontDistribute super."hmatrix-csv"; "hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; + "hmatrix-gsl" = doDistribute super."hmatrix-gsl_0_16_0_3"; "hmatrix-gsl-stats" = dontDistribute super."hmatrix-gsl-stats"; "hmatrix-mmap" = dontDistribute super."hmatrix-mmap"; "hmatrix-nipals" = dontDistribute super."hmatrix-nipals"; @@ -5449,6 +5452,7 @@ self: super: { "msgpack-aeson" = dontDistribute super."msgpack-aeson"; "msgpack-idl" = dontDistribute super."msgpack-idl"; "msgpack-rpc" = dontDistribute super."msgpack-rpc"; + "msh" = dontDistribute super."msh"; "msi-kb-backlit" = dontDistribute super."msi-kb-backlit"; "mstate" = dontDistribute super."mstate"; "msu" = dontDistribute super."msu"; @@ -5900,6 +5904,7 @@ self: super: { "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; "pathtype" = dontDistribute super."pathtype"; + "pathwalk" = dontDistribute super."pathwalk"; "patronscraper" = dontDistribute super."patronscraper"; "pattern-arrows" = dontDistribute super."pattern-arrows"; "patterns" = dontDistribute super."patterns"; @@ -6448,6 +6453,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.11.nix b/pkgs/development/haskell-modules/configuration-lts-1.11.nix index 48b2cc61777..e04808a0d6d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.11.nix @@ -528,6 +528,7 @@ self: super: { "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"; @@ -1630,6 +1631,7 @@ self: super: { "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; "bindings-yices" = dontDistribute super."bindings-yices"; + "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; "binembed-example" = dontDistribute super."binembed-example"; "bio" = dontDistribute super."bio"; @@ -4012,6 +4014,7 @@ self: super: { "hmatrix-banded" = dontDistribute super."hmatrix-banded"; "hmatrix-csv" = dontDistribute super."hmatrix-csv"; "hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; + "hmatrix-gsl" = doDistribute super."hmatrix-gsl_0_16_0_3"; "hmatrix-gsl-stats" = dontDistribute super."hmatrix-gsl-stats"; "hmatrix-mmap" = dontDistribute super."hmatrix-mmap"; "hmatrix-nipals" = dontDistribute super."hmatrix-nipals"; @@ -5445,6 +5448,7 @@ self: super: { "msgpack-aeson" = dontDistribute super."msgpack-aeson"; "msgpack-idl" = dontDistribute super."msgpack-idl"; "msgpack-rpc" = dontDistribute super."msgpack-rpc"; + "msh" = dontDistribute super."msh"; "msi-kb-backlit" = dontDistribute super."msi-kb-backlit"; "mstate" = dontDistribute super."mstate"; "msu" = dontDistribute super."msu"; @@ -5896,6 +5900,7 @@ self: super: { "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; "pathtype" = dontDistribute super."pathtype"; + "pathwalk" = dontDistribute super."pathwalk"; "patronscraper" = dontDistribute super."patronscraper"; "pattern-arrows" = dontDistribute super."pattern-arrows"; "patterns" = dontDistribute super."patterns"; @@ -6172,6 +6177,7 @@ self: super: { "pretty-error" = dontDistribute super."pretty-error"; "pretty-hex" = dontDistribute super."pretty-hex"; "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-show" = doDistribute super."pretty-show_1_6_8_2"; "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; @@ -6443,6 +6449,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.12.nix b/pkgs/development/haskell-modules/configuration-lts-1.12.nix index 41b9faaaf3b..43e68e1cb11 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.12.nix @@ -528,6 +528,7 @@ self: super: { "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"; @@ -1630,6 +1631,7 @@ self: super: { "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; "bindings-yices" = dontDistribute super."bindings-yices"; + "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; "binembed-example" = dontDistribute super."binembed-example"; "bio" = dontDistribute super."bio"; @@ -4011,6 +4013,7 @@ self: super: { "hmatrix-banded" = dontDistribute super."hmatrix-banded"; "hmatrix-csv" = dontDistribute super."hmatrix-csv"; "hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; + "hmatrix-gsl" = doDistribute super."hmatrix-gsl_0_16_0_3"; "hmatrix-gsl-stats" = dontDistribute super."hmatrix-gsl-stats"; "hmatrix-mmap" = dontDistribute super."hmatrix-mmap"; "hmatrix-nipals" = dontDistribute super."hmatrix-nipals"; @@ -5444,6 +5447,7 @@ self: super: { "msgpack-aeson" = dontDistribute super."msgpack-aeson"; "msgpack-idl" = dontDistribute super."msgpack-idl"; "msgpack-rpc" = dontDistribute super."msgpack-rpc"; + "msh" = dontDistribute super."msh"; "msi-kb-backlit" = dontDistribute super."msi-kb-backlit"; "mstate" = dontDistribute super."mstate"; "msu" = dontDistribute super."msu"; @@ -5895,6 +5899,7 @@ self: super: { "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; "pathtype" = dontDistribute super."pathtype"; + "pathwalk" = dontDistribute super."pathwalk"; "patronscraper" = dontDistribute super."patronscraper"; "pattern-arrows" = dontDistribute super."pattern-arrows"; "patterns" = dontDistribute super."patterns"; @@ -6171,6 +6176,7 @@ self: super: { "pretty-error" = dontDistribute super."pretty-error"; "pretty-hex" = dontDistribute super."pretty-hex"; "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-show" = doDistribute super."pretty-show_1_6_8_2"; "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; @@ -6442,6 +6448,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.13.nix b/pkgs/development/haskell-modules/configuration-lts-1.13.nix index 8f92b3dcfbe..96da709234e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.13.nix @@ -528,6 +528,7 @@ self: super: { "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"; @@ -1630,6 +1631,7 @@ self: super: { "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; "bindings-yices" = dontDistribute super."bindings-yices"; + "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; "binembed-example" = dontDistribute super."binembed-example"; "bio" = dontDistribute super."bio"; @@ -4005,9 +4007,11 @@ self: super: { "hly" = dontDistribute super."hly"; "hmark" = dontDistribute super."hmark"; "hmarkup" = dontDistribute super."hmarkup"; + "hmatrix" = doDistribute super."hmatrix_0_16_1_5"; "hmatrix-banded" = dontDistribute super."hmatrix-banded"; "hmatrix-csv" = dontDistribute super."hmatrix-csv"; "hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; + "hmatrix-gsl" = doDistribute super."hmatrix-gsl_0_16_0_3"; "hmatrix-gsl-stats" = dontDistribute super."hmatrix-gsl-stats"; "hmatrix-mmap" = dontDistribute super."hmatrix-mmap"; "hmatrix-nipals" = dontDistribute super."hmatrix-nipals"; @@ -5441,6 +5445,7 @@ self: super: { "msgpack-aeson" = dontDistribute super."msgpack-aeson"; "msgpack-idl" = dontDistribute super."msgpack-idl"; "msgpack-rpc" = dontDistribute super."msgpack-rpc"; + "msh" = dontDistribute super."msh"; "msi-kb-backlit" = dontDistribute super."msi-kb-backlit"; "mstate" = dontDistribute super."mstate"; "msu" = dontDistribute super."msu"; @@ -5892,6 +5897,7 @@ self: super: { "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; "pathtype" = dontDistribute super."pathtype"; + "pathwalk" = dontDistribute super."pathwalk"; "patronscraper" = dontDistribute super."patronscraper"; "pattern-arrows" = dontDistribute super."pattern-arrows"; "patterns" = dontDistribute super."patterns"; @@ -6168,6 +6174,7 @@ self: super: { "pretty-error" = dontDistribute super."pretty-error"; "pretty-hex" = dontDistribute super."pretty-hex"; "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-show" = doDistribute super."pretty-show_1_6_8_2"; "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; @@ -6439,6 +6446,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.14.nix b/pkgs/development/haskell-modules/configuration-lts-1.14.nix index a9d4e40d1fb..1f7c7229ded 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.14.nix @@ -527,6 +527,7 @@ self: super: { "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"; @@ -1628,6 +1629,7 @@ self: super: { "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; "bindings-yices" = dontDistribute super."bindings-yices"; + "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; "binembed-example" = dontDistribute super."binembed-example"; "bio" = dontDistribute super."bio"; @@ -4001,9 +4003,11 @@ self: super: { "hly" = dontDistribute super."hly"; "hmark" = dontDistribute super."hmark"; "hmarkup" = dontDistribute super."hmarkup"; + "hmatrix" = doDistribute super."hmatrix_0_16_1_5"; "hmatrix-banded" = dontDistribute super."hmatrix-banded"; "hmatrix-csv" = dontDistribute super."hmatrix-csv"; "hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; + "hmatrix-gsl" = doDistribute super."hmatrix-gsl_0_16_0_3"; "hmatrix-gsl-stats" = dontDistribute super."hmatrix-gsl-stats"; "hmatrix-mmap" = dontDistribute super."hmatrix-mmap"; "hmatrix-nipals" = dontDistribute super."hmatrix-nipals"; @@ -5434,6 +5438,7 @@ self: super: { "msgpack-aeson" = dontDistribute super."msgpack-aeson"; "msgpack-idl" = dontDistribute super."msgpack-idl"; "msgpack-rpc" = dontDistribute super."msgpack-rpc"; + "msh" = dontDistribute super."msh"; "msi-kb-backlit" = dontDistribute super."msi-kb-backlit"; "mstate" = dontDistribute super."mstate"; "msu" = dontDistribute super."msu"; @@ -5885,6 +5890,7 @@ self: super: { "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; "pathtype" = dontDistribute super."pathtype"; + "pathwalk" = dontDistribute super."pathwalk"; "patronscraper" = dontDistribute super."patronscraper"; "pattern-arrows" = dontDistribute super."pattern-arrows"; "patterns" = dontDistribute super."patterns"; @@ -6161,6 +6167,7 @@ self: super: { "pretty-error" = dontDistribute super."pretty-error"; "pretty-hex" = dontDistribute super."pretty-hex"; "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-show" = doDistribute super."pretty-show_1_6_8_2"; "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; @@ -6431,6 +6438,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.15.nix b/pkgs/development/haskell-modules/configuration-lts-1.15.nix index b30f65ba73c..86d7f12eb94 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.15.nix @@ -527,6 +527,7 @@ self: super: { "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"; @@ -1627,6 +1628,7 @@ self: super: { "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; "bindings-yices" = dontDistribute super."bindings-yices"; + "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; "binembed-example" = dontDistribute super."binembed-example"; "bio" = dontDistribute super."bio"; @@ -3995,9 +3997,11 @@ self: super: { "hly" = dontDistribute super."hly"; "hmark" = dontDistribute super."hmark"; "hmarkup" = dontDistribute super."hmarkup"; + "hmatrix" = doDistribute super."hmatrix_0_16_1_5"; "hmatrix-banded" = dontDistribute super."hmatrix-banded"; "hmatrix-csv" = dontDistribute super."hmatrix-csv"; "hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; + "hmatrix-gsl" = doDistribute super."hmatrix-gsl_0_16_0_3"; "hmatrix-gsl-stats" = dontDistribute super."hmatrix-gsl-stats"; "hmatrix-mmap" = dontDistribute super."hmatrix-mmap"; "hmatrix-nipals" = dontDistribute super."hmatrix-nipals"; @@ -5428,6 +5432,7 @@ self: super: { "msgpack-aeson" = dontDistribute super."msgpack-aeson"; "msgpack-idl" = dontDistribute super."msgpack-idl"; "msgpack-rpc" = dontDistribute super."msgpack-rpc"; + "msh" = dontDistribute super."msh"; "msi-kb-backlit" = dontDistribute super."msi-kb-backlit"; "mstate" = dontDistribute super."mstate"; "msu" = dontDistribute super."msu"; @@ -5877,6 +5882,7 @@ self: super: { "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; "pathtype" = dontDistribute super."pathtype"; + "pathwalk" = dontDistribute super."pathwalk"; "patronscraper" = dontDistribute super."patronscraper"; "pattern-arrows" = dontDistribute super."pattern-arrows"; "patterns" = dontDistribute super."patterns"; @@ -6153,6 +6159,7 @@ self: super: { "pretty-error" = dontDistribute super."pretty-error"; "pretty-hex" = dontDistribute super."pretty-hex"; "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-show" = doDistribute super."pretty-show_1_6_8_2"; "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; @@ -6421,6 +6428,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.2.nix b/pkgs/development/haskell-modules/configuration-lts-1.2.nix index fa6cf263256..8755a2b3758 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.2.nix @@ -529,6 +529,7 @@ self: super: { "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"; @@ -1631,6 +1632,7 @@ self: super: { "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; "bindings-yices" = dontDistribute super."bindings-yices"; + "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; "binembed-example" = dontDistribute super."binembed-example"; "bio" = dontDistribute super."bio"; @@ -5470,6 +5472,7 @@ self: super: { "msgpack-aeson" = dontDistribute super."msgpack-aeson"; "msgpack-idl" = dontDistribute super."msgpack-idl"; "msgpack-rpc" = dontDistribute super."msgpack-rpc"; + "msh" = dontDistribute super."msh"; "msi-kb-backlit" = dontDistribute super."msi-kb-backlit"; "mstate" = dontDistribute super."mstate"; "msu" = dontDistribute super."msu"; @@ -5924,6 +5927,7 @@ self: super: { "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; "pathtype" = dontDistribute super."pathtype"; + "pathwalk" = dontDistribute super."pathwalk"; "patronscraper" = dontDistribute super."patronscraper"; "pattern-arrows" = dontDistribute super."pattern-arrows"; "patterns" = dontDistribute super."patterns"; @@ -6474,6 +6478,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.4.nix b/pkgs/development/haskell-modules/configuration-lts-1.4.nix index 7fab0d8b8a8..03e967ba780 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.4.nix @@ -528,6 +528,7 @@ self: super: { "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"; @@ -1630,6 +1631,7 @@ self: super: { "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; "bindings-yices" = dontDistribute super."bindings-yices"; + "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; "binembed-example" = dontDistribute super."binembed-example"; "bio" = dontDistribute super."bio"; @@ -4021,6 +4023,7 @@ self: super: { "hmatrix-banded" = dontDistribute super."hmatrix-banded"; "hmatrix-csv" = dontDistribute super."hmatrix-csv"; "hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; + "hmatrix-gsl" = doDistribute super."hmatrix-gsl_0_16_0_3"; "hmatrix-gsl-stats" = dontDistribute super."hmatrix-gsl-stats"; "hmatrix-mmap" = dontDistribute super."hmatrix-mmap"; "hmatrix-nipals" = dontDistribute super."hmatrix-nipals"; @@ -5466,6 +5469,7 @@ self: super: { "msgpack-aeson" = dontDistribute super."msgpack-aeson"; "msgpack-idl" = dontDistribute super."msgpack-idl"; "msgpack-rpc" = dontDistribute super."msgpack-rpc"; + "msh" = dontDistribute super."msh"; "msi-kb-backlit" = dontDistribute super."msi-kb-backlit"; "mstate" = dontDistribute super."mstate"; "msu" = dontDistribute super."msu"; @@ -5919,6 +5923,7 @@ self: super: { "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; "pathtype" = dontDistribute super."pathtype"; + "pathwalk" = dontDistribute super."pathwalk"; "patronscraper" = dontDistribute super."patronscraper"; "pattern-arrows" = dontDistribute super."pattern-arrows"; "patterns" = dontDistribute super."patterns"; @@ -6468,6 +6473,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.5.nix b/pkgs/development/haskell-modules/configuration-lts-1.5.nix index 206dbf81be2..b95a544f6b0 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.5.nix @@ -528,6 +528,7 @@ self: super: { "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"; @@ -1630,6 +1631,7 @@ self: super: { "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; "bindings-yices" = dontDistribute super."bindings-yices"; + "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; "binembed-example" = dontDistribute super."binembed-example"; "bio" = dontDistribute super."bio"; @@ -4020,6 +4022,7 @@ self: super: { "hmatrix-banded" = dontDistribute super."hmatrix-banded"; "hmatrix-csv" = dontDistribute super."hmatrix-csv"; "hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; + "hmatrix-gsl" = doDistribute super."hmatrix-gsl_0_16_0_3"; "hmatrix-gsl-stats" = dontDistribute super."hmatrix-gsl-stats"; "hmatrix-mmap" = dontDistribute super."hmatrix-mmap"; "hmatrix-nipals" = dontDistribute super."hmatrix-nipals"; @@ -5464,6 +5467,7 @@ self: super: { "msgpack-aeson" = dontDistribute super."msgpack-aeson"; "msgpack-idl" = dontDistribute super."msgpack-idl"; "msgpack-rpc" = dontDistribute super."msgpack-rpc"; + "msh" = dontDistribute super."msh"; "msi-kb-backlit" = dontDistribute super."msi-kb-backlit"; "mstate" = dontDistribute super."mstate"; "msu" = dontDistribute super."msu"; @@ -5917,6 +5921,7 @@ self: super: { "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; "pathtype" = dontDistribute super."pathtype"; + "pathwalk" = dontDistribute super."pathwalk"; "patronscraper" = dontDistribute super."patronscraper"; "pattern-arrows" = dontDistribute super."pattern-arrows"; "patterns" = dontDistribute super."patterns"; @@ -6466,6 +6471,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.7.nix b/pkgs/development/haskell-modules/configuration-lts-1.7.nix index d886cad1bfc..f00d1f629b9 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.7.nix @@ -528,6 +528,7 @@ self: super: { "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"; @@ -1630,6 +1631,7 @@ self: super: { "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; "bindings-yices" = dontDistribute super."bindings-yices"; + "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; "binembed-example" = dontDistribute super."binembed-example"; "bio" = dontDistribute super."bio"; @@ -4020,6 +4022,7 @@ self: super: { "hmatrix-banded" = dontDistribute super."hmatrix-banded"; "hmatrix-csv" = dontDistribute super."hmatrix-csv"; "hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; + "hmatrix-gsl" = doDistribute super."hmatrix-gsl_0_16_0_3"; "hmatrix-gsl-stats" = dontDistribute super."hmatrix-gsl-stats"; "hmatrix-mmap" = dontDistribute super."hmatrix-mmap"; "hmatrix-nipals" = dontDistribute super."hmatrix-nipals"; @@ -5458,6 +5461,7 @@ self: super: { "msgpack-aeson" = dontDistribute super."msgpack-aeson"; "msgpack-idl" = dontDistribute super."msgpack-idl"; "msgpack-rpc" = dontDistribute super."msgpack-rpc"; + "msh" = dontDistribute super."msh"; "msi-kb-backlit" = dontDistribute super."msi-kb-backlit"; "mstate" = dontDistribute super."mstate"; "msu" = dontDistribute super."msu"; @@ -5911,6 +5915,7 @@ self: super: { "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; "pathtype" = dontDistribute super."pathtype"; + "pathwalk" = dontDistribute super."pathwalk"; "patronscraper" = dontDistribute super."patronscraper"; "pattern-arrows" = dontDistribute super."pattern-arrows"; "patterns" = dontDistribute super."patterns"; @@ -6460,6 +6465,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.8.nix b/pkgs/development/haskell-modules/configuration-lts-1.8.nix index 2dd1b479ea5..931695a1957 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.8.nix @@ -528,6 +528,7 @@ self: super: { "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"; @@ -1630,6 +1631,7 @@ self: super: { "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; "bindings-yices" = dontDistribute super."bindings-yices"; + "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; "binembed-example" = dontDistribute super."binembed-example"; "bio" = dontDistribute super."bio"; @@ -4016,6 +4018,7 @@ self: super: { "hmatrix-banded" = dontDistribute super."hmatrix-banded"; "hmatrix-csv" = dontDistribute super."hmatrix-csv"; "hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; + "hmatrix-gsl" = doDistribute super."hmatrix-gsl_0_16_0_3"; "hmatrix-gsl-stats" = dontDistribute super."hmatrix-gsl-stats"; "hmatrix-mmap" = dontDistribute super."hmatrix-mmap"; "hmatrix-nipals" = dontDistribute super."hmatrix-nipals"; @@ -5453,6 +5456,7 @@ self: super: { "msgpack-aeson" = dontDistribute super."msgpack-aeson"; "msgpack-idl" = dontDistribute super."msgpack-idl"; "msgpack-rpc" = dontDistribute super."msgpack-rpc"; + "msh" = dontDistribute super."msh"; "msi-kb-backlit" = dontDistribute super."msi-kb-backlit"; "mstate" = dontDistribute super."mstate"; "msu" = dontDistribute super."msu"; @@ -5906,6 +5910,7 @@ self: super: { "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; "pathtype" = dontDistribute super."pathtype"; + "pathwalk" = dontDistribute super."pathwalk"; "patronscraper" = dontDistribute super."patronscraper"; "pattern-arrows" = dontDistribute super."pattern-arrows"; "patterns" = dontDistribute super."patterns"; @@ -6455,6 +6460,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.9.nix b/pkgs/development/haskell-modules/configuration-lts-1.9.nix index 7cec4a7306b..9bdc456652c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.9.nix @@ -528,6 +528,7 @@ self: super: { "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"; @@ -1630,6 +1631,7 @@ self: super: { "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; "bindings-yices" = dontDistribute super."bindings-yices"; + "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; "binembed-example" = dontDistribute super."binembed-example"; "bio" = dontDistribute super."bio"; @@ -4015,6 +4017,7 @@ self: super: { "hmatrix-banded" = dontDistribute super."hmatrix-banded"; "hmatrix-csv" = dontDistribute super."hmatrix-csv"; "hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; + "hmatrix-gsl" = doDistribute super."hmatrix-gsl_0_16_0_3"; "hmatrix-gsl-stats" = dontDistribute super."hmatrix-gsl-stats"; "hmatrix-mmap" = dontDistribute super."hmatrix-mmap"; "hmatrix-nipals" = dontDistribute super."hmatrix-nipals"; @@ -5451,6 +5454,7 @@ self: super: { "msgpack-aeson" = dontDistribute super."msgpack-aeson"; "msgpack-idl" = dontDistribute super."msgpack-idl"; "msgpack-rpc" = dontDistribute super."msgpack-rpc"; + "msh" = dontDistribute super."msh"; "msi-kb-backlit" = dontDistribute super."msi-kb-backlit"; "mstate" = dontDistribute super."mstate"; "msu" = dontDistribute super."msu"; @@ -5903,6 +5907,7 @@ self: super: { "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; "pathtype" = dontDistribute super."pathtype"; + "pathwalk" = dontDistribute super."pathwalk"; "patronscraper" = dontDistribute super."patronscraper"; "pattern-arrows" = dontDistribute super."pattern-arrows"; "patterns" = dontDistribute super."patterns"; @@ -6452,6 +6457,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.0.nix b/pkgs/development/haskell-modules/configuration-lts-2.0.nix index c146bcf2fec..40e4f440bf8 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.0.nix @@ -523,6 +523,7 @@ self: super: { "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"; @@ -1615,6 +1616,7 @@ self: super: { "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; "bindings-yices" = dontDistribute super."bindings-yices"; + "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; "binembed-example" = dontDistribute super."binembed-example"; "bio" = dontDistribute super."bio"; @@ -2278,6 +2280,7 @@ self: super: { "cube" = dontDistribute super."cube"; "cubical" = dontDistribute super."cubical"; "cubicbezier" = dontDistribute super."cubicbezier"; + "cubicspline" = doDistribute super."cubicspline_0_1_1"; "cublas" = dontDistribute super."cublas"; "cuboid" = dontDistribute super."cuboid"; "cuda" = dontDistribute super."cuda"; @@ -3965,9 +3968,11 @@ self: super: { "hly" = dontDistribute super."hly"; "hmark" = dontDistribute super."hmark"; "hmarkup" = dontDistribute super."hmarkup"; + "hmatrix" = doDistribute super."hmatrix_0_16_1_5"; "hmatrix-banded" = dontDistribute super."hmatrix-banded"; "hmatrix-csv" = dontDistribute super."hmatrix-csv"; "hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; + "hmatrix-gsl" = doDistribute super."hmatrix-gsl_0_16_0_3"; "hmatrix-gsl-stats" = doDistribute super."hmatrix-gsl-stats_0_2_1"; "hmatrix-mmap" = dontDistribute super."hmatrix-mmap"; "hmatrix-nipals" = dontDistribute super."hmatrix-nipals"; @@ -4256,6 +4261,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; "hstest" = dontDistribute super."hstest"; @@ -5371,6 +5377,7 @@ self: super: { "msgpack-aeson" = dontDistribute super."msgpack-aeson"; "msgpack-idl" = dontDistribute super."msgpack-idl"; "msgpack-rpc" = dontDistribute super."msgpack-rpc"; + "msh" = dontDistribute super."msh"; "msi-kb-backlit" = dontDistribute super."msi-kb-backlit"; "mstate" = dontDistribute super."mstate"; "msu" = dontDistribute super."msu"; @@ -5813,6 +5820,7 @@ self: super: { "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; "pathtype" = dontDistribute super."pathtype"; + "pathwalk" = dontDistribute super."pathwalk"; "patronscraper" = dontDistribute super."patronscraper"; "pattern-arrows" = dontDistribute super."pattern-arrows"; "patterns" = dontDistribute super."patterns"; @@ -5966,6 +5974,8 @@ self: super: { "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; "plivo" = dontDistribute super."plivo"; + "plot" = doDistribute super."plot_0_2_3_4"; + "plot-gtk" = doDistribute super."plot-gtk_0_2_0_2"; "plot-gtk-ui" = dontDistribute super."plot-gtk-ui"; "plot-gtk3" = doDistribute super."plot-gtk3_0_1"; "plot-lab" = dontDistribute super."plot-lab"; @@ -6083,6 +6093,7 @@ self: super: { "pretty-error" = dontDistribute super."pretty-error"; "pretty-hex" = dontDistribute super."pretty-hex"; "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-show" = doDistribute super."pretty-show_1_6_8_2"; "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; @@ -6352,6 +6363,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.1.nix b/pkgs/development/haskell-modules/configuration-lts-2.1.nix index e9def84f9cf..f562b38259f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.1.nix @@ -523,6 +523,7 @@ self: super: { "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"; @@ -1615,6 +1616,7 @@ self: super: { "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; "bindings-yices" = dontDistribute super."bindings-yices"; + "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; "binembed-example" = dontDistribute super."binembed-example"; "bio" = dontDistribute super."bio"; @@ -2277,6 +2279,7 @@ self: super: { "cube" = dontDistribute super."cube"; "cubical" = dontDistribute super."cubical"; "cubicbezier" = dontDistribute super."cubicbezier"; + "cubicspline" = doDistribute super."cubicspline_0_1_1"; "cublas" = dontDistribute super."cublas"; "cuboid" = dontDistribute super."cuboid"; "cuda" = dontDistribute super."cuda"; @@ -3963,9 +3966,11 @@ self: super: { "hly" = dontDistribute super."hly"; "hmark" = dontDistribute super."hmark"; "hmarkup" = dontDistribute super."hmarkup"; + "hmatrix" = doDistribute super."hmatrix_0_16_1_5"; "hmatrix-banded" = dontDistribute super."hmatrix-banded"; "hmatrix-csv" = dontDistribute super."hmatrix-csv"; "hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; + "hmatrix-gsl" = doDistribute super."hmatrix-gsl_0_16_0_3"; "hmatrix-gsl-stats" = doDistribute super."hmatrix-gsl-stats_0_2_1"; "hmatrix-mmap" = dontDistribute super."hmatrix-mmap"; "hmatrix-nipals" = dontDistribute super."hmatrix-nipals"; @@ -4254,6 +4259,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; "hstest" = dontDistribute super."hstest"; @@ -5369,6 +5375,7 @@ self: super: { "msgpack-aeson" = dontDistribute super."msgpack-aeson"; "msgpack-idl" = dontDistribute super."msgpack-idl"; "msgpack-rpc" = dontDistribute super."msgpack-rpc"; + "msh" = dontDistribute super."msh"; "msi-kb-backlit" = dontDistribute super."msi-kb-backlit"; "mstate" = dontDistribute super."mstate"; "msu" = dontDistribute super."msu"; @@ -5811,6 +5818,7 @@ self: super: { "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; "pathtype" = dontDistribute super."pathtype"; + "pathwalk" = dontDistribute super."pathwalk"; "patronscraper" = dontDistribute super."patronscraper"; "pattern-arrows" = dontDistribute super."pattern-arrows"; "patterns" = dontDistribute super."patterns"; @@ -5964,6 +5972,8 @@ self: super: { "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; "plivo" = dontDistribute super."plivo"; + "plot" = doDistribute super."plot_0_2_3_4"; + "plot-gtk" = doDistribute super."plot-gtk_0_2_0_2"; "plot-gtk-ui" = dontDistribute super."plot-gtk-ui"; "plot-gtk3" = doDistribute super."plot-gtk3_0_1"; "plot-lab" = dontDistribute super."plot-lab"; @@ -6081,6 +6091,7 @@ self: super: { "pretty-error" = dontDistribute super."pretty-error"; "pretty-hex" = dontDistribute super."pretty-hex"; "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-show" = doDistribute super."pretty-show_1_6_8_2"; "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; @@ -6350,6 +6361,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.10.nix b/pkgs/development/haskell-modules/configuration-lts-2.10.nix index d616805b2d7..7d76520dfd2 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.10.nix @@ -522,6 +522,7 @@ self: super: { "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"; @@ -1606,6 +1607,7 @@ self: super: { "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; "bindings-yices" = dontDistribute super."bindings-yices"; + "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; "binembed-example" = dontDistribute super."binembed-example"; "bio" = dontDistribute super."bio"; @@ -2262,6 +2264,7 @@ self: super: { "cube" = dontDistribute super."cube"; "cubical" = dontDistribute super."cubical"; "cubicbezier" = dontDistribute super."cubicbezier"; + "cubicspline" = doDistribute super."cubicspline_0_1_1"; "cublas" = dontDistribute super."cublas"; "cuboid" = dontDistribute super."cuboid"; "cuda" = dontDistribute super."cuda"; @@ -3937,9 +3940,11 @@ self: super: { "hly" = dontDistribute super."hly"; "hmark" = dontDistribute super."hmark"; "hmarkup" = dontDistribute super."hmarkup"; + "hmatrix" = doDistribute super."hmatrix_0_16_1_5"; "hmatrix-banded" = dontDistribute super."hmatrix-banded"; "hmatrix-csv" = dontDistribute super."hmatrix-csv"; "hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; + "hmatrix-gsl" = doDistribute super."hmatrix-gsl_0_16_0_3"; "hmatrix-gsl-stats" = doDistribute super."hmatrix-gsl-stats_0_2_1"; "hmatrix-mmap" = dontDistribute super."hmatrix-mmap"; "hmatrix-nipals" = dontDistribute super."hmatrix-nipals"; @@ -4227,6 +4232,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; "hstest" = dontDistribute super."hstest"; @@ -5326,6 +5332,7 @@ self: super: { "msgpack-aeson" = dontDistribute super."msgpack-aeson"; "msgpack-idl" = dontDistribute super."msgpack-idl"; "msgpack-rpc" = dontDistribute super."msgpack-rpc"; + "msh" = dontDistribute super."msh"; "msi-kb-backlit" = dontDistribute super."msi-kb-backlit"; "mstate" = dontDistribute super."mstate"; "msu" = dontDistribute super."msu"; @@ -5765,6 +5772,7 @@ self: super: { "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; "pathtype" = dontDistribute super."pathtype"; + "pathwalk" = dontDistribute super."pathwalk"; "patronscraper" = dontDistribute super."patronscraper"; "pattern-arrows" = dontDistribute super."pattern-arrows"; "patterns" = dontDistribute super."patterns"; @@ -5915,6 +5923,8 @@ self: super: { "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; "plivo" = dontDistribute super."plivo"; + "plot" = doDistribute super."plot_0_2_3_4"; + "plot-gtk" = doDistribute super."plot-gtk_0_2_0_2"; "plot-gtk-ui" = dontDistribute super."plot-gtk-ui"; "plot-gtk3" = doDistribute super."plot-gtk3_0_1"; "plot-lab" = dontDistribute super."plot-lab"; @@ -6030,6 +6040,7 @@ self: super: { "pretty-error" = dontDistribute super."pretty-error"; "pretty-hex" = dontDistribute super."pretty-hex"; "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-show" = doDistribute super."pretty-show_1_6_8_2"; "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; @@ -6298,6 +6309,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.11.nix b/pkgs/development/haskell-modules/configuration-lts-2.11.nix index 8ab9b42e5d7..f94c4d8d81e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.11.nix @@ -522,6 +522,7 @@ self: super: { "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"; @@ -1605,6 +1606,7 @@ self: super: { "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; "bindings-yices" = dontDistribute super."bindings-yices"; + "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; "binembed-example" = dontDistribute super."binembed-example"; "bio" = dontDistribute super."bio"; @@ -2261,6 +2263,7 @@ self: super: { "cube" = dontDistribute super."cube"; "cubical" = dontDistribute super."cubical"; "cubicbezier" = dontDistribute super."cubicbezier"; + "cubicspline" = doDistribute super."cubicspline_0_1_1"; "cublas" = dontDistribute super."cublas"; "cuboid" = dontDistribute super."cuboid"; "cuda" = dontDistribute super."cuda"; @@ -3933,9 +3936,11 @@ self: super: { "hly" = dontDistribute super."hly"; "hmark" = dontDistribute super."hmark"; "hmarkup" = dontDistribute super."hmarkup"; + "hmatrix" = doDistribute super."hmatrix_0_16_1_5"; "hmatrix-banded" = dontDistribute super."hmatrix-banded"; "hmatrix-csv" = dontDistribute super."hmatrix-csv"; "hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; + "hmatrix-gsl" = doDistribute super."hmatrix-gsl_0_16_0_3"; "hmatrix-gsl-stats" = doDistribute super."hmatrix-gsl-stats_0_2_1"; "hmatrix-mmap" = dontDistribute super."hmatrix-mmap"; "hmatrix-nipals" = dontDistribute super."hmatrix-nipals"; @@ -4146,6 +4151,7 @@ self: super: { "hsgsom" = dontDistribute super."hsgsom"; "hsgtd" = dontDistribute super."hsgtd"; "hsharc" = dontDistribute super."hsharc"; + "hsignal" = doDistribute super."hsignal_0_2_7_1"; "hsilop" = dontDistribute super."hsilop"; "hsimport" = dontDistribute super."hsimport"; "hsini" = dontDistribute super."hsini"; @@ -4221,6 +4227,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; "hstest" = dontDistribute super."hstest"; @@ -5318,6 +5325,7 @@ self: super: { "msgpack-aeson" = dontDistribute super."msgpack-aeson"; "msgpack-idl" = dontDistribute super."msgpack-idl"; "msgpack-rpc" = dontDistribute super."msgpack-rpc"; + "msh" = dontDistribute super."msh"; "msi-kb-backlit" = dontDistribute super."msi-kb-backlit"; "mstate" = dontDistribute super."mstate"; "msu" = dontDistribute super."msu"; @@ -5756,6 +5764,7 @@ self: super: { "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; "pathtype" = dontDistribute super."pathtype"; + "pathwalk" = dontDistribute super."pathwalk"; "patronscraper" = dontDistribute super."patronscraper"; "pattern-arrows" = dontDistribute super."pattern-arrows"; "patterns" = dontDistribute super."patterns"; @@ -5906,6 +5915,8 @@ self: super: { "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; "plivo" = dontDistribute super."plivo"; + "plot" = doDistribute super."plot_0_2_3_4"; + "plot-gtk" = doDistribute super."plot-gtk_0_2_0_2"; "plot-gtk-ui" = dontDistribute super."plot-gtk-ui"; "plot-gtk3" = doDistribute super."plot-gtk3_0_1"; "plot-lab" = dontDistribute super."plot-lab"; @@ -6021,6 +6032,7 @@ self: super: { "pretty-error" = dontDistribute super."pretty-error"; "pretty-hex" = dontDistribute super."pretty-hex"; "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-show" = doDistribute super."pretty-show_1_6_8_2"; "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; @@ -6289,6 +6301,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.12.nix b/pkgs/development/haskell-modules/configuration-lts-2.12.nix index cad506695d3..a0d7d45d98e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.12.nix @@ -522,6 +522,7 @@ self: super: { "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"; @@ -1605,6 +1606,7 @@ self: super: { "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; "bindings-yices" = dontDistribute super."bindings-yices"; + "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; "binembed-example" = dontDistribute super."binembed-example"; "bio" = dontDistribute super."bio"; @@ -2261,6 +2263,7 @@ self: super: { "cube" = dontDistribute super."cube"; "cubical" = dontDistribute super."cubical"; "cubicbezier" = dontDistribute super."cubicbezier"; + "cubicspline" = doDistribute super."cubicspline_0_1_1"; "cublas" = dontDistribute super."cublas"; "cuboid" = dontDistribute super."cuboid"; "cuda" = dontDistribute super."cuda"; @@ -3933,9 +3936,11 @@ self: super: { "hly" = dontDistribute super."hly"; "hmark" = dontDistribute super."hmark"; "hmarkup" = dontDistribute super."hmarkup"; + "hmatrix" = doDistribute super."hmatrix_0_16_1_5"; "hmatrix-banded" = dontDistribute super."hmatrix-banded"; "hmatrix-csv" = dontDistribute super."hmatrix-csv"; "hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; + "hmatrix-gsl" = doDistribute super."hmatrix-gsl_0_16_0_3"; "hmatrix-gsl-stats" = doDistribute super."hmatrix-gsl-stats_0_2_1"; "hmatrix-mmap" = dontDistribute super."hmatrix-mmap"; "hmatrix-nipals" = dontDistribute super."hmatrix-nipals"; @@ -4146,6 +4151,7 @@ self: super: { "hsgsom" = dontDistribute super."hsgsom"; "hsgtd" = dontDistribute super."hsgtd"; "hsharc" = dontDistribute super."hsharc"; + "hsignal" = doDistribute super."hsignal_0_2_7_1"; "hsilop" = dontDistribute super."hsilop"; "hsimport" = dontDistribute super."hsimport"; "hsini" = dontDistribute super."hsini"; @@ -4221,6 +4227,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; "hstest" = dontDistribute super."hstest"; @@ -5318,6 +5325,7 @@ self: super: { "msgpack-aeson" = dontDistribute super."msgpack-aeson"; "msgpack-idl" = dontDistribute super."msgpack-idl"; "msgpack-rpc" = dontDistribute super."msgpack-rpc"; + "msh" = dontDistribute super."msh"; "msi-kb-backlit" = dontDistribute super."msi-kb-backlit"; "mstate" = dontDistribute super."mstate"; "msu" = dontDistribute super."msu"; @@ -5756,6 +5764,7 @@ self: super: { "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; "pathtype" = dontDistribute super."pathtype"; + "pathwalk" = dontDistribute super."pathwalk"; "patronscraper" = dontDistribute super."patronscraper"; "pattern-arrows" = dontDistribute super."pattern-arrows"; "patterns" = dontDistribute super."patterns"; @@ -5906,6 +5915,8 @@ self: super: { "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; "plivo" = dontDistribute super."plivo"; + "plot" = doDistribute super."plot_0_2_3_4"; + "plot-gtk" = doDistribute super."plot-gtk_0_2_0_2"; "plot-gtk-ui" = dontDistribute super."plot-gtk-ui"; "plot-gtk3" = doDistribute super."plot-gtk3_0_1"; "plot-lab" = dontDistribute super."plot-lab"; @@ -6021,6 +6032,7 @@ self: super: { "pretty-error" = dontDistribute super."pretty-error"; "pretty-hex" = dontDistribute super."pretty-hex"; "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-show" = doDistribute super."pretty-show_1_6_8_2"; "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; @@ -6289,6 +6301,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.13.nix b/pkgs/development/haskell-modules/configuration-lts-2.13.nix index d6f5835bec5..a397f18e51c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.13.nix @@ -522,6 +522,7 @@ self: super: { "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"; @@ -1605,6 +1606,7 @@ self: super: { "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; "bindings-yices" = dontDistribute super."bindings-yices"; + "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; "binembed-example" = dontDistribute super."binembed-example"; "bio" = dontDistribute super."bio"; @@ -2261,6 +2263,7 @@ self: super: { "cube" = dontDistribute super."cube"; "cubical" = dontDistribute super."cubical"; "cubicbezier" = dontDistribute super."cubicbezier"; + "cubicspline" = doDistribute super."cubicspline_0_1_1"; "cublas" = dontDistribute super."cublas"; "cuboid" = dontDistribute super."cuboid"; "cuda" = dontDistribute super."cuda"; @@ -3932,9 +3935,11 @@ self: super: { "hly" = dontDistribute super."hly"; "hmark" = dontDistribute super."hmark"; "hmarkup" = dontDistribute super."hmarkup"; + "hmatrix" = doDistribute super."hmatrix_0_16_1_5"; "hmatrix-banded" = dontDistribute super."hmatrix-banded"; "hmatrix-csv" = dontDistribute super."hmatrix-csv"; "hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; + "hmatrix-gsl" = doDistribute super."hmatrix-gsl_0_16_0_3"; "hmatrix-gsl-stats" = doDistribute super."hmatrix-gsl-stats_0_2_1"; "hmatrix-mmap" = dontDistribute super."hmatrix-mmap"; "hmatrix-nipals" = dontDistribute super."hmatrix-nipals"; @@ -4145,6 +4150,7 @@ self: super: { "hsgsom" = dontDistribute super."hsgsom"; "hsgtd" = dontDistribute super."hsgtd"; "hsharc" = dontDistribute super."hsharc"; + "hsignal" = doDistribute super."hsignal_0_2_7_1"; "hsilop" = dontDistribute super."hsilop"; "hsimport" = dontDistribute super."hsimport"; "hsini" = dontDistribute super."hsini"; @@ -4220,6 +4226,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; "hstest" = dontDistribute super."hstest"; @@ -5316,6 +5323,7 @@ self: super: { "msgpack-aeson" = dontDistribute super."msgpack-aeson"; "msgpack-idl" = dontDistribute super."msgpack-idl"; "msgpack-rpc" = dontDistribute super."msgpack-rpc"; + "msh" = dontDistribute super."msh"; "msi-kb-backlit" = dontDistribute super."msi-kb-backlit"; "mstate" = dontDistribute super."mstate"; "msu" = dontDistribute super."msu"; @@ -5753,6 +5761,7 @@ self: super: { "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; "pathtype" = dontDistribute super."pathtype"; + "pathwalk" = dontDistribute super."pathwalk"; "patronscraper" = dontDistribute super."patronscraper"; "pattern-arrows" = dontDistribute super."pattern-arrows"; "patterns" = dontDistribute super."patterns"; @@ -5903,6 +5912,8 @@ self: super: { "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; "plivo" = dontDistribute super."plivo"; + "plot" = doDistribute super."plot_0_2_3_4"; + "plot-gtk" = doDistribute super."plot-gtk_0_2_0_2"; "plot-gtk-ui" = dontDistribute super."plot-gtk-ui"; "plot-gtk3" = doDistribute super."plot-gtk3_0_1"; "plot-lab" = dontDistribute super."plot-lab"; @@ -6018,6 +6029,7 @@ self: super: { "pretty-error" = dontDistribute super."pretty-error"; "pretty-hex" = dontDistribute super."pretty-hex"; "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-show" = doDistribute super."pretty-show_1_6_8_2"; "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; @@ -6286,6 +6298,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.14.nix b/pkgs/development/haskell-modules/configuration-lts-2.14.nix index 35ff99c90fb..0ac25cfd46d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.14.nix @@ -522,6 +522,7 @@ self: super: { "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"; @@ -1604,6 +1605,7 @@ self: super: { "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; "bindings-yices" = dontDistribute super."bindings-yices"; + "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; "binembed-example" = dontDistribute super."binembed-example"; "bio" = dontDistribute super."bio"; @@ -2260,6 +2262,7 @@ self: super: { "cube" = dontDistribute super."cube"; "cubical" = dontDistribute super."cubical"; "cubicbezier" = dontDistribute super."cubicbezier"; + "cubicspline" = doDistribute super."cubicspline_0_1_1"; "cublas" = dontDistribute super."cublas"; "cuboid" = dontDistribute super."cuboid"; "cuda" = dontDistribute super."cuda"; @@ -3930,9 +3933,11 @@ self: super: { "hly" = dontDistribute super."hly"; "hmark" = dontDistribute super."hmark"; "hmarkup" = dontDistribute super."hmarkup"; + "hmatrix" = doDistribute super."hmatrix_0_16_1_5"; "hmatrix-banded" = dontDistribute super."hmatrix-banded"; "hmatrix-csv" = dontDistribute super."hmatrix-csv"; "hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; + "hmatrix-gsl" = doDistribute super."hmatrix-gsl_0_16_0_3"; "hmatrix-gsl-stats" = doDistribute super."hmatrix-gsl-stats_0_2_1"; "hmatrix-mmap" = dontDistribute super."hmatrix-mmap"; "hmatrix-nipals" = dontDistribute super."hmatrix-nipals"; @@ -4143,6 +4148,7 @@ self: super: { "hsgsom" = dontDistribute super."hsgsom"; "hsgtd" = dontDistribute super."hsgtd"; "hsharc" = dontDistribute super."hsharc"; + "hsignal" = doDistribute super."hsignal_0_2_7_1"; "hsilop" = dontDistribute super."hsilop"; "hsimport" = dontDistribute super."hsimport"; "hsini" = dontDistribute super."hsini"; @@ -4217,6 +4223,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; "hstest" = dontDistribute super."hstest"; @@ -5313,6 +5320,7 @@ self: super: { "msgpack-aeson" = dontDistribute super."msgpack-aeson"; "msgpack-idl" = dontDistribute super."msgpack-idl"; "msgpack-rpc" = dontDistribute super."msgpack-rpc"; + "msh" = dontDistribute super."msh"; "msi-kb-backlit" = dontDistribute super."msi-kb-backlit"; "mstate" = dontDistribute super."mstate"; "msu" = dontDistribute super."msu"; @@ -5750,6 +5758,7 @@ self: super: { "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; "pathtype" = dontDistribute super."pathtype"; + "pathwalk" = dontDistribute super."pathwalk"; "patronscraper" = dontDistribute super."patronscraper"; "pattern-arrows" = dontDistribute super."pattern-arrows"; "patterns" = dontDistribute super."patterns"; @@ -5900,6 +5909,8 @@ self: super: { "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; "plivo" = dontDistribute super."plivo"; + "plot" = doDistribute super."plot_0_2_3_4"; + "plot-gtk" = doDistribute super."plot-gtk_0_2_0_2"; "plot-gtk-ui" = dontDistribute super."plot-gtk-ui"; "plot-gtk3" = doDistribute super."plot-gtk3_0_1"; "plot-lab" = dontDistribute super."plot-lab"; @@ -6015,6 +6026,7 @@ self: super: { "pretty-error" = dontDistribute super."pretty-error"; "pretty-hex" = dontDistribute super."pretty-hex"; "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-show" = doDistribute super."pretty-show_1_6_8_2"; "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; @@ -6282,6 +6294,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.15.nix b/pkgs/development/haskell-modules/configuration-lts-2.15.nix index 9e2245d2d94..aad05783d8b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.15.nix @@ -522,6 +522,7 @@ self: super: { "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"; @@ -1604,6 +1605,7 @@ self: super: { "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; "bindings-yices" = dontDistribute super."bindings-yices"; + "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; "binembed-example" = dontDistribute super."binembed-example"; "bio" = dontDistribute super."bio"; @@ -2260,6 +2262,7 @@ self: super: { "cube" = dontDistribute super."cube"; "cubical" = dontDistribute super."cubical"; "cubicbezier" = dontDistribute super."cubicbezier"; + "cubicspline" = doDistribute super."cubicspline_0_1_1"; "cublas" = dontDistribute super."cublas"; "cuboid" = dontDistribute super."cuboid"; "cuda" = dontDistribute super."cuda"; @@ -3928,9 +3931,11 @@ self: super: { "hly" = dontDistribute super."hly"; "hmark" = dontDistribute super."hmark"; "hmarkup" = dontDistribute super."hmarkup"; + "hmatrix" = doDistribute super."hmatrix_0_16_1_5"; "hmatrix-banded" = dontDistribute super."hmatrix-banded"; "hmatrix-csv" = dontDistribute super."hmatrix-csv"; "hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; + "hmatrix-gsl" = doDistribute super."hmatrix-gsl_0_16_0_3"; "hmatrix-gsl-stats" = doDistribute super."hmatrix-gsl-stats_0_2_1"; "hmatrix-mmap" = dontDistribute super."hmatrix-mmap"; "hmatrix-nipals" = dontDistribute super."hmatrix-nipals"; @@ -4141,6 +4146,7 @@ self: super: { "hsgsom" = dontDistribute super."hsgsom"; "hsgtd" = dontDistribute super."hsgtd"; "hsharc" = dontDistribute super."hsharc"; + "hsignal" = doDistribute super."hsignal_0_2_7_1"; "hsilop" = dontDistribute super."hsilop"; "hsimport" = dontDistribute super."hsimport"; "hsini" = dontDistribute super."hsini"; @@ -4215,6 +4221,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; "hstest" = dontDistribute super."hstest"; @@ -5310,6 +5317,7 @@ self: super: { "msgpack-aeson" = dontDistribute super."msgpack-aeson"; "msgpack-idl" = dontDistribute super."msgpack-idl"; "msgpack-rpc" = dontDistribute super."msgpack-rpc"; + "msh" = dontDistribute super."msh"; "msi-kb-backlit" = dontDistribute super."msi-kb-backlit"; "mstate" = dontDistribute super."mstate"; "msu" = dontDistribute super."msu"; @@ -5745,6 +5753,7 @@ self: super: { "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; "pathtype" = dontDistribute super."pathtype"; + "pathwalk" = dontDistribute super."pathwalk"; "patronscraper" = dontDistribute super."patronscraper"; "pattern-arrows" = dontDistribute super."pattern-arrows"; "patterns" = dontDistribute super."patterns"; @@ -5895,6 +5904,8 @@ self: super: { "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; "plivo" = dontDistribute super."plivo"; + "plot" = doDistribute super."plot_0_2_3_4"; + "plot-gtk" = doDistribute super."plot-gtk_0_2_0_2"; "plot-gtk-ui" = dontDistribute super."plot-gtk-ui"; "plot-gtk3" = doDistribute super."plot-gtk3_0_1"; "plot-lab" = dontDistribute super."plot-lab"; @@ -6010,6 +6021,7 @@ self: super: { "pretty-error" = dontDistribute super."pretty-error"; "pretty-hex" = dontDistribute super."pretty-hex"; "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-show" = doDistribute super."pretty-show_1_6_8_2"; "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; @@ -6277,6 +6289,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.16.nix b/pkgs/development/haskell-modules/configuration-lts-2.16.nix index ee0f925afc0..f957fb121f3 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.16.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.16.nix @@ -520,6 +520,7 @@ self: super: { "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"; @@ -1602,6 +1603,7 @@ self: super: { "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; "bindings-yices" = dontDistribute super."bindings-yices"; + "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; "binembed-example" = dontDistribute super."binembed-example"; "bio" = dontDistribute super."bio"; @@ -2256,6 +2258,7 @@ self: super: { "cube" = dontDistribute super."cube"; "cubical" = dontDistribute super."cubical"; "cubicbezier" = dontDistribute super."cubicbezier"; + "cubicspline" = doDistribute super."cubicspline_0_1_1"; "cublas" = dontDistribute super."cublas"; "cuboid" = dontDistribute super."cuboid"; "cuda" = dontDistribute super."cuda"; @@ -3919,9 +3922,11 @@ self: super: { "hly" = dontDistribute super."hly"; "hmark" = dontDistribute super."hmark"; "hmarkup" = dontDistribute super."hmarkup"; + "hmatrix" = doDistribute super."hmatrix_0_16_1_5"; "hmatrix-banded" = dontDistribute super."hmatrix-banded"; "hmatrix-csv" = dontDistribute super."hmatrix-csv"; "hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; + "hmatrix-gsl" = doDistribute super."hmatrix-gsl_0_16_0_3"; "hmatrix-gsl-stats" = doDistribute super."hmatrix-gsl-stats_0_2_1"; "hmatrix-mmap" = dontDistribute super."hmatrix-mmap"; "hmatrix-nipals" = dontDistribute super."hmatrix-nipals"; @@ -4132,6 +4137,7 @@ self: super: { "hsgsom" = dontDistribute super."hsgsom"; "hsgtd" = dontDistribute super."hsgtd"; "hsharc" = dontDistribute super."hsharc"; + "hsignal" = doDistribute super."hsignal_0_2_7_1"; "hsilop" = dontDistribute super."hsilop"; "hsimport" = dontDistribute super."hsimport"; "hsini" = dontDistribute super."hsini"; @@ -4206,6 +4212,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; "hstest" = dontDistribute super."hstest"; @@ -5300,6 +5307,7 @@ self: super: { "msgpack-aeson" = dontDistribute super."msgpack-aeson"; "msgpack-idl" = dontDistribute super."msgpack-idl"; "msgpack-rpc" = dontDistribute super."msgpack-rpc"; + "msh" = dontDistribute super."msh"; "msi-kb-backlit" = dontDistribute super."msi-kb-backlit"; "mstate" = dontDistribute super."mstate"; "msu" = dontDistribute super."msu"; @@ -5734,6 +5742,7 @@ self: super: { "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; "pathtype" = dontDistribute super."pathtype"; + "pathwalk" = dontDistribute super."pathwalk"; "patronscraper" = dontDistribute super."patronscraper"; "pattern-arrows" = dontDistribute super."pattern-arrows"; "patterns" = dontDistribute super."patterns"; @@ -5884,6 +5893,8 @@ self: super: { "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; "plivo" = dontDistribute super."plivo"; + "plot" = doDistribute super."plot_0_2_3_4"; + "plot-gtk" = doDistribute super."plot-gtk_0_2_0_2"; "plot-gtk-ui" = dontDistribute super."plot-gtk-ui"; "plot-gtk3" = doDistribute super."plot-gtk3_0_1"; "plot-lab" = dontDistribute super."plot-lab"; @@ -5999,6 +6010,7 @@ self: super: { "pretty-error" = dontDistribute super."pretty-error"; "pretty-hex" = dontDistribute super."pretty-hex"; "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-show" = doDistribute super."pretty-show_1_6_8_2"; "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; @@ -6266,6 +6278,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.17.nix b/pkgs/development/haskell-modules/configuration-lts-2.17.nix index 53f20e89e00..5a63175b692 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.17.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.17.nix @@ -520,6 +520,7 @@ self: super: { "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"; @@ -1600,6 +1601,7 @@ self: super: { "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; "bindings-yices" = dontDistribute super."bindings-yices"; + "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; "binembed-example" = dontDistribute super."binembed-example"; "bio" = dontDistribute super."bio"; @@ -2253,6 +2255,7 @@ self: super: { "cube" = dontDistribute super."cube"; "cubical" = dontDistribute super."cubical"; "cubicbezier" = dontDistribute super."cubicbezier"; + "cubicspline" = doDistribute super."cubicspline_0_1_1"; "cublas" = dontDistribute super."cublas"; "cuboid" = dontDistribute super."cuboid"; "cuda" = dontDistribute super."cuda"; @@ -3911,9 +3914,11 @@ self: super: { "hly" = dontDistribute super."hly"; "hmark" = dontDistribute super."hmark"; "hmarkup" = dontDistribute super."hmarkup"; + "hmatrix" = doDistribute super."hmatrix_0_16_1_5"; "hmatrix-banded" = dontDistribute super."hmatrix-banded"; "hmatrix-csv" = dontDistribute super."hmatrix-csv"; "hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; + "hmatrix-gsl" = doDistribute super."hmatrix-gsl_0_16_0_3"; "hmatrix-gsl-stats" = doDistribute super."hmatrix-gsl-stats_0_2_1"; "hmatrix-mmap" = dontDistribute super."hmatrix-mmap"; "hmatrix-nipals" = dontDistribute super."hmatrix-nipals"; @@ -4124,6 +4129,7 @@ self: super: { "hsgsom" = dontDistribute super."hsgsom"; "hsgtd" = dontDistribute super."hsgtd"; "hsharc" = dontDistribute super."hsharc"; + "hsignal" = doDistribute super."hsignal_0_2_7_1"; "hsilop" = dontDistribute super."hsilop"; "hsimport" = dontDistribute super."hsimport"; "hsini" = dontDistribute super."hsini"; @@ -4198,6 +4204,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; "hstest" = dontDistribute super."hstest"; @@ -5292,6 +5299,7 @@ self: super: { "msgpack-aeson" = dontDistribute super."msgpack-aeson"; "msgpack-idl" = dontDistribute super."msgpack-idl"; "msgpack-rpc" = dontDistribute super."msgpack-rpc"; + "msh" = dontDistribute super."msh"; "msi-kb-backlit" = dontDistribute super."msi-kb-backlit"; "mstate" = dontDistribute super."mstate"; "msu" = dontDistribute super."msu"; @@ -5450,6 +5458,7 @@ self: super: { "network-enumerator" = dontDistribute super."network-enumerator"; "network-fancy" = dontDistribute super."network-fancy"; "network-house" = dontDistribute super."network-house"; + "network-info" = doDistribute super."network-info_0_2_0_7"; "network-interfacerequest" = dontDistribute super."network-interfacerequest"; "network-ip" = dontDistribute super."network-ip"; "network-metrics" = dontDistribute super."network-metrics"; @@ -5724,6 +5733,7 @@ self: super: { "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; "pathtype" = dontDistribute super."pathtype"; + "pathwalk" = dontDistribute super."pathwalk"; "patronscraper" = dontDistribute super."patronscraper"; "pattern-arrows" = dontDistribute super."pattern-arrows"; "patterns" = dontDistribute super."patterns"; @@ -5874,6 +5884,8 @@ self: super: { "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; "plivo" = dontDistribute super."plivo"; + "plot" = doDistribute super."plot_0_2_3_4"; + "plot-gtk" = doDistribute super."plot-gtk_0_2_0_2"; "plot-gtk-ui" = dontDistribute super."plot-gtk-ui"; "plot-gtk3" = doDistribute super."plot-gtk3_0_1"; "plot-lab" = dontDistribute super."plot-lab"; @@ -5989,6 +6001,7 @@ self: super: { "pretty-error" = dontDistribute super."pretty-error"; "pretty-hex" = dontDistribute super."pretty-hex"; "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-show" = doDistribute super."pretty-show_1_6_8_2"; "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; @@ -6256,6 +6269,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.18.nix b/pkgs/development/haskell-modules/configuration-lts-2.18.nix index d27201f5ddb..a498cf4ed0f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.18.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.18.nix @@ -519,6 +519,7 @@ self: super: { "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"; @@ -1598,6 +1599,7 @@ self: super: { "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; "bindings-yices" = dontDistribute super."bindings-yices"; + "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; "binembed-example" = dontDistribute super."binembed-example"; "bio" = dontDistribute super."bio"; @@ -2248,6 +2250,7 @@ self: super: { "cube" = dontDistribute super."cube"; "cubical" = dontDistribute super."cubical"; "cubicbezier" = dontDistribute super."cubicbezier"; + "cubicspline" = doDistribute super."cubicspline_0_1_1"; "cublas" = dontDistribute super."cublas"; "cuboid" = dontDistribute super."cuboid"; "cuda" = dontDistribute super."cuda"; @@ -3903,9 +3906,11 @@ self: super: { "hly" = dontDistribute super."hly"; "hmark" = dontDistribute super."hmark"; "hmarkup" = dontDistribute super."hmarkup"; + "hmatrix" = doDistribute super."hmatrix_0_16_1_5"; "hmatrix-banded" = dontDistribute super."hmatrix-banded"; "hmatrix-csv" = dontDistribute super."hmatrix-csv"; "hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; + "hmatrix-gsl" = doDistribute super."hmatrix-gsl_0_16_0_3"; "hmatrix-gsl-stats" = doDistribute super."hmatrix-gsl-stats_0_2_1"; "hmatrix-mmap" = dontDistribute super."hmatrix-mmap"; "hmatrix-nipals" = dontDistribute super."hmatrix-nipals"; @@ -4116,6 +4121,7 @@ self: super: { "hsgsom" = dontDistribute super."hsgsom"; "hsgtd" = dontDistribute super."hsgtd"; "hsharc" = dontDistribute super."hsharc"; + "hsignal" = doDistribute super."hsignal_0_2_7_1"; "hsilop" = dontDistribute super."hsilop"; "hsimport" = dontDistribute super."hsimport"; "hsini" = dontDistribute super."hsini"; @@ -4190,6 +4196,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; "hstest" = dontDistribute super."hstest"; @@ -5284,6 +5291,7 @@ self: super: { "msgpack-aeson" = dontDistribute super."msgpack-aeson"; "msgpack-idl" = dontDistribute super."msgpack-idl"; "msgpack-rpc" = dontDistribute super."msgpack-rpc"; + "msh" = dontDistribute super."msh"; "msi-kb-backlit" = dontDistribute super."msi-kb-backlit"; "mstate" = dontDistribute super."mstate"; "msu" = dontDistribute super."msu"; @@ -5441,6 +5449,7 @@ self: super: { "network-enumerator" = dontDistribute super."network-enumerator"; "network-fancy" = dontDistribute super."network-fancy"; "network-house" = dontDistribute super."network-house"; + "network-info" = doDistribute super."network-info_0_2_0_7"; "network-interfacerequest" = dontDistribute super."network-interfacerequest"; "network-ip" = dontDistribute super."network-ip"; "network-metrics" = dontDistribute super."network-metrics"; @@ -5715,6 +5724,7 @@ self: super: { "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; "pathtype" = dontDistribute super."pathtype"; + "pathwalk" = dontDistribute super."pathwalk"; "patronscraper" = dontDistribute super."patronscraper"; "pattern-arrows" = dontDistribute super."pattern-arrows"; "patterns" = dontDistribute super."patterns"; @@ -5864,6 +5874,8 @@ self: super: { "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; "plivo" = dontDistribute super."plivo"; + "plot" = doDistribute super."plot_0_2_3_4"; + "plot-gtk" = doDistribute super."plot-gtk_0_2_0_2"; "plot-gtk-ui" = dontDistribute super."plot-gtk-ui"; "plot-gtk3" = doDistribute super."plot-gtk3_0_1"; "plot-lab" = dontDistribute super."plot-lab"; @@ -5979,6 +5991,7 @@ self: super: { "pretty-error" = dontDistribute super."pretty-error"; "pretty-hex" = dontDistribute super."pretty-hex"; "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-show" = doDistribute super."pretty-show_1_6_8_2"; "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; @@ -6246,6 +6259,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.19.nix b/pkgs/development/haskell-modules/configuration-lts-2.19.nix index 136c0c70035..1669d1f95a4 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.19.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.19.nix @@ -519,6 +519,7 @@ self: super: { "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"; @@ -1598,6 +1599,7 @@ self: super: { "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; "bindings-yices" = dontDistribute super."bindings-yices"; + "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; "binembed-example" = dontDistribute super."binembed-example"; "bio" = dontDistribute super."bio"; @@ -2248,6 +2250,7 @@ self: super: { "cube" = dontDistribute super."cube"; "cubical" = dontDistribute super."cubical"; "cubicbezier" = dontDistribute super."cubicbezier"; + "cubicspline" = doDistribute super."cubicspline_0_1_1"; "cublas" = dontDistribute super."cublas"; "cuboid" = dontDistribute super."cuboid"; "cuda" = dontDistribute super."cuda"; @@ -3902,9 +3905,11 @@ self: super: { "hly" = dontDistribute super."hly"; "hmark" = dontDistribute super."hmark"; "hmarkup" = dontDistribute super."hmarkup"; + "hmatrix" = doDistribute super."hmatrix_0_16_1_5"; "hmatrix-banded" = dontDistribute super."hmatrix-banded"; "hmatrix-csv" = dontDistribute super."hmatrix-csv"; "hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; + "hmatrix-gsl" = doDistribute super."hmatrix-gsl_0_16_0_3"; "hmatrix-gsl-stats" = doDistribute super."hmatrix-gsl-stats_0_2_1"; "hmatrix-mmap" = dontDistribute super."hmatrix-mmap"; "hmatrix-nipals" = dontDistribute super."hmatrix-nipals"; @@ -4115,6 +4120,7 @@ self: super: { "hsgsom" = dontDistribute super."hsgsom"; "hsgtd" = dontDistribute super."hsgtd"; "hsharc" = dontDistribute super."hsharc"; + "hsignal" = doDistribute super."hsignal_0_2_7_1"; "hsilop" = dontDistribute super."hsilop"; "hsimport" = dontDistribute super."hsimport"; "hsini" = dontDistribute super."hsini"; @@ -4189,6 +4195,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; "hstest" = dontDistribute super."hstest"; @@ -5281,6 +5288,7 @@ self: super: { "msgpack-aeson" = dontDistribute super."msgpack-aeson"; "msgpack-idl" = dontDistribute super."msgpack-idl"; "msgpack-rpc" = dontDistribute super."msgpack-rpc"; + "msh" = dontDistribute super."msh"; "msi-kb-backlit" = dontDistribute super."msi-kb-backlit"; "mstate" = dontDistribute super."mstate"; "msu" = dontDistribute super."msu"; @@ -5438,6 +5446,7 @@ self: super: { "network-enumerator" = dontDistribute super."network-enumerator"; "network-fancy" = dontDistribute super."network-fancy"; "network-house" = dontDistribute super."network-house"; + "network-info" = doDistribute super."network-info_0_2_0_7"; "network-interfacerequest" = dontDistribute super."network-interfacerequest"; "network-ip" = dontDistribute super."network-ip"; "network-metrics" = dontDistribute super."network-metrics"; @@ -5712,6 +5721,7 @@ self: super: { "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; "pathtype" = dontDistribute super."pathtype"; + "pathwalk" = dontDistribute super."pathwalk"; "patronscraper" = dontDistribute super."patronscraper"; "pattern-arrows" = dontDistribute super."pattern-arrows"; "patterns" = dontDistribute super."patterns"; @@ -5861,6 +5871,8 @@ self: super: { "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; "plivo" = dontDistribute super."plivo"; + "plot" = doDistribute super."plot_0_2_3_4"; + "plot-gtk" = doDistribute super."plot-gtk_0_2_0_2"; "plot-gtk-ui" = dontDistribute super."plot-gtk-ui"; "plot-gtk3" = doDistribute super."plot-gtk3_0_1"; "plot-lab" = dontDistribute super."plot-lab"; @@ -5976,6 +5988,7 @@ self: super: { "pretty-error" = dontDistribute super."pretty-error"; "pretty-hex" = dontDistribute super."pretty-hex"; "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-show" = doDistribute super."pretty-show_1_6_8_2"; "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; @@ -6243,6 +6256,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.2.nix b/pkgs/development/haskell-modules/configuration-lts-2.2.nix index d2fef21db72..29e024d239f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.2.nix @@ -523,6 +523,7 @@ self: super: { "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"; @@ -1614,6 +1615,7 @@ self: super: { "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; "bindings-yices" = dontDistribute super."bindings-yices"; + "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; "binembed-example" = dontDistribute super."binembed-example"; "bio" = dontDistribute super."bio"; @@ -2274,6 +2276,7 @@ self: super: { "cube" = dontDistribute super."cube"; "cubical" = dontDistribute super."cubical"; "cubicbezier" = dontDistribute super."cubicbezier"; + "cubicspline" = doDistribute super."cubicspline_0_1_1"; "cublas" = dontDistribute super."cublas"; "cuboid" = dontDistribute super."cuboid"; "cuda" = dontDistribute super."cuda"; @@ -3959,9 +3962,11 @@ self: super: { "hly" = dontDistribute super."hly"; "hmark" = dontDistribute super."hmark"; "hmarkup" = dontDistribute super."hmarkup"; + "hmatrix" = doDistribute super."hmatrix_0_16_1_5"; "hmatrix-banded" = dontDistribute super."hmatrix-banded"; "hmatrix-csv" = dontDistribute super."hmatrix-csv"; "hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; + "hmatrix-gsl" = doDistribute super."hmatrix-gsl_0_16_0_3"; "hmatrix-gsl-stats" = doDistribute super."hmatrix-gsl-stats_0_2_1"; "hmatrix-mmap" = dontDistribute super."hmatrix-mmap"; "hmatrix-nipals" = dontDistribute super."hmatrix-nipals"; @@ -4250,6 +4255,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; "hstest" = dontDistribute super."hstest"; @@ -5365,6 +5371,7 @@ self: super: { "msgpack-aeson" = dontDistribute super."msgpack-aeson"; "msgpack-idl" = dontDistribute super."msgpack-idl"; "msgpack-rpc" = dontDistribute super."msgpack-rpc"; + "msh" = dontDistribute super."msh"; "msi-kb-backlit" = dontDistribute super."msi-kb-backlit"; "mstate" = dontDistribute super."mstate"; "msu" = dontDistribute super."msu"; @@ -5806,6 +5813,7 @@ self: super: { "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; "pathtype" = dontDistribute super."pathtype"; + "pathwalk" = dontDistribute super."pathwalk"; "patronscraper" = dontDistribute super."patronscraper"; "pattern-arrows" = dontDistribute super."pattern-arrows"; "patterns" = dontDistribute super."patterns"; @@ -5959,6 +5967,8 @@ self: super: { "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; "plivo" = dontDistribute super."plivo"; + "plot" = doDistribute super."plot_0_2_3_4"; + "plot-gtk" = doDistribute super."plot-gtk_0_2_0_2"; "plot-gtk-ui" = dontDistribute super."plot-gtk-ui"; "plot-gtk3" = doDistribute super."plot-gtk3_0_1"; "plot-lab" = dontDistribute super."plot-lab"; @@ -6076,6 +6086,7 @@ self: super: { "pretty-error" = dontDistribute super."pretty-error"; "pretty-hex" = dontDistribute super."pretty-hex"; "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-show" = doDistribute super."pretty-show_1_6_8_2"; "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; @@ -6345,6 +6356,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.20.nix b/pkgs/development/haskell-modules/configuration-lts-2.20.nix index a49867586e4..a00c7ec820b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.20.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.20.nix @@ -519,6 +519,7 @@ self: super: { "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"; @@ -1598,6 +1599,7 @@ self: super: { "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; "bindings-yices" = dontDistribute super."bindings-yices"; + "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; "binembed-example" = dontDistribute super."binembed-example"; "bio" = dontDistribute super."bio"; @@ -2245,6 +2247,7 @@ self: super: { "cube" = dontDistribute super."cube"; "cubical" = dontDistribute super."cubical"; "cubicbezier" = dontDistribute super."cubicbezier"; + "cubicspline" = doDistribute super."cubicspline_0_1_1"; "cublas" = dontDistribute super."cublas"; "cuboid" = dontDistribute super."cuboid"; "cuda" = dontDistribute super."cuda"; @@ -3897,9 +3900,11 @@ self: super: { "hly" = dontDistribute super."hly"; "hmark" = dontDistribute super."hmark"; "hmarkup" = dontDistribute super."hmarkup"; + "hmatrix" = doDistribute super."hmatrix_0_16_1_5"; "hmatrix-banded" = dontDistribute super."hmatrix-banded"; "hmatrix-csv" = dontDistribute super."hmatrix-csv"; "hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; + "hmatrix-gsl" = doDistribute super."hmatrix-gsl_0_16_0_3"; "hmatrix-gsl-stats" = doDistribute super."hmatrix-gsl-stats_0_2_1"; "hmatrix-mmap" = dontDistribute super."hmatrix-mmap"; "hmatrix-nipals" = dontDistribute super."hmatrix-nipals"; @@ -4110,6 +4115,7 @@ self: super: { "hsgsom" = dontDistribute super."hsgsom"; "hsgtd" = dontDistribute super."hsgtd"; "hsharc" = dontDistribute super."hsharc"; + "hsignal" = doDistribute super."hsignal_0_2_7_1"; "hsilop" = dontDistribute super."hsilop"; "hsimport" = dontDistribute super."hsimport"; "hsini" = dontDistribute super."hsini"; @@ -4184,6 +4190,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; "hstest" = dontDistribute super."hstest"; @@ -5276,6 +5283,7 @@ self: super: { "msgpack-aeson" = dontDistribute super."msgpack-aeson"; "msgpack-idl" = dontDistribute super."msgpack-idl"; "msgpack-rpc" = dontDistribute super."msgpack-rpc"; + "msh" = dontDistribute super."msh"; "msi-kb-backlit" = dontDistribute super."msi-kb-backlit"; "mstate" = dontDistribute super."mstate"; "msu" = dontDistribute super."msu"; @@ -5433,6 +5441,7 @@ self: super: { "network-enumerator" = dontDistribute super."network-enumerator"; "network-fancy" = dontDistribute super."network-fancy"; "network-house" = dontDistribute super."network-house"; + "network-info" = doDistribute super."network-info_0_2_0_7"; "network-interfacerequest" = dontDistribute super."network-interfacerequest"; "network-ip" = dontDistribute super."network-ip"; "network-metrics" = dontDistribute super."network-metrics"; @@ -5707,6 +5716,7 @@ self: super: { "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; "pathtype" = dontDistribute super."pathtype"; + "pathwalk" = dontDistribute super."pathwalk"; "patronscraper" = dontDistribute super."patronscraper"; "pattern-arrows" = dontDistribute super."pattern-arrows"; "patterns" = dontDistribute super."patterns"; @@ -5855,6 +5865,8 @@ self: super: { "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; "plivo" = dontDistribute super."plivo"; + "plot" = doDistribute super."plot_0_2_3_4"; + "plot-gtk" = doDistribute super."plot-gtk_0_2_0_2"; "plot-gtk-ui" = dontDistribute super."plot-gtk-ui"; "plot-gtk3" = doDistribute super."plot-gtk3_0_1"; "plot-lab" = dontDistribute super."plot-lab"; @@ -5970,6 +5982,7 @@ self: super: { "pretty-error" = dontDistribute super."pretty-error"; "pretty-hex" = dontDistribute super."pretty-hex"; "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-show" = doDistribute super."pretty-show_1_6_8_2"; "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; @@ -6237,6 +6250,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.21.nix b/pkgs/development/haskell-modules/configuration-lts-2.21.nix index 26c157dd30e..146ed7c6e2b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.21.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.21.nix @@ -519,6 +519,7 @@ self: super: { "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"; @@ -1598,6 +1599,7 @@ self: super: { "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; "bindings-yices" = dontDistribute super."bindings-yices"; + "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; "binembed-example" = dontDistribute super."binembed-example"; "bio" = dontDistribute super."bio"; @@ -2245,6 +2247,7 @@ self: super: { "cube" = dontDistribute super."cube"; "cubical" = dontDistribute super."cubical"; "cubicbezier" = dontDistribute super."cubicbezier"; + "cubicspline" = doDistribute super."cubicspline_0_1_1"; "cublas" = dontDistribute super."cublas"; "cuboid" = dontDistribute super."cuboid"; "cuda" = dontDistribute super."cuda"; @@ -3896,9 +3899,11 @@ self: super: { "hly" = dontDistribute super."hly"; "hmark" = dontDistribute super."hmark"; "hmarkup" = dontDistribute super."hmarkup"; + "hmatrix" = doDistribute super."hmatrix_0_16_1_5"; "hmatrix-banded" = dontDistribute super."hmatrix-banded"; "hmatrix-csv" = dontDistribute super."hmatrix-csv"; "hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; + "hmatrix-gsl" = doDistribute super."hmatrix-gsl_0_16_0_3"; "hmatrix-gsl-stats" = doDistribute super."hmatrix-gsl-stats_0_2_1"; "hmatrix-mmap" = dontDistribute super."hmatrix-mmap"; "hmatrix-nipals" = dontDistribute super."hmatrix-nipals"; @@ -4109,6 +4114,7 @@ self: super: { "hsgsom" = dontDistribute super."hsgsom"; "hsgtd" = dontDistribute super."hsgtd"; "hsharc" = dontDistribute super."hsharc"; + "hsignal" = doDistribute super."hsignal_0_2_7_1"; "hsilop" = dontDistribute super."hsilop"; "hsimport" = dontDistribute super."hsimport"; "hsini" = dontDistribute super."hsini"; @@ -4183,6 +4189,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; "hstest" = dontDistribute super."hstest"; @@ -5274,6 +5281,7 @@ self: super: { "msgpack-aeson" = dontDistribute super."msgpack-aeson"; "msgpack-idl" = dontDistribute super."msgpack-idl"; "msgpack-rpc" = dontDistribute super."msgpack-rpc"; + "msh" = dontDistribute super."msh"; "msi-kb-backlit" = dontDistribute super."msi-kb-backlit"; "mstate" = dontDistribute super."mstate"; "msu" = dontDistribute super."msu"; @@ -5431,6 +5439,7 @@ self: super: { "network-enumerator" = dontDistribute super."network-enumerator"; "network-fancy" = dontDistribute super."network-fancy"; "network-house" = dontDistribute super."network-house"; + "network-info" = doDistribute super."network-info_0_2_0_7"; "network-interfacerequest" = dontDistribute super."network-interfacerequest"; "network-ip" = dontDistribute super."network-ip"; "network-metrics" = dontDistribute super."network-metrics"; @@ -5705,6 +5714,7 @@ self: super: { "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; "pathtype" = dontDistribute super."pathtype"; + "pathwalk" = dontDistribute super."pathwalk"; "patronscraper" = dontDistribute super."patronscraper"; "pattern-arrows" = dontDistribute super."pattern-arrows"; "patterns" = dontDistribute super."patterns"; @@ -5852,7 +5862,10 @@ self: super: { "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; "plivo" = dontDistribute super."plivo"; + "plot" = doDistribute super."plot_0_2_3_4"; + "plot-gtk" = doDistribute super."plot-gtk_0_2_0_2"; "plot-gtk-ui" = dontDistribute super."plot-gtk-ui"; + "plot-gtk3" = doDistribute super."plot-gtk3_0_1_0_1"; "plot-lab" = dontDistribute super."plot-lab"; "plotfont" = dontDistribute super."plotfont"; "plotserver-api" = dontDistribute super."plotserver-api"; @@ -5965,6 +5978,7 @@ self: super: { "pretty-error" = dontDistribute super."pretty-error"; "pretty-hex" = dontDistribute super."pretty-hex"; "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-show" = doDistribute super."pretty-show_1_6_8_2"; "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; @@ -6232,6 +6246,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.22.nix b/pkgs/development/haskell-modules/configuration-lts-2.22.nix index b58696e7c63..6462f02aaa7 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.22.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.22.nix @@ -519,6 +519,7 @@ self: super: { "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"; @@ -1597,6 +1598,7 @@ self: super: { "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; "bindings-yices" = dontDistribute super."bindings-yices"; + "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; "binembed-example" = dontDistribute super."binembed-example"; "bio" = dontDistribute super."bio"; @@ -2244,6 +2246,7 @@ self: super: { "cube" = dontDistribute super."cube"; "cubical" = dontDistribute super."cubical"; "cubicbezier" = dontDistribute super."cubicbezier"; + "cubicspline" = doDistribute super."cubicspline_0_1_1"; "cublas" = dontDistribute super."cublas"; "cuboid" = dontDistribute super."cuboid"; "cuda" = dontDistribute super."cuda"; @@ -3894,9 +3897,11 @@ self: super: { "hly" = dontDistribute super."hly"; "hmark" = dontDistribute super."hmark"; "hmarkup" = dontDistribute super."hmarkup"; + "hmatrix" = doDistribute super."hmatrix_0_16_1_5"; "hmatrix-banded" = dontDistribute super."hmatrix-banded"; "hmatrix-csv" = dontDistribute super."hmatrix-csv"; "hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; + "hmatrix-gsl" = doDistribute super."hmatrix-gsl_0_16_0_3"; "hmatrix-gsl-stats" = doDistribute super."hmatrix-gsl-stats_0_2_1"; "hmatrix-mmap" = dontDistribute super."hmatrix-mmap"; "hmatrix-nipals" = dontDistribute super."hmatrix-nipals"; @@ -4107,6 +4112,7 @@ self: super: { "hsgsom" = dontDistribute super."hsgsom"; "hsgtd" = dontDistribute super."hsgtd"; "hsharc" = dontDistribute super."hsharc"; + "hsignal" = doDistribute super."hsignal_0_2_7_1"; "hsilop" = dontDistribute super."hsilop"; "hsimport" = dontDistribute super."hsimport"; "hsini" = dontDistribute super."hsini"; @@ -4181,6 +4187,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; "hstest" = dontDistribute super."hstest"; @@ -5270,6 +5277,7 @@ self: super: { "msgpack-aeson" = dontDistribute super."msgpack-aeson"; "msgpack-idl" = dontDistribute super."msgpack-idl"; "msgpack-rpc" = dontDistribute super."msgpack-rpc"; + "msh" = dontDistribute super."msh"; "msi-kb-backlit" = dontDistribute super."msi-kb-backlit"; "mstate" = dontDistribute super."mstate"; "msu" = dontDistribute super."msu"; @@ -5427,6 +5435,7 @@ self: super: { "network-enumerator" = dontDistribute super."network-enumerator"; "network-fancy" = dontDistribute super."network-fancy"; "network-house" = dontDistribute super."network-house"; + "network-info" = doDistribute super."network-info_0_2_0_7"; "network-interfacerequest" = dontDistribute super."network-interfacerequest"; "network-ip" = dontDistribute super."network-ip"; "network-metrics" = dontDistribute super."network-metrics"; @@ -5701,6 +5710,7 @@ self: super: { "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; "pathtype" = dontDistribute super."pathtype"; + "pathwalk" = dontDistribute super."pathwalk"; "patronscraper" = dontDistribute super."patronscraper"; "pattern-arrows" = dontDistribute super."pattern-arrows"; "patterns" = dontDistribute super."patterns"; @@ -5848,7 +5858,10 @@ self: super: { "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; "plivo" = dontDistribute super."plivo"; + "plot" = doDistribute super."plot_0_2_3_4"; + "plot-gtk" = doDistribute super."plot-gtk_0_2_0_2"; "plot-gtk-ui" = dontDistribute super."plot-gtk-ui"; + "plot-gtk3" = doDistribute super."plot-gtk3_0_1_0_1"; "plot-lab" = dontDistribute super."plot-lab"; "plotfont" = dontDistribute super."plotfont"; "plotserver-api" = dontDistribute super."plotserver-api"; @@ -5961,6 +5974,7 @@ self: super: { "pretty-error" = dontDistribute super."pretty-error"; "pretty-hex" = dontDistribute super."pretty-hex"; "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-show" = doDistribute super."pretty-show_1_6_8_2"; "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; @@ -6228,6 +6242,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.3.nix b/pkgs/development/haskell-modules/configuration-lts-2.3.nix index 32920ffdf1b..e5f8c1e6d30 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.3.nix @@ -523,6 +523,7 @@ self: super: { "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"; @@ -1614,6 +1615,7 @@ self: super: { "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; "bindings-yices" = dontDistribute super."bindings-yices"; + "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; "binembed-example" = dontDistribute super."binembed-example"; "bio" = dontDistribute super."bio"; @@ -2274,6 +2276,7 @@ self: super: { "cube" = dontDistribute super."cube"; "cubical" = dontDistribute super."cubical"; "cubicbezier" = dontDistribute super."cubicbezier"; + "cubicspline" = doDistribute super."cubicspline_0_1_1"; "cublas" = dontDistribute super."cublas"; "cuboid" = dontDistribute super."cuboid"; "cuda" = dontDistribute super."cuda"; @@ -3958,9 +3961,11 @@ self: super: { "hly" = dontDistribute super."hly"; "hmark" = dontDistribute super."hmark"; "hmarkup" = dontDistribute super."hmarkup"; + "hmatrix" = doDistribute super."hmatrix_0_16_1_5"; "hmatrix-banded" = dontDistribute super."hmatrix-banded"; "hmatrix-csv" = dontDistribute super."hmatrix-csv"; "hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; + "hmatrix-gsl" = doDistribute super."hmatrix-gsl_0_16_0_3"; "hmatrix-gsl-stats" = doDistribute super."hmatrix-gsl-stats_0_2_1"; "hmatrix-mmap" = dontDistribute super."hmatrix-mmap"; "hmatrix-nipals" = dontDistribute super."hmatrix-nipals"; @@ -4249,6 +4254,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; "hstest" = dontDistribute super."hstest"; @@ -5363,6 +5369,7 @@ self: super: { "msgpack-aeson" = dontDistribute super."msgpack-aeson"; "msgpack-idl" = dontDistribute super."msgpack-idl"; "msgpack-rpc" = dontDistribute super."msgpack-rpc"; + "msh" = dontDistribute super."msh"; "msi-kb-backlit" = dontDistribute super."msi-kb-backlit"; "mstate" = dontDistribute super."mstate"; "msu" = dontDistribute super."msu"; @@ -5804,6 +5811,7 @@ self: super: { "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; "pathtype" = dontDistribute super."pathtype"; + "pathwalk" = dontDistribute super."pathwalk"; "patronscraper" = dontDistribute super."patronscraper"; "pattern-arrows" = dontDistribute super."pattern-arrows"; "patterns" = dontDistribute super."patterns"; @@ -5957,6 +5965,8 @@ self: super: { "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; "plivo" = dontDistribute super."plivo"; + "plot" = doDistribute super."plot_0_2_3_4"; + "plot-gtk" = doDistribute super."plot-gtk_0_2_0_2"; "plot-gtk-ui" = dontDistribute super."plot-gtk-ui"; "plot-gtk3" = doDistribute super."plot-gtk3_0_1"; "plot-lab" = dontDistribute super."plot-lab"; @@ -6074,6 +6084,7 @@ self: super: { "pretty-error" = dontDistribute super."pretty-error"; "pretty-hex" = dontDistribute super."pretty-hex"; "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-show" = doDistribute super."pretty-show_1_6_8_2"; "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; @@ -6343,6 +6354,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.4.nix b/pkgs/development/haskell-modules/configuration-lts-2.4.nix index f3741eadc61..d12aac87096 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.4.nix @@ -523,6 +523,7 @@ self: super: { "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"; @@ -1613,6 +1614,7 @@ self: super: { "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; "bindings-yices" = dontDistribute super."bindings-yices"; + "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; "binembed-example" = dontDistribute super."binembed-example"; "bio" = dontDistribute super."bio"; @@ -2273,6 +2275,7 @@ self: super: { "cube" = dontDistribute super."cube"; "cubical" = dontDistribute super."cubical"; "cubicbezier" = dontDistribute super."cubicbezier"; + "cubicspline" = doDistribute super."cubicspline_0_1_1"; "cublas" = dontDistribute super."cublas"; "cuboid" = dontDistribute super."cuboid"; "cuda" = dontDistribute super."cuda"; @@ -3957,9 +3960,11 @@ self: super: { "hly" = dontDistribute super."hly"; "hmark" = dontDistribute super."hmark"; "hmarkup" = dontDistribute super."hmarkup"; + "hmatrix" = doDistribute super."hmatrix_0_16_1_5"; "hmatrix-banded" = dontDistribute super."hmatrix-banded"; "hmatrix-csv" = dontDistribute super."hmatrix-csv"; "hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; + "hmatrix-gsl" = doDistribute super."hmatrix-gsl_0_16_0_3"; "hmatrix-gsl-stats" = doDistribute super."hmatrix-gsl-stats_0_2_1"; "hmatrix-mmap" = dontDistribute super."hmatrix-mmap"; "hmatrix-nipals" = dontDistribute super."hmatrix-nipals"; @@ -4248,6 +4253,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; "hstest" = dontDistribute super."hstest"; @@ -5361,6 +5367,7 @@ self: super: { "msgpack-aeson" = dontDistribute super."msgpack-aeson"; "msgpack-idl" = dontDistribute super."msgpack-idl"; "msgpack-rpc" = dontDistribute super."msgpack-rpc"; + "msh" = dontDistribute super."msh"; "msi-kb-backlit" = dontDistribute super."msi-kb-backlit"; "mstate" = dontDistribute super."mstate"; "msu" = dontDistribute super."msu"; @@ -5801,6 +5808,7 @@ self: super: { "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; "pathtype" = dontDistribute super."pathtype"; + "pathwalk" = dontDistribute super."pathwalk"; "patronscraper" = dontDistribute super."patronscraper"; "pattern-arrows" = dontDistribute super."pattern-arrows"; "patterns" = dontDistribute super."patterns"; @@ -5953,6 +5961,8 @@ self: super: { "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; "plivo" = dontDistribute super."plivo"; + "plot" = doDistribute super."plot_0_2_3_4"; + "plot-gtk" = doDistribute super."plot-gtk_0_2_0_2"; "plot-gtk-ui" = dontDistribute super."plot-gtk-ui"; "plot-gtk3" = doDistribute super."plot-gtk3_0_1"; "plot-lab" = dontDistribute super."plot-lab"; @@ -6070,6 +6080,7 @@ self: super: { "pretty-error" = dontDistribute super."pretty-error"; "pretty-hex" = dontDistribute super."pretty-hex"; "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-show" = doDistribute super."pretty-show_1_6_8_2"; "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; @@ -6339,6 +6350,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.5.nix b/pkgs/development/haskell-modules/configuration-lts-2.5.nix index d962d5a7305..8e93b819e9f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.5.nix @@ -523,6 +523,7 @@ self: super: { "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"; @@ -1613,6 +1614,7 @@ self: super: { "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; "bindings-yices" = dontDistribute super."bindings-yices"; + "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; "binembed-example" = dontDistribute super."binembed-example"; "bio" = dontDistribute super."bio"; @@ -2272,6 +2274,7 @@ self: super: { "cube" = dontDistribute super."cube"; "cubical" = dontDistribute super."cubical"; "cubicbezier" = dontDistribute super."cubicbezier"; + "cubicspline" = doDistribute super."cubicspline_0_1_1"; "cublas" = dontDistribute super."cublas"; "cuboid" = dontDistribute super."cuboid"; "cuda" = dontDistribute super."cuda"; @@ -3955,9 +3958,11 @@ self: super: { "hly" = dontDistribute super."hly"; "hmark" = dontDistribute super."hmark"; "hmarkup" = dontDistribute super."hmarkup"; + "hmatrix" = doDistribute super."hmatrix_0_16_1_5"; "hmatrix-banded" = dontDistribute super."hmatrix-banded"; "hmatrix-csv" = dontDistribute super."hmatrix-csv"; "hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; + "hmatrix-gsl" = doDistribute super."hmatrix-gsl_0_16_0_3"; "hmatrix-gsl-stats" = doDistribute super."hmatrix-gsl-stats_0_2_1"; "hmatrix-mmap" = dontDistribute super."hmatrix-mmap"; "hmatrix-nipals" = dontDistribute super."hmatrix-nipals"; @@ -4246,6 +4251,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; "hstest" = dontDistribute super."hstest"; @@ -5358,6 +5364,7 @@ self: super: { "msgpack-aeson" = dontDistribute super."msgpack-aeson"; "msgpack-idl" = dontDistribute super."msgpack-idl"; "msgpack-rpc" = dontDistribute super."msgpack-rpc"; + "msh" = dontDistribute super."msh"; "msi-kb-backlit" = dontDistribute super."msi-kb-backlit"; "mstate" = dontDistribute super."mstate"; "msu" = dontDistribute super."msu"; @@ -5798,6 +5805,7 @@ self: super: { "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; "pathtype" = dontDistribute super."pathtype"; + "pathwalk" = dontDistribute super."pathwalk"; "patronscraper" = dontDistribute super."patronscraper"; "pattern-arrows" = dontDistribute super."pattern-arrows"; "patterns" = dontDistribute super."patterns"; @@ -5950,6 +5958,8 @@ self: super: { "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; "plivo" = dontDistribute super."plivo"; + "plot" = doDistribute super."plot_0_2_3_4"; + "plot-gtk" = doDistribute super."plot-gtk_0_2_0_2"; "plot-gtk-ui" = dontDistribute super."plot-gtk-ui"; "plot-gtk3" = doDistribute super."plot-gtk3_0_1"; "plot-lab" = dontDistribute super."plot-lab"; @@ -6067,6 +6077,7 @@ self: super: { "pretty-error" = dontDistribute super."pretty-error"; "pretty-hex" = dontDistribute super."pretty-hex"; "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-show" = doDistribute super."pretty-show_1_6_8_2"; "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; @@ -6336,6 +6347,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.6.nix b/pkgs/development/haskell-modules/configuration-lts-2.6.nix index 00b891a1d02..da7cdc8c387 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.6.nix @@ -523,6 +523,7 @@ self: super: { "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"; @@ -1610,6 +1611,7 @@ self: super: { "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; "bindings-yices" = dontDistribute super."bindings-yices"; + "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; "binembed-example" = dontDistribute super."binembed-example"; "bio" = dontDistribute super."bio"; @@ -2268,6 +2270,7 @@ self: super: { "cube" = dontDistribute super."cube"; "cubical" = dontDistribute super."cubical"; "cubicbezier" = dontDistribute super."cubicbezier"; + "cubicspline" = doDistribute super."cubicspline_0_1_1"; "cublas" = dontDistribute super."cublas"; "cuboid" = dontDistribute super."cuboid"; "cuda" = dontDistribute super."cuda"; @@ -3949,9 +3952,11 @@ self: super: { "hly" = dontDistribute super."hly"; "hmark" = dontDistribute super."hmark"; "hmarkup" = dontDistribute super."hmarkup"; + "hmatrix" = doDistribute super."hmatrix_0_16_1_5"; "hmatrix-banded" = dontDistribute super."hmatrix-banded"; "hmatrix-csv" = dontDistribute super."hmatrix-csv"; "hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; + "hmatrix-gsl" = doDistribute super."hmatrix-gsl_0_16_0_3"; "hmatrix-gsl-stats" = doDistribute super."hmatrix-gsl-stats_0_2_1"; "hmatrix-mmap" = dontDistribute super."hmatrix-mmap"; "hmatrix-nipals" = dontDistribute super."hmatrix-nipals"; @@ -4240,6 +4245,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; "hstest" = dontDistribute super."hstest"; @@ -5352,6 +5358,7 @@ self: super: { "msgpack-aeson" = dontDistribute super."msgpack-aeson"; "msgpack-idl" = dontDistribute super."msgpack-idl"; "msgpack-rpc" = dontDistribute super."msgpack-rpc"; + "msh" = dontDistribute super."msh"; "msi-kb-backlit" = dontDistribute super."msi-kb-backlit"; "mstate" = dontDistribute super."mstate"; "msu" = dontDistribute super."msu"; @@ -5791,6 +5798,7 @@ self: super: { "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; "pathtype" = dontDistribute super."pathtype"; + "pathwalk" = dontDistribute super."pathwalk"; "patronscraper" = dontDistribute super."patronscraper"; "pattern-arrows" = dontDistribute super."pattern-arrows"; "patterns" = dontDistribute super."patterns"; @@ -5943,6 +5951,8 @@ self: super: { "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; "plivo" = dontDistribute super."plivo"; + "plot" = doDistribute super."plot_0_2_3_4"; + "plot-gtk" = doDistribute super."plot-gtk_0_2_0_2"; "plot-gtk-ui" = dontDistribute super."plot-gtk-ui"; "plot-gtk3" = doDistribute super."plot-gtk3_0_1"; "plot-lab" = dontDistribute super."plot-lab"; @@ -6060,6 +6070,7 @@ self: super: { "pretty-error" = dontDistribute super."pretty-error"; "pretty-hex" = dontDistribute super."pretty-hex"; "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-show" = doDistribute super."pretty-show_1_6_8_2"; "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; @@ -6329,6 +6340,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.7.nix b/pkgs/development/haskell-modules/configuration-lts-2.7.nix index 1f84761ef23..97eacfad40c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.7.nix @@ -522,6 +522,7 @@ self: super: { "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"; @@ -1609,6 +1610,7 @@ self: super: { "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; "bindings-yices" = dontDistribute super."bindings-yices"; + "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; "binembed-example" = dontDistribute super."binembed-example"; "bio" = dontDistribute super."bio"; @@ -2267,6 +2269,7 @@ self: super: { "cube" = dontDistribute super."cube"; "cubical" = dontDistribute super."cubical"; "cubicbezier" = dontDistribute super."cubicbezier"; + "cubicspline" = doDistribute super."cubicspline_0_1_1"; "cublas" = dontDistribute super."cublas"; "cuboid" = dontDistribute super."cuboid"; "cuda" = dontDistribute super."cuda"; @@ -3948,9 +3951,11 @@ self: super: { "hly" = dontDistribute super."hly"; "hmark" = dontDistribute super."hmark"; "hmarkup" = dontDistribute super."hmarkup"; + "hmatrix" = doDistribute super."hmatrix_0_16_1_5"; "hmatrix-banded" = dontDistribute super."hmatrix-banded"; "hmatrix-csv" = dontDistribute super."hmatrix-csv"; "hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; + "hmatrix-gsl" = doDistribute super."hmatrix-gsl_0_16_0_3"; "hmatrix-gsl-stats" = doDistribute super."hmatrix-gsl-stats_0_2_1"; "hmatrix-mmap" = dontDistribute super."hmatrix-mmap"; "hmatrix-nipals" = dontDistribute super."hmatrix-nipals"; @@ -4239,6 +4244,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; "hstest" = dontDistribute super."hstest"; @@ -5351,6 +5357,7 @@ self: super: { "msgpack-aeson" = dontDistribute super."msgpack-aeson"; "msgpack-idl" = dontDistribute super."msgpack-idl"; "msgpack-rpc" = dontDistribute super."msgpack-rpc"; + "msh" = dontDistribute super."msh"; "msi-kb-backlit" = dontDistribute super."msi-kb-backlit"; "mstate" = dontDistribute super."mstate"; "msu" = dontDistribute super."msu"; @@ -5790,6 +5797,7 @@ self: super: { "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; "pathtype" = dontDistribute super."pathtype"; + "pathwalk" = dontDistribute super."pathwalk"; "patronscraper" = dontDistribute super."patronscraper"; "pattern-arrows" = dontDistribute super."pattern-arrows"; "patterns" = dontDistribute super."patterns"; @@ -5942,6 +5950,8 @@ self: super: { "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; "plivo" = dontDistribute super."plivo"; + "plot" = doDistribute super."plot_0_2_3_4"; + "plot-gtk" = doDistribute super."plot-gtk_0_2_0_2"; "plot-gtk-ui" = dontDistribute super."plot-gtk-ui"; "plot-gtk3" = doDistribute super."plot-gtk3_0_1"; "plot-lab" = dontDistribute super."plot-lab"; @@ -6059,6 +6069,7 @@ self: super: { "pretty-error" = dontDistribute super."pretty-error"; "pretty-hex" = dontDistribute super."pretty-hex"; "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-show" = doDistribute super."pretty-show_1_6_8_2"; "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; @@ -6328,6 +6339,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.8.nix b/pkgs/development/haskell-modules/configuration-lts-2.8.nix index 6c63780de42..778abcbae4c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.8.nix @@ -522,6 +522,7 @@ self: super: { "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"; @@ -1608,6 +1609,7 @@ self: super: { "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; "bindings-yices" = dontDistribute super."bindings-yices"; + "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; "binembed-example" = dontDistribute super."binembed-example"; "bio" = dontDistribute super."bio"; @@ -2266,6 +2268,7 @@ self: super: { "cube" = dontDistribute super."cube"; "cubical" = dontDistribute super."cubical"; "cubicbezier" = dontDistribute super."cubicbezier"; + "cubicspline" = doDistribute super."cubicspline_0_1_1"; "cublas" = dontDistribute super."cublas"; "cuboid" = dontDistribute super."cuboid"; "cuda" = dontDistribute super."cuda"; @@ -3946,9 +3949,11 @@ self: super: { "hly" = dontDistribute super."hly"; "hmark" = dontDistribute super."hmark"; "hmarkup" = dontDistribute super."hmarkup"; + "hmatrix" = doDistribute super."hmatrix_0_16_1_5"; "hmatrix-banded" = dontDistribute super."hmatrix-banded"; "hmatrix-csv" = dontDistribute super."hmatrix-csv"; "hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; + "hmatrix-gsl" = doDistribute super."hmatrix-gsl_0_16_0_3"; "hmatrix-gsl-stats" = doDistribute super."hmatrix-gsl-stats_0_2_1"; "hmatrix-mmap" = dontDistribute super."hmatrix-mmap"; "hmatrix-nipals" = dontDistribute super."hmatrix-nipals"; @@ -4237,6 +4242,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; "hstest" = dontDistribute super."hstest"; @@ -5347,6 +5353,7 @@ self: super: { "msgpack-aeson" = dontDistribute super."msgpack-aeson"; "msgpack-idl" = dontDistribute super."msgpack-idl"; "msgpack-rpc" = dontDistribute super."msgpack-rpc"; + "msh" = dontDistribute super."msh"; "msi-kb-backlit" = dontDistribute super."msi-kb-backlit"; "mstate" = dontDistribute super."mstate"; "msu" = dontDistribute super."msu"; @@ -5786,6 +5793,7 @@ self: super: { "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; "pathtype" = dontDistribute super."pathtype"; + "pathwalk" = dontDistribute super."pathwalk"; "patronscraper" = dontDistribute super."patronscraper"; "pattern-arrows" = dontDistribute super."pattern-arrows"; "patterns" = dontDistribute super."patterns"; @@ -5938,6 +5946,8 @@ self: super: { "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; "plivo" = dontDistribute super."plivo"; + "plot" = doDistribute super."plot_0_2_3_4"; + "plot-gtk" = doDistribute super."plot-gtk_0_2_0_2"; "plot-gtk-ui" = dontDistribute super."plot-gtk-ui"; "plot-gtk3" = doDistribute super."plot-gtk3_0_1"; "plot-lab" = dontDistribute super."plot-lab"; @@ -6055,6 +6065,7 @@ self: super: { "pretty-error" = dontDistribute super."pretty-error"; "pretty-hex" = dontDistribute super."pretty-hex"; "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-show" = doDistribute super."pretty-show_1_6_8_2"; "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; @@ -6324,6 +6335,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.9.nix b/pkgs/development/haskell-modules/configuration-lts-2.9.nix index 4ee765bce03..32065d25f22 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.9.nix @@ -522,6 +522,7 @@ self: super: { "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"; @@ -1606,6 +1607,7 @@ self: super: { "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; "bindings-yices" = dontDistribute super."bindings-yices"; + "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; "binembed-example" = dontDistribute super."binembed-example"; "bio" = dontDistribute super."bio"; @@ -2263,6 +2265,7 @@ self: super: { "cube" = dontDistribute super."cube"; "cubical" = dontDistribute super."cubical"; "cubicbezier" = dontDistribute super."cubicbezier"; + "cubicspline" = doDistribute super."cubicspline_0_1_1"; "cublas" = dontDistribute super."cublas"; "cuboid" = dontDistribute super."cuboid"; "cuda" = dontDistribute super."cuda"; @@ -3940,9 +3943,11 @@ self: super: { "hly" = dontDistribute super."hly"; "hmark" = dontDistribute super."hmark"; "hmarkup" = dontDistribute super."hmarkup"; + "hmatrix" = doDistribute super."hmatrix_0_16_1_5"; "hmatrix-banded" = dontDistribute super."hmatrix-banded"; "hmatrix-csv" = dontDistribute super."hmatrix-csv"; "hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; + "hmatrix-gsl" = doDistribute super."hmatrix-gsl_0_16_0_3"; "hmatrix-gsl-stats" = doDistribute super."hmatrix-gsl-stats_0_2_1"; "hmatrix-mmap" = dontDistribute super."hmatrix-mmap"; "hmatrix-nipals" = dontDistribute super."hmatrix-nipals"; @@ -4230,6 +4235,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; "hstest" = dontDistribute super."hstest"; @@ -5337,6 +5343,7 @@ self: super: { "msgpack-aeson" = dontDistribute super."msgpack-aeson"; "msgpack-idl" = dontDistribute super."msgpack-idl"; "msgpack-rpc" = dontDistribute super."msgpack-rpc"; + "msh" = dontDistribute super."msh"; "msi-kb-backlit" = dontDistribute super."msi-kb-backlit"; "mstate" = dontDistribute super."mstate"; "msu" = dontDistribute super."msu"; @@ -5776,6 +5783,7 @@ self: super: { "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; "pathtype" = dontDistribute super."pathtype"; + "pathwalk" = dontDistribute super."pathwalk"; "patronscraper" = dontDistribute super."patronscraper"; "pattern-arrows" = dontDistribute super."pattern-arrows"; "patterns" = dontDistribute super."patterns"; @@ -5926,6 +5934,8 @@ self: super: { "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; "plivo" = dontDistribute super."plivo"; + "plot" = doDistribute super."plot_0_2_3_4"; + "plot-gtk" = doDistribute super."plot-gtk_0_2_0_2"; "plot-gtk-ui" = dontDistribute super."plot-gtk-ui"; "plot-gtk3" = doDistribute super."plot-gtk3_0_1"; "plot-lab" = dontDistribute super."plot-lab"; @@ -6042,6 +6052,7 @@ self: super: { "pretty-error" = dontDistribute super."pretty-error"; "pretty-hex" = dontDistribute super."pretty-hex"; "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-show" = doDistribute super."pretty-show_1_6_8_2"; "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; @@ -6311,6 +6322,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.0.nix b/pkgs/development/haskell-modules/configuration-lts-3.0.nix index c9d0bf2a3c8..a426a4f1066 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.0.nix @@ -506,6 +506,7 @@ self: super: { "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"; @@ -1544,6 +1545,7 @@ self: super: { "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; "bindings-yices" = dontDistribute super."bindings-yices"; + "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; "binembed-example" = dontDistribute super."binembed-example"; "bio" = dontDistribute super."bio"; @@ -1927,6 +1929,7 @@ self: super: { "codecov-haskell" = dontDistribute super."codecov-haskell"; "codemonitor" = dontDistribute super."codemonitor"; "codepad" = dontDistribute super."codepad"; + "codex" = doDistribute super."codex_0_3_0_8"; "codo-notation" = dontDistribute super."codo-notation"; "cofunctor" = dontDistribute super."cofunctor"; "cognimeta-utils" = dontDistribute super."cognimeta-utils"; @@ -2162,6 +2165,7 @@ self: super: { "cube" = dontDistribute super."cube"; "cubical" = dontDistribute super."cubical"; "cubicbezier" = dontDistribute super."cubicbezier"; + "cubicspline" = doDistribute super."cubicspline_0_1_1"; "cublas" = dontDistribute super."cublas"; "cuboid" = dontDistribute super."cuboid"; "cuda" = dontDistribute super."cuda"; @@ -2624,6 +2628,7 @@ self: super: { "empty" = dontDistribute super."empty"; "encoding" = dontDistribute super."encoding"; "endo" = dontDistribute super."endo"; + "engine-io" = doDistribute super."engine-io_1_2_10"; "engine-io-snap" = dontDistribute super."engine-io-snap"; "engine-io-wai" = dontDistribute super."engine-io-wai"; "engine-io-yesod" = dontDistribute super."engine-io-yesod"; @@ -3747,9 +3752,11 @@ self: super: { "hly" = dontDistribute super."hly"; "hmark" = dontDistribute super."hmark"; "hmarkup" = dontDistribute super."hmarkup"; + "hmatrix" = doDistribute super."hmatrix_0_16_1_5"; "hmatrix-banded" = dontDistribute super."hmatrix-banded"; "hmatrix-csv" = dontDistribute super."hmatrix-csv"; "hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; + "hmatrix-gsl" = doDistribute super."hmatrix-gsl_0_16_0_3"; "hmatrix-gsl-stats" = doDistribute super."hmatrix-gsl-stats_0_4_1"; "hmatrix-mmap" = dontDistribute super."hmatrix-mmap"; "hmatrix-nipals" = dontDistribute super."hmatrix-nipals"; @@ -3956,6 +3963,7 @@ self: super: { "hsgsom" = dontDistribute super."hsgsom"; "hsgtd" = dontDistribute super."hsgtd"; "hsharc" = dontDistribute super."hsharc"; + "hsignal" = doDistribute super."hsignal_0_2_7_1"; "hsilop" = dontDistribute super."hsilop"; "hsimport" = dontDistribute super."hsimport"; "hsini" = dontDistribute super."hsini"; @@ -4028,6 +4036,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstest" = dontDistribute super."hstest"; "hstidy" = dontDistribute super."hstidy"; @@ -4171,6 +4180,7 @@ self: super: { "ib-api" = dontDistribute super."ib-api"; "iban" = dontDistribute super."iban"; "iconv" = dontDistribute super."iconv"; + "ide-backend-common" = doDistribute super."ide-backend-common_0_10_0"; "ideas" = dontDistribute super."ideas"; "ideas-math" = dontDistribute super."ideas-math"; "idempotent" = dontDistribute super."idempotent"; @@ -5053,6 +5063,7 @@ self: super: { "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"; @@ -5193,6 +5204,7 @@ self: super: { "network-bitcoin" = dontDistribute super."network-bitcoin"; "network-builder" = dontDistribute super."network-builder"; "network-bytestring" = dontDistribute super."network-bytestring"; + "network-carbon" = doDistribute super."network-carbon_1_0_5"; "network-conduit" = dontDistribute super."network-conduit"; "network-connection" = dontDistribute super."network-connection"; "network-data" = dontDistribute super."network-data"; @@ -5201,6 +5213,7 @@ self: super: { "network-enumerator" = dontDistribute super."network-enumerator"; "network-fancy" = dontDistribute super."network-fancy"; "network-house" = dontDistribute super."network-house"; + "network-info" = doDistribute super."network-info_0_2_0_7"; "network-interfacerequest" = dontDistribute super."network-interfacerequest"; "network-ip" = dontDistribute super."network-ip"; "network-metrics" = dontDistribute super."network-metrics"; @@ -5407,6 +5420,7 @@ self: super: { "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; + "pandoc" = doDistribute super."pandoc_1_15_0_6"; "pandoc-citeproc" = doDistribute super."pandoc-citeproc_0_7_3"; "pandoc-citeproc-preamble" = dontDistribute super."pandoc-citeproc-preamble"; "pandoc-crossref" = dontDistribute super."pandoc-crossref"; @@ -5464,6 +5478,7 @@ self: super: { "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; "pathtype" = dontDistribute super."pathtype"; + "pathwalk" = dontDistribute super."pathwalk"; "patronscraper" = dontDistribute super."patronscraper"; "patterns" = dontDistribute super."patterns"; "paymill" = dontDistribute super."paymill"; @@ -5600,7 +5615,10 @@ self: super: { "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; "plivo" = dontDistribute super."plivo"; + "plot" = doDistribute super."plot_0_2_3_4"; + "plot-gtk" = doDistribute super."plot-gtk_0_2_0_2"; "plot-gtk-ui" = dontDistribute super."plot-gtk-ui"; + "plot-gtk3" = doDistribute super."plot-gtk3_0_1_0_1"; "plot-lab" = dontDistribute super."plot-lab"; "plotfont" = dontDistribute super."plotfont"; "plotserver-api" = dontDistribute super."plotserver-api"; @@ -5712,6 +5730,7 @@ self: super: { "pretty-error" = dontDistribute super."pretty-error"; "pretty-hex" = dontDistribute super."pretty-hex"; "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-show" = doDistribute super."pretty-show_1_6_8_2"; "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; @@ -5970,6 +5989,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -6552,6 +6572,7 @@ self: super: { "sockaddr" = dontDistribute super."sockaddr"; "socket" = dontDistribute super."socket"; "socket-activation" = dontDistribute super."socket-activation"; + "socket-io" = doDistribute super."socket-io_1_3_3"; "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "soegtk" = dontDistribute super."soegtk"; @@ -7512,6 +7533,7 @@ self: super: { "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; "webdriver" = doDistribute super."webdriver_0_6_2"; + "webdriver-angular" = doDistribute super."webdriver-angular_0_1_7"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.1.nix b/pkgs/development/haskell-modules/configuration-lts-3.1.nix index d07a15de613..23680651501 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.1.nix @@ -506,6 +506,7 @@ self: super: { "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"; @@ -1541,6 +1542,7 @@ self: super: { "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; "bindings-yices" = dontDistribute super."bindings-yices"; + "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; "binembed-example" = dontDistribute super."binembed-example"; "bio" = dontDistribute super."bio"; @@ -1924,6 +1926,7 @@ self: super: { "codecov-haskell" = dontDistribute super."codecov-haskell"; "codemonitor" = dontDistribute super."codemonitor"; "codepad" = dontDistribute super."codepad"; + "codex" = doDistribute super."codex_0_3_0_8"; "codo-notation" = dontDistribute super."codo-notation"; "cofunctor" = dontDistribute super."cofunctor"; "cognimeta-utils" = dontDistribute super."cognimeta-utils"; @@ -2159,6 +2162,7 @@ self: super: { "cube" = dontDistribute super."cube"; "cubical" = dontDistribute super."cubical"; "cubicbezier" = dontDistribute super."cubicbezier"; + "cubicspline" = doDistribute super."cubicspline_0_1_1"; "cublas" = dontDistribute super."cublas"; "cuboid" = dontDistribute super."cuboid"; "cuda" = dontDistribute super."cuda"; @@ -2621,6 +2625,7 @@ self: super: { "empty" = dontDistribute super."empty"; "encoding" = dontDistribute super."encoding"; "endo" = dontDistribute super."endo"; + "engine-io" = doDistribute super."engine-io_1_2_10"; "engine-io-snap" = dontDistribute super."engine-io-snap"; "engine-io-wai" = dontDistribute super."engine-io-wai"; "engine-io-yesod" = dontDistribute super."engine-io-yesod"; @@ -3740,9 +3745,11 @@ self: super: { "hly" = dontDistribute super."hly"; "hmark" = dontDistribute super."hmark"; "hmarkup" = dontDistribute super."hmarkup"; + "hmatrix" = doDistribute super."hmatrix_0_16_1_5"; "hmatrix-banded" = dontDistribute super."hmatrix-banded"; "hmatrix-csv" = dontDistribute super."hmatrix-csv"; "hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; + "hmatrix-gsl" = doDistribute super."hmatrix-gsl_0_16_0_3"; "hmatrix-gsl-stats" = doDistribute super."hmatrix-gsl-stats_0_4_1"; "hmatrix-mmap" = dontDistribute super."hmatrix-mmap"; "hmatrix-nipals" = dontDistribute super."hmatrix-nipals"; @@ -3949,6 +3956,7 @@ self: super: { "hsgsom" = dontDistribute super."hsgsom"; "hsgtd" = dontDistribute super."hsgtd"; "hsharc" = dontDistribute super."hsharc"; + "hsignal" = doDistribute super."hsignal_0_2_7_1"; "hsilop" = dontDistribute super."hsilop"; "hsimport" = dontDistribute super."hsimport"; "hsini" = dontDistribute super."hsini"; @@ -4021,6 +4029,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstest" = dontDistribute super."hstest"; "hstidy" = dontDistribute super."hstidy"; @@ -4164,6 +4173,7 @@ self: super: { "ib-api" = dontDistribute super."ib-api"; "iban" = dontDistribute super."iban"; "iconv" = dontDistribute super."iconv"; + "ide-backend-common" = doDistribute super."ide-backend-common_0_10_0"; "ideas" = dontDistribute super."ideas"; "ideas-math" = dontDistribute super."ideas-math"; "idempotent" = dontDistribute super."idempotent"; @@ -5045,6 +5055,7 @@ self: super: { "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"; @@ -5184,6 +5195,7 @@ self: super: { "network-bitcoin" = dontDistribute super."network-bitcoin"; "network-builder" = dontDistribute super."network-builder"; "network-bytestring" = dontDistribute super."network-bytestring"; + "network-carbon" = doDistribute super."network-carbon_1_0_5"; "network-conduit" = dontDistribute super."network-conduit"; "network-connection" = dontDistribute super."network-connection"; "network-data" = dontDistribute super."network-data"; @@ -5192,6 +5204,7 @@ self: super: { "network-enumerator" = dontDistribute super."network-enumerator"; "network-fancy" = dontDistribute super."network-fancy"; "network-house" = dontDistribute super."network-house"; + "network-info" = doDistribute super."network-info_0_2_0_7"; "network-interfacerequest" = dontDistribute super."network-interfacerequest"; "network-ip" = dontDistribute super."network-ip"; "network-metrics" = dontDistribute super."network-metrics"; @@ -5398,6 +5411,7 @@ self: super: { "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; + "pandoc" = doDistribute super."pandoc_1_15_0_6"; "pandoc-citeproc" = doDistribute super."pandoc-citeproc_0_7_3_1"; "pandoc-citeproc-preamble" = dontDistribute super."pandoc-citeproc-preamble"; "pandoc-crossref" = dontDistribute super."pandoc-crossref"; @@ -5455,6 +5469,7 @@ self: super: { "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; "pathtype" = dontDistribute super."pathtype"; + "pathwalk" = dontDistribute super."pathwalk"; "patronscraper" = dontDistribute super."patronscraper"; "patterns" = dontDistribute super."patterns"; "paymill" = dontDistribute super."paymill"; @@ -5590,7 +5605,10 @@ self: super: { "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; "plivo" = dontDistribute super."plivo"; + "plot" = doDistribute super."plot_0_2_3_4"; + "plot-gtk" = doDistribute super."plot-gtk_0_2_0_2"; "plot-gtk-ui" = dontDistribute super."plot-gtk-ui"; + "plot-gtk3" = doDistribute super."plot-gtk3_0_1_0_1"; "plot-lab" = dontDistribute super."plot-lab"; "plotfont" = dontDistribute super."plotfont"; "plotserver-api" = dontDistribute super."plotserver-api"; @@ -5702,6 +5720,7 @@ self: super: { "pretty-error" = dontDistribute super."pretty-error"; "pretty-hex" = dontDistribute super."pretty-hex"; "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-show" = doDistribute super."pretty-show_1_6_8_2"; "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; @@ -5960,6 +5979,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -6541,6 +6561,7 @@ self: super: { "sockaddr" = dontDistribute super."sockaddr"; "socket" = dontDistribute super."socket"; "socket-activation" = dontDistribute super."socket-activation"; + "socket-io" = doDistribute super."socket-io_1_3_3"; "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "soegtk" = dontDistribute super."soegtk"; @@ -7500,6 +7521,7 @@ self: super: { "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; "webdriver" = doDistribute super."webdriver_0_6_2_1"; + "webdriver-angular" = doDistribute super."webdriver-angular_0_1_7"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.10.nix b/pkgs/development/haskell-modules/configuration-lts-3.10.nix new file mode 100644 index 00000000000..152b516cd33 --- /dev/null +++ b/pkgs/development/haskell-modules/configuration-lts-3.10.nix @@ -0,0 +1,7634 @@ +{ pkgs }: + +with import ./lib.nix { inherit pkgs; }; + +self: super: { + + # core libraries provided by the compiler + Cabal = null; + array = null; + base = null; + bin-package-db = null; + binary = null; + bytestring = null; + containers = null; + deepseq = null; + directory = null; + filepath = null; + ghc-prim = null; + hoopl = null; + hpc = null; + integer-gmp = null; + pretty = null; + process = null; + rts = null; + template-haskell = null; + time = null; + transformers = null; + unix = null; + + # lts-3.10 packages + "3d-graphics-examples" = dontDistribute super."3d-graphics-examples"; + "3dmodels" = dontDistribute super."3dmodels"; + "4Blocks" = dontDistribute super."4Blocks"; + "AAI" = dontDistribute super."AAI"; + "ABList" = dontDistribute super."ABList"; + "AC-Angle" = dontDistribute super."AC-Angle"; + "AC-Boolean" = dontDistribute super."AC-Boolean"; + "AC-BuildPlatform" = dontDistribute super."AC-BuildPlatform"; + "AC-Colour" = dontDistribute super."AC-Colour"; + "AC-EasyRaster-GTK" = dontDistribute super."AC-EasyRaster-GTK"; + "AC-HalfInteger" = dontDistribute super."AC-HalfInteger"; + "AC-MiniTest" = dontDistribute super."AC-MiniTest"; + "AC-PPM" = dontDistribute super."AC-PPM"; + "AC-Random" = dontDistribute super."AC-Random"; + "AC-Terminal" = dontDistribute super."AC-Terminal"; + "AC-VanillaArray" = dontDistribute super."AC-VanillaArray"; + "AC-Vector-Fancy" = dontDistribute super."AC-Vector-Fancy"; + "ACME" = dontDistribute super."ACME"; + "ADPfusion" = dontDistribute super."ADPfusion"; + "AERN-Basics" = dontDistribute super."AERN-Basics"; + "AERN-Net" = dontDistribute super."AERN-Net"; + "AERN-Real" = dontDistribute super."AERN-Real"; + "AERN-Real-Double" = dontDistribute super."AERN-Real-Double"; + "AERN-Real-Interval" = dontDistribute super."AERN-Real-Interval"; + "AERN-RnToRm" = dontDistribute super."AERN-RnToRm"; + "AERN-RnToRm-Plot" = dontDistribute super."AERN-RnToRm-Plot"; + "AES" = dontDistribute super."AES"; + "AGI" = dontDistribute super."AGI"; + "ALUT" = dontDistribute super."ALUT"; + "AMI" = dontDistribute super."AMI"; + "ANum" = dontDistribute super."ANum"; + "ASN1" = dontDistribute super."ASN1"; + "AVar" = dontDistribute super."AVar"; + "AWin32Console" = dontDistribute super."AWin32Console"; + "AbortT-monadstf" = dontDistribute super."AbortT-monadstf"; + "AbortT-mtl" = dontDistribute super."AbortT-mtl"; + "AbortT-transformers" = dontDistribute super."AbortT-transformers"; + "ActionKid" = dontDistribute super."ActionKid"; + "Adaptive" = dontDistribute super."Adaptive"; + "Adaptive-Blaisorblade" = dontDistribute super."Adaptive-Blaisorblade"; + "Advgame" = dontDistribute super."Advgame"; + "AesonBson" = dontDistribute super."AesonBson"; + "Agata" = dontDistribute super."Agata"; + "Agda-executable" = dontDistribute super."Agda-executable"; + "AhoCorasick" = dontDistribute super."AhoCorasick"; + "AlgorithmW" = dontDistribute super."AlgorithmW"; + "AlignmentAlgorithms" = dontDistribute super."AlignmentAlgorithms"; + "Allure" = dontDistribute super."Allure"; + "AndroidViewHierarchyImporter" = dontDistribute super."AndroidViewHierarchyImporter"; + "Animas" = dontDistribute super."Animas"; + "Annotations" = dontDistribute super."Annotations"; + "Ansi2Html" = dontDistribute super."Ansi2Html"; + "ApplePush" = dontDistribute super."ApplePush"; + "AppleScript" = dontDistribute super."AppleScript"; + "ApproxFun-hs" = dontDistribute super."ApproxFun-hs"; + "ArrayRef" = dontDistribute super."ArrayRef"; + "ArrowVHDL" = dontDistribute super."ArrowVHDL"; + "AspectAG" = dontDistribute super."AspectAG"; + "AttoBencode" = dontDistribute super."AttoBencode"; + "AttoJson" = dontDistribute super."AttoJson"; + "Attrac" = dontDistribute super."Attrac"; + "Aurochs" = dontDistribute super."Aurochs"; + "AutoForms" = dontDistribute super."AutoForms"; + "AvlTree" = dontDistribute super."AvlTree"; + "BASIC" = dontDistribute super."BASIC"; + "BCMtools" = dontDistribute super."BCMtools"; + "BNFC" = dontDistribute super."BNFC"; + "BNFC-meta" = dontDistribute super."BNFC-meta"; + "Baggins" = dontDistribute super."Baggins"; + "Bang" = dontDistribute super."Bang"; + "Barracuda" = dontDistribute super."Barracuda"; + "Befunge93" = dontDistribute super."Befunge93"; + "BenchmarkHistory" = dontDistribute super."BenchmarkHistory"; + "BerkeleyDB" = dontDistribute super."BerkeleyDB"; + "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; + "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BigPixel" = dontDistribute super."BigPixel"; + "Binpack" = dontDistribute super."Binpack"; + "Biobase" = dontDistribute super."Biobase"; + "BiobaseBlast" = dontDistribute super."BiobaseBlast"; + "BiobaseDotP" = dontDistribute super."BiobaseDotP"; + "BiobaseFR3D" = dontDistribute super."BiobaseFR3D"; + "BiobaseFasta" = dontDistribute super."BiobaseFasta"; + "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; + "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; + "BiobaseTurner" = dontDistribute super."BiobaseTurner"; + "BiobaseTypes" = dontDistribute super."BiobaseTypes"; + "BiobaseVienna" = dontDistribute super."BiobaseVienna"; + "BiobaseXNA" = dontDistribute super."BiobaseXNA"; + "BirdPP" = dontDistribute super."BirdPP"; + "BitSyntax" = dontDistribute super."BitSyntax"; + "Bitly" = dontDistribute super."Bitly"; + "Blobs" = dontDistribute super."Blobs"; + "BluePrintCSS" = dontDistribute super."BluePrintCSS"; + "Blueprint" = dontDistribute super."Blueprint"; + "Bookshelf" = dontDistribute super."Bookshelf"; + "Bravo" = dontDistribute super."Bravo"; + "BufferedSocket" = dontDistribute super."BufferedSocket"; + "Buster" = dontDistribute super."Buster"; + "CBOR" = dontDistribute super."CBOR"; + "CC-delcont" = dontDistribute super."CC-delcont"; + "CC-delcont-alt" = dontDistribute super."CC-delcont-alt"; + "CC-delcont-cxe" = dontDistribute super."CC-delcont-cxe"; + "CC-delcont-exc" = dontDistribute super."CC-delcont-exc"; + "CC-delcont-ref" = dontDistribute super."CC-delcont-ref"; + "CC-delcont-ref-tf" = dontDistribute super."CC-delcont-ref-tf"; + "CCA" = dontDistribute super."CCA"; + "CHXHtml" = dontDistribute super."CHXHtml"; + "CLASE" = dontDistribute super."CLASE"; + "CLI" = dontDistribute super."CLI"; + "CMCompare" = dontDistribute super."CMCompare"; + "CMQ" = dontDistribute super."CMQ"; + "COrdering" = dontDistribute super."COrdering"; + "CPBrainfuck" = dontDistribute super."CPBrainfuck"; + "CPL" = dontDistribute super."CPL"; + "CSPM-CoreLanguage" = dontDistribute super."CSPM-CoreLanguage"; + "CSPM-FiringRules" = dontDistribute super."CSPM-FiringRules"; + "CSPM-Frontend" = dontDistribute super."CSPM-Frontend"; + "CSPM-Interpreter" = dontDistribute super."CSPM-Interpreter"; + "CSPM-ToProlog" = dontDistribute super."CSPM-ToProlog"; + "CSPM-cspm" = dontDistribute super."CSPM-cspm"; + "CTRex" = dontDistribute super."CTRex"; + "CV" = dontDistribute super."CV"; + "CabalSearch" = dontDistribute super."CabalSearch"; + "Capabilities" = dontDistribute super."Capabilities"; + "Cardinality" = dontDistribute super."Cardinality"; + "CarneadesDSL" = dontDistribute super."CarneadesDSL"; + "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung"; + "Cascade" = dontDistribute super."Cascade"; + "Catana" = dontDistribute super."Catana"; + "Chart-gtk" = dontDistribute super."Chart-gtk"; + "Chart-simple" = dontDistribute super."Chart-simple"; + "CheatSheet" = dontDistribute super."CheatSheet"; + "Checked" = dontDistribute super."Checked"; + "Chitra" = dontDistribute super."Chitra"; + "ChristmasTree" = dontDistribute super."ChristmasTree"; + "CirruParser" = dontDistribute super."CirruParser"; + "ClassLaws" = dontDistribute super."ClassLaws"; + "ClassyPrelude" = dontDistribute super."ClassyPrelude"; + "Clean" = dontDistribute super."Clean"; + "Clipboard" = dontDistribute super."Clipboard"; + "ClustalParser" = dontDistribute super."ClustalParser"; + "Coadjute" = dontDistribute super."Coadjute"; + "Codec-Compression-LZF" = dontDistribute super."Codec-Compression-LZF"; + "Codec-Image-DevIL" = dontDistribute super."Codec-Image-DevIL"; + "Combinatorrent" = dontDistribute super."Combinatorrent"; + "Command" = dontDistribute super."Command"; + "Commando" = dontDistribute super."Commando"; + "ComonadSheet" = dontDistribute super."ComonadSheet"; + "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; + "Concurrential" = dontDistribute super."Concurrential"; + "Condor" = dontDistribute super."Condor"; + "ConfigFileTH" = dontDistribute super."ConfigFileTH"; + "Configger" = dontDistribute super."Configger"; + "Configurable" = dontDistribute super."Configurable"; + "ConsStream" = dontDistribute super."ConsStream"; + "Conscript" = dontDistribute super."Conscript"; + "ConstraintKinds" = dontDistribute super."ConstraintKinds"; + "Consumer" = dontDistribute super."Consumer"; + "ContArrow" = dontDistribute super."ContArrow"; + "ContextAlgebra" = dontDistribute super."ContextAlgebra"; + "Contract" = dontDistribute super."Contract"; + "Control-Engine" = dontDistribute super."Control-Engine"; + "Control-Monad-MultiPass" = dontDistribute super."Control-Monad-MultiPass"; + "Control-Monad-ST2" = dontDistribute super."Control-Monad-ST2"; + "CoreDump" = dontDistribute super."CoreDump"; + "CoreErlang" = dontDistribute super."CoreErlang"; + "CoreFoundation" = dontDistribute super."CoreFoundation"; + "Coroutine" = dontDistribute super."Coroutine"; + "CouchDB" = dontDistribute super."CouchDB"; + "Craft3e" = dontDistribute super."Craft3e"; + "Crypto" = dontDistribute super."Crypto"; + "CurryDB" = dontDistribute super."CurryDB"; + "DAG-Tournament" = dontDistribute super."DAG-Tournament"; + "DAV" = doDistribute super."DAV_1_0_7"; + "DBlimited" = dontDistribute super."DBlimited"; + "DBus" = dontDistribute super."DBus"; + "DCFL" = dontDistribute super."DCFL"; + "DMuCheck" = dontDistribute super."DMuCheck"; + "DOM" = dontDistribute super."DOM"; + "DP" = dontDistribute super."DP"; + "DPM" = dontDistribute super."DPM"; + "DSA" = dontDistribute super."DSA"; + "DSH" = dontDistribute super."DSH"; + "DSTM" = dontDistribute super."DSTM"; + "DTC" = dontDistribute super."DTC"; + "Dangerous" = dontDistribute super."Dangerous"; + "Dao" = dontDistribute super."Dao"; + "DarcsHelpers" = dontDistribute super."DarcsHelpers"; + "Data-Hash-Consistent" = dontDistribute super."Data-Hash-Consistent"; + "Data-Rope" = dontDistribute super."Data-Rope"; + "DataTreeView" = dontDistribute super."DataTreeView"; + "Deadpan-DDP" = dontDistribute super."Deadpan-DDP"; + "DebugTraceHelpers" = dontDistribute super."DebugTraceHelpers"; + "DecisionTree" = dontDistribute super."DecisionTree"; + "DeepArrow" = dontDistribute super."DeepArrow"; + "DefendTheKing" = dontDistribute super."DefendTheKing"; + "DescriptiveKeys" = dontDistribute super."DescriptiveKeys"; + "Dflow" = dontDistribute super."Dflow"; + "DifferenceLogic" = dontDistribute super."DifferenceLogic"; + "DifferentialEvolution" = dontDistribute super."DifferentialEvolution"; + "Digit" = dontDistribute super."Digit"; + "DigitalOcean" = dontDistribute super."DigitalOcean"; + "DimensionalHash" = dontDistribute super."DimensionalHash"; + "DirectSound" = dontDistribute super."DirectSound"; + "DisTract" = dontDistribute super."DisTract"; + "DiscussionSupportSystem" = dontDistribute super."DiscussionSupportSystem"; + "Dish" = dontDistribute super."Dish"; + "Dist" = dontDistribute super."Dist"; + "DistanceTransform" = dontDistribute super."DistanceTransform"; + "DistanceUnits" = dontDistribute super."DistanceUnits"; + "DnaProteinAlignment" = dontDistribute super."DnaProteinAlignment"; + "DocTest" = dontDistribute super."DocTest"; + "Docs" = dontDistribute super."Docs"; + "DrHylo" = dontDistribute super."DrHylo"; + "DrIFT" = dontDistribute super."DrIFT"; + "DrIFT-cabalized" = dontDistribute super."DrIFT-cabalized"; + "Dung" = dontDistribute super."Dung"; + "Dust" = dontDistribute super."Dust"; + "Dust-crypto" = dontDistribute super."Dust-crypto"; + "Dust-tools" = dontDistribute super."Dust-tools"; + "Dust-tools-pcap" = dontDistribute super."Dust-tools-pcap"; + "DynamicTimeWarp" = dontDistribute super."DynamicTimeWarp"; + "DysFRP" = dontDistribute super."DysFRP"; + "DysFRP-Cairo" = dontDistribute super."DysFRP-Cairo"; + "DysFRP-Craftwerk" = dontDistribute super."DysFRP-Craftwerk"; + "EEConfig" = dontDistribute super."EEConfig"; + "Earley" = doDistribute super."Earley_0_9_0"; + "Ebnf2ps" = dontDistribute super."Ebnf2ps"; + "EdisonAPI" = dontDistribute super."EdisonAPI"; + "EdisonCore" = dontDistribute super."EdisonCore"; + "EditTimeReport" = dontDistribute super."EditTimeReport"; + "EitherT" = dontDistribute super."EitherT"; + "Elm" = dontDistribute super."Elm"; + "Emping" = dontDistribute super."Emping"; + "Encode" = dontDistribute super."Encode"; + "EntrezHTTP" = dontDistribute super."EntrezHTTP"; + "EnumContainers" = dontDistribute super."EnumContainers"; + "EnumMap" = dontDistribute super."EnumMap"; + "Eq" = dontDistribute super."Eq"; + "EqualitySolver" = dontDistribute super."EqualitySolver"; + "EsounD" = dontDistribute super."EsounD"; + "EstProgress" = dontDistribute super."EstProgress"; + "EtaMOO" = dontDistribute super."EtaMOO"; + "Etage" = dontDistribute super."Etage"; + "Etage-Graph" = dontDistribute super."Etage-Graph"; + "Eternal10Seconds" = dontDistribute super."Eternal10Seconds"; + "Etherbunny" = dontDistribute super."Etherbunny"; + "EuroIT" = dontDistribute super."EuroIT"; + "Euterpea" = dontDistribute super."Euterpea"; + "EventSocket" = dontDistribute super."EventSocket"; + "Extra" = dontDistribute super."Extra"; + "FComp" = dontDistribute super."FComp"; + "FM-SBLEX" = dontDistribute super."FM-SBLEX"; + "FModExRaw" = dontDistribute super."FModExRaw"; + "FPretty" = dontDistribute super."FPretty"; + "FTGL" = dontDistribute super."FTGL"; + "FTGL-bytestring" = dontDistribute super."FTGL-bytestring"; + "FTPLine" = dontDistribute super."FTPLine"; + "Facts" = dontDistribute super."Facts"; + "FailureT" = dontDistribute super."FailureT"; + "FastxPipe" = dontDistribute super."FastxPipe"; + "FermatsLastMargin" = dontDistribute super."FermatsLastMargin"; + "FerryCore" = dontDistribute super."FerryCore"; + "Feval" = dontDistribute super."Feval"; + "FieldTrip" = dontDistribute super."FieldTrip"; + "FileManip" = dontDistribute super."FileManip"; + "FileManipCompat" = dontDistribute super."FileManipCompat"; + "FilePather" = dontDistribute super."FilePather"; + "FileSystem" = dontDistribute super."FileSystem"; + "Finance-Quote-Yahoo" = dontDistribute super."Finance-Quote-Yahoo"; + "Finance-Treasury" = dontDistribute super."Finance-Treasury"; + "FindBin" = dontDistribute super."FindBin"; + "FiniteMap" = dontDistribute super."FiniteMap"; + "FirstOrderTheory" = dontDistribute super."FirstOrderTheory"; + "FixedPoint-simple" = dontDistribute super."FixedPoint-simple"; + "Flippi" = dontDistribute super."Flippi"; + "Focus" = dontDistribute super."Focus"; + "Folly" = dontDistribute super."Folly"; + "ForSyDe" = dontDistribute super."ForSyDe"; + "ForkableT" = dontDistribute super."ForkableT"; + "FormalGrammars" = dontDistribute super."FormalGrammars"; + "Foster" = dontDistribute super."Foster"; + "FpMLv53" = dontDistribute super."FpMLv53"; + "Fractaler" = dontDistribute super."Fractaler"; + "Frames" = dontDistribute super."Frames"; + "Frank" = dontDistribute super."Frank"; + "FreeTypeGL" = dontDistribute super."FreeTypeGL"; + "FunGEn" = dontDistribute super."FunGEn"; + "Fungi" = dontDistribute super."Fungi"; + "GA" = dontDistribute super."GA"; + "GGg" = dontDistribute super."GGg"; + "GHood" = dontDistribute super."GHood"; + "GLFW" = dontDistribute super."GLFW"; + "GLFW-OGL" = dontDistribute super."GLFW-OGL"; + "GLFW-b" = dontDistribute super."GLFW-b"; + "GLFW-b-demo" = dontDistribute super."GLFW-b-demo"; + "GLFW-task" = dontDistribute super."GLFW-task"; + "GLHUI" = dontDistribute super."GLHUI"; + "GLM" = dontDistribute super."GLM"; + "GLMatrix" = dontDistribute super."GLMatrix"; + "GLURaw" = dontDistribute super."GLURaw"; + "GLUT" = dontDistribute super."GLUT"; + "GLUtil" = dontDistribute super."GLUtil"; + "GPX" = dontDistribute super."GPX"; + "GPipe" = dontDistribute super."GPipe"; + "GPipe-Collada" = dontDistribute super."GPipe-Collada"; + "GPipe-Examples" = dontDistribute super."GPipe-Examples"; + "GPipe-GLFW" = dontDistribute super."GPipe-GLFW"; + "GPipe-TextureLoad" = dontDistribute super."GPipe-TextureLoad"; + "GTALib" = dontDistribute super."GTALib"; + "Gamgine" = dontDistribute super."Gamgine"; + "Ganymede" = dontDistribute super."Ganymede"; + "GaussQuadIntegration" = dontDistribute super."GaussQuadIntegration"; + "GeBoP" = dontDistribute super."GeBoP"; + "GenI" = dontDistribute super."GenI"; + "GenSmsPdu" = dontDistribute super."GenSmsPdu"; + "Genbank" = dontDistribute super."Genbank"; + "GeneralTicTacToe" = dontDistribute super."GeneralTicTacToe"; + "GenussFold" = dontDistribute super."GenussFold"; + "GeoIp" = dontDistribute super."GeoIp"; + "Geodetic" = dontDistribute super."Geodetic"; + "GeomPredicates" = dontDistribute super."GeomPredicates"; + "GeomPredicates-SSE" = dontDistribute super."GeomPredicates-SSE"; + "GiST" = dontDistribute super."GiST"; + "GiveYouAHead" = dontDistribute super."GiveYouAHead"; + "GlomeTrace" = dontDistribute super."GlomeTrace"; + "GlomeVec" = dontDistribute super."GlomeVec"; + "GlomeView" = dontDistribute super."GlomeView"; + "GoogleChart" = dontDistribute super."GoogleChart"; + "GoogleDirections" = dontDistribute super."GoogleDirections"; + "GoogleSB" = dontDistribute super."GoogleSB"; + "GoogleSuggest" = dontDistribute super."GoogleSuggest"; + "GoogleTranslate" = dontDistribute super."GoogleTranslate"; + "GotoT-transformers" = dontDistribute super."GotoT-transformers"; + "GrammarProducts" = dontDistribute super."GrammarProducts"; + "Graph500" = dontDistribute super."Graph500"; + "GraphHammer" = dontDistribute super."GraphHammer"; + "GraphHammer-examples" = dontDistribute super."GraphHammer-examples"; + "Graphalyze" = dontDistribute super."Graphalyze"; + "Grempa" = dontDistribute super."Grempa"; + "GroteTrap" = dontDistribute super."GroteTrap"; + "Grow" = dontDistribute super."Grow"; + "GrowlNotify" = dontDistribute super."GrowlNotify"; + "Gtk2hsGenerics" = dontDistribute super."Gtk2hsGenerics"; + "GtkGLTV" = dontDistribute super."GtkGLTV"; + "GtkTV" = dontDistribute super."GtkTV"; + "GuiHaskell" = dontDistribute super."GuiHaskell"; + "GuiTV" = dontDistribute super."GuiTV"; + "H" = dontDistribute super."H"; + "HARM" = dontDistribute super."HARM"; + "HAppS-Data" = dontDistribute super."HAppS-Data"; + "HAppS-IxSet" = dontDistribute super."HAppS-IxSet"; + "HAppS-Server" = dontDistribute super."HAppS-Server"; + "HAppS-State" = dontDistribute super."HAppS-State"; + "HAppS-Util" = dontDistribute super."HAppS-Util"; + "HAppSHelpers" = dontDistribute super."HAppSHelpers"; + "HCL" = dontDistribute super."HCL"; + "HCard" = dontDistribute super."HCard"; + "HDBC" = dontDistribute super."HDBC"; + "HDBC-mysql" = dontDistribute super."HDBC-mysql"; + "HDBC-odbc" = dontDistribute super."HDBC-odbc"; + "HDBC-postgresql" = dontDistribute super."HDBC-postgresql"; + "HDBC-postgresql-hstore" = dontDistribute super."HDBC-postgresql-hstore"; + "HDBC-session" = dontDistribute super."HDBC-session"; + "HDBC-sqlite3" = dontDistribute super."HDBC-sqlite3"; + "HDRUtils" = dontDistribute super."HDRUtils"; + "HERA" = dontDistribute super."HERA"; + "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; + "HFuse" = dontDistribute super."HFuse"; + "HGL" = dontDistribute super."HGL"; + "HGamer3D" = dontDistribute super."HGamer3D"; + "HGamer3D-API" = dontDistribute super."HGamer3D-API"; + "HGamer3D-Audio" = dontDistribute super."HGamer3D-Audio"; + "HGamer3D-Bullet-Binding" = dontDistribute super."HGamer3D-Bullet-Binding"; + "HGamer3D-CAudio-Binding" = dontDistribute super."HGamer3D-CAudio-Binding"; + "HGamer3D-CEGUI-Binding" = dontDistribute super."HGamer3D-CEGUI-Binding"; + "HGamer3D-Common" = dontDistribute super."HGamer3D-Common"; + "HGamer3D-Data" = dontDistribute super."HGamer3D-Data"; + "HGamer3D-Enet-Binding" = dontDistribute super."HGamer3D-Enet-Binding"; + "HGamer3D-GUI" = dontDistribute super."HGamer3D-GUI"; + "HGamer3D-Graphics3D" = dontDistribute super."HGamer3D-Graphics3D"; + "HGamer3D-InputSystem" = dontDistribute super."HGamer3D-InputSystem"; + "HGamer3D-Network" = dontDistribute super."HGamer3D-Network"; + "HGamer3D-OIS-Binding" = dontDistribute super."HGamer3D-OIS-Binding"; + "HGamer3D-Ogre-Binding" = dontDistribute super."HGamer3D-Ogre-Binding"; + "HGamer3D-SDL2-Binding" = dontDistribute super."HGamer3D-SDL2-Binding"; + "HGamer3D-SFML-Binding" = dontDistribute super."HGamer3D-SFML-Binding"; + "HGamer3D-WinEvent" = dontDistribute super."HGamer3D-WinEvent"; + "HGamer3D-Wire" = dontDistribute super."HGamer3D-Wire"; + "HGraphStorage" = dontDistribute super."HGraphStorage"; + "HHDL" = dontDistribute super."HHDL"; + "HJScript" = dontDistribute super."HJScript"; + "HJVM" = dontDistribute super."HJVM"; + "HJavaScript" = dontDistribute super."HJavaScript"; + "HLearn-algebra" = dontDistribute super."HLearn-algebra"; + "HLearn-approximation" = dontDistribute super."HLearn-approximation"; + "HLearn-classification" = dontDistribute super."HLearn-classification"; + "HLearn-datastructures" = dontDistribute super."HLearn-datastructures"; + "HLearn-distributions" = dontDistribute super."HLearn-distributions"; + "HListPP" = dontDistribute super."HListPP"; + "HLogger" = dontDistribute super."HLogger"; + "HMM" = dontDistribute super."HMM"; + "HMap" = dontDistribute super."HMap"; + "HNM" = dontDistribute super."HNM"; + "HODE" = dontDistribute super."HODE"; + "HOpenCV" = dontDistribute super."HOpenCV"; + "HPDF" = dontDistribute super."HPDF"; + "HPath" = dontDistribute super."HPath"; + "HPi" = dontDistribute super."HPi"; + "HPlot" = dontDistribute super."HPlot"; + "HPong" = dontDistribute super."HPong"; + "HROOT" = dontDistribute super."HROOT"; + "HROOT-core" = dontDistribute super."HROOT-core"; + "HROOT-graf" = dontDistribute super."HROOT-graf"; + "HROOT-hist" = dontDistribute super."HROOT-hist"; + "HROOT-io" = dontDistribute super."HROOT-io"; + "HROOT-math" = dontDistribute super."HROOT-math"; + "HRay" = dontDistribute super."HRay"; + "HSFFIG" = dontDistribute super."HSFFIG"; + "HSGEP" = dontDistribute super."HSGEP"; + "HSH" = dontDistribute super."HSH"; + "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSlippyMap" = dontDistribute super."HSlippyMap"; + "HSmarty" = dontDistribute super."HSmarty"; + "HSoundFile" = dontDistribute super."HSoundFile"; + "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers"; + "HSvm" = dontDistribute super."HSvm"; + "HTTP-Simple" = dontDistribute super."HTTP-Simple"; + "HTab" = dontDistribute super."HTab"; + "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit-Diff" = dontDistribute super."HUnit-Diff"; + "HUnit-Plus" = dontDistribute super."HUnit-Plus"; + "HUnit-approx" = dontDistribute super."HUnit-approx"; + "HXMPP" = dontDistribute super."HXMPP"; + "HXQ" = dontDistribute super."HXQ"; + "HaLeX" = dontDistribute super."HaLeX"; + "HaMinitel" = dontDistribute super."HaMinitel"; + "HaPy" = dontDistribute super."HaPy"; + "HaRe" = dontDistribute super."HaRe"; + "HaTeX-meta" = dontDistribute super."HaTeX-meta"; + "HaTeX-qq" = dontDistribute super."HaTeX-qq"; + "HaVSA" = dontDistribute super."HaVSA"; + "Hach" = dontDistribute super."Hach"; + "HackMail" = dontDistribute super."HackMail"; + "Haggressive" = dontDistribute super."Haggressive"; + "HandlerSocketClient" = dontDistribute super."HandlerSocketClient"; + "Hangman" = dontDistribute super."Hangman"; + "HarmTrace" = dontDistribute super."HarmTrace"; + "HarmTrace-Base" = dontDistribute super."HarmTrace-Base"; + "HasGP" = dontDistribute super."HasGP"; + "Haschoo" = dontDistribute super."Haschoo"; + "Hashell" = dontDistribute super."Hashell"; + "HaskellForMaths" = dontDistribute super."HaskellForMaths"; + "HaskellLM" = dontDistribute super."HaskellLM"; + "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellNet-SSL" = dontDistribute super."HaskellNet-SSL"; + "HaskellTorrent" = dontDistribute super."HaskellTorrent"; + "HaskellTutorials" = dontDistribute super."HaskellTutorials"; + "Haskelloids" = dontDistribute super."Haskelloids"; + "Hawk" = dontDistribute super."Hawk"; + "Hayoo" = dontDistribute super."Hayoo"; + "Hclip" = dontDistribute super."Hclip"; + "Hedi" = dontDistribute super."Hedi"; + "HerbiePlugin" = dontDistribute super."HerbiePlugin"; + "Hermes" = dontDistribute super."Hermes"; + "Hieroglyph" = dontDistribute super."Hieroglyph"; + "HiggsSet" = dontDistribute super."HiggsSet"; + "Hipmunk" = dontDistribute super."Hipmunk"; + "HipmunkPlayground" = dontDistribute super."HipmunkPlayground"; + "Hish" = dontDistribute super."Hish"; + "Histogram" = dontDistribute super."Histogram"; + "Hmpf" = dontDistribute super."Hmpf"; + "Hoed" = dontDistribute super."Hoed"; + "HoleyMonoid" = dontDistribute super."HoleyMonoid"; + "Holumbus-Distribution" = dontDistribute super."Holumbus-Distribution"; + "Holumbus-MapReduce" = dontDistribute super."Holumbus-MapReduce"; + "Holumbus-Searchengine" = dontDistribute super."Holumbus-Searchengine"; + "Holumbus-Storage" = dontDistribute super."Holumbus-Storage"; + "Homology" = dontDistribute super."Homology"; + "HongoDB" = dontDistribute super."HongoDB"; + "HostAndPort" = dontDistribute super."HostAndPort"; + "Hricket" = dontDistribute super."Hricket"; + "Hs2lib" = dontDistribute super."Hs2lib"; + "HsASA" = dontDistribute super."HsASA"; + "HsHaruPDF" = dontDistribute super."HsHaruPDF"; + "HsHyperEstraier" = dontDistribute super."HsHyperEstraier"; + "HsJudy" = dontDistribute super."HsJudy"; + "HsOpenSSL-x509-system" = dontDistribute super."HsOpenSSL-x509-system"; + "HsParrot" = dontDistribute super."HsParrot"; + "HsPerl5" = dontDistribute super."HsPerl5"; + "HsSVN" = dontDistribute super."HsSVN"; + "HsSyck" = dontDistribute super."HsSyck"; + "HsTools" = dontDistribute super."HsTools"; + "Hsed" = dontDistribute super."Hsed"; + "Hsmtlib" = dontDistribute super."Hsmtlib"; + "HueAPI" = dontDistribute super."HueAPI"; + "Hungarian-Munkres" = dontDistribute super."Hungarian-Munkres"; + "IDynamic" = dontDistribute super."IDynamic"; + "IFS" = dontDistribute super."IFS"; + "INblobs" = dontDistribute super."INblobs"; + "IOR" = dontDistribute super."IOR"; + "IORefCAS" = dontDistribute super."IORefCAS"; + "IcoGrid" = dontDistribute super."IcoGrid"; + "Imlib" = dontDistribute super."Imlib"; + "ImperativeHaskell" = dontDistribute super."ImperativeHaskell"; + "IndentParser" = dontDistribute super."IndentParser"; + "IndexedList" = dontDistribute super."IndexedList"; + "InfixApplicative" = dontDistribute super."InfixApplicative"; + "Interpolation" = dontDistribute super."Interpolation"; + "Interpolation-maxs" = dontDistribute super."Interpolation-maxs"; + "IntervalMap" = dontDistribute super."IntervalMap"; + "Irc" = dontDistribute super."Irc"; + "IrrHaskell" = dontDistribute super."IrrHaskell"; + "IsNull" = dontDistribute super."IsNull"; + "JSON-Combinator" = dontDistribute super."JSON-Combinator"; + "JSON-Combinator-Examples" = dontDistribute super."JSON-Combinator-Examples"; + "JSONb" = dontDistribute super."JSONb"; + "JYU-Utils" = dontDistribute super."JYU-Utils"; + "JackMiniMix" = dontDistribute super."JackMiniMix"; + "Javasf" = dontDistribute super."Javasf"; + "Javav" = dontDistribute super."Javav"; + "JsContracts" = dontDistribute super."JsContracts"; + "JsonGrammar" = dontDistribute super."JsonGrammar"; + "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JuicyPixels-repa" = dontDistribute super."JuicyPixels-repa"; + "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; + "JunkDB" = dontDistribute super."JunkDB"; + "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; + "JunkDB-driver-hashtables" = dontDistribute super."JunkDB-driver-hashtables"; + "JustParse" = dontDistribute super."JustParse"; + "KMP" = dontDistribute super."KMP"; + "KSP" = dontDistribute super."KSP"; + "Kalman" = dontDistribute super."Kalman"; + "KdTree" = dontDistribute super."KdTree"; + "Ketchup" = dontDistribute super."Ketchup"; + "KiCS" = dontDistribute super."KiCS"; + "KiCS-debugger" = dontDistribute super."KiCS-debugger"; + "KiCS-prophecy" = dontDistribute super."KiCS-prophecy"; + "Kleislify" = dontDistribute super."Kleislify"; + "Konf" = dontDistribute super."Konf"; + "KyotoCabinet" = dontDistribute super."KyotoCabinet"; + "L-seed" = dontDistribute super."L-seed"; + "LDAP" = dontDistribute super."LDAP"; + "LRU" = dontDistribute super."LRU"; + "LTree" = dontDistribute super."LTree"; + "LambdaCalculator" = dontDistribute super."LambdaCalculator"; + "LambdaHack" = dontDistribute super."LambdaHack"; + "LambdaINet" = dontDistribute super."LambdaINet"; + "LambdaNet" = dontDistribute super."LambdaNet"; + "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; + "LambdaShell" = dontDistribute super."LambdaShell"; + "Lambdaya" = dontDistribute super."Lambdaya"; + "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; + "Lastik" = dontDistribute super."Lastik"; + "Lattices" = dontDistribute super."Lattices"; + "LazyVault" = dontDistribute super."LazyVault"; + "Level0" = dontDistribute super."Level0"; + "LibClang" = dontDistribute super."LibClang"; + "LibZip" = dontDistribute super."LibZip"; + "Limit" = dontDistribute super."Limit"; + "LinearSplit" = dontDistribute super."LinearSplit"; + "LinkChecker" = dontDistribute super."LinkChecker"; + "ListTree" = dontDistribute super."ListTree"; + "ListZipper" = dontDistribute super."ListZipper"; + "Logic" = dontDistribute super."Logic"; + "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees"; + "LogicGrowsOnTrees-MPI" = dontDistribute super."LogicGrowsOnTrees-MPI"; + "LogicGrowsOnTrees-network" = dontDistribute super."LogicGrowsOnTrees-network"; + "LogicGrowsOnTrees-processes" = dontDistribute super."LogicGrowsOnTrees-processes"; + "LslPlus" = dontDistribute super."LslPlus"; + "Lucu" = dontDistribute super."Lucu"; + "MC-Fold-DP" = dontDistribute super."MC-Fold-DP"; + "MFlow" = dontDistribute super."MFlow"; + "MHask" = dontDistribute super."MHask"; + "MSQueue" = dontDistribute super."MSQueue"; + "MTGBuilder" = dontDistribute super."MTGBuilder"; + "MagicHaskeller" = dontDistribute super."MagicHaskeller"; + "MailchimpSimple" = dontDistribute super."MailchimpSimple"; + "MaybeT" = dontDistribute super."MaybeT"; + "MaybeT-monads-tf" = dontDistribute super."MaybeT-monads-tf"; + "MaybeT-transformers" = dontDistribute super."MaybeT-transformers"; + "MazesOfMonad" = dontDistribute super."MazesOfMonad"; + "MeanShift" = dontDistribute super."MeanShift"; + "Measure" = dontDistribute super."Measure"; + "MetaHDBC" = dontDistribute super."MetaHDBC"; + "MetaObject" = dontDistribute super."MetaObject"; + "Metrics" = dontDistribute super."Metrics"; + "Mhailist" = dontDistribute super."Mhailist"; + "MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator"; + "MiniAgda" = dontDistribute super."MiniAgda"; + "MissingK" = dontDistribute super."MissingK"; + "MissingM" = dontDistribute super."MissingM"; + "MissingPy" = dontDistribute super."MissingPy"; + "Modulo" = dontDistribute super."Modulo"; + "Moe" = dontDistribute super."Moe"; + "MoeDict" = dontDistribute super."MoeDict"; + "MonadCatchIO-mtl" = dontDistribute super."MonadCatchIO-mtl"; + "MonadCatchIO-mtl-foreign" = dontDistribute super."MonadCatchIO-mtl-foreign"; + "MonadCatchIO-transformers-foreign" = dontDistribute super."MonadCatchIO-transformers-foreign"; + "MonadCompose" = dontDistribute super."MonadCompose"; + "MonadLab" = dontDistribute super."MonadLab"; + "MonadRandomLazy" = dontDistribute super."MonadRandomLazy"; + "MonadStack" = dontDistribute super."MonadStack"; + "Monadius" = dontDistribute super."Monadius"; + "Monaris" = dontDistribute super."Monaris"; + "Monatron" = dontDistribute super."Monatron"; + "Monatron-IO" = dontDistribute super."Monatron-IO"; + "Monocle" = dontDistribute super."Monocle"; + "MorseCode" = dontDistribute super."MorseCode"; + "MuCheck" = dontDistribute super."MuCheck"; + "MuCheck-HUnit" = dontDistribute super."MuCheck-HUnit"; + "MuCheck-Hspec" = dontDistribute super."MuCheck-Hspec"; + "MuCheck-QuickCheck" = dontDistribute super."MuCheck-QuickCheck"; + "MuCheck-SmallCheck" = dontDistribute super."MuCheck-SmallCheck"; + "Munkres" = dontDistribute super."Munkres"; + "Munkres-simple" = dontDistribute super."Munkres-simple"; + "MusicBrainz" = dontDistribute super."MusicBrainz"; + "MusicBrainz-libdiscid" = dontDistribute super."MusicBrainz-libdiscid"; + "MyPrimes" = dontDistribute super."MyPrimes"; + "NGrams" = dontDistribute super."NGrams"; + "NTRU" = dontDistribute super."NTRU"; + "NXT" = dontDistribute super."NXT"; + "NXTDSL" = dontDistribute super."NXTDSL"; + "NanoProlog" = dontDistribute super."NanoProlog"; + "NaturalLanguageAlphabets" = dontDistribute super."NaturalLanguageAlphabets"; + "NaturalSort" = dontDistribute super."NaturalSort"; + "NearContextAlgebra" = dontDistribute super."NearContextAlgebra"; + "Neks" = dontDistribute super."Neks"; + "NestedFunctor" = dontDistribute super."NestedFunctor"; + "NestedSampling" = dontDistribute super."NestedSampling"; + "NetSNMP" = dontDistribute super."NetSNMP"; + "NewBinary" = dontDistribute super."NewBinary"; + "Ninjas" = dontDistribute super."Ninjas"; + "NoSlow" = dontDistribute super."NoSlow"; + "NoTrace" = dontDistribute super."NoTrace"; + "Noise" = dontDistribute super."Noise"; + "Nomyx" = dontDistribute super."Nomyx"; + "Nomyx-Core" = dontDistribute super."Nomyx-Core"; + "Nomyx-Language" = dontDistribute super."Nomyx-Language"; + "Nomyx-Rules" = dontDistribute super."Nomyx-Rules"; + "Nomyx-Web" = dontDistribute super."Nomyx-Web"; + "NonEmpty" = dontDistribute super."NonEmpty"; + "NonEmptyList" = dontDistribute super."NonEmptyList"; + "NumLazyByteString" = dontDistribute super."NumLazyByteString"; + "NumberSieves" = dontDistribute super."NumberSieves"; + "Numbers" = dontDistribute super."Numbers"; + "Nussinov78" = dontDistribute super."Nussinov78"; + "Nutri" = dontDistribute super."Nutri"; + "OGL" = dontDistribute super."OGL"; + "OSM" = dontDistribute super."OSM"; + "OTP" = dontDistribute super."OTP"; + "Object" = dontDistribute super."Object"; + "ObjectIO" = dontDistribute super."ObjectIO"; + "ObjectName" = dontDistribute super."ObjectName"; + "Obsidian" = dontDistribute super."Obsidian"; + "OddWord" = dontDistribute super."OddWord"; + "Omega" = dontDistribute super."Omega"; + "OpenAFP" = dontDistribute super."OpenAFP"; + "OpenAFP-Utils" = dontDistribute super."OpenAFP-Utils"; + "OpenAL" = dontDistribute super."OpenAL"; + "OpenCL" = dontDistribute super."OpenCL"; + "OpenCLRaw" = dontDistribute super."OpenCLRaw"; + "OpenCLWrappers" = dontDistribute super."OpenCLWrappers"; + "OpenGL" = dontDistribute super."OpenGL"; + "OpenGLCheck" = dontDistribute super."OpenGLCheck"; + "OpenGLRaw" = dontDistribute super."OpenGLRaw"; + "OpenGLRaw21" = dontDistribute super."OpenGLRaw21"; + "OpenSCAD" = dontDistribute super."OpenSCAD"; + "OpenVG" = dontDistribute super."OpenVG"; + "OpenVGRaw" = dontDistribute super."OpenVGRaw"; + "Operads" = dontDistribute super."Operads"; + "OptDir" = dontDistribute super."OptDir"; + "OrPatterns" = dontDistribute super."OrPatterns"; + "OrchestrateDB" = dontDistribute super."OrchestrateDB"; + "OrderedBits" = dontDistribute super."OrderedBits"; + "Ordinals" = dontDistribute super."Ordinals"; + "PArrows" = dontDistribute super."PArrows"; + "PBKDF2" = dontDistribute super."PBKDF2"; + "PCLT" = dontDistribute super."PCLT"; + "PCLT-DB" = dontDistribute super."PCLT-DB"; + "PDBtools" = dontDistribute super."PDBtools"; + "PTQ" = dontDistribute super."PTQ"; + "PageIO" = dontDistribute super."PageIO"; + "Paillier" = dontDistribute super."Paillier"; + "PandocAgda" = dontDistribute super."PandocAgda"; + "Paraiso" = dontDistribute super."Paraiso"; + "Parry" = dontDistribute super."Parry"; + "ParsecTools" = dontDistribute super."ParsecTools"; + "ParserFunction" = dontDistribute super."ParserFunction"; + "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; + "PasswordGenerator" = dontDistribute super."PasswordGenerator"; + "PastePipe" = dontDistribute super."PastePipe"; + "Pathfinder" = dontDistribute super."Pathfinder"; + "Peano" = dontDistribute super."Peano"; + "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; + "PerfectHash" = dontDistribute super."PerfectHash"; + "PermuteEffects" = dontDistribute super."PermuteEffects"; + "Phsu" = dontDistribute super."Phsu"; + "Pipe" = dontDistribute super."Pipe"; + "Piso" = dontDistribute super."Piso"; + "PlayHangmanGame" = dontDistribute super."PlayHangmanGame"; + "PlayingCards" = dontDistribute super."PlayingCards"; + "Plot-ho-matic" = dontDistribute super."Plot-ho-matic"; + "PlslTools" = dontDistribute super."PlslTools"; + "Plural" = dontDistribute super."Plural"; + "Pollutocracy" = dontDistribute super."Pollutocracy"; + "PortFusion" = dontDistribute super."PortFusion"; + "PortMidi" = dontDistribute super."PortMidi"; + "PostgreSQL" = dontDistribute super."PostgreSQL"; + "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "Printf-TH" = dontDistribute super."Printf-TH"; + "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; + "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; + "PropLogic" = dontDistribute super."PropLogic"; + "Proper" = dontDistribute super."Proper"; + "ProxN" = dontDistribute super."ProxN"; + "Pugs" = dontDistribute super."Pugs"; + "Pup-Events" = dontDistribute super."Pup-Events"; + "Pup-Events-Client" = dontDistribute super."Pup-Events-Client"; + "Pup-Events-Demo" = dontDistribute super."Pup-Events-Demo"; + "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; + "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; + "QIO" = dontDistribute super."QIO"; + "QuadEdge" = dontDistribute super."QuadEdge"; + "QuadTree" = dontDistribute super."QuadTree"; + "QuickAnnotate" = dontDistribute super."QuickAnnotate"; + "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; + "Quickson" = dontDistribute super."Quickson"; + "R-pandoc" = dontDistribute super."R-pandoc"; + "RANSAC" = dontDistribute super."RANSAC"; + "RBTree" = dontDistribute super."RBTree"; + "RESTng" = dontDistribute super."RESTng"; + "RFC1751" = dontDistribute super."RFC1751"; + "RJson" = dontDistribute super."RJson"; + "RMP" = dontDistribute super."RMP"; + "RNAFold" = dontDistribute super."RNAFold"; + "RNAFoldProgs" = dontDistribute super."RNAFoldProgs"; + "RNAdesign" = dontDistribute super."RNAdesign"; + "RNAdraw" = dontDistribute super."RNAdraw"; + "RNAwolf" = dontDistribute super."RNAwolf"; + "RSA" = doDistribute super."RSA_2_1_0_3"; + "Raincat" = dontDistribute super."Raincat"; + "Random123" = dontDistribute super."Random123"; + "RandomDotOrg" = dontDistribute super."RandomDotOrg"; + "Randometer" = dontDistribute super."Randometer"; + "Range" = dontDistribute super."Range"; + "Ranged-sets" = dontDistribute super."Ranged-sets"; + "Ranka" = dontDistribute super."Ranka"; + "Rasenschach" = dontDistribute super."Rasenschach"; + "Redmine" = dontDistribute super."Redmine"; + "Ref" = dontDistribute super."Ref"; + "Referees" = dontDistribute super."Referees"; + "RepLib" = dontDistribute super."RepLib"; + "ReplicateEffects" = dontDistribute super."ReplicateEffects"; + "ReviewBoard" = dontDistribute super."ReviewBoard"; + "RichConditional" = dontDistribute super."RichConditional"; + "RollingDirectory" = dontDistribute super."RollingDirectory"; + "RoyalMonad" = dontDistribute super."RoyalMonad"; + "RxHaskell" = dontDistribute super."RxHaskell"; + "SBench" = dontDistribute super."SBench"; + "SConfig" = dontDistribute super."SConfig"; + "SDL" = dontDistribute super."SDL"; + "SDL-gfx" = dontDistribute super."SDL-gfx"; + "SDL-image" = dontDistribute super."SDL-image"; + "SDL-mixer" = dontDistribute super."SDL-mixer"; + "SDL-mpeg" = dontDistribute super."SDL-mpeg"; + "SDL-ttf" = dontDistribute super."SDL-ttf"; + "SDL2-ttf" = dontDistribute super."SDL2-ttf"; + "SFML" = dontDistribute super."SFML"; + "SFML-control" = dontDistribute super."SFML-control"; + "SFont" = dontDistribute super."SFont"; + "SG" = dontDistribute super."SG"; + "SGdemo" = dontDistribute super."SGdemo"; + "SHA2" = dontDistribute super."SHA2"; + "SMTPClient" = dontDistribute super."SMTPClient"; + "SNet" = dontDistribute super."SNet"; + "SQLDeps" = dontDistribute super."SQLDeps"; + "STL" = dontDistribute super."STL"; + "SVG2Q" = dontDistribute super."SVG2Q"; + "SVGPath" = dontDistribute super."SVGPath"; + "SWMMoutGetMB" = dontDistribute super."SWMMoutGetMB"; + "SableCC2Hs" = dontDistribute super."SableCC2Hs"; + "Safe" = dontDistribute super."Safe"; + "Salsa" = dontDistribute super."Salsa"; + "Saturnin" = dontDistribute super."Saturnin"; + "SciFlow" = dontDistribute super."SciFlow"; + "ScratchFs" = dontDistribute super."ScratchFs"; + "Scurry" = dontDistribute super."Scurry"; + "SegmentTree" = dontDistribute super."SegmentTree"; + "Semantique" = dontDistribute super."Semantique"; + "Semigroup" = dontDistribute super."Semigroup"; + "SeqAlign" = dontDistribute super."SeqAlign"; + "SessionLogger" = dontDistribute super."SessionLogger"; + "ShellCheck" = dontDistribute super."ShellCheck"; + "Shellac" = dontDistribute super."Shellac"; + "Shellac-compatline" = dontDistribute super."Shellac-compatline"; + "Shellac-editline" = dontDistribute super."Shellac-editline"; + "Shellac-haskeline" = dontDistribute super."Shellac-haskeline"; + "Shellac-readline" = dontDistribute super."Shellac-readline"; + "ShowF" = dontDistribute super."ShowF"; + "Shrub" = dontDistribute super."Shrub"; + "Shu-thing" = dontDistribute super."Shu-thing"; + "SimpleAES" = dontDistribute super."SimpleAES"; + "SimpleEA" = dontDistribute super."SimpleEA"; + "SimpleGL" = dontDistribute super."SimpleGL"; + "SimpleH" = dontDistribute super."SimpleH"; + "SimpleLog" = dontDistribute super."SimpleLog"; + "SizeCompare" = dontDistribute super."SizeCompare"; + "Smooth" = dontDistribute super."Smooth"; + "SmtLib" = dontDistribute super."SmtLib"; + "Snusmumrik" = dontDistribute super."Snusmumrik"; + "SoOSiM" = dontDistribute super."SoOSiM"; + "SoccerFun" = dontDistribute super."SoccerFun"; + "SoccerFunGL" = dontDistribute super."SoccerFunGL"; + "Sonnex" = dontDistribute super."Sonnex"; + "SourceGraph" = dontDistribute super."SourceGraph"; + "Southpaw" = dontDistribute super."Southpaw"; + "SpaceInvaders" = dontDistribute super."SpaceInvaders"; + "SpacePrivateers" = dontDistribute super."SpacePrivateers"; + "SpinCounter" = dontDistribute super."SpinCounter"; + "Spock" = doDistribute super."Spock_0_8_1_0"; + "Spock-auth" = dontDistribute super."Spock-auth"; + "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_1"; + "SpreadsheetML" = dontDistribute super."SpreadsheetML"; + "Sprig" = dontDistribute super."Sprig"; + "Stasis" = dontDistribute super."Stasis"; + "StateVar-transformer" = dontDistribute super."StateVar-transformer"; + "StatisticalMethods" = dontDistribute super."StatisticalMethods"; + "Stomp" = dontDistribute super."Stomp"; + "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib"; + "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell"; + "Strafunski-StrategyLib" = dontDistribute super."Strafunski-StrategyLib"; + "StrappedTemplates" = dontDistribute super."StrappedTemplates"; + "StrategyLib" = dontDistribute super."StrategyLib"; + "StrictBench" = dontDistribute super."StrictBench"; + "SuffixStructures" = dontDistribute super."SuffixStructures"; + "SybWidget" = dontDistribute super."SybWidget"; + "SyntaxMacros" = dontDistribute super."SyntaxMacros"; + "Sysmon" = dontDistribute super."Sysmon"; + "TBC" = dontDistribute super."TBC"; + "TBit" = dontDistribute super."TBit"; + "THEff" = dontDistribute super."THEff"; + "TTTAS" = dontDistribute super."TTTAS"; + "TV" = dontDistribute super."TV"; + "TYB" = dontDistribute super."TYB"; + "TableAlgebra" = dontDistribute super."TableAlgebra"; + "Tables" = dontDistribute super."Tables"; + "Tablify" = dontDistribute super."Tablify"; + "Tainted" = dontDistribute super."Tainted"; + "Takusen" = dontDistribute super."Takusen"; + "Tape" = dontDistribute super."Tape"; + "Taxonomy" = dontDistribute super."Taxonomy"; + "TeaHS" = dontDistribute super."TeaHS"; + "Tensor" = dontDistribute super."Tensor"; + "TernaryTrees" = dontDistribute super."TernaryTrees"; + "TestExplode" = dontDistribute super."TestExplode"; + "Theora" = dontDistribute super."Theora"; + "Thingie" = dontDistribute super."Thingie"; + "ThreadObjects" = dontDistribute super."ThreadObjects"; + "Thrift" = dontDistribute super."Thrift"; + "Tic-Tac-Toe" = dontDistribute super."Tic-Tac-Toe"; + "TicTacToe" = dontDistribute super."TicTacToe"; + "TigerHash" = dontDistribute super."TigerHash"; + "TimePiece" = dontDistribute super."TimePiece"; + "TinyLaunchbury" = dontDistribute super."TinyLaunchbury"; + "TinyURL" = dontDistribute super."TinyURL"; + "Titim" = dontDistribute super."Titim"; + "Top" = dontDistribute super."Top"; + "Tournament" = dontDistribute super."Tournament"; + "TraceUtils" = dontDistribute super."TraceUtils"; + "TransformersStepByStep" = dontDistribute super."TransformersStepByStep"; + "Transhare" = dontDistribute super."Transhare"; + "TreeCounter" = dontDistribute super."TreeCounter"; + "TreeStructures" = dontDistribute super."TreeStructures"; + "TreeT" = dontDistribute super."TreeT"; + "Treiber" = dontDistribute super."Treiber"; + "TrendGraph" = dontDistribute super."TrendGraph"; + "TrieMap" = dontDistribute super."TrieMap"; + "Twofish" = dontDistribute super."Twofish"; + "TypeClass" = dontDistribute super."TypeClass"; + "TypeCompose" = dontDistribute super."TypeCompose"; + "TypeIlluminator" = dontDistribute super."TypeIlluminator"; + "TypeNat" = dontDistribute super."TypeNat"; + "TypingTester" = dontDistribute super."TypingTester"; + "UISF" = dontDistribute super."UISF"; + "UMM" = dontDistribute super."UMM"; + "URLT" = dontDistribute super."URLT"; + "URLb" = dontDistribute super."URLb"; + "UTFTConverter" = dontDistribute super."UTFTConverter"; + "Unique" = dontDistribute super."Unique"; + "Unixutils-shadow" = dontDistribute super."Unixutils-shadow"; + "Updater" = dontDistribute super."Updater"; + "UrlDisp" = dontDistribute super."UrlDisp"; + "Useful" = dontDistribute super."Useful"; + "UtilityTM" = dontDistribute super."UtilityTM"; + "VKHS" = dontDistribute super."VKHS"; + "Validation" = dontDistribute super."Validation"; + "Vec" = dontDistribute super."Vec"; + "Vec-Boolean" = dontDistribute super."Vec-Boolean"; + "Vec-OpenGLRaw" = dontDistribute super."Vec-OpenGLRaw"; + "Vec-Transform" = dontDistribute super."Vec-Transform"; + "VecN" = dontDistribute super."VecN"; + "ViennaRNA-bindings" = dontDistribute super."ViennaRNA-bindings"; + "ViennaRNAParser" = dontDistribute super."ViennaRNAParser"; + "WAVE" = dontDistribute super."WAVE"; + "WL500gPControl" = dontDistribute super."WL500gPControl"; + "WL500gPLib" = dontDistribute super."WL500gPLib"; + "WMSigner" = dontDistribute super."WMSigner"; + "WURFL" = dontDistribute super."WURFL"; + "WXDiffCtrl" = dontDistribute super."WXDiffCtrl"; + "WashNGo" = dontDistribute super."WashNGo"; + "Weather" = dontDistribute super."Weather"; + "WebBits" = dontDistribute super."WebBits"; + "WebBits-Html" = dontDistribute super."WebBits-Html"; + "WebBits-multiplate" = dontDistribute super."WebBits-multiplate"; + "WebCont" = dontDistribute super."WebCont"; + "WeberLogic" = dontDistribute super."WeberLogic"; + "Webrexp" = dontDistribute super."Webrexp"; + "Wheb" = dontDistribute super."Wheb"; + "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; + "Win32-errors" = dontDistribute super."Win32-errors"; + "Win32-extras" = dontDistribute super."Win32-extras"; + "Win32-junction-point" = dontDistribute super."Win32-junction-point"; + "Win32-security" = dontDistribute super."Win32-security"; + "Win32-services" = dontDistribute super."Win32-services"; + "Win32-services-wrapper" = dontDistribute super."Win32-services-wrapper"; + "Wired" = dontDistribute super."Wired"; + "WordNet" = dontDistribute super."WordNet"; + "WordNet-ghc74" = dontDistribute super."WordNet-ghc74"; + "Wordlint" = dontDistribute super."Wordlint"; + "WxGeneric" = dontDistribute super."WxGeneric"; + "X11-extras" = dontDistribute super."X11-extras"; + "X11-rm" = dontDistribute super."X11-rm"; + "X11-xdamage" = dontDistribute super."X11-xdamage"; + "X11-xfixes" = dontDistribute super."X11-xfixes"; + "X11-xft" = dontDistribute super."X11-xft"; + "X11-xshape" = dontDistribute super."X11-xshape"; + "XAttr" = dontDistribute super."XAttr"; + "XInput" = dontDistribute super."XInput"; + "XMMS" = dontDistribute super."XMMS"; + "XMPP" = dontDistribute super."XMPP"; + "XSaiga" = dontDistribute super."XSaiga"; + "Xauth" = dontDistribute super."Xauth"; + "Xec" = dontDistribute super."Xec"; + "XmlHtmlWriter" = dontDistribute super."XmlHtmlWriter"; + "Xorshift128Plus" = dontDistribute super."Xorshift128Plus"; + "YACPong" = dontDistribute super."YACPong"; + "YFrob" = dontDistribute super."YFrob"; + "Yablog" = dontDistribute super."Yablog"; + "YamlReference" = dontDistribute super."YamlReference"; + "Yampa-core" = dontDistribute super."Yampa-core"; + "Yocto" = dontDistribute super."Yocto"; + "Yogurt" = dontDistribute super."Yogurt"; + "Yogurt-Standalone" = dontDistribute super."Yogurt-Standalone"; + "ZEBEDDE" = dontDistribute super."ZEBEDDE"; + "ZFS" = dontDistribute super."ZFS"; + "ZMachine" = dontDistribute super."ZMachine"; + "ZipFold" = dontDistribute super."ZipFold"; + "ZipperAG" = dontDistribute super."ZipperAG"; + "Zora" = dontDistribute super."Zora"; + "Zwaluw" = dontDistribute super."Zwaluw"; + "a50" = dontDistribute super."a50"; + "abacate" = dontDistribute super."abacate"; + "abc-puzzle" = dontDistribute super."abc-puzzle"; + "abcBridge" = dontDistribute super."abcBridge"; + "abcnotation" = dontDistribute super."abcnotation"; + "abeson" = dontDistribute super."abeson"; + "abstract-deque-tests" = dontDistribute super."abstract-deque-tests"; + "abstract-par-accelerate" = dontDistribute super."abstract-par-accelerate"; + "abt" = dontDistribute super."abt"; + "ac-machine" = dontDistribute super."ac-machine"; + "ac-machine-conduit" = dontDistribute super."ac-machine-conduit"; + "accelerate-arithmetic" = dontDistribute super."accelerate-arithmetic"; + "accelerate-cublas" = dontDistribute super."accelerate-cublas"; + "accelerate-cuda" = dontDistribute super."accelerate-cuda"; + "accelerate-cufft" = dontDistribute super."accelerate-cufft"; + "accelerate-examples" = dontDistribute super."accelerate-examples"; + "accelerate-fft" = dontDistribute super."accelerate-fft"; + "accelerate-fftw" = dontDistribute super."accelerate-fftw"; + "accelerate-fourier" = dontDistribute super."accelerate-fourier"; + "accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark"; + "accelerate-io" = dontDistribute super."accelerate-io"; + "accelerate-random" = dontDistribute super."accelerate-random"; + "accelerate-utility" = dontDistribute super."accelerate-utility"; + "accentuateus" = dontDistribute super."accentuateus"; + "access-time" = dontDistribute super."access-time"; + "acid-state" = doDistribute super."acid-state_0_12_4"; + "acid-state-dist" = dontDistribute super."acid-state-dist"; + "acid-state-tls" = dontDistribute super."acid-state-tls"; + "acl2" = dontDistribute super."acl2"; + "acme-all-monad" = dontDistribute super."acme-all-monad"; + "acme-box" = dontDistribute super."acme-box"; + "acme-cadre" = dontDistribute super."acme-cadre"; + "acme-cofunctor" = dontDistribute super."acme-cofunctor"; + "acme-colosson" = dontDistribute super."acme-colosson"; + "acme-comonad" = dontDistribute super."acme-comonad"; + "acme-cutegirl" = dontDistribute super."acme-cutegirl"; + "acme-dont" = dontDistribute super."acme-dont"; + "acme-flipping-tables" = dontDistribute super."acme-flipping-tables"; + "acme-grawlix" = dontDistribute super."acme-grawlix"; + "acme-hq9plus" = dontDistribute super."acme-hq9plus"; + "acme-http" = dontDistribute super."acme-http"; + "acme-inator" = dontDistribute super."acme-inator"; + "acme-io" = dontDistribute super."acme-io"; + "acme-lolcat" = dontDistribute super."acme-lolcat"; + "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; + "acme-memorandom" = dontDistribute super."acme-memorandom"; + "acme-microwave" = dontDistribute super."acme-microwave"; + "acme-miscorder" = dontDistribute super."acme-miscorder"; + "acme-missiles" = dontDistribute super."acme-missiles"; + "acme-now" = dontDistribute super."acme-now"; + "acme-numbersystem" = dontDistribute super."acme-numbersystem"; + "acme-omitted" = dontDistribute super."acme-omitted"; + "acme-one" = dontDistribute super."acme-one"; + "acme-operators" = dontDistribute super."acme-operators"; + "acme-php" = dontDistribute super."acme-php"; + "acme-pointful-numbers" = dontDistribute super."acme-pointful-numbers"; + "acme-realworld" = dontDistribute super."acme-realworld"; + "acme-safe" = dontDistribute super."acme-safe"; + "acme-schoenfinkel" = dontDistribute super."acme-schoenfinkel"; + "acme-strfry" = dontDistribute super."acme-strfry"; + "acme-stringly-typed" = dontDistribute super."acme-stringly-typed"; + "acme-strtok" = dontDistribute super."acme-strtok"; + "acme-timemachine" = dontDistribute super."acme-timemachine"; + "acme-year" = dontDistribute super."acme-year"; + "acme-zero" = dontDistribute super."acme-zero"; + "activehs" = dontDistribute super."activehs"; + "activehs-base" = dontDistribute super."activehs-base"; + "activitystreams-aeson" = dontDistribute super."activitystreams-aeson"; + "actor" = dontDistribute super."actor"; + "adaptive-containers" = dontDistribute super."adaptive-containers"; + "adaptive-tuple" = dontDistribute super."adaptive-tuple"; + "adb" = dontDistribute super."adb"; + "adblock2privoxy" = dontDistribute super."adblock2privoxy"; + "addLicenseInfo" = dontDistribute super."addLicenseInfo"; + "adhoc-network" = dontDistribute super."adhoc-network"; + "adict" = dontDistribute super."adict"; + "adobe-swatch-exchange" = dontDistribute super."adobe-swatch-exchange"; + "adp-multi" = dontDistribute super."adp-multi"; + "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; + "aeson" = doDistribute super."aeson_0_8_0_2"; + "aeson-applicative" = dontDistribute super."aeson-applicative"; + "aeson-bson" = dontDistribute super."aeson-bson"; + "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-diff" = dontDistribute super."aeson-diff"; + "aeson-lens" = dontDistribute super."aeson-lens"; + "aeson-native" = dontDistribute super."aeson-native"; + "aeson-schema" = doDistribute super."aeson-schema_0_3_0_7"; + "aeson-serialize" = dontDistribute super."aeson-serialize"; + "aeson-smart" = dontDistribute super."aeson-smart"; + "aeson-streams" = dontDistribute super."aeson-streams"; + "aeson-t" = dontDistribute super."aeson-t"; + "aeson-toolkit" = dontDistribute super."aeson-toolkit"; + "aeson-value-parser" = dontDistribute super."aeson-value-parser"; + "affine-invariant-ensemble-mcmc" = dontDistribute super."affine-invariant-ensemble-mcmc"; + "afis" = dontDistribute super."afis"; + "afv" = dontDistribute super."afv"; + "agda-server" = dontDistribute super."agda-server"; + "agum" = dontDistribute super."agum"; + "aig" = dontDistribute super."aig"; + "air" = dontDistribute super."air"; + "air-extra" = dontDistribute super."air-extra"; + "air-spec" = dontDistribute super."air-spec"; + "air-th" = dontDistribute super."air-th"; + "airbrake" = dontDistribute super."airbrake"; + "airship" = dontDistribute super."airship"; + "aivika" = dontDistribute super."aivika"; + "aivika-experiment" = dontDistribute super."aivika-experiment"; + "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; + "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; + "aivika-experiment-diagrams" = dontDistribute super."aivika-experiment-diagrams"; + "aivika-transformers" = dontDistribute super."aivika-transformers"; + "ajhc" = dontDistribute super."ajhc"; + "al" = dontDistribute super."al"; + "alea" = dontDistribute super."alea"; + "alex-meta" = dontDistribute super."alex-meta"; + "alfred" = dontDistribute super."alfred"; + "algebra" = dontDistribute super."algebra"; + "algebra-dag" = dontDistribute super."algebra-dag"; + "algebra-sql" = dontDistribute super."algebra-sql"; + "algebraic" = dontDistribute super."algebraic"; + "algebraic-classes" = dontDistribute super."algebraic-classes"; + "align" = dontDistribute super."align"; + "align-text" = dontDistribute super."align-text"; + "aligned-foreignptr" = dontDistribute super."aligned-foreignptr"; + "allocated-processor" = dontDistribute super."allocated-processor"; + "alloy" = dontDistribute super."alloy"; + "alloy-proxy-fd" = dontDistribute super."alloy-proxy-fd"; + "almost-fix" = dontDistribute super."almost-fix"; + "alms" = dontDistribute super."alms"; + "alpha" = dontDistribute super."alpha"; + "alpino-tools" = dontDistribute super."alpino-tools"; + "alsa" = dontDistribute super."alsa"; + "alsa-core" = dontDistribute super."alsa-core"; + "alsa-gui" = dontDistribute super."alsa-gui"; + "alsa-midi" = dontDistribute super."alsa-midi"; + "alsa-mixer" = dontDistribute super."alsa-mixer"; + "alsa-pcm" = dontDistribute super."alsa-pcm"; + "alsa-pcm-tests" = dontDistribute super."alsa-pcm-tests"; + "alsa-seq" = dontDistribute super."alsa-seq"; + "alsa-seq-tests" = dontDistribute super."alsa-seq-tests"; + "altcomposition" = dontDistribute super."altcomposition"; + "alternative-io" = dontDistribute super."alternative-io"; + "altfloat" = dontDistribute super."altfloat"; + "alure" = dontDistribute super."alure"; + "amazon-emailer" = dontDistribute super."amazon-emailer"; + "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; + "amazon-products" = dontDistribute super."amazon-products"; + "amazonka" = doDistribute super."amazonka_0_3_6"; + "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; + "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; + "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_6"; + "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_6"; + "amazonka-cloudsearch" = doDistribute super."amazonka-cloudsearch_0_3_6"; + "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_6"; + "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_6"; + "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_6"; + "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_6"; + "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; + "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; + "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; + "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_0_3_6"; + "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_0_3_6"; + "amazonka-config" = doDistribute super."amazonka-config_0_3_6"; + "amazonka-core" = doDistribute super."amazonka-core_0_3_6"; + "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; + "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; + "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-ds" = dontDistribute super."amazonka-ds"; + "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; + "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; + "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_6_1"; + "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_6"; + "amazonka-efs" = dontDistribute super."amazonka-efs"; + "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_6"; + "amazonka-elasticbeanstalk" = doDistribute super."amazonka-elasticbeanstalk_0_3_6"; + "amazonka-elasticsearch" = dontDistribute super."amazonka-elasticsearch"; + "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_6"; + "amazonka-elb" = doDistribute super."amazonka-elb_0_3_6"; + "amazonka-emr" = doDistribute super."amazonka-emr_0_3_6"; + "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_6"; + "amazonka-iam" = doDistribute super."amazonka-iam_0_3_6"; + "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_6"; + "amazonka-inspector" = dontDistribute super."amazonka-inspector"; + "amazonka-iot" = dontDistribute super."amazonka-iot"; + "amazonka-kinesis" = doDistribute super."amazonka-kinesis_0_3_6"; + "amazonka-kinesis-firehose" = dontDistribute super."amazonka-kinesis-firehose"; + "amazonka-kms" = doDistribute super."amazonka-kms_0_3_6"; + "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_6"; + "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-ml" = doDistribute super."amazonka-ml_0_3_6"; + "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_6"; + "amazonka-rds" = doDistribute super."amazonka-rds_0_3_6"; + "amazonka-redshift" = doDistribute super."amazonka-redshift_0_3_6"; + "amazonka-route53" = doDistribute super."amazonka-route53_0_3_6_1"; + "amazonka-route53-domains" = doDistribute super."amazonka-route53-domains_0_3_6"; + "amazonka-s3" = doDistribute super."amazonka-s3_0_3_6"; + "amazonka-sdb" = doDistribute super."amazonka-sdb_0_3_6"; + "amazonka-ses" = doDistribute super."amazonka-ses_0_3_6"; + "amazonka-sns" = doDistribute super."amazonka-sns_0_3_6"; + "amazonka-sqs" = doDistribute super."amazonka-sqs_0_3_6"; + "amazonka-ssm" = doDistribute super."amazonka-ssm_0_3_6"; + "amazonka-storagegateway" = doDistribute super."amazonka-storagegateway_0_3_6"; + "amazonka-sts" = doDistribute super."amazonka-sts_0_3_6"; + "amazonka-support" = doDistribute super."amazonka-support_0_3_6"; + "amazonka-swf" = doDistribute super."amazonka-swf_0_3_6"; + "amazonka-test" = dontDistribute super."amazonka-test"; + "amazonka-waf" = dontDistribute super."amazonka-waf"; + "amazonka-workspaces" = doDistribute super."amazonka-workspaces_0_3_6"; + "ampersand" = dontDistribute super."ampersand"; + "amqp-conduit" = dontDistribute super."amqp-conduit"; + "amrun" = dontDistribute super."amrun"; + "analyze-client" = dontDistribute super."analyze-client"; + "anansi" = dontDistribute super."anansi"; + "anansi-hscolour" = dontDistribute super."anansi-hscolour"; + "anansi-pandoc" = dontDistribute super."anansi-pandoc"; + "anatomy" = dontDistribute super."anatomy"; + "android" = dontDistribute super."android"; + "android-lint-summary" = dontDistribute super."android-lint-summary"; + "animalcase" = dontDistribute super."animalcase"; + "annotated-wl-pprint" = doDistribute super."annotated-wl-pprint_0_6_0"; + "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; + "ansi-pretty" = dontDistribute super."ansi-pretty"; + "ansigraph" = dontDistribute super."ansigraph"; + "antagonist" = dontDistribute super."antagonist"; + "antfarm" = dontDistribute super."antfarm"; + "anticiv" = dontDistribute super."anticiv"; + "antigate" = dontDistribute super."antigate"; + "antimirov" = dontDistribute super."antimirov"; + "antiquoter" = dontDistribute super."antiquoter"; + "antisplice" = dontDistribute super."antisplice"; + "antlrc" = dontDistribute super."antlrc"; + "anydbm" = dontDistribute super."anydbm"; + "aosd" = dontDistribute super."aosd"; + "ap-reflect" = dontDistribute super."ap-reflect"; + "apache-md5" = dontDistribute super."apache-md5"; + "apelsin" = dontDistribute super."apelsin"; + "api-builder" = dontDistribute super."api-builder"; + "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; + "api-tools" = dontDistribute super."api-tools"; + "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-purescript" = dontDistribute super."apiary-purescript"; + "apis" = dontDistribute super."apis"; + "apotiki" = dontDistribute super."apotiki"; + "app-lens" = dontDistribute super."app-lens"; + "app-settings" = dontDistribute super."app-settings"; + "appc" = dontDistribute super."appc"; + "applicative-extras" = dontDistribute super."applicative-extras"; + "applicative-fail" = dontDistribute super."applicative-fail"; + "applicative-numbers" = dontDistribute super."applicative-numbers"; + "applicative-parsec" = dontDistribute super."applicative-parsec"; + "apportionment" = dontDistribute super."apportionment"; + "approx-rand-test" = dontDistribute super."approx-rand-test"; + "approximate-equality" = dontDistribute super."approximate-equality"; + "ar-timestamp-wiper" = dontDistribute super."ar-timestamp-wiper"; + "arb-fft" = dontDistribute super."arb-fft"; + "arbb-vm" = dontDistribute super."arbb-vm"; + "archive" = dontDistribute super."archive"; + "archiver" = dontDistribute super."archiver"; + "archlinux" = dontDistribute super."archlinux"; + "archlinux-web" = dontDistribute super."archlinux-web"; + "archnews" = dontDistribute super."archnews"; + "arff" = dontDistribute super."arff"; + "argparser" = dontDistribute super."argparser"; + "arguedit" = dontDistribute super."arguedit"; + "ariadne" = dontDistribute super."ariadne"; + "arion" = dontDistribute super."arion"; + "arith-encode" = dontDistribute super."arith-encode"; + "arithmatic" = dontDistribute super."arithmatic"; + "arithmetic" = dontDistribute super."arithmetic"; + "arithmoi" = dontDistribute super."arithmoi"; + "armada" = dontDistribute super."armada"; + "arpa" = dontDistribute super."arpa"; + "array-forth" = dontDistribute super."array-forth"; + "array-memoize" = dontDistribute super."array-memoize"; + "array-primops" = dontDistribute super."array-primops"; + "array-utils" = dontDistribute super."array-utils"; + "arrow-improve" = dontDistribute super."arrow-improve"; + "arrowapply-utils" = dontDistribute super."arrowapply-utils"; + "arrowp" = dontDistribute super."arrowp"; + "artery" = dontDistribute super."artery"; + "arx" = dontDistribute super."arx"; + "arxiv" = dontDistribute super."arxiv"; + "ascetic" = dontDistribute super."ascetic"; + "ascii" = dontDistribute super."ascii"; + "ascii-progress" = dontDistribute super."ascii-progress"; + "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; + "ascii85-conduit" = dontDistribute super."ascii85-conduit"; + "asic" = dontDistribute super."asic"; + "asil" = dontDistribute super."asil"; + "asn1-data" = dontDistribute super."asn1-data"; + "asn1dump" = dontDistribute super."asn1dump"; + "assembler" = dontDistribute super."assembler"; + "assert" = dontDistribute super."assert"; + "assert-failure" = dontDistribute super."assert-failure"; + "assertions" = dontDistribute super."assertions"; + "assimp" = dontDistribute super."assimp"; + "astar" = dontDistribute super."astar"; + "astrds" = dontDistribute super."astrds"; + "astview" = dontDistribute super."astview"; + "astview-utils" = dontDistribute super."astview-utils"; + "async-extras" = dontDistribute super."async-extras"; + "async-manager" = dontDistribute super."async-manager"; + "async-pool" = dontDistribute super."async-pool"; + "asynchronous-exceptions" = dontDistribute super."asynchronous-exceptions"; + "aterm" = dontDistribute super."aterm"; + "aterm-utils" = dontDistribute super."aterm-utils"; + "atl" = dontDistribute super."atl"; + "atlassian-connect-core" = dontDistribute super."atlassian-connect-core"; + "atlassian-connect-descriptor" = dontDistribute super."atlassian-connect-descriptor"; + "atmos" = dontDistribute super."atmos"; + "atmos-dimensional" = dontDistribute super."atmos-dimensional"; + "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atom" = dontDistribute super."atom"; + "atom-basic" = dontDistribute super."atom-basic"; + "atom-conduit" = dontDistribute super."atom-conduit"; + "atom-msp430" = dontDistribute super."atom-msp430"; + "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign"; + "atomic-primops-vector" = dontDistribute super."atomic-primops-vector"; + "atomic-write" = dontDistribute super."atomic-write"; + "atomo" = dontDistribute super."atomo"; + "attempt" = dontDistribute super."attempt"; + "atto-lisp" = dontDistribute super."atto-lisp"; + "attoparsec" = doDistribute super."attoparsec_0_12_1_6"; + "attoparsec-arff" = dontDistribute super."attoparsec-arff"; + "attoparsec-binary" = dontDistribute super."attoparsec-binary"; + "attoparsec-conduit" = dontDistribute super."attoparsec-conduit"; + "attoparsec-csv" = dontDistribute super."attoparsec-csv"; + "attoparsec-iteratee" = dontDistribute super."attoparsec-iteratee"; + "attoparsec-parsec" = dontDistribute super."attoparsec-parsec"; + "attoparsec-text" = dontDistribute super."attoparsec-text"; + "attoparsec-text-enumerator" = dontDistribute super."attoparsec-text-enumerator"; + "attosplit" = dontDistribute super."attosplit"; + "atuin" = dontDistribute super."atuin"; + "audacity" = dontDistribute super."audacity"; + "audiovisual" = dontDistribute super."audiovisual"; + "augeas" = dontDistribute super."augeas"; + "augur" = dontDistribute super."augur"; + "aur" = dontDistribute super."aur"; + "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; + "authenticate-ldap" = dontDistribute super."authenticate-ldap"; + "authinfo-hs" = dontDistribute super."authinfo-hs"; + "authoring" = dontDistribute super."authoring"; + "autonix-deps" = dontDistribute super."autonix-deps"; + "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5"; + "autoproc" = dontDistribute super."autoproc"; + "avahi" = dontDistribute super."avahi"; + "avatar-generator" = dontDistribute super."avatar-generator"; + "average" = dontDistribute super."average"; + "avers" = dontDistribute super."avers"; + "avl-static" = dontDistribute super."avl-static"; + "avr-shake" = dontDistribute super."avr-shake"; + "awesomium" = dontDistribute super."awesomium"; + "awesomium-glut" = dontDistribute super."awesomium-glut"; + "awesomium-raw" = dontDistribute super."awesomium-raw"; + "aws-cloudfront-signer" = dontDistribute super."aws-cloudfront-signer"; + "aws-configuration-tools" = dontDistribute super."aws-configuration-tools"; + "aws-dynamodb-conduit" = dontDistribute super."aws-dynamodb-conduit"; + "aws-dynamodb-streams" = dontDistribute super."aws-dynamodb-streams"; + "aws-ec2" = dontDistribute super."aws-ec2"; + "aws-elastic-transcoder" = dontDistribute super."aws-elastic-transcoder"; + "aws-general" = dontDistribute super."aws-general"; + "aws-kinesis" = dontDistribute super."aws-kinesis"; + "aws-kinesis-client" = dontDistribute super."aws-kinesis-client"; + "aws-kinesis-reshard" = dontDistribute super."aws-kinesis-reshard"; + "aws-lambda" = dontDistribute super."aws-lambda"; + "aws-performance-tests" = dontDistribute super."aws-performance-tests"; + "aws-route53" = dontDistribute super."aws-route53"; + "aws-sdk" = dontDistribute super."aws-sdk"; + "aws-sdk-text-converter" = dontDistribute super."aws-sdk-text-converter"; + "aws-sdk-xml-unordered" = dontDistribute super."aws-sdk-xml-unordered"; + "aws-sign4" = dontDistribute super."aws-sign4"; + "aws-sns" = dontDistribute super."aws-sns"; + "azure-acs" = dontDistribute super."azure-acs"; + "azure-service-api" = dontDistribute super."azure-service-api"; + "azure-servicebus" = dontDistribute super."azure-servicebus"; + "azurify" = dontDistribute super."azurify"; + "b-tree" = dontDistribute super."b-tree"; + "babylon" = dontDistribute super."babylon"; + "backdropper" = dontDistribute super."backdropper"; + "backtracking-exceptions" = dontDistribute super."backtracking-exceptions"; + "backward-state" = dontDistribute super."backward-state"; + "bacteria" = dontDistribute super."bacteria"; + "bag" = dontDistribute super."bag"; + "bamboo" = dontDistribute super."bamboo"; + "bamboo-launcher" = dontDistribute super."bamboo-launcher"; + "bamboo-plugin-highlight" = dontDistribute super."bamboo-plugin-highlight"; + "bamboo-plugin-photo" = dontDistribute super."bamboo-plugin-photo"; + "bamboo-theme-blueprint" = dontDistribute super."bamboo-theme-blueprint"; + "bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5"; + "bamse" = dontDistribute super."bamse"; + "bamstats" = dontDistribute super."bamstats"; + "banwords" = dontDistribute super."banwords"; + "barchart" = dontDistribute super."barchart"; + "barcodes-code128" = dontDistribute super."barcodes-code128"; + "barecheck" = dontDistribute super."barecheck"; + "barley" = dontDistribute super."barley"; + "barrie" = dontDistribute super."barrie"; + "barrier" = dontDistribute super."barrier"; + "barrier-monad" = dontDistribute super."barrier-monad"; + "base-generics" = dontDistribute super."base-generics"; + "base-io-access" = dontDistribute super."base-io-access"; + "base-noprelude" = dontDistribute super."base-noprelude"; + "base32-bytestring" = dontDistribute super."base32-bytestring"; + "base58-bytestring" = dontDistribute super."base58-bytestring"; + "base58address" = dontDistribute super."base58address"; + "base64-conduit" = dontDistribute super."base64-conduit"; + "base91" = dontDistribute super."base91"; + "basex-client" = dontDistribute super."basex-client"; + "bash" = dontDistribute super."bash"; + "basic-lens" = dontDistribute super."basic-lens"; + "basic-sop" = dontDistribute super."basic-sop"; + "baskell" = dontDistribute super."baskell"; + "battlenet" = dontDistribute super."battlenet"; + "battlenet-yesod" = dontDistribute super."battlenet-yesod"; + "battleships" = dontDistribute super."battleships"; + "bayes-stack" = dontDistribute super."bayes-stack"; + "bbdb" = dontDistribute super."bbdb"; + "bcrypt" = doDistribute super."bcrypt_0_0_6"; + "bdd" = dontDistribute super."bdd"; + "bdelta" = dontDistribute super."bdelta"; + "bdo" = dontDistribute super."bdo"; + "beamable" = dontDistribute super."beamable"; + "beautifHOL" = dontDistribute super."beautifHOL"; + "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; + "bein" = dontDistribute super."bein"; + "benchmark-function" = dontDistribute super."benchmark-function"; + "benchpress" = dontDistribute super."benchpress"; + "bencoding" = dontDistribute super."bencoding"; + "berkeleydb" = dontDistribute super."berkeleydb"; + "berp" = dontDistribute super."berp"; + "bert" = dontDistribute super."bert"; + "besout" = dontDistribute super."besout"; + "bet" = dontDistribute super."bet"; + "betacode" = dontDistribute super."betacode"; + "between" = dontDistribute super."between"; + "bf-cata" = dontDistribute super."bf-cata"; + "bff" = dontDistribute super."bff"; + "bff-mono" = dontDistribute super."bff-mono"; + "bgmax" = dontDistribute super."bgmax"; + "bgzf" = dontDistribute super."bgzf"; + "bibtex" = dontDistribute super."bibtex"; + "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; + "bidispec" = dontDistribute super."bidispec"; + "bidispec-extras" = dontDistribute super."bidispec-extras"; + "billboard-parser" = dontDistribute super."billboard-parser"; + "billeksah-forms" = dontDistribute super."billeksah-forms"; + "billeksah-main" = dontDistribute super."billeksah-main"; + "billeksah-main-static" = dontDistribute super."billeksah-main-static"; + "billeksah-pane" = dontDistribute super."billeksah-pane"; + "billeksah-services" = dontDistribute super."billeksah-services"; + "bimap" = dontDistribute super."bimap"; + "bimap-server" = dontDistribute super."bimap-server"; + "bimaps" = dontDistribute super."bimaps"; + "binary-bits" = dontDistribute super."binary-bits"; + "binary-communicator" = dontDistribute super."binary-communicator"; + "binary-derive" = dontDistribute super."binary-derive"; + "binary-file" = dontDistribute super."binary-file"; + "binary-generic" = dontDistribute super."binary-generic"; + "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; + "binary-literal-qq" = dontDistribute super."binary-literal-qq"; + "binary-protocol" = dontDistribute super."binary-protocol"; + "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq"; + "binary-shared" = dontDistribute super."binary-shared"; + "binary-state" = dontDistribute super."binary-state"; + "binary-store" = dontDistribute super."binary-store"; + "binary-streams" = dontDistribute super."binary-streams"; + "binary-strict" = dontDistribute super."binary-strict"; + "binary-typed" = dontDistribute super."binary-typed"; + "binarydefer" = dontDistribute super."binarydefer"; + "bind-marshal" = dontDistribute super."bind-marshal"; + "binding-core" = dontDistribute super."binding-core"; + "binding-gtk" = dontDistribute super."binding-gtk"; + "binding-wx" = dontDistribute super."binding-wx"; + "bindings" = dontDistribute super."bindings"; + "bindings-EsounD" = dontDistribute super."bindings-EsounD"; + "bindings-GLFW" = dontDistribute super."bindings-GLFW"; + "bindings-K8055" = dontDistribute super."bindings-K8055"; + "bindings-apr" = dontDistribute super."bindings-apr"; + "bindings-apr-util" = dontDistribute super."bindings-apr-util"; + "bindings-audiofile" = dontDistribute super."bindings-audiofile"; + "bindings-bfd" = dontDistribute super."bindings-bfd"; + "bindings-cctools" = dontDistribute super."bindings-cctools"; + "bindings-codec2" = dontDistribute super."bindings-codec2"; + "bindings-common" = dontDistribute super."bindings-common"; + "bindings-dc1394" = dontDistribute super."bindings-dc1394"; + "bindings-directfb" = dontDistribute super."bindings-directfb"; + "bindings-eskit" = dontDistribute super."bindings-eskit"; + "bindings-fann" = dontDistribute super."bindings-fann"; + "bindings-fluidsynth" = dontDistribute super."bindings-fluidsynth"; + "bindings-friso" = dontDistribute super."bindings-friso"; + "bindings-glib" = dontDistribute super."bindings-glib"; + "bindings-gobject" = dontDistribute super."bindings-gobject"; + "bindings-gpgme" = dontDistribute super."bindings-gpgme"; + "bindings-gsl" = dontDistribute super."bindings-gsl"; + "bindings-gts" = dontDistribute super."bindings-gts"; + "bindings-hamlib" = dontDistribute super."bindings-hamlib"; + "bindings-hdf5" = dontDistribute super."bindings-hdf5"; + "bindings-levmar" = dontDistribute super."bindings-levmar"; + "bindings-libcddb" = dontDistribute super."bindings-libcddb"; + "bindings-libffi" = dontDistribute super."bindings-libffi"; + "bindings-libftdi" = dontDistribute super."bindings-libftdi"; + "bindings-librrd" = dontDistribute super."bindings-librrd"; + "bindings-libstemmer" = dontDistribute super."bindings-libstemmer"; + "bindings-libusb" = dontDistribute super."bindings-libusb"; + "bindings-libv4l2" = dontDistribute super."bindings-libv4l2"; + "bindings-libzip" = dontDistribute super."bindings-libzip"; + "bindings-linux-videodev2" = dontDistribute super."bindings-linux-videodev2"; + "bindings-lxc" = dontDistribute super."bindings-lxc"; + "bindings-mmap" = dontDistribute super."bindings-mmap"; + "bindings-mpdecimal" = dontDistribute super."bindings-mpdecimal"; + "bindings-nettle" = dontDistribute super."bindings-nettle"; + "bindings-parport" = dontDistribute super."bindings-parport"; + "bindings-portaudio" = dontDistribute super."bindings-portaudio"; + "bindings-posix" = dontDistribute super."bindings-posix"; + "bindings-potrace" = dontDistribute super."bindings-potrace"; + "bindings-ppdev" = dontDistribute super."bindings-ppdev"; + "bindings-saga-cmd" = dontDistribute super."bindings-saga-cmd"; + "bindings-sane" = dontDistribute super."bindings-sane"; + "bindings-sc3" = dontDistribute super."bindings-sc3"; + "bindings-sipc" = dontDistribute super."bindings-sipc"; + "bindings-sophia" = dontDistribute super."bindings-sophia"; + "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; + "bindings-svm" = dontDistribute super."bindings-svm"; + "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-yices" = dontDistribute super."bindings-yices"; + "bindynamic" = dontDistribute super."bindynamic"; + "binembed" = dontDistribute super."binembed"; + "binembed-example" = dontDistribute super."binembed-example"; + "bio" = dontDistribute super."bio"; + "biophd" = dontDistribute super."biophd"; + "biosff" = dontDistribute super."biosff"; + "biostockholm" = dontDistribute super."biostockholm"; + "bird" = dontDistribute super."bird"; + "bit-array" = dontDistribute super."bit-array"; + "bit-vector" = dontDistribute super."bit-vector"; + "bitarray" = dontDistribute super."bitarray"; + "bitcoin-rpc" = dontDistribute super."bitcoin-rpc"; + "bitly-cli" = dontDistribute super."bitly-cli"; + "bitmap" = dontDistribute super."bitmap"; + "bitmap-opengl" = dontDistribute super."bitmap-opengl"; + "bitmaps" = dontDistribute super."bitmaps"; + "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-conduit" = dontDistribute super."bits-conduit"; + "bits-extras" = dontDistribute super."bits-extras"; + "bitset" = dontDistribute super."bitset"; + "bitspeak" = dontDistribute super."bitspeak"; + "bitstream" = dontDistribute super."bitstream"; + "bitstring" = dontDistribute super."bitstring"; + "bittorrent" = dontDistribute super."bittorrent"; + "bitvec" = dontDistribute super."bitvec"; + "bitx-bitcoin" = dontDistribute super."bitx-bitcoin"; + "bk-tree" = dontDistribute super."bk-tree"; + "bkr" = dontDistribute super."bkr"; + "bktrees" = dontDistribute super."bktrees"; + "bla" = dontDistribute super."bla"; + "black-jewel" = dontDistribute super."black-jewel"; + "blacktip" = dontDistribute super."blacktip"; + "blakesum" = dontDistribute super."blakesum"; + "blakesum-demo" = dontDistribute super."blakesum-demo"; + "blank-canvas" = dontDistribute super."blank-canvas"; + "blas" = dontDistribute super."blas"; + "blas-hs" = dontDistribute super."blas-hs"; + "blaze" = dontDistribute super."blaze"; + "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; + "blaze-from-html" = dontDistribute super."blaze-from-html"; + "blaze-html-contrib" = dontDistribute super."blaze-html-contrib"; + "blaze-html-hexpat" = dontDistribute super."blaze-html-hexpat"; + "blaze-html-truncate" = dontDistribute super."blaze-html-truncate"; + "blaze-json" = dontDistribute super."blaze-json"; + "blaze-shields" = dontDistribute super."blaze-shields"; + "blaze-textual-native" = dontDistribute super."blaze-textual-native"; + "blazeMarker" = dontDistribute super."blazeMarker"; + "blink1" = dontDistribute super."blink1"; + "blip" = dontDistribute super."blip"; + "bliplib" = dontDistribute super."bliplib"; + "blocking-transactions" = dontDistribute super."blocking-transactions"; + "blogination" = dontDistribute super."blogination"; + "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; + "bloxorz" = dontDistribute super."bloxorz"; + "blubber" = dontDistribute super."blubber"; + "blubber-server" = dontDistribute super."blubber-server"; + "bluetile" = dontDistribute super."bluetile"; + "bluetileutils" = dontDistribute super."bluetileutils"; + "blunt" = dontDistribute super."blunt"; + "board-games" = dontDistribute super."board-games"; + "bogre-banana" = dontDistribute super."bogre-banana"; + "boolean-list" = dontDistribute super."boolean-list"; + "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; + "boolexpr" = dontDistribute super."boolexpr"; + "bools" = dontDistribute super."bools"; + "boolsimplifier" = dontDistribute super."boolsimplifier"; + "boomange" = dontDistribute super."boomange"; + "boomerang" = dontDistribute super."boomerang"; + "boomslang" = dontDistribute super."boomslang"; + "borel" = dontDistribute super."borel"; + "bot" = dontDistribute super."bot"; + "both" = dontDistribute super."both"; + "botpp" = dontDistribute super."botpp"; + "bound-gen" = dontDistribute super."bound-gen"; + "bounded-tchan" = dontDistribute super."bounded-tchan"; + "boundingboxes" = dontDistribute super."boundingboxes"; + "bpann" = dontDistribute super."bpann"; + "brainfuck-monad" = dontDistribute super."brainfuck-monad"; + "brainfuck-tut" = dontDistribute super."brainfuck-tut"; + "break" = dontDistribute super."break"; + "breakout" = dontDistribute super."breakout"; + "breve" = dontDistribute super."breve"; + "brians-brain" = dontDistribute super."brians-brain"; + "brick" = dontDistribute super."brick"; + "brillig" = dontDistribute super."brillig"; + "broccoli" = dontDistribute super."broccoli"; + "broker-haskell" = dontDistribute super."broker-haskell"; + "bsd-sysctl" = dontDistribute super."bsd-sysctl"; + "bson-generic" = dontDistribute super."bson-generic"; + "bson-generics" = dontDistribute super."bson-generics"; + "bson-lens" = dontDistribute super."bson-lens"; + "bson-mapping" = dontDistribute super."bson-mapping"; + "bspack" = dontDistribute super."bspack"; + "bsparse" = dontDistribute super."bsparse"; + "btree-concurrent" = dontDistribute super."btree-concurrent"; + "buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson"; + "bugzilla" = dontDistribute super."bugzilla"; + "buildable" = dontDistribute super."buildable"; + "buildbox" = dontDistribute super."buildbox"; + "buildbox-tools" = dontDistribute super."buildbox-tools"; + "buildwrapper" = dontDistribute super."buildwrapper"; + "bullet" = dontDistribute super."bullet"; + "burst-detection" = dontDistribute super."burst-detection"; + "bus-pirate" = dontDistribute super."bus-pirate"; + "buster" = dontDistribute super."buster"; + "buster-gtk" = dontDistribute super."buster-gtk"; + "buster-network" = dontDistribute super."buster-network"; + "bustle" = dontDistribute super."bustle"; + "bv" = dontDistribute super."bv"; + "byline" = dontDistribute super."byline"; + "bytable" = dontDistribute super."bytable"; + "byteset" = dontDistribute super."byteset"; + "bytestring-arbitrary" = dontDistribute super."bytestring-arbitrary"; + "bytestring-class" = dontDistribute super."bytestring-class"; + "bytestring-csv" = dontDistribute super."bytestring-csv"; + "bytestring-delta" = dontDistribute super."bytestring-delta"; + "bytestring-from" = dontDistribute super."bytestring-from"; + "bytestring-handle" = dontDistribute super."bytestring-handle"; + "bytestring-nums" = dontDistribute super."bytestring-nums"; + "bytestring-plain" = dontDistribute super."bytestring-plain"; + "bytestring-rematch" = dontDistribute super."bytestring-rematch"; + "bytestring-short" = dontDistribute super."bytestring-short"; + "bytestring-show" = dontDistribute super."bytestring-show"; + "bytestringparser" = dontDistribute super."bytestringparser"; + "bytestringparser-temporary" = dontDistribute super."bytestringparser-temporary"; + "bytestringreadp" = dontDistribute super."bytestringreadp"; + "c-dsl" = dontDistribute super."c-dsl"; + "c-io" = dontDistribute super."c-io"; + "c-storable-deriving" = dontDistribute super."c-storable-deriving"; + "c0check" = dontDistribute super."c0check"; + "c0parser" = dontDistribute super."c0parser"; + "c10k" = dontDistribute super."c10k"; + "c2hs" = doDistribute super."c2hs_0_25_2"; + "c2hsc" = dontDistribute super."c2hsc"; + "cab" = dontDistribute super."cab"; + "cabal-audit" = dontDistribute super."cabal-audit"; + "cabal-bounds" = dontDistribute super."cabal-bounds"; + "cabal-cargs" = dontDistribute super."cabal-cargs"; + "cabal-constraints" = dontDistribute super."cabal-constraints"; + "cabal-db" = dontDistribute super."cabal-db"; + "cabal-debian" = doDistribute super."cabal-debian_4_30_2"; + "cabal-dependency-licenses" = dontDistribute super."cabal-dependency-licenses"; + "cabal-dev" = dontDistribute super."cabal-dev"; + "cabal-dir" = dontDistribute super."cabal-dir"; + "cabal-ghc-dynflags" = dontDistribute super."cabal-ghc-dynflags"; + "cabal-ghci" = dontDistribute super."cabal-ghci"; + "cabal-graphdeps" = dontDistribute super."cabal-graphdeps"; + "cabal-helper" = dontDistribute super."cabal-helper"; + "cabal-install-bundle" = dontDistribute super."cabal-install-bundle"; + "cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72"; + "cabal-install-ghc74" = dontDistribute super."cabal-install-ghc74"; + "cabal-lenses" = dontDistribute super."cabal-lenses"; + "cabal-macosx" = dontDistribute super."cabal-macosx"; + "cabal-meta" = dontDistribute super."cabal-meta"; + "cabal-mon" = dontDistribute super."cabal-mon"; + "cabal-nirvana" = dontDistribute super."cabal-nirvana"; + "cabal-progdeps" = dontDistribute super."cabal-progdeps"; + "cabal-query" = dontDistribute super."cabal-query"; + "cabal-scripts" = dontDistribute super."cabal-scripts"; + "cabal-setup" = dontDistribute super."cabal-setup"; + "cabal-sign" = dontDistribute super."cabal-sign"; + "cabal-sort" = dontDistribute super."cabal-sort"; + "cabal-test" = dontDistribute super."cabal-test"; + "cabal-test-bin" = dontDistribute super."cabal-test-bin"; + "cabal-test-compat" = dontDistribute super."cabal-test-compat"; + "cabal-test-quickcheck" = dontDistribute super."cabal-test-quickcheck"; + "cabal-uninstall" = dontDistribute super."cabal-uninstall"; + "cabal-upload" = dontDistribute super."cabal-upload"; + "cabal2arch" = dontDistribute super."cabal2arch"; + "cabal2doap" = dontDistribute super."cabal2doap"; + "cabal2ebuild" = dontDistribute super."cabal2ebuild"; + "cabal2ghci" = dontDistribute super."cabal2ghci"; + "cabal2nix" = dontDistribute super."cabal2nix"; + "cabal2spec" = dontDistribute super."cabal2spec"; + "cabalQuery" = dontDistribute super."cabalQuery"; + "cabalg" = dontDistribute super."cabalg"; + "cabalgraph" = dontDistribute super."cabalgraph"; + "cabalmdvrpm" = dontDistribute super."cabalmdvrpm"; + "cabalrpmdeps" = dontDistribute super."cabalrpmdeps"; + "cabalvchk" = dontDistribute super."cabalvchk"; + "cabin" = dontDistribute super."cabin"; + "cabocha" = dontDistribute super."cabocha"; + "cached-io" = dontDistribute super."cached-io"; + "cached-traversable" = dontDistribute super."cached-traversable"; + "caf" = dontDistribute super."caf"; + "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; + "caffegraph" = dontDistribute super."caffegraph"; + "cairo-appbase" = dontDistribute super."cairo-appbase"; + "cake" = dontDistribute super."cake"; + "cake3" = dontDistribute super."cake3"; + "cakyrespa" = dontDistribute super."cakyrespa"; + "cal3d" = dontDistribute super."cal3d"; + "cal3d-examples" = dontDistribute super."cal3d-examples"; + "cal3d-opengl" = dontDistribute super."cal3d-opengl"; + "calc" = dontDistribute super."calc"; + "calculator" = dontDistribute super."calculator"; + "caldims" = dontDistribute super."caldims"; + "caledon" = dontDistribute super."caledon"; + "call" = dontDistribute super."call"; + "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camh" = dontDistribute super."camh"; + "campfire" = dontDistribute super."campfire"; + "canonical-filepath" = dontDistribute super."canonical-filepath"; + "canteven-config" = dontDistribute super."canteven-config"; + "canteven-log" = dontDistribute super."canteven-log"; + "cantor" = dontDistribute super."cantor"; + "cao" = dontDistribute super."cao"; + "cap" = dontDistribute super."cap"; + "capped-list" = dontDistribute super."capped-list"; + "capri" = dontDistribute super."capri"; + "caramia" = dontDistribute super."caramia"; + "carboncopy" = dontDistribute super."carboncopy"; + "carettah" = dontDistribute super."carettah"; + "carray" = dontDistribute super."carray"; + "casadi-bindings" = dontDistribute super."casadi-bindings"; + "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; + "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; + "casadi-bindings-internal" = dontDistribute super."casadi-bindings-internal"; + "casadi-bindings-ipopt-interface" = dontDistribute super."casadi-bindings-ipopt-interface"; + "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; + "cascading" = dontDistribute super."cascading"; + "case-conversion" = dontDistribute super."case-conversion"; + "cased" = dontDistribute super."cased"; + "cash" = dontDistribute super."cash"; + "casing" = dontDistribute super."casing"; + "cassandra-cql" = dontDistribute super."cassandra-cql"; + "cassandra-thrift" = dontDistribute super."cassandra-thrift"; + "cassava-conduit" = dontDistribute super."cassava-conduit"; + "cassava-streams" = dontDistribute super."cassava-streams"; + "cassette" = dontDistribute super."cassette"; + "cassy" = dontDistribute super."cassy"; + "castle" = dontDistribute super."castle"; + "casui" = dontDistribute super."casui"; + "catamorphism" = dontDistribute super."catamorphism"; + "catch-fd" = dontDistribute super."catch-fd"; + "categorical-algebra" = dontDistribute super."categorical-algebra"; + "categories" = dontDistribute super."categories"; + "category-extras" = dontDistribute super."category-extras"; + "cblrepo" = dontDistribute super."cblrepo"; + "cci" = dontDistribute super."cci"; + "ccnx" = dontDistribute super."ccnx"; + "cctools-workqueue" = dontDistribute super."cctools-workqueue"; + "cedict" = dontDistribute super."cedict"; + "cef" = dontDistribute super."cef"; + "ceilometer-common" = dontDistribute super."ceilometer-common"; + "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cereal-derive" = dontDistribute super."cereal-derive"; + "cereal-enumerator" = dontDistribute super."cereal-enumerator"; + "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-text" = dontDistribute super."cereal-text"; + "certificate" = dontDistribute super."certificate"; + "cf" = dontDistribute super."cf"; + "cfipu" = dontDistribute super."cfipu"; + "cflp" = dontDistribute super."cflp"; + "cfopu" = dontDistribute super."cfopu"; + "cg" = dontDistribute super."cg"; + "cgen" = dontDistribute super."cgen"; + "cgi-undecidable" = dontDistribute super."cgi-undecidable"; + "cgi-utils" = dontDistribute super."cgi-utils"; + "cgrep" = dontDistribute super."cgrep"; + "chain-codes" = dontDistribute super."chain-codes"; + "chalk" = dontDistribute super."chalk"; + "chalkboard" = dontDistribute super."chalkboard"; + "chalkboard-viewer" = dontDistribute super."chalkboard-viewer"; + "chalmers-lava2000" = dontDistribute super."chalmers-lava2000"; + "chan-split" = dontDistribute super."chan-split"; + "change-monger" = dontDistribute super."change-monger"; + "charade" = dontDistribute super."charade"; + "charsetdetect" = dontDistribute super."charsetdetect"; + "charsetdetect-ae" = dontDistribute super."charsetdetect-ae"; + "chart-histogram" = dontDistribute super."chart-histogram"; + "chaselev-deque" = dontDistribute super."chaselev-deque"; + "chatter" = dontDistribute super."chatter"; + "chatty" = dontDistribute super."chatty"; + "chatty-text" = dontDistribute super."chatty-text"; + "chatty-utils" = dontDistribute super."chatty-utils"; + "cheapskate" = dontDistribute super."cheapskate"; + "check-pvp" = dontDistribute super."check-pvp"; + "checked" = dontDistribute super."checked"; + "chell-hunit" = dontDistribute super."chell-hunit"; + "chesshs" = dontDistribute super."chesshs"; + "chevalier-common" = dontDistribute super."chevalier-common"; + "chp" = dontDistribute super."chp"; + "chp-mtl" = dontDistribute super."chp-mtl"; + "chp-plus" = dontDistribute super."chp-plus"; + "chp-spec" = dontDistribute super."chp-spec"; + "chp-transformers" = dontDistribute super."chp-transformers"; + "chronograph" = dontDistribute super."chronograph"; + "chu2" = dontDistribute super."chu2"; + "chuchu" = dontDistribute super."chuchu"; + "chunks" = dontDistribute super."chunks"; + "chunky" = dontDistribute super."chunky"; + "church-list" = dontDistribute super."church-list"; + "cil" = dontDistribute super."cil"; + "cinvoke" = dontDistribute super."cinvoke"; + "cio" = dontDistribute super."cio"; + "cipher-rc5" = dontDistribute super."cipher-rc5"; + "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"; + "clanki" = dontDistribute super."clanki"; + "clash" = dontDistribute super."clash"; + "clash-ghc" = doDistribute super."clash-ghc_0_5_15"; + "clash-lib" = doDistribute super."clash-lib_0_5_13"; + "clash-prelude" = doDistribute super."clash-prelude_0_9_3"; + "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck"; + "clash-systemverilog" = doDistribute super."clash-systemverilog_0_5_10"; + "clash-verilog" = doDistribute super."clash-verilog_0_5_10"; + "clash-vhdl" = doDistribute super."clash-vhdl_0_5_12"; + "classify" = dontDistribute super."classify"; + "classy-parallel" = dontDistribute super."classy-parallel"; + "clckwrks" = dontDistribute super."clckwrks"; + "clckwrks-cli" = dontDistribute super."clckwrks-cli"; + "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com"; + "clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs"; + "clckwrks-plugin-ircbot" = dontDistribute super."clckwrks-plugin-ircbot"; + "clckwrks-plugin-media" = dontDistribute super."clckwrks-plugin-media"; + "clckwrks-plugin-page" = dontDistribute super."clckwrks-plugin-page"; + "clckwrks-theme-bootstrap" = dontDistribute super."clckwrks-theme-bootstrap"; + "clckwrks-theme-clckwrks" = dontDistribute super."clckwrks-theme-clckwrks"; + "clckwrks-theme-geo-bootstrap" = dontDistribute super."clckwrks-theme-geo-bootstrap"; + "cld2" = dontDistribute super."cld2"; + "clean-home" = dontDistribute super."clean-home"; + "clean-unions" = dontDistribute super."clean-unions"; + "cless" = dontDistribute super."cless"; + "clevercss" = dontDistribute super."clevercss"; + "cli" = dontDistribute super."cli"; + "click-clack" = dontDistribute super."click-clack"; + "clifford" = dontDistribute super."clifford"; + "clippard" = dontDistribute super."clippard"; + "clipper" = dontDistribute super."clipper"; + "clippings" = dontDistribute super."clippings"; + "clist" = dontDistribute super."clist"; + "clocked" = dontDistribute super."clocked"; + "clogparse" = dontDistribute super."clogparse"; + "clone-all" = dontDistribute super."clone-all"; + "closure" = dontDistribute super."closure"; + "cloud-haskell" = dontDistribute super."cloud-haskell"; + "cloudfront-signer" = dontDistribute super."cloudfront-signer"; + "cloudyfs" = dontDistribute super."cloudyfs"; + "cltw" = dontDistribute super."cltw"; + "clua" = dontDistribute super."clua"; + "cluss" = dontDistribute super."cluss"; + "clustertools" = dontDistribute super."clustertools"; + "clutterhs" = dontDistribute super."clutterhs"; + "cmaes" = dontDistribute super."cmaes"; + "cmath" = dontDistribute super."cmath"; + "cmathml3" = dontDistribute super."cmathml3"; + "cmd-item" = dontDistribute super."cmd-item"; + "cmdargs-browser" = dontDistribute super."cmdargs-browser"; + "cmdlib" = dontDistribute super."cmdlib"; + "cmdtheline" = dontDistribute super."cmdtheline"; + "cml" = dontDistribute super."cml"; + "cmonad" = dontDistribute super."cmonad"; + "cmu" = dontDistribute super."cmu"; + "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; + "cndict" = dontDistribute super."cndict"; + "codec" = dontDistribute super."codec"; + "codec-libevent" = dontDistribute super."codec-libevent"; + "codec-mbox" = dontDistribute super."codec-mbox"; + "codecov-haskell" = dontDistribute super."codecov-haskell"; + "codemonitor" = dontDistribute super."codemonitor"; + "codepad" = dontDistribute super."codepad"; + "codo-notation" = dontDistribute super."codo-notation"; + "cofunctor" = dontDistribute super."cofunctor"; + "cognimeta-utils" = dontDistribute super."cognimeta-utils"; + "coinbase-exchange" = dontDistribute super."coinbase-exchange"; + "colada" = dontDistribute super."colada"; + "colchis" = dontDistribute super."colchis"; + "collada-output" = dontDistribute super."collada-output"; + "collada-types" = dontDistribute super."collada-types"; + "collapse-util" = dontDistribute super."collapse-util"; + "collection-json" = dontDistribute super."collection-json"; + "collections" = dontDistribute super."collections"; + "collections-api" = dontDistribute super."collections-api"; + "collections-base-instances" = dontDistribute super."collections-base-instances"; + "colock" = dontDistribute super."colock"; + "colorize-haskell" = dontDistribute super."colorize-haskell"; + "colors" = dontDistribute super."colors"; + "coltrane" = dontDistribute super."coltrane"; + "com" = dontDistribute super."com"; + "combinat" = dontDistribute super."combinat"; + "combinat-diagrams" = dontDistribute super."combinat-diagrams"; + "combinator-interactive" = dontDistribute super."combinator-interactive"; + "combinatorial-problems" = dontDistribute super."combinatorial-problems"; + "combinatorics" = dontDistribute super."combinatorics"; + "combobuffer" = dontDistribute super."combobuffer"; + "comfort-graph" = dontDistribute super."comfort-graph"; + "command" = dontDistribute super."command"; + "command-qq" = dontDistribute super."command-qq"; + "commodities" = dontDistribute super."commodities"; + "commsec" = dontDistribute super."commsec"; + "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; + "commutative" = dontDistribute super."commutative"; + "comonad-extras" = dontDistribute super."comonad-extras"; + "comonad-random" = dontDistribute super."comonad-random"; + "compact-map" = dontDistribute super."compact-map"; + "compact-socket" = dontDistribute super."compact-socket"; + "compact-string" = dontDistribute super."compact-string"; + "compact-string-fix" = dontDistribute super."compact-string-fix"; + "compactmap" = dontDistribute super."compactmap"; + "compare-type" = dontDistribute super."compare-type"; + "compdata-automata" = dontDistribute super."compdata-automata"; + "compdata-dags" = dontDistribute super."compdata-dags"; + "compdata-param" = dontDistribute super."compdata-param"; + "compensated" = dontDistribute super."compensated"; + "competition" = dontDistribute super."competition"; + "compilation" = dontDistribute super."compilation"; + "complex-generic" = dontDistribute super."complex-generic"; + "complex-integrate" = dontDistribute super."complex-integrate"; + "complexity" = dontDistribute super."complexity"; + "compose-ltr" = dontDistribute super."compose-ltr"; + "compose-trans" = dontDistribute super."compose-trans"; + "composition-extra" = doDistribute super."composition-extra_1_1_0"; + "composition-tree" = dontDistribute super."composition-tree"; + "compression" = dontDistribute super."compression"; + "compstrat" = dontDistribute super."compstrat"; + "comptrans" = dontDistribute super."comptrans"; + "computational-algebra" = dontDistribute super."computational-algebra"; + "computations" = dontDistribute super."computations"; + "conceit" = dontDistribute super."conceit"; + "concorde" = dontDistribute super."concorde"; + "concraft" = dontDistribute super."concraft"; + "concraft-hr" = dontDistribute super."concraft-hr"; + "concraft-pl" = dontDistribute super."concraft-pl"; + "concrete-relaxng-parser" = dontDistribute super."concrete-relaxng-parser"; + "concrete-typerep" = dontDistribute super."concrete-typerep"; + "concurrent-barrier" = dontDistribute super."concurrent-barrier"; + "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-sa" = dontDistribute super."concurrent-sa"; + "concurrent-split" = dontDistribute super."concurrent-split"; + "concurrent-state" = dontDistribute super."concurrent-state"; + "concurrentoutput" = dontDistribute super."concurrentoutput"; + "condor" = dontDistribute super."condor"; + "condorcet" = dontDistribute super."condorcet"; + "conductive-base" = dontDistribute super."conductive-base"; + "conductive-clock" = dontDistribute super."conductive-clock"; + "conductive-hsc3" = dontDistribute super."conductive-hsc3"; + "conductive-song" = dontDistribute super."conductive-song"; + "conduit-audio" = dontDistribute super."conduit-audio"; + "conduit-audio-lame" = dontDistribute super."conduit-audio-lame"; + "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate"; + "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile"; + "conduit-connection" = dontDistribute super."conduit-connection"; + "conduit-iconv" = dontDistribute super."conduit-iconv"; + "conduit-network-stream" = dontDistribute super."conduit-network-stream"; + "conduit-parse" = dontDistribute super."conduit-parse"; + "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; + "conf" = dontDistribute super."conf"; + "config-select" = dontDistribute super."config-select"; + "config-value" = dontDistribute super."config-value"; + "configifier" = dontDistribute super."configifier"; + "configuration" = dontDistribute super."configuration"; + "configuration-tools" = dontDistribute super."configuration-tools"; + "confsolve" = dontDistribute super."confsolve"; + "congruence-relation" = dontDistribute super."congruence-relation"; + "conjugateGradient" = dontDistribute super."conjugateGradient"; + "conjure" = dontDistribute super."conjure"; + "conlogger" = dontDistribute super."conlogger"; + "connection-pool" = dontDistribute super."connection-pool"; + "consistent" = dontDistribute super."consistent"; + "console-program" = dontDistribute super."console-program"; + "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; + "constrained-categories" = dontDistribute super."constrained-categories"; + "constrained-normal" = dontDistribute super."constrained-normal"; + "constructible" = dontDistribute super."constructible"; + "constructive-algebra" = dontDistribute super."constructive-algebra"; + "consumers" = dontDistribute super."consumers"; + "container-classes" = dontDistribute super."container-classes"; + "containers-benchmark" = dontDistribute super."containers-benchmark"; + "containers-deepseq" = dontDistribute super."containers-deepseq"; + "context-free-grammar" = dontDistribute super."context-free-grammar"; + "context-stack" = dontDistribute super."context-stack"; + "continue" = dontDistribute super."continue"; + "continued-fractions" = dontDistribute super."continued-fractions"; + "continuum" = dontDistribute super."continuum"; + "continuum-client" = dontDistribute super."continuum-client"; + "control-event" = dontDistribute super."control-event"; + "control-monad-attempt" = dontDistribute super."control-monad-attempt"; + "control-monad-exception" = dontDistribute super."control-monad-exception"; + "control-monad-exception-monadsfd" = dontDistribute super."control-monad-exception-monadsfd"; + "control-monad-exception-monadstf" = dontDistribute super."control-monad-exception-monadstf"; + "control-monad-exception-mtl" = dontDistribute super."control-monad-exception-mtl"; + "control-monad-failure" = dontDistribute super."control-monad-failure"; + "control-monad-failure-mtl" = dontDistribute super."control-monad-failure-mtl"; + "control-monad-omega" = dontDistribute super."control-monad-omega"; + "control-monad-queue" = dontDistribute super."control-monad-queue"; + "control-timeout" = dontDistribute super."control-timeout"; + "contstuff" = dontDistribute super."contstuff"; + "contstuff-monads-tf" = dontDistribute super."contstuff-monads-tf"; + "contstuff-transformers" = dontDistribute super."contstuff-transformers"; + "converge" = dontDistribute super."converge"; + "conversion" = dontDistribute super."conversion"; + "conversion-bytestring" = dontDistribute super."conversion-bytestring"; + "conversion-case-insensitive" = dontDistribute super."conversion-case-insensitive"; + "conversion-text" = dontDistribute super."conversion-text"; + "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"; + "copr" = dontDistribute super."copr"; + "core" = dontDistribute super."core"; + "core-haskell" = dontDistribute super."core-haskell"; + "corebot-bliki" = dontDistribute super."corebot-bliki"; + "coroutine-enumerator" = dontDistribute super."coroutine-enumerator"; + "coroutine-iteratee" = dontDistribute super."coroutine-iteratee"; + "coroutine-object" = dontDistribute super."coroutine-object"; + "couch-hs" = dontDistribute super."couch-hs"; + "couch-simple" = dontDistribute super."couch-simple"; + "couchdb-conduit" = dontDistribute super."couchdb-conduit"; + "couchdb-enumerator" = dontDistribute super."couchdb-enumerator"; + "count" = dontDistribute super."count"; + "countable" = dontDistribute super."countable"; + "counter" = dontDistribute super."counter"; + "court" = dontDistribute super."court"; + "coverage" = dontDistribute super."coverage"; + "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplusplus-th" = dontDistribute super."cplusplus-th"; + "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; + "cpsa" = dontDistribute super."cpsa"; + "cpuid" = dontDistribute super."cpuid"; + "cpuperf" = dontDistribute super."cpuperf"; + "cpython" = dontDistribute super."cpython"; + "cqrs" = dontDistribute super."cqrs"; + "cqrs-core" = dontDistribute super."cqrs-core"; + "cqrs-example" = dontDistribute super."cqrs-example"; + "cqrs-memory" = dontDistribute super."cqrs-memory"; + "cqrs-postgresql" = dontDistribute super."cqrs-postgresql"; + "cqrs-sqlite3" = dontDistribute super."cqrs-sqlite3"; + "cqrs-test" = dontDistribute super."cqrs-test"; + "cqrs-testkit" = dontDistribute super."cqrs-testkit"; + "cqrs-types" = dontDistribute super."cqrs-types"; + "cr" = dontDistribute super."cr"; + "crack" = dontDistribute super."crack"; + "craftwerk" = dontDistribute super."craftwerk"; + "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; + "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "crc16" = dontDistribute super."crc16"; + "crc16-table" = dontDistribute super."crc16-table"; + "creatur" = dontDistribute super."creatur"; + "crf-chain1" = dontDistribute super."crf-chain1"; + "crf-chain1-constrained" = dontDistribute super."crf-chain1-constrained"; + "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; + "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; + "critbit" = dontDistribute super."critbit"; + "criterion-plus" = dontDistribute super."criterion-plus"; + "criterion-to-html" = dontDistribute super."criterion-to-html"; + "crockford" = dontDistribute super."crockford"; + "crocodile" = dontDistribute super."crocodile"; + "cron" = doDistribute super."cron_0_3_0"; + "cron-compat" = dontDistribute super."cron-compat"; + "cruncher-types" = dontDistribute super."cruncher-types"; + "crunghc" = dontDistribute super."crunghc"; + "crypto-cipher-benchmarks" = dontDistribute super."crypto-cipher-benchmarks"; + "crypto-classical" = dontDistribute super."crypto-classical"; + "crypto-conduit" = dontDistribute super."crypto-conduit"; + "crypto-enigma" = dontDistribute super."crypto-enigma"; + "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; + "crypto-random-effect" = dontDistribute super."crypto-random-effect"; + "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptonite" = doDistribute super."cryptonite_0_6"; + "cryptsy-api" = dontDistribute super."cryptsy-api"; + "crystalfontz" = dontDistribute super."crystalfontz"; + "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; + "csound-catalog" = dontDistribute super."csound-catalog"; + "csound-expression" = dontDistribute super."csound-expression"; + "csound-expression-dynamic" = dontDistribute super."csound-expression-dynamic"; + "csound-expression-opcodes" = dontDistribute super."csound-expression-opcodes"; + "csound-expression-typed" = dontDistribute super."csound-expression-typed"; + "csound-sampler" = dontDistribute super."csound-sampler"; + "csp" = dontDistribute super."csp"; + "cspmchecker" = dontDistribute super."cspmchecker"; + "css" = dontDistribute super."css"; + "css-syntax" = dontDistribute super."css-syntax"; + "csv-enumerator" = dontDistribute super."csv-enumerator"; + "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-to-qif" = dontDistribute super."csv-to-qif"; + "ctemplate" = dontDistribute super."ctemplate"; + "ctkl" = dontDistribute super."ctkl"; + "ctpl" = dontDistribute super."ctpl"; + "ctrie" = dontDistribute super."ctrie"; + "cube" = dontDistribute super."cube"; + "cubical" = dontDistribute super."cubical"; + "cubicbezier" = dontDistribute super."cubicbezier"; + "cubicspline" = doDistribute super."cubicspline_0_1_1"; + "cublas" = dontDistribute super."cublas"; + "cuboid" = dontDistribute super."cuboid"; + "cuda" = dontDistribute super."cuda"; + "cudd" = dontDistribute super."cudd"; + "cufft" = dontDistribute super."cufft"; + "curl-aeson" = dontDistribute super."curl-aeson"; + "curlhs" = dontDistribute super."curlhs"; + "currency" = dontDistribute super."currency"; + "current-locale" = dontDistribute super."current-locale"; + "curry-base" = dontDistribute super."curry-base"; + "curry-frontend" = dontDistribute super."curry-frontend"; + "cursedcsv" = dontDistribute super."cursedcsv"; + "curve25519" = dontDistribute super."curve25519"; + "curves" = dontDistribute super."curves"; + "custom-prelude" = dontDistribute super."custom-prelude"; + "cv-combinators" = dontDistribute super."cv-combinators"; + "cyclotomic" = dontDistribute super."cyclotomic"; + "cypher" = dontDistribute super."cypher"; + "d-bus" = dontDistribute super."d-bus"; + "d3js" = dontDistribute super."d3js"; + "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; + "daemons" = dontDistribute super."daemons"; + "dag" = dontDistribute super."dag"; + "damnpacket" = dontDistribute super."damnpacket"; + "dao" = dontDistribute super."dao"; + "dapi" = dontDistribute super."dapi"; + "darcs" = dontDistribute super."darcs"; + "darcs-benchmark" = dontDistribute super."darcs-benchmark"; + "darcs-beta" = dontDistribute super."darcs-beta"; + "darcs-buildpackage" = dontDistribute super."darcs-buildpackage"; + "darcs-cabalized" = dontDistribute super."darcs-cabalized"; + "darcs-fastconvert" = dontDistribute super."darcs-fastconvert"; + "darcs-graph" = dontDistribute super."darcs-graph"; + "darcs-monitor" = dontDistribute super."darcs-monitor"; + "darcs-scripts" = dontDistribute super."darcs-scripts"; + "darcs2dot" = dontDistribute super."darcs2dot"; + "darcsden" = dontDistribute super."darcsden"; + "darcswatch" = dontDistribute super."darcswatch"; + "darkplaces-demo" = dontDistribute super."darkplaces-demo"; + "darkplaces-rcon" = dontDistribute super."darkplaces-rcon"; + "darkplaces-rcon-util" = dontDistribute super."darkplaces-rcon-util"; + "darkplaces-text" = dontDistribute super."darkplaces-text"; + "dash-haskell" = dontDistribute super."dash-haskell"; + "data-accessor-monadLib" = dontDistribute super."data-accessor-monadLib"; + "data-accessor-monads-fd" = dontDistribute super."data-accessor-monads-fd"; + "data-accessor-monads-tf" = dontDistribute super."data-accessor-monads-tf"; + "data-accessor-template" = dontDistribute super."data-accessor-template"; + "data-accessor-transformers" = dontDistribute super."data-accessor-transformers"; + "data-aviary" = dontDistribute super."data-aviary"; + "data-bword" = dontDistribute super."data-bword"; + "data-carousel" = dontDistribute super."data-carousel"; + "data-category" = dontDistribute super."data-category"; + "data-cell" = dontDistribute super."data-cell"; + "data-checked" = dontDistribute super."data-checked"; + "data-clist" = dontDistribute super."data-clist"; + "data-concurrent-queue" = dontDistribute super."data-concurrent-queue"; + "data-cycle" = dontDistribute super."data-cycle"; + "data-default-generics" = dontDistribute super."data-default-generics"; + "data-dispersal" = dontDistribute super."data-dispersal"; + "data-dword" = dontDistribute super."data-dword"; + "data-easy" = dontDistribute super."data-easy"; + "data-endian" = dontDistribute super."data-endian"; + "data-extra" = dontDistribute super."data-extra"; + "data-filepath" = dontDistribute super."data-filepath"; + "data-fin" = dontDistribute super."data-fin"; + "data-fin-simple" = dontDistribute super."data-fin-simple"; + "data-fix" = dontDistribute super."data-fix"; + "data-fix-cse" = dontDistribute super."data-fix-cse"; + "data-flags" = dontDistribute super."data-flags"; + "data-flagset" = dontDistribute super."data-flagset"; + "data-fresh" = dontDistribute super."data-fresh"; + "data-interval" = dontDistribute super."data-interval"; + "data-ivar" = dontDistribute super."data-ivar"; + "data-kiln" = dontDistribute super."data-kiln"; + "data-layout" = dontDistribute super."data-layout"; + "data-lens" = dontDistribute super."data-lens"; + "data-lens-fd" = dontDistribute super."data-lens-fd"; + "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-template" = dontDistribute super."data-lens-template"; + "data-list-sequences" = dontDistribute super."data-list-sequences"; + "data-map-multikey" = dontDistribute super."data-map-multikey"; + "data-named" = dontDistribute super."data-named"; + "data-nat" = dontDistribute super."data-nat"; + "data-object" = dontDistribute super."data-object"; + "data-object-json" = dontDistribute super."data-object-json"; + "data-object-yaml" = dontDistribute super."data-object-yaml"; + "data-or" = dontDistribute super."data-or"; + "data-partition" = dontDistribute super."data-partition"; + "data-pprint" = dontDistribute super."data-pprint"; + "data-quotientref" = dontDistribute super."data-quotientref"; + "data-r-tree" = dontDistribute super."data-r-tree"; + "data-ref" = dontDistribute super."data-ref"; + "data-reify-cse" = dontDistribute super."data-reify-cse"; + "data-rev" = dontDistribute super."data-rev"; + "data-rope" = dontDistribute super."data-rope"; + "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"; + "date-cache" = dontDistribute super."date-cache"; + "dates" = dontDistribute super."dates"; + "datetime" = dontDistribute super."datetime"; + "datetime-sb" = dontDistribute super."datetime-sb"; + "dawg" = dontDistribute super."dawg"; + "dbcleaner" = dontDistribute super."dbcleaner"; + "dbf" = dontDistribute super."dbf"; + "dbjava" = dontDistribute super."dbjava"; + "dbmigrations" = dontDistribute super."dbmigrations"; + "dbus-client" = dontDistribute super."dbus-client"; + "dbus-core" = dontDistribute super."dbus-core"; + "dbus-qq" = dontDistribute super."dbus-qq"; + "dbus-th" = dontDistribute super."dbus-th"; + "dclabel" = dontDistribute super."dclabel"; + "dclabel-eci11" = dontDistribute super."dclabel-eci11"; + "ddc-base" = dontDistribute super."ddc-base"; + "ddc-build" = dontDistribute super."ddc-build"; + "ddc-code" = dontDistribute super."ddc-code"; + "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-eval" = dontDistribute super."ddc-core-eval"; + "ddc-core-flow" = dontDistribute super."ddc-core-flow"; + "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; + "ddc-core-salt" = dontDistribute super."ddc-core-salt"; + "ddc-core-simpl" = dontDistribute super."ddc-core-simpl"; + "ddc-core-tetra" = dontDistribute super."ddc-core-tetra"; + "ddc-driver" = dontDistribute super."ddc-driver"; + "ddc-interface" = dontDistribute super."ddc-interface"; + "ddc-source-tetra" = dontDistribute super."ddc-source-tetra"; + "ddc-tools" = dontDistribute super."ddc-tools"; + "ddc-war" = dontDistribute super."ddc-war"; + "ddci-core" = dontDistribute super."ddci-core"; + "dead-code-detection" = dontDistribute super."dead-code-detection"; + "dead-simple-json" = dontDistribute super."dead-simple-json"; + "debian" = doDistribute super."debian_3_87_2"; + "debian-binary" = dontDistribute super."debian-binary"; + "debian-build" = dontDistribute super."debian-build"; + "debug-diff" = dontDistribute super."debug-diff"; + "decepticons" = dontDistribute super."decepticons"; + "declarative" = dontDistribute super."declarative"; + "decode-utf8" = dontDistribute super."decode-utf8"; + "decoder-conduit" = dontDistribute super."decoder-conduit"; + "dedukti" = dontDistribute super."dedukti"; + "deepcontrol" = dontDistribute super."deepcontrol"; + "deeplearning-hs" = dontDistribute super."deeplearning-hs"; + "deepseq-bounded" = dontDistribute super."deepseq-bounded"; + "deepseq-magic" = dontDistribute super."deepseq-magic"; + "deepseq-th" = dontDistribute super."deepseq-th"; + "deepzoom" = dontDistribute super."deepzoom"; + "defargs" = dontDistribute super."defargs"; + "definitive-base" = dontDistribute super."definitive-base"; + "definitive-filesystem" = dontDistribute super."definitive-filesystem"; + "definitive-graphics" = dontDistribute super."definitive-graphics"; + "definitive-parser" = dontDistribute super."definitive-parser"; + "definitive-reactive" = dontDistribute super."definitive-reactive"; + "definitive-sound" = dontDistribute super."definitive-sound"; + "deiko-config" = dontDistribute super."deiko-config"; + "dejafu" = dontDistribute super."dejafu"; + "deka" = dontDistribute super."deka"; + "deka-tests" = dontDistribute super."deka-tests"; + "delaunay" = dontDistribute super."delaunay"; + "delicious" = dontDistribute super."delicious"; + "delimited-text" = dontDistribute super."delimited-text"; + "delta" = dontDistribute super."delta"; + "delta-h" = dontDistribute super."delta-h"; + "demarcate" = dontDistribute super."demarcate"; + "denominate" = dontDistribute super."denominate"; + "depends" = dontDistribute super."depends"; + "dephd" = dontDistribute super."dephd"; + "dequeue" = dontDistribute super."dequeue"; + "derangement" = dontDistribute super."derangement"; + "derivation-trees" = dontDistribute super."derivation-trees"; + "derive-IG" = dontDistribute super."derive-IG"; + "derive-enumerable" = dontDistribute super."derive-enumerable"; + "derive-gadt" = dontDistribute super."derive-gadt"; + "derive-topdown" = dontDistribute super."derive-topdown"; + "derive-trie" = dontDistribute super."derive-trie"; + "deriving-compat" = dontDistribute super."deriving-compat"; + "derp" = dontDistribute super."derp"; + "derp-lib" = dontDistribute super."derp-lib"; + "descrilo" = dontDistribute super."descrilo"; + "despair" = dontDistribute super."despair"; + "deterministic-game-engine" = dontDistribute super."deterministic-game-engine"; + "detrospector" = dontDistribute super."detrospector"; + "deunicode" = dontDistribute super."deunicode"; + "devil" = dontDistribute super."devil"; + "dewdrop" = dontDistribute super."dewdrop"; + "dfrac" = dontDistribute super."dfrac"; + "dfsbuild" = dontDistribute super."dfsbuild"; + "dgim" = dontDistribute super."dgim"; + "dgs" = dontDistribute super."dgs"; + "dia-base" = dontDistribute super."dia-base"; + "dia-functions" = dontDistribute super."dia-functions"; + "diagrams-canvas" = dontDistribute super."diagrams-canvas"; + "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; + "diagrams-gtk" = dontDistribute super."diagrams-gtk"; + "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; + "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; + "diagrams-pdf" = dontDistribute super."diagrams-pdf"; + "diagrams-pgf" = dontDistribute super."diagrams-pgf"; + "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; + "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; + "dicom" = dontDistribute super."dicom"; + "dictparser" = dontDistribute super."dictparser"; + "diet" = dontDistribute super."diet"; + "diff-parse" = dontDistribute super."diff-parse"; + "diffarray" = dontDistribute super."diffarray"; + "diffcabal" = dontDistribute super."diffcabal"; + "diffdump" = dontDistribute super."diffdump"; + "digamma" = dontDistribute super."digamma"; + "digest-pure" = dontDistribute super."digest-pure"; + "digestive-bootstrap" = dontDistribute super."digestive-bootstrap"; + "digestive-foundation-lucid" = dontDistribute super."digestive-foundation-lucid"; + "digestive-functors-blaze" = dontDistribute super."digestive-functors-blaze"; + "digestive-functors-happstack" = dontDistribute super."digestive-functors-happstack"; + "digestive-functors-heist" = dontDistribute super."digestive-functors-heist"; + "digestive-functors-hsp" = dontDistribute super."digestive-functors-hsp"; + "digestive-functors-scotty" = dontDistribute super."digestive-functors-scotty"; + "digestive-functors-snap" = dontDistribute super."digestive-functors-snap"; + "digit" = dontDistribute super."digit"; + "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; + "dimensional-tf" = dontDistribute super."dimensional-tf"; + "dingo-core" = dontDistribute super."dingo-core"; + "dingo-example" = dontDistribute super."dingo-example"; + "dingo-widgets" = dontDistribute super."dingo-widgets"; + "diophantine" = dontDistribute super."diophantine"; + "diplomacy" = dontDistribute super."diplomacy"; + "diplomacy-server" = dontDistribute super."diplomacy-server"; + "direct-binary-files" = dontDistribute super."direct-binary-files"; + "direct-daemonize" = dontDistribute super."direct-daemonize"; + "direct-fastcgi" = dontDistribute super."direct-fastcgi"; + "direct-http" = dontDistribute super."direct-http"; + "direct-murmur-hash" = dontDistribute super."direct-murmur-hash"; + "direct-plugins" = dontDistribute super."direct-plugins"; + "directed-cubical" = dontDistribute super."directed-cubical"; + "directory-layout" = dontDistribute super."directory-layout"; + "dirfiles" = dontDistribute super."dirfiles"; + "dirstream" = dontDistribute super."dirstream"; + "disassembler" = dontDistribute super."disassembler"; + "discordian-calendar" = dontDistribute super."discordian-calendar"; + "discount" = dontDistribute super."discount"; + "discrete-space-map" = dontDistribute super."discrete-space-map"; + "discrimination" = dontDistribute super."discrimination"; + "disjoint-set" = dontDistribute super."disjoint-set"; + "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; + "dist-upload" = dontDistribute super."dist-upload"; + "distributed-process" = dontDistribute super."distributed-process"; + "distributed-process-async" = dontDistribute super."distributed-process-async"; + "distributed-process-azure" = dontDistribute super."distributed-process-azure"; + "distributed-process-client-server" = dontDistribute super."distributed-process-client-server"; + "distributed-process-execution" = dontDistribute super."distributed-process-execution"; + "distributed-process-extras" = dontDistribute super."distributed-process-extras"; + "distributed-process-monad-control" = dontDistribute super."distributed-process-monad-control"; + "distributed-process-p2p" = dontDistribute super."distributed-process-p2p"; + "distributed-process-platform" = dontDistribute super."distributed-process-platform"; + "distributed-process-registry" = dontDistribute super."distributed-process-registry"; + "distributed-process-simplelocalnet" = dontDistribute super."distributed-process-simplelocalnet"; + "distributed-process-supervisor" = dontDistribute super."distributed-process-supervisor"; + "distributed-process-task" = dontDistribute super."distributed-process-task"; + "distributed-process-tests" = dontDistribute super."distributed-process-tests"; + "distributed-process-zookeeper" = dontDistribute super."distributed-process-zookeeper"; + "distributed-static" = dontDistribute super."distributed-static"; + "distribution" = dontDistribute super."distribution"; + "distribution-plot" = dontDistribute super."distribution-plot"; + "diversity" = dontDistribute super."diversity"; + "dixi" = dontDistribute super."dixi"; + "djinn" = dontDistribute super."djinn"; + "djinn-th" = dontDistribute super."djinn-th"; + "dnscache" = dontDistribute super."dnscache"; + "dnsrbl" = dontDistribute super."dnsrbl"; + "dnssd" = dontDistribute super."dnssd"; + "doc-review" = dontDistribute super."doc-review"; + "doccheck" = dontDistribute super."doccheck"; + "docidx" = dontDistribute super."docidx"; + "docker" = dontDistribute super."docker"; + "dockercook" = dontDistribute super."dockercook"; + "docopt" = dontDistribute super."docopt"; + "doctest-discover" = dontDistribute super."doctest-discover"; + "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; + "doctest-prop" = dontDistribute super."doctest-prop"; + "dom-lt" = dontDistribute super."dom-lt"; + "dom-selector" = dontDistribute super."dom-selector"; + "domain-auth" = dontDistribute super."domain-auth"; + "dominion" = dontDistribute super."dominion"; + "domplate" = dontDistribute super."domplate"; + "dot2graphml" = dontDistribute super."dot2graphml"; + "dotenv" = dontDistribute super."dotenv"; + "dotfs" = dontDistribute super."dotfs"; + "dotgen" = dontDistribute super."dotgen"; + "dove" = dontDistribute super."dove"; + "dow" = dontDistribute super."dow"; + "download" = dontDistribute super."download"; + "download-curl" = dontDistribute super."download-curl"; + "download-media-content" = dontDistribute super."download-media-content"; + "dozenal" = dontDistribute super."dozenal"; + "dozens" = dontDistribute super."dozens"; + "dph-base" = dontDistribute super."dph-base"; + "dph-examples" = dontDistribute super."dph-examples"; + "dph-lifted-base" = dontDistribute super."dph-lifted-base"; + "dph-lifted-copy" = dontDistribute super."dph-lifted-copy"; + "dph-lifted-vseg" = dontDistribute super."dph-lifted-vseg"; + "dph-par" = dontDistribute super."dph-par"; + "dph-prim-interface" = dontDistribute super."dph-prim-interface"; + "dph-prim-par" = dontDistribute super."dph-prim-par"; + "dph-prim-seq" = dontDistribute super."dph-prim-seq"; + "dph-seq" = dontDistribute super."dph-seq"; + "dpkg" = dontDistribute super."dpkg"; + "drClickOn" = dontDistribute super."drClickOn"; + "draw-poker" = dontDistribute super."draw-poker"; + "drawille" = dontDistribute super."drawille"; + "drifter" = dontDistribute super."drifter"; + "drifter-postgresql" = dontDistribute super."drifter-postgresql"; + "dropbox-sdk" = dontDistribute super."dropbox-sdk"; + "dropsolve" = dontDistribute super."dropsolve"; + "ds-kanren" = dontDistribute super."ds-kanren"; + "dsh-sql" = dontDistribute super."dsh-sql"; + "dsmc" = dontDistribute super."dsmc"; + "dsmc-tools" = dontDistribute super."dsmc-tools"; + "dson" = dontDistribute super."dson"; + "dson-parsec" = dontDistribute super."dson-parsec"; + "dsp" = dontDistribute super."dsp"; + "dstring" = dontDistribute super."dstring"; + "dtab" = dontDistribute super."dtab"; + "dtd" = dontDistribute super."dtd"; + "dtd-text" = dontDistribute super."dtd-text"; + "dtd-types" = dontDistribute super."dtd-types"; + "dtrace" = dontDistribute super."dtrace"; + "dtw" = dontDistribute super."dtw"; + "dump" = dontDistribute super."dump"; + "duplo" = dontDistribute super."duplo"; + "dvda" = dontDistribute super."dvda"; + "dvdread" = dontDistribute super."dvdread"; + "dvi-processing" = dontDistribute super."dvi-processing"; + "dvorak" = dontDistribute super."dvorak"; + "dwarf" = dontDistribute super."dwarf"; + "dwarf-el" = dontDistribute super."dwarf-el"; + "dwarfadt" = dontDistribute super."dwarfadt"; + "dx9base" = dontDistribute super."dx9base"; + "dx9d3d" = dontDistribute super."dx9d3d"; + "dx9d3dx" = dontDistribute super."dx9d3dx"; + "dynamic-cabal" = dontDistribute super."dynamic-cabal"; + "dynamic-graph" = dontDistribute super."dynamic-graph"; + "dynamic-linker-template" = dontDistribute super."dynamic-linker-template"; + "dynamic-loader" = dontDistribute super."dynamic-loader"; + "dynamic-mvector" = dontDistribute super."dynamic-mvector"; + "dynamic-object" = dontDistribute super."dynamic-object"; + "dynamic-plot" = dontDistribute super."dynamic-plot"; + "dynamic-pp" = dontDistribute super."dynamic-pp"; + "dynamic-state" = dontDistribute super."dynamic-state"; + "dynobud" = dontDistribute super."dynobud"; + "dyre" = dontDistribute super."dyre"; + "dywapitchtrack" = dontDistribute super."dywapitchtrack"; + "dzen-utils" = dontDistribute super."dzen-utils"; + "eager-sockets" = dontDistribute super."eager-sockets"; + "easy-api" = dontDistribute super."easy-api"; + "easyjson" = dontDistribute super."easyjson"; + "easyplot" = dontDistribute super."easyplot"; + "easyrender" = dontDistribute super."easyrender"; + "ebeats" = dontDistribute super."ebeats"; + "ebnf-bff" = dontDistribute super."ebnf-bff"; + "ec2-signature" = dontDistribute super."ec2-signature"; + "ecdsa" = dontDistribute super."ecdsa"; + "ecma262" = dontDistribute super."ecma262"; + "ecu" = dontDistribute super."ecu"; + "ed25519" = dontDistribute super."ed25519"; + "ed25519-donna" = dontDistribute super."ed25519-donna"; + "eddie" = dontDistribute super."eddie"; + "edenmodules" = dontDistribute super."edenmodules"; + "edenskel" = dontDistribute super."edenskel"; + "edentv" = dontDistribute super."edentv"; + "edge" = dontDistribute super."edge"; + "edit-distance-vector" = dontDistribute super."edit-distance-vector"; + "edit-lenses" = dontDistribute super."edit-lenses"; + "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; + "editable" = dontDistribute super."editable"; + "editline" = dontDistribute super."editline"; + "effect-monad" = dontDistribute super."effect-monad"; + "effective-aspects" = dontDistribute super."effective-aspects"; + "effective-aspects-mzv" = dontDistribute super."effective-aspects-mzv"; + "effects" = dontDistribute super."effects"; + "effects-parser" = dontDistribute super."effects-parser"; + "effin" = dontDistribute super."effin"; + "egison" = dontDistribute super."egison"; + "egison-quote" = dontDistribute super."egison-quote"; + "egison-tutorial" = dontDistribute super."egison-tutorial"; + "ehaskell" = dontDistribute super."ehaskell"; + "ehs" = dontDistribute super."ehs"; + "eibd-client-simple" = dontDistribute super."eibd-client-simple"; + "eigen" = dontDistribute super."eigen"; + "either-unwrap" = dontDistribute super."either-unwrap"; + "eithers" = dontDistribute super."eithers"; + "ekg" = dontDistribute super."ekg"; + "ekg-bosun" = dontDistribute super."ekg-bosun"; + "ekg-carbon" = dontDistribute super."ekg-carbon"; + "ekg-json" = dontDistribute super."ekg-json"; + "ekg-log" = dontDistribute super."ekg-log"; + "ekg-push" = dontDistribute super."ekg-push"; + "ekg-rrd" = dontDistribute super."ekg-rrd"; + "ekg-statsd" = dontDistribute super."ekg-statsd"; + "electrum-mnemonic" = dontDistribute super."electrum-mnemonic"; + "elerea" = dontDistribute super."elerea"; + "elerea-examples" = dontDistribute super."elerea-examples"; + "elerea-sdl" = dontDistribute super."elerea-sdl"; + "elevator" = dontDistribute super."elevator"; + "elf" = dontDistribute super."elf"; + "elm-bridge" = dontDistribute super."elm-bridge"; + "elm-build-lib" = dontDistribute super."elm-build-lib"; + "elm-compiler" = dontDistribute super."elm-compiler"; + "elm-get" = dontDistribute super."elm-get"; + "elm-init" = dontDistribute super."elm-init"; + "elm-make" = dontDistribute super."elm-make"; + "elm-package" = dontDistribute super."elm-package"; + "elm-reactor" = dontDistribute super."elm-reactor"; + "elm-repl" = dontDistribute super."elm-repl"; + "elm-server" = dontDistribute super."elm-server"; + "elm-yesod" = dontDistribute super."elm-yesod"; + "elo" = dontDistribute super."elo"; + "elocrypt" = dontDistribute super."elocrypt"; + "emacs-keys" = dontDistribute super."emacs-keys"; + "email" = dontDistribute super."email"; + "email-header" = dontDistribute super."email-header"; + "email-postmark" = dontDistribute super."email-postmark"; + "email-validator" = dontDistribute super."email-validator"; + "embeddock" = dontDistribute super."embeddock"; + "embeddock-example" = dontDistribute super."embeddock-example"; + "embroidery" = dontDistribute super."embroidery"; + "emgm" = dontDistribute super."emgm"; + "empty" = dontDistribute super."empty"; + "encoding" = dontDistribute super."encoding"; + "endo" = dontDistribute super."endo"; + "engine-io-snap" = dontDistribute super."engine-io-snap"; + "engine-io-wai" = dontDistribute super."engine-io-wai"; + "engine-io-yesod" = dontDistribute super."engine-io-yesod"; + "engineering-units" = dontDistribute super."engineering-units"; + "enumerable" = dontDistribute super."enumerable"; + "enumeration" = dontDistribute super."enumeration"; + "enumerator-fd" = dontDistribute super."enumerator-fd"; + "enumerator-tf" = dontDistribute super."enumerator-tf"; + "enumfun" = dontDistribute super."enumfun"; + "enummapmap" = dontDistribute super."enummapmap"; + "enummapset" = dontDistribute super."enummapset"; + "enummapset-th" = dontDistribute super."enummapset-th"; + "enumset" = dontDistribute super."enumset"; + "env-parser" = dontDistribute super."env-parser"; + "envparse" = dontDistribute super."envparse"; + "envy" = dontDistribute super."envy"; + "epanet-haskell" = dontDistribute super."epanet-haskell"; + "epass" = dontDistribute super."epass"; + "epic" = dontDistribute super."epic"; + "epoll" = dontDistribute super."epoll"; + "eprocess" = dontDistribute super."eprocess"; + "epub" = dontDistribute super."epub"; + "epub-metadata" = dontDistribute super."epub-metadata"; + "epub-tools" = dontDistribute super."epub-tools"; + "epubname" = dontDistribute super."epubname"; + "equal-files" = dontDistribute super."equal-files"; + "equational-reasoning" = dontDistribute super."equational-reasoning"; + "erd" = dontDistribute super."erd"; + "erf-native" = dontDistribute super."erf-native"; + "erlang" = dontDistribute super."erlang"; + "eros" = dontDistribute super."eros"; + "eros-client" = dontDistribute super."eros-client"; + "eros-http" = dontDistribute super."eros-http"; + "errno" = dontDistribute super."errno"; + "error-continuations" = dontDistribute super."error-continuations"; + "error-list" = dontDistribute super."error-list"; + "error-loc" = dontDistribute super."error-loc"; + "error-location" = dontDistribute super."error-location"; + "error-message" = dontDistribute super."error-message"; + "errorcall-eq-instance" = dontDistribute super."errorcall-eq-instance"; + "ersatz" = dontDistribute super."ersatz"; + "ersatz-toysat" = dontDistribute super."ersatz-toysat"; + "ert" = dontDistribute super."ert"; + "esotericbot" = dontDistribute super."esotericbot"; + "ess" = dontDistribute super."ess"; + "estimator" = dontDistribute super."estimator"; + "estimators" = dontDistribute super."estimators"; + "estreps" = dontDistribute super."estreps"; + "etcd" = dontDistribute super."etcd"; + "eternal" = dontDistribute super."eternal"; + "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" = dontDistribute super."eventstore"; + "every-bit-counts" = dontDistribute super."every-bit-counts"; + "ewe" = dontDistribute super."ewe"; + "ex-pool" = dontDistribute super."ex-pool"; + "exact-combinatorics" = dontDistribute super."exact-combinatorics"; + "exact-pi" = dontDistribute super."exact-pi"; + "exception-mailer" = dontDistribute super."exception-mailer"; + "exception-monads-fd" = dontDistribute super."exception-monads-fd"; + "exception-monads-tf" = dontDistribute super."exception-monads-tf"; + "exherbo-cabal" = dontDistribute super."exherbo-cabal"; + "exif" = dontDistribute super."exif"; + "exinst" = dontDistribute super."exinst"; + "exinst-aeson" = dontDistribute super."exinst-aeson"; + "exinst-bytes" = dontDistribute super."exinst-bytes"; + "exinst-deepseq" = dontDistribute super."exinst-deepseq"; + "exinst-hashable" = dontDistribute super."exinst-hashable"; + "exists" = dontDistribute super."exists"; + "exp-pairs" = dontDistribute super."exp-pairs"; + "expand" = dontDistribute super."expand"; + "expat-enumerator" = dontDistribute super."expat-enumerator"; + "expiring-mvar" = dontDistribute super."expiring-mvar"; + "explain" = dontDistribute super."explain"; + "explicit-determinant" = dontDistribute super."explicit-determinant"; + "explicit-exception" = dontDistribute super."explicit-exception"; + "explicit-iomodes" = dontDistribute super."explicit-iomodes"; + "explicit-iomodes-bytestring" = dontDistribute super."explicit-iomodes-bytestring"; + "explicit-iomodes-text" = dontDistribute super."explicit-iomodes-text"; + "explicit-sharing" = dontDistribute super."explicit-sharing"; + "explore" = dontDistribute super."explore"; + "exposed-containers" = dontDistribute super."exposed-containers"; + "expression-parser" = dontDistribute super."expression-parser"; + "extcore" = dontDistribute super."extcore"; + "extemp" = dontDistribute super."extemp"; + "extended-categories" = dontDistribute super."extended-categories"; + "extended-reals" = dontDistribute super."extended-reals"; + "extensible" = dontDistribute super."extensible"; + "extensible-data" = dontDistribute super."extensible-data"; + "extensible-effects" = dontDistribute super."extensible-effects"; + "external-sort" = dontDistribute super."external-sort"; + "extractelf" = dontDistribute super."extractelf"; + "ez-couch" = dontDistribute super."ez-couch"; + "faceted" = dontDistribute super."faceted"; + "factory" = dontDistribute super."factory"; + "factual-api" = dontDistribute super."factual-api"; + "fad" = dontDistribute super."fad"; + "failable-list" = dontDistribute super."failable-list"; + "failure" = dontDistribute super."failure"; + "fair-predicates" = dontDistribute super."fair-predicates"; + "faker" = dontDistribute super."faker"; + "falling-turnip" = dontDistribute super."falling-turnip"; + "fallingblocks" = dontDistribute super."fallingblocks"; + "family-tree" = dontDistribute super."family-tree"; + "farmhash" = dontDistribute super."farmhash"; + "fast-digits" = dontDistribute super."fast-digits"; + "fast-math" = dontDistribute super."fast-math"; + "fast-tags" = dontDistribute super."fast-tags"; + "fast-tagsoup" = dontDistribute super."fast-tagsoup"; + "fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only"; + "fasta" = dontDistribute super."fasta"; + "fastbayes" = dontDistribute super."fastbayes"; + "fastcgi" = dontDistribute super."fastcgi"; + "fastedit" = dontDistribute super."fastedit"; + "fastirc" = dontDistribute super."fastirc"; + "fault-tree" = dontDistribute super."fault-tree"; + "fay-geoposition" = dontDistribute super."fay-geoposition"; + "fay-hsx" = dontDistribute super."fay-hsx"; + "fay-ref" = dontDistribute super."fay-ref"; + "fca" = dontDistribute super."fca"; + "fcd" = dontDistribute super."fcd"; + "fckeditor" = dontDistribute super."fckeditor"; + "fclabels-monadlib" = dontDistribute super."fclabels-monadlib"; + "fdo-trash" = dontDistribute super."fdo-trash"; + "fec" = dontDistribute super."fec"; + "fedora-packages" = dontDistribute super."fedora-packages"; + "feed-cli" = dontDistribute super."feed-cli"; + "feed-collect" = dontDistribute super."feed-collect"; + "feed-crawl" = dontDistribute super."feed-crawl"; + "feed-translator" = dontDistribute super."feed-translator"; + "feed2lj" = dontDistribute super."feed2lj"; + "feed2twitter" = dontDistribute super."feed2twitter"; + "feldspar-compiler" = dontDistribute super."feldspar-compiler"; + "feldspar-language" = dontDistribute super."feldspar-language"; + "feldspar-signal" = dontDistribute super."feldspar-signal"; + "fen2s" = dontDistribute super."fen2s"; + "fences" = dontDistribute super."fences"; + "fenfire" = dontDistribute super."fenfire"; + "fez-conf" = dontDistribute super."fez-conf"; + "ffeed" = dontDistribute super."ffeed"; + "fficxx" = dontDistribute super."fficxx"; + "fficxx-runtime" = dontDistribute super."fficxx-runtime"; + "ffmpeg-light" = dontDistribute super."ffmpeg-light"; + "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials"; + "fft" = dontDistribute super."fft"; + "fftwRaw" = dontDistribute super."fftwRaw"; + "fgl-arbitrary" = dontDistribute super."fgl-arbitrary"; + "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions"; + "fgl-visualize" = dontDistribute super."fgl-visualize"; + "fibon" = dontDistribute super."fibon"; + "fibonacci" = dontDistribute super."fibonacci"; + "fields" = dontDistribute super."fields"; + "fields-json" = dontDistribute super."fields-json"; + "fieldwise" = dontDistribute super."fieldwise"; + "fig" = dontDistribute super."fig"; + "file-collection" = dontDistribute super."file-collection"; + "file-command-qq" = dontDistribute super."file-command-qq"; + "filecache" = dontDistribute super."filecache"; + "filediff" = dontDistribute super."filediff"; + "filepath-io-access" = dontDistribute super."filepath-io-access"; + "filepather" = dontDistribute super."filepather"; + "filestore" = dontDistribute super."filestore"; + "filesystem-conduit" = dontDistribute super."filesystem-conduit"; + "filesystem-enumerator" = dontDistribute super."filesystem-enumerator"; + "filesystem-trees" = dontDistribute super."filesystem-trees"; + "filtrable" = dontDistribute super."filtrable"; + "final" = dontDistribute super."final"; + "find-conduit" = dontDistribute super."find-conduit"; + "fingertree-tf" = dontDistribute super."fingertree-tf"; + "finite-field" = dontDistribute super."finite-field"; + "first-and-last" = dontDistribute super."first-and-last"; + "first-class-patterns" = dontDistribute super."first-class-patterns"; + "firstify" = dontDistribute super."firstify"; + "fishfood" = dontDistribute super."fishfood"; + "fit" = dontDistribute super."fit"; + "fitsio" = dontDistribute super."fitsio"; + "fix-imports" = dontDistribute super."fix-imports"; + "fix-parser-simple" = dontDistribute super."fix-parser-simple"; + "fix-symbols-gitit" = dontDistribute super."fix-symbols-gitit"; + "fixed-length" = dontDistribute super."fixed-length"; + "fixed-point" = dontDistribute super."fixed-point"; + "fixed-point-vector" = dontDistribute super."fixed-point-vector"; + "fixed-point-vector-space" = dontDistribute super."fixed-point-vector-space"; + "fixed-precision" = dontDistribute super."fixed-precision"; + "fixed-storable-array" = dontDistribute super."fixed-storable-array"; + "fixed-vector-binary" = dontDistribute super."fixed-vector-binary"; + "fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal"; + "fixedprec" = dontDistribute super."fixedprec"; + "fixedwidth-hs" = dontDistribute super."fixedwidth-hs"; + "fixhs" = dontDistribute super."fixhs"; + "fixplate" = dontDistribute super."fixplate"; + "fixpoint" = dontDistribute super."fixpoint"; + "fixtime" = dontDistribute super."fixtime"; + "fizz-buzz" = dontDistribute super."fizz-buzz"; + "flaccuraterip" = dontDistribute super."flaccuraterip"; + "flamethrower" = dontDistribute super."flamethrower"; + "flamingra" = dontDistribute super."flamingra"; + "flat-mcmc" = dontDistribute super."flat-mcmc"; + "flat-tex" = dontDistribute super."flat-tex"; + "flexible-time" = dontDistribute super."flexible-time"; + "flexible-unlit" = dontDistribute super."flexible-unlit"; + "flexiwrap" = dontDistribute super."flexiwrap"; + "flexiwrap-smallcheck" = dontDistribute super."flexiwrap-smallcheck"; + "flickr" = dontDistribute super."flickr"; + "flippers" = dontDistribute super."flippers"; + "flite" = dontDistribute super."flite"; + "flo" = dontDistribute super."flo"; + "float-binstring" = dontDistribute super."float-binstring"; + "floating-bits" = dontDistribute super."floating-bits"; + "floatshow" = dontDistribute super."floatshow"; + "flow2dot" = dontDistribute super."flow2dot"; + "flowdock-api" = dontDistribute super."flowdock-api"; + "flowdock-rest" = dontDistribute super."flowdock-rest"; + "flower" = dontDistribute super."flower"; + "flowlocks-framework" = dontDistribute super."flowlocks-framework"; + "flowsim" = dontDistribute super."flowsim"; + "fltkhs" = dontDistribute super."fltkhs"; + "fltkhs-fluid-examples" = dontDistribute super."fltkhs-fluid-examples"; + "fluent-logger" = dontDistribute super."fluent-logger"; + "fluent-logger-conduit" = dontDistribute super."fluent-logger-conduit"; + "fluidsynth" = dontDistribute super."fluidsynth"; + "fmark" = dontDistribute super."fmark"; + "fold-debounce" = dontDistribute super."fold-debounce"; + "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit"; + "foldl-incremental" = dontDistribute super."foldl-incremental"; + "foldl-transduce" = dontDistribute super."foldl-transduce"; + "foldl-transduce-attoparsec" = dontDistribute super."foldl-transduce-attoparsec"; + "folds" = dontDistribute super."folds"; + "folds-common" = dontDistribute super."folds-common"; + "follower" = dontDistribute super."follower"; + "foma" = dontDistribute super."foma"; + "font-opengl-basic4x6" = dontDistribute super."font-opengl-basic4x6"; + "foo" = dontDistribute super."foo"; + "for-free" = dontDistribute super."for-free"; + "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "fordo" = dontDistribute super."fordo"; + "forecast-io" = dontDistribute super."forecast-io"; + "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric"; + "foreign-var" = dontDistribute super."foreign-var"; + "forger" = dontDistribute super."forger"; + "forkable-monad" = dontDistribute super."forkable-monad"; + "formal" = dontDistribute super."formal"; + "format" = dontDistribute super."format"; + "format-status" = dontDistribute super."format-status"; + "formattable" = dontDistribute super."formattable"; + "forml" = dontDistribute super."forml"; + "formlets" = dontDistribute super."formlets"; + "formlets-hsp" = dontDistribute super."formlets-hsp"; + "forth-hll" = dontDistribute super."forth-hll"; + "fountain" = dontDistribute super."fountain"; + "fpco-api" = dontDistribute super."fpco-api"; + "fpipe" = dontDistribute super."fpipe"; + "fpnla" = dontDistribute super."fpnla"; + "fpnla-examples" = dontDistribute super."fpnla-examples"; + "fptest" = dontDistribute super."fptest"; + "fquery" = dontDistribute super."fquery"; + "fractal" = dontDistribute super."fractal"; + "fractals" = dontDistribute super."fractals"; + "fraction" = dontDistribute super."fraction"; + "frag" = dontDistribute super."frag"; + "frame" = dontDistribute super."frame"; + "frame-markdown" = dontDistribute super."frame-markdown"; + "franchise" = dontDistribute super."franchise"; + "free-functors" = dontDistribute super."free-functors"; + "free-game" = dontDistribute super."free-game"; + "free-http" = dontDistribute super."free-http"; + "free-operational" = dontDistribute super."free-operational"; + "free-theorems" = dontDistribute super."free-theorems"; + "free-theorems-counterexamples" = dontDistribute super."free-theorems-counterexamples"; + "free-theorems-seq" = dontDistribute super."free-theorems-seq"; + "free-theorems-seq-webui" = dontDistribute super."free-theorems-seq-webui"; + "free-theorems-webui" = dontDistribute super."free-theorems-webui"; + "freekick2" = dontDistribute super."freekick2"; + "freenect" = doDistribute super."freenect_1_2"; + "freer" = dontDistribute super."freer"; + "freesect" = dontDistribute super."freesect"; + "freesound" = dontDistribute super."freesound"; + "freetype-simple" = dontDistribute super."freetype-simple"; + "freetype2" = dontDistribute super."freetype2"; + "fresh" = dontDistribute super."fresh"; + "friday" = dontDistribute super."friday"; + "friday-devil" = dontDistribute super."friday-devil"; + "friday-juicypixels" = dontDistribute super."friday-juicypixels"; + "friendly-time" = dontDistribute super."friendly-time"; + "frp-arduino" = dontDistribute super."frp-arduino"; + "frpnow" = dontDistribute super."frpnow"; + "frpnow-gloss" = dontDistribute super."frpnow-gloss"; + "frpnow-gtk" = dontDistribute super."frpnow-gtk"; + "frquotes" = dontDistribute super."frquotes"; + "fs-events" = dontDistribute super."fs-events"; + "fsharp" = dontDistribute super."fsharp"; + "fsmActions" = dontDistribute super."fsmActions"; + "fst" = dontDistribute super."fst"; + "fsutils" = dontDistribute super."fsutils"; + "fswatcher" = dontDistribute super."fswatcher"; + "ftdi" = dontDistribute super."ftdi"; + "ftp-conduit" = dontDistribute super."ftp-conduit"; + "ftphs" = dontDistribute super."ftphs"; + "ftree" = dontDistribute super."ftree"; + "ftshell" = dontDistribute super."ftshell"; + "fugue" = dontDistribute super."fugue"; + "full-sessions" = dontDistribute super."full-sessions"; + "full-text-search" = dontDistribute super."full-text-search"; + "fullstop" = dontDistribute super."fullstop"; + "funbot" = dontDistribute super."funbot"; + "funbot-client" = dontDistribute super."funbot-client"; + "funbot-ext-events" = dontDistribute super."funbot-ext-events"; + "funbot-git-hook" = dontDistribute super."funbot-git-hook"; + "funcmp" = dontDistribute super."funcmp"; + "function-combine" = dontDistribute super."function-combine"; + "function-instances-algebra" = dontDistribute super."function-instances-algebra"; + "functional-arrow" = dontDistribute super."functional-arrow"; + "functor-apply" = dontDistribute super."functor-apply"; + "functor-combo" = dontDistribute super."functor-combo"; + "functor-infix" = dontDistribute super."functor-infix"; + "functor-monadic" = dontDistribute super."functor-monadic"; + "functorm" = dontDistribute super."functorm"; + "functors" = dontDistribute super."functors"; + "funion" = dontDistribute super."funion"; + "funpat" = dontDistribute super."funpat"; + "funsat" = dontDistribute super."funsat"; + "fusion" = dontDistribute super."fusion"; + "futun" = dontDistribute super."futun"; + "future" = dontDistribute super."future"; + "future-resource" = dontDistribute super."future-resource"; + "fuzzy" = dontDistribute super."fuzzy"; + "fuzzy-timings" = dontDistribute super."fuzzy-timings"; + "fuzzytime" = dontDistribute super."fuzzytime"; + "fwgl" = dontDistribute super."fwgl"; + "fwgl-glfw" = dontDistribute super."fwgl-glfw"; + "fwgl-javascript" = dontDistribute super."fwgl-javascript"; + "g-npm" = dontDistribute super."g-npm"; + "gact" = dontDistribute super."gact"; + "game-of-life" = dontDistribute super."game-of-life"; + "game-probability" = dontDistribute super."game-probability"; + "game-tree" = dontDistribute super."game-tree"; + "gameclock" = dontDistribute super."gameclock"; + "gamma" = dontDistribute super."gamma"; + "gang-of-threads" = dontDistribute super."gang-of-threads"; + "garepinoh" = dontDistribute super."garepinoh"; + "garsia-wachs" = dontDistribute super."garsia-wachs"; + "gbu" = dontDistribute super."gbu"; + "gc" = dontDistribute super."gc"; + "gc-monitoring-wai" = dontDistribute super."gc-monitoring-wai"; + "gconf" = dontDistribute super."gconf"; + "gdiff" = dontDistribute super."gdiff"; + "gdiff-ig" = dontDistribute super."gdiff-ig"; + "gdiff-th" = dontDistribute super."gdiff-th"; + "gearbox" = dontDistribute super."gearbox"; + "geek" = dontDistribute super."geek"; + "geek-server" = dontDistribute super."geek-server"; + "gelatin" = dontDistribute super."gelatin"; + "gemstone" = dontDistribute super."gemstone"; + "gencheck" = dontDistribute super."gencheck"; + "gender" = dontDistribute super."gender"; + "genders" = dontDistribute super."genders"; + "general-prelude" = dontDistribute super."general-prelude"; + "generator" = dontDistribute super."generator"; + "generators" = dontDistribute super."generators"; + "generic-accessors" = dontDistribute super."generic-accessors"; + "generic-binary" = dontDistribute super."generic-binary"; + "generic-church" = dontDistribute super."generic-church"; + "generic-deepseq" = dontDistribute super."generic-deepseq"; + "generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold"; + "generic-maybe" = dontDistribute super."generic-maybe"; + "generic-pretty" = dontDistribute super."generic-pretty"; + "generic-server" = dontDistribute super."generic-server"; + "generic-storable" = dontDistribute super."generic-storable"; + "generic-tree" = dontDistribute super."generic-tree"; + "generic-trie" = dontDistribute super."generic-trie"; + "generic-xml" = dontDistribute super."generic-xml"; + "genericserialize" = dontDistribute super."genericserialize"; + "genetics" = dontDistribute super."genetics"; + "geni-gui" = dontDistribute super."geni-gui"; + "geni-util" = dontDistribute super."geni-util"; + "geniconvert" = dontDistribute super."geniconvert"; + "genifunctors" = dontDistribute super."genifunctors"; + "geniplate" = dontDistribute super."geniplate"; + "geniserver" = dontDistribute super."geniserver"; + "genprog" = dontDistribute super."genprog"; + "gentlemark" = dontDistribute super."gentlemark"; + "geo-resolver" = dontDistribute super."geo-resolver"; + "geocalc" = dontDistribute super."geocalc"; + "geocode-google" = dontDistribute super."geocode-google"; + "geodetic" = dontDistribute super."geodetic"; + "geodetics" = dontDistribute super."geodetics"; + "geohash" = dontDistribute super."geohash"; + "geoip2" = dontDistribute super."geoip2"; + "geojson" = dontDistribute super."geojson"; + "geom2d" = dontDistribute super."geom2d"; + "getemx" = dontDistribute super."getemx"; + "getflag" = dontDistribute super."getflag"; + "getopt-generics" = doDistribute super."getopt-generics_0_10_0_1"; + "getopt-simple" = dontDistribute super."getopt-simple"; + "gf" = dontDistribute super."gf"; + "ggtsTC" = dontDistribute super."ggtsTC"; + "ghc-core" = dontDistribute super."ghc-core"; + "ghc-core-html" = dontDistribute super."ghc-core-html"; + "ghc-datasize" = dontDistribute super."ghc-datasize"; + "ghc-dup" = dontDistribute super."ghc-dup"; + "ghc-events-analyze" = dontDistribute super."ghc-events-analyze"; + "ghc-events-parallel" = dontDistribute super."ghc-events-parallel"; + "ghc-exactprint" = dontDistribute super."ghc-exactprint"; + "ghc-gc-tune" = dontDistribute super."ghc-gc-tune"; + "ghc-generic-instances" = dontDistribute super."ghc-generic-instances"; + "ghc-heap-view" = dontDistribute super."ghc-heap-view"; + "ghc-imported-from" = dontDistribute super."ghc-imported-from"; + "ghc-make" = dontDistribute super."ghc-make"; + "ghc-man-completion" = dontDistribute super."ghc-man-completion"; + "ghc-mod" = dontDistribute super."ghc-mod"; + "ghc-parmake" = dontDistribute super."ghc-parmake"; + "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; + "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; + "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph"; + "ghc-server" = dontDistribute super."ghc-server"; + "ghc-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"; + "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; + "ghcjs-dom" = dontDistribute super."ghcjs-dom"; + "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; + "ghcjs-websockets" = dontDistribute super."ghcjs-websockets"; + "ghclive" = dontDistribute super."ghclive"; + "ghczdecode" = dontDistribute super."ghczdecode"; + "ght" = dontDistribute super."ght"; + "gimlh" = dontDistribute super."gimlh"; + "ginger" = dontDistribute super."ginger"; + "ginsu" = dontDistribute super."ginsu"; + "gipeda" = doDistribute super."gipeda_0_1_2_1"; + "gist" = dontDistribute super."gist"; + "git-all" = dontDistribute super."git-all"; + "git-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-monitor" = dontDistribute super."git-monitor"; + "git-object" = dontDistribute super."git-object"; + "git-repair" = dontDistribute super."git-repair"; + "git-sanity" = dontDistribute super."git-sanity"; + "git-vogue" = dontDistribute super."git-vogue"; + "gitcache" = dontDistribute super."gitcache"; + "gitdo" = dontDistribute super."gitdo"; + "github" = dontDistribute super."github"; + "github-backup" = dontDistribute super."github-backup"; + "github-post-receive" = dontDistribute super."github-post-receive"; + "github-types" = dontDistribute super."github-types"; + "github-utils" = dontDistribute super."github-utils"; + "github-webhook-handler" = dontDistribute super."github-webhook-handler"; + "github-webhook-handler-snap" = dontDistribute super."github-webhook-handler-snap"; + "gitignore" = dontDistribute super."gitignore"; + "gitit" = dontDistribute super."gitit"; + "gitlib-cmdline" = dontDistribute super."gitlib-cmdline"; + "gitlib-cross" = dontDistribute super."gitlib-cross"; + "gitlib-s3" = dontDistribute super."gitlib-s3"; + "gitlib-sample" = dontDistribute super."gitlib-sample"; + "gitlib-utils" = dontDistribute super."gitlib-utils"; + "gl-capture" = dontDistribute super."gl-capture"; + "glade" = dontDistribute super."glade"; + "gladexml-accessor" = dontDistribute super."gladexml-accessor"; + "glambda" = dontDistribute super."glambda"; + "glapp" = dontDistribute super."glapp"; + "glasso" = dontDistribute super."glasso"; + "glider-nlp" = dontDistribute super."glider-nlp"; + "glintcollider" = dontDistribute super."glintcollider"; + "gll" = dontDistribute super."gll"; + "global" = dontDistribute super."global"; + "global-config" = dontDistribute super."global-config"; + "global-lock" = dontDistribute super."global-lock"; + "global-variables" = dontDistribute super."global-variables"; + "glome-hs" = dontDistribute super."glome-hs"; + "gloss" = dontDistribute super."gloss"; + "gloss-accelerate" = dontDistribute super."gloss-accelerate"; + "gloss-algorithms" = dontDistribute super."gloss-algorithms"; + "gloss-banana" = dontDistribute super."gloss-banana"; + "gloss-devil" = dontDistribute super."gloss-devil"; + "gloss-examples" = dontDistribute super."gloss-examples"; + "gloss-game" = dontDistribute super."gloss-game"; + "gloss-juicy" = dontDistribute super."gloss-juicy"; + "gloss-raster" = dontDistribute super."gloss-raster"; + "gloss-raster-accelerate" = dontDistribute super."gloss-raster-accelerate"; + "gloss-rendering" = dontDistribute super."gloss-rendering"; + "gloss-sodium" = dontDistribute super."gloss-sodium"; + "glpk-hs" = dontDistribute super."glpk-hs"; + "glue" = dontDistribute super."glue"; + "glue-common" = dontDistribute super."glue-common"; + "glue-core" = dontDistribute super."glue-core"; + "glue-ekg" = dontDistribute super."glue-ekg"; + "glue-example" = dontDistribute super."glue-example"; + "gluturtle" = dontDistribute super."gluturtle"; + "gmap" = dontDistribute super."gmap"; + "gmndl" = dontDistribute super."gmndl"; + "gnome-desktop" = dontDistribute super."gnome-desktop"; + "gnome-keyring" = dontDistribute super."gnome-keyring"; + "gnomevfs" = dontDistribute super."gnomevfs"; + "gnuplot" = dontDistribute super."gnuplot"; + "goa" = dontDistribute super."goa"; + "goatee" = dontDistribute super."goatee"; + "goatee-gtk" = dontDistribute super."goatee-gtk"; + "gofer-prelude" = dontDistribute super."gofer-prelude"; + "gooey" = dontDistribute super."gooey"; + "google-cloud" = dontDistribute super."google-cloud"; + "google-dictionary" = dontDistribute super."google-dictionary"; + "google-drive" = dontDistribute super."google-drive"; + "google-html5-slide" = dontDistribute super."google-html5-slide"; + "google-mail-filters" = dontDistribute super."google-mail-filters"; + "google-oauth2" = dontDistribute super."google-oauth2"; + "google-search" = dontDistribute super."google-search"; + "google-translate" = dontDistribute super."google-translate"; + "googleplus" = dontDistribute super."googleplus"; + "googlepolyline" = dontDistribute super."googlepolyline"; + "gopherbot" = dontDistribute super."gopherbot"; + "gpah" = dontDistribute super."gpah"; + "gpcsets" = dontDistribute super."gpcsets"; + "gpolyline" = dontDistribute super."gpolyline"; + "gps" = dontDistribute super."gps"; + "gps2htmlReport" = dontDistribute super."gps2htmlReport"; + "gpx-conduit" = dontDistribute super."gpx-conduit"; + "graceful" = dontDistribute super."graceful"; + "grammar-combinators" = dontDistribute super."grammar-combinators"; + "grapefruit-examples" = dontDistribute super."grapefruit-examples"; + "grapefruit-frp" = dontDistribute super."grapefruit-frp"; + "grapefruit-records" = dontDistribute super."grapefruit-records"; + "grapefruit-ui" = dontDistribute super."grapefruit-ui"; + "grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk"; + "graph-generators" = dontDistribute super."graph-generators"; + "graph-matchings" = dontDistribute super."graph-matchings"; + "graph-rewriting" = dontDistribute super."graph-rewriting"; + "graph-rewriting-cl" = dontDistribute super."graph-rewriting-cl"; + "graph-rewriting-gl" = dontDistribute super."graph-rewriting-gl"; + "graph-rewriting-lambdascope" = dontDistribute super."graph-rewriting-lambdascope"; + "graph-rewriting-layout" = dontDistribute super."graph-rewriting-layout"; + "graph-rewriting-ski" = dontDistribute super."graph-rewriting-ski"; + "graph-rewriting-strategies" = dontDistribute super."graph-rewriting-strategies"; + "graph-rewriting-trs" = dontDistribute super."graph-rewriting-trs"; + "graph-rewriting-ww" = dontDistribute super."graph-rewriting-ww"; + "graph-serialize" = dontDistribute super."graph-serialize"; + "graph-utils" = dontDistribute super."graph-utils"; + "graph-visit" = dontDistribute super."graph-visit"; + "graphbuilder" = dontDistribute super."graphbuilder"; + "graphene" = dontDistribute super."graphene"; + "graphics-drawingcombinators" = dontDistribute super."graphics-drawingcombinators"; + "graphics-formats-collada" = dontDistribute super."graphics-formats-collada"; + "graphicsFormats" = dontDistribute super."graphicsFormats"; + "graphicstools" = dontDistribute super."graphicstools"; + "graphmod" = dontDistribute super."graphmod"; + "graphql" = dontDistribute super."graphql"; + "graphtype" = dontDistribute super."graphtype"; + "graphviz" = dontDistribute super."graphviz"; + "gray-code" = dontDistribute super."gray-code"; + "gray-extended" = dontDistribute super."gray-extended"; + "greencard" = dontDistribute super."greencard"; + "greencard-lib" = dontDistribute super."greencard-lib"; + "greg-client" = dontDistribute super."greg-client"; + "grid" = dontDistribute super."grid"; + "gridland" = dontDistribute super."gridland"; + "grm" = dontDistribute super."grm"; + "groom" = dontDistribute super."groom"; + "groundhog-inspector" = dontDistribute super."groundhog-inspector"; + "group-with" = dontDistribute super."group-with"; + "grouped-list" = dontDistribute super."grouped-list"; + "groupoid" = dontDistribute super."groupoid"; + "gruff" = dontDistribute super."gruff"; + "gruff-examples" = dontDistribute super."gruff-examples"; + "gsc-weighting" = dontDistribute super."gsc-weighting"; + "gsl-random" = dontDistribute super."gsl-random"; + "gsl-random-fu" = dontDistribute super."gsl-random-fu"; + "gsmenu" = dontDistribute super."gsmenu"; + "gstreamer" = dontDistribute super."gstreamer"; + "gt-tools" = dontDistribute super."gt-tools"; + "gtfs" = dontDistribute super."gtfs"; + "gtk-helpers" = dontDistribute super."gtk-helpers"; + "gtk-jsinput" = dontDistribute super."gtk-jsinput"; + "gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore"; + "gtk-mac-integration" = dontDistribute super."gtk-mac-integration"; + "gtk-serialized-event" = dontDistribute super."gtk-serialized-event"; + "gtk-simple-list-view" = dontDistribute super."gtk-simple-list-view"; + "gtk-toggle-button-list" = dontDistribute super."gtk-toggle-button-list"; + "gtk-toy" = dontDistribute super."gtk-toy"; + "gtk-traymanager" = dontDistribute super."gtk-traymanager"; + "gtk2hs-cast-glade" = dontDistribute super."gtk2hs-cast-glade"; + "gtk2hs-cast-glib" = dontDistribute super."gtk2hs-cast-glib"; + "gtk2hs-cast-gnomevfs" = dontDistribute super."gtk2hs-cast-gnomevfs"; + "gtk2hs-cast-gtk" = dontDistribute super."gtk2hs-cast-gtk"; + "gtk2hs-cast-gtkglext" = dontDistribute super."gtk2hs-cast-gtkglext"; + "gtk2hs-cast-gtksourceview2" = dontDistribute super."gtk2hs-cast-gtksourceview2"; + "gtk2hs-cast-th" = dontDistribute super."gtk2hs-cast-th"; + "gtk2hs-hello" = dontDistribute super."gtk2hs-hello"; + "gtk2hs-rpn" = dontDistribute super."gtk2hs-rpn"; + "gtk3-mac-integration" = dontDistribute super."gtk3-mac-integration"; + "gtkglext" = dontDistribute super."gtkglext"; + "gtkimageview" = dontDistribute super."gtkimageview"; + "gtkrsync" = dontDistribute super."gtkrsync"; + "gtksourceview2" = dontDistribute super."gtksourceview2"; + "gtksourceview3" = dontDistribute super."gtksourceview3"; + "guarded-rewriting" = dontDistribute super."guarded-rewriting"; + "guess-combinator" = dontDistribute super."guess-combinator"; + "gulcii" = dontDistribute super."gulcii"; + "gutenberg-fibonaccis" = dontDistribute super."gutenberg-fibonaccis"; + "gyah-bin" = dontDistribute super."gyah-bin"; + "h-booru" = dontDistribute super."h-booru"; + "h-gpgme" = dontDistribute super."h-gpgme"; + "h2048" = dontDistribute super."h2048"; + "hArduino" = dontDistribute super."hArduino"; + "hBDD" = dontDistribute super."hBDD"; + "hBDD-CMUBDD" = dontDistribute super."hBDD-CMUBDD"; + "hBDD-CUDD" = dontDistribute super."hBDD-CUDD"; + "hCsound" = dontDistribute super."hCsound"; + "hDFA" = dontDistribute super."hDFA"; + "hF2" = dontDistribute super."hF2"; + "hGelf" = dontDistribute super."hGelf"; + "hLLVM" = dontDistribute super."hLLVM"; + "hMollom" = dontDistribute super."hMollom"; + "hOpenPGP" = dontDistribute super."hOpenPGP"; + "hPDB-examples" = dontDistribute super."hPDB-examples"; + "hPushover" = dontDistribute super."hPushover"; + "hR" = dontDistribute super."hR"; + "hRESP" = dontDistribute super."hRESP"; + "hS3" = dontDistribute super."hS3"; + "hSimpleDB" = dontDistribute super."hSimpleDB"; + "hTalos" = dontDistribute super."hTalos"; + "hTensor" = dontDistribute super."hTensor"; + "hVOIDP" = dontDistribute super."hVOIDP"; + "hXmixer" = dontDistribute super."hXmixer"; + "haar" = dontDistribute super."haar"; + "hacanon-light" = dontDistribute super."hacanon-light"; + "hack" = dontDistribute super."hack"; + "hack-contrib" = dontDistribute super."hack-contrib"; + "hack-contrib-press" = dontDistribute super."hack-contrib-press"; + "hack-frontend-happstack" = dontDistribute super."hack-frontend-happstack"; + "hack-frontend-monadcgi" = dontDistribute super."hack-frontend-monadcgi"; + "hack-handler-cgi" = dontDistribute super."hack-handler-cgi"; + "hack-handler-epoll" = dontDistribute super."hack-handler-epoll"; + "hack-handler-evhttp" = dontDistribute super."hack-handler-evhttp"; + "hack-handler-fastcgi" = dontDistribute super."hack-handler-fastcgi"; + "hack-handler-happstack" = dontDistribute super."hack-handler-happstack"; + "hack-handler-hyena" = dontDistribute super."hack-handler-hyena"; + "hack-handler-kibro" = dontDistribute super."hack-handler-kibro"; + "hack-handler-simpleserver" = dontDistribute super."hack-handler-simpleserver"; + "hack-middleware-cleanpath" = dontDistribute super."hack-middleware-cleanpath"; + "hack-middleware-clientsession" = dontDistribute super."hack-middleware-clientsession"; + "hack-middleware-gzip" = dontDistribute super."hack-middleware-gzip"; + "hack-middleware-jsonp" = dontDistribute super."hack-middleware-jsonp"; + "hack2" = dontDistribute super."hack2"; + "hack2-contrib" = dontDistribute super."hack2-contrib"; + "hack2-contrib-extra" = dontDistribute super."hack2-contrib-extra"; + "hack2-handler-happstack-server" = dontDistribute super."hack2-handler-happstack-server"; + "hack2-handler-mongrel2-http" = dontDistribute super."hack2-handler-mongrel2-http"; + "hack2-handler-snap-server" = dontDistribute super."hack2-handler-snap-server"; + "hack2-handler-warp" = dontDistribute super."hack2-handler-warp"; + "hack2-interface-wai" = dontDistribute super."hack2-interface-wai"; + "hackage-diff" = dontDistribute super."hackage-diff"; + "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-proxy" = dontDistribute super."hackage-proxy"; + "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; + "hackage-security" = dontDistribute super."hackage-security"; + "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; + "hackage-server" = dontDistribute super."hackage-server"; + "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage2hwn" = dontDistribute super."hackage2hwn"; + "hackage2twitter" = dontDistribute super."hackage2twitter"; + "hackager" = dontDistribute super."hackager"; + "hackernews" = dontDistribute super."hackernews"; + "hackertyper" = dontDistribute super."hackertyper"; + "hackmanager" = dontDistribute super."hackmanager"; + "hackport" = dontDistribute super."hackport"; + "hactor" = dontDistribute super."hactor"; + "hactors" = dontDistribute super."hactors"; + "haddock" = dontDistribute super."haddock"; + "haddock-leksah" = dontDistribute super."haddock-leksah"; + "haddocset" = dontDistribute super."haddocset"; + "hadoop-formats" = dontDistribute super."hadoop-formats"; + "hadoop-rpc" = dontDistribute super."hadoop-rpc"; + "hadoop-tools" = dontDistribute super."hadoop-tools"; + "haeredes" = dontDistribute super."haeredes"; + "haggis" = dontDistribute super."haggis"; + "haha" = dontDistribute super."haha"; + "hailgun" = dontDistribute super."hailgun"; + "hailgun-send" = dontDistribute super."hailgun-send"; + "hails" = dontDistribute super."hails"; + "hails-bin" = dontDistribute super."hails-bin"; + "hairy" = dontDistribute super."hairy"; + "hakaru" = dontDistribute super."hakaru"; + "hake" = dontDistribute super."hake"; + "hakismet" = dontDistribute super."hakismet"; + "hako" = dontDistribute super."hako"; + "hakyll-R" = dontDistribute super."hakyll-R"; + "hakyll-agda" = dontDistribute super."hakyll-agda"; + "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates"; + "hakyll-contrib" = dontDistribute super."hakyll-contrib"; + "hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation"; + "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links"; + "hakyll-convert" = dontDistribute super."hakyll-convert"; + "hakyll-elm" = dontDistribute super."hakyll-elm"; + "hakyll-sass" = dontDistribute super."hakyll-sass"; + "halberd" = dontDistribute super."halberd"; + "halfs" = dontDistribute super."halfs"; + "halipeto" = dontDistribute super."halipeto"; + "halive" = dontDistribute super."halive"; + "halma" = dontDistribute super."halma"; + "haltavista" = dontDistribute super."haltavista"; + "hamid" = dontDistribute super."hamid"; + "hampp" = dontDistribute super."hampp"; + "hamtmap" = dontDistribute super."hamtmap"; + "hamusic" = dontDistribute super."hamusic"; + "handa-gdata" = dontDistribute super."handa-gdata"; + "handa-geodata" = dontDistribute super."handa-geodata"; + "handle-like" = dontDistribute super."handle-like"; + "handsy" = dontDistribute super."handsy"; + "hangman" = dontDistribute super."hangman"; + "hannahci" = dontDistribute super."hannahci"; + "hans" = dontDistribute super."hans"; + "hans-pcap" = dontDistribute super."hans-pcap"; + "hans-pfq" = dontDistribute super."hans-pfq"; + "hapistrano" = dontDistribute super."hapistrano"; + "happindicator" = dontDistribute super."happindicator"; + "happindicator3" = dontDistribute super."happindicator3"; + "happraise" = dontDistribute super."happraise"; + "happs-hsp" = dontDistribute super."happs-hsp"; + "happs-hsp-template" = dontDistribute super."happs-hsp-template"; + "happs-tutorial" = dontDistribute super."happs-tutorial"; + "happstack" = dontDistribute super."happstack"; + "happstack-auth" = dontDistribute super."happstack-auth"; + "happstack-authenticate" = dontDistribute super."happstack-authenticate"; + "happstack-clientsession" = dontDistribute super."happstack-clientsession"; + "happstack-contrib" = dontDistribute super."happstack-contrib"; + "happstack-data" = dontDistribute super."happstack-data"; + "happstack-dlg" = dontDistribute super."happstack-dlg"; + "happstack-facebook" = dontDistribute super."happstack-facebook"; + "happstack-fastcgi" = dontDistribute super."happstack-fastcgi"; + "happstack-fay" = dontDistribute super."happstack-fay"; + "happstack-fay-ajax" = dontDistribute super."happstack-fay-ajax"; + "happstack-foundation" = dontDistribute super."happstack-foundation"; + "happstack-hamlet" = dontDistribute super."happstack-hamlet"; + "happstack-heist" = dontDistribute super."happstack-heist"; + "happstack-helpers" = dontDistribute super."happstack-helpers"; + "happstack-hsp" = dontDistribute super."happstack-hsp"; + "happstack-hstringtemplate" = dontDistribute super."happstack-hstringtemplate"; + "happstack-ixset" = dontDistribute super."happstack-ixset"; + "happstack-jmacro" = dontDistribute super."happstack-jmacro"; + "happstack-lite" = dontDistribute super."happstack-lite"; + "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; + "happstack-plugins" = dontDistribute super."happstack-plugins"; + "happstack-server-tls" = dontDistribute super."happstack-server-tls"; + "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; + "happstack-state" = dontDistribute super."happstack-state"; + "happstack-static-routing" = dontDistribute super."happstack-static-routing"; + "happstack-util" = dontDistribute super."happstack-util"; + "happstack-yui" = dontDistribute super."happstack-yui"; + "happy-meta" = dontDistribute super."happy-meta"; + "happybara" = dontDistribute super."happybara"; + "happybara-webkit" = dontDistribute super."happybara-webkit"; + "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "har" = dontDistribute super."har"; + "harchive" = dontDistribute super."harchive"; + "hark" = dontDistribute super."hark"; + "harmony" = dontDistribute super."harmony"; + "haroonga" = dontDistribute super."haroonga"; + "haroonga-httpd" = dontDistribute super."haroonga-httpd"; + "harp" = dontDistribute super."harp"; + "harpy" = dontDistribute super."harpy"; + "has" = dontDistribute super."has"; + "has-th" = dontDistribute super."has-th"; + "hascal" = dontDistribute super."hascal"; + "hascat" = dontDistribute super."hascat"; + "hascat-lib" = dontDistribute super."hascat-lib"; + "hascat-setup" = dontDistribute super."hascat-setup"; + "hascat-system" = dontDistribute super."hascat-system"; + "hash" = dontDistribute super."hash"; + "hashable-generics" = dontDistribute super."hashable-generics"; + "hashable-time" = dontDistribute super."hashable-time"; + "hashabler" = dontDistribute super."hashabler"; + "hashed-storage" = dontDistribute super."hashed-storage"; + "hashids" = dontDistribute super."hashids"; + "hashring" = dontDistribute super."hashring"; + "hashtables-plus" = dontDistribute super."hashtables-plus"; + "hasim" = dontDistribute super."hasim"; + "hask" = dontDistribute super."hask"; + "hask-home" = dontDistribute super."hask-home"; + "haskades" = dontDistribute super."haskades"; + "haskakafka" = dontDistribute super."haskakafka"; + "haskanoid" = dontDistribute super."haskanoid"; + "haskarrow" = dontDistribute super."haskarrow"; + "haskbot-core" = dontDistribute super."haskbot-core"; + "haskdeep" = dontDistribute super."haskdeep"; + "haskdogs" = dontDistribute super."haskdogs"; + "haskeem" = dontDistribute super."haskeem"; + "haskeline" = doDistribute super."haskeline_0_7_2_1"; + "haskeline-class" = dontDistribute super."haskeline-class"; + "haskell-aliyun" = dontDistribute super."haskell-aliyun"; + "haskell-awk" = dontDistribute super."haskell-awk"; + "haskell-bcrypt" = dontDistribute super."haskell-bcrypt"; + "haskell-brainfuck" = dontDistribute super."haskell-brainfuck"; + "haskell-cnc" = dontDistribute super."haskell-cnc"; + "haskell-coffee" = dontDistribute super."haskell-coffee"; + "haskell-compression" = dontDistribute super."haskell-compression"; + "haskell-course-preludes" = dontDistribute super."haskell-course-preludes"; + "haskell-docs" = dontDistribute super."haskell-docs"; + "haskell-formatter" = dontDistribute super."haskell-formatter"; + "haskell-ftp" = dontDistribute super."haskell-ftp"; + "haskell-generate" = dontDistribute super."haskell-generate"; + "haskell-import-graph" = dontDistribute super."haskell-import-graph"; + "haskell-in-space" = dontDistribute super."haskell-in-space"; + "haskell-modbus" = dontDistribute super."haskell-modbus"; + "haskell-mpi" = dontDistribute super."haskell-mpi"; + "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; + "haskell-platform-test" = dontDistribute super."haskell-platform-test"; + "haskell-plot" = dontDistribute super."haskell-plot"; + "haskell-qrencode" = dontDistribute super."haskell-qrencode"; + "haskell-reflect" = dontDistribute super."haskell-reflect"; + "haskell-rules" = dontDistribute super."haskell-rules"; + "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; + "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; + "haskell-token-utils" = dontDistribute super."haskell-token-utils"; + "haskell-type-exts" = dontDistribute super."haskell-type-exts"; + "haskell-typescript" = dontDistribute super."haskell-typescript"; + "haskell-tyrant" = dontDistribute super."haskell-tyrant"; + "haskell-updater" = dontDistribute super."haskell-updater"; + "haskell-xmpp" = dontDistribute super."haskell-xmpp"; + "haskell2010" = dontDistribute super."haskell2010"; + "haskell98" = dontDistribute super."haskell98"; + "haskell98libraries" = dontDistribute super."haskell98libraries"; + "haskelldb" = dontDistribute super."haskelldb"; + "haskelldb-connect-hdbc" = dontDistribute super."haskelldb-connect-hdbc"; + "haskelldb-connect-hdbc-catchio-mtl" = dontDistribute super."haskelldb-connect-hdbc-catchio-mtl"; + "haskelldb-connect-hdbc-catchio-tf" = dontDistribute super."haskelldb-connect-hdbc-catchio-tf"; + "haskelldb-connect-hdbc-catchio-transformers" = dontDistribute super."haskelldb-connect-hdbc-catchio-transformers"; + "haskelldb-connect-hdbc-lifted" = dontDistribute super."haskelldb-connect-hdbc-lifted"; + "haskelldb-dynamic" = dontDistribute super."haskelldb-dynamic"; + "haskelldb-flat" = dontDistribute super."haskelldb-flat"; + "haskelldb-hdbc" = dontDistribute super."haskelldb-hdbc"; + "haskelldb-hdbc-mysql" = dontDistribute super."haskelldb-hdbc-mysql"; + "haskelldb-hdbc-odbc" = dontDistribute super."haskelldb-hdbc-odbc"; + "haskelldb-hdbc-postgresql" = dontDistribute super."haskelldb-hdbc-postgresql"; + "haskelldb-hdbc-sqlite3" = dontDistribute super."haskelldb-hdbc-sqlite3"; + "haskelldb-hsql" = dontDistribute super."haskelldb-hsql"; + "haskelldb-hsql-mysql" = dontDistribute super."haskelldb-hsql-mysql"; + "haskelldb-hsql-odbc" = dontDistribute super."haskelldb-hsql-odbc"; + "haskelldb-hsql-oracle" = dontDistribute super."haskelldb-hsql-oracle"; + "haskelldb-hsql-postgresql" = dontDistribute super."haskelldb-hsql-postgresql"; + "haskelldb-hsql-sqlite" = dontDistribute super."haskelldb-hsql-sqlite"; + "haskelldb-hsql-sqlite3" = dontDistribute super."haskelldb-hsql-sqlite3"; + "haskelldb-th" = dontDistribute super."haskelldb-th"; + "haskelldb-wx" = dontDistribute super."haskelldb-wx"; + "haskellscrabble" = dontDistribute super."haskellscrabble"; + "haskellscript" = dontDistribute super."haskellscript"; + "haskelm" = dontDistribute super."haskelm"; + "haskgame" = dontDistribute super."haskgame"; + "haskheap" = dontDistribute super."haskheap"; + "haskhol-core" = dontDistribute super."haskhol-core"; + "haskintex" = doDistribute super."haskintex_0_5_1_0"; + "haskmon" = dontDistribute super."haskmon"; + "haskoin" = dontDistribute super."haskoin"; + "haskoin-crypto" = dontDistribute super."haskoin-crypto"; + "haskoin-protocol" = dontDistribute super."haskoin-protocol"; + "haskoin-script" = dontDistribute super."haskoin-script"; + "haskoin-util" = dontDistribute super."haskoin-util"; + "haskoin-wallet" = dontDistribute super."haskoin-wallet"; + "haskoon" = dontDistribute super."haskoon"; + "haskoon-httpspec" = dontDistribute super."haskoon-httpspec"; + "haskoon-salvia" = dontDistribute super."haskoon-salvia"; + "haskore" = dontDistribute super."haskore"; + "haskore-realtime" = dontDistribute super."haskore-realtime"; + "haskore-supercollider" = dontDistribute super."haskore-supercollider"; + "haskore-synthesizer" = dontDistribute super."haskore-synthesizer"; + "haskore-vintage" = dontDistribute super."haskore-vintage"; + "hasktags" = dontDistribute super."hasktags"; + "haslo" = dontDistribute super."haslo"; + "hasloGUI" = dontDistribute super."hasloGUI"; + "hasparql-client" = dontDistribute super."hasparql-client"; + "haspell" = dontDistribute super."haspell"; + "hasql-postgres-options" = dontDistribute super."hasql-postgres-options"; + "hastache-aeson" = dontDistribute super."hastache-aeson"; + "haste" = dontDistribute super."haste"; + "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-markup" = dontDistribute super."haste-markup"; + "haste-perch" = dontDistribute super."haste-perch"; + "hastily" = dontDistribute super."hastily"; + "hasty-hamiltonian" = dontDistribute super."hasty-hamiltonian"; + "hat" = dontDistribute super."hat"; + "hatex-guide" = dontDistribute super."hatex-guide"; + "hath" = dontDistribute super."hath"; + "hatt" = dontDistribute super."hatt"; + "haverer" = dontDistribute super."haverer"; + "hawitter" = dontDistribute super."hawitter"; + "haxl" = dontDistribute super."haxl"; + "haxl-facebook" = dontDistribute super."haxl-facebook"; + "haxparse" = dontDistribute super."haxparse"; + "haxr-th" = dontDistribute super."haxr-th"; + "haxy" = dontDistribute super."haxy"; + "hayland" = dontDistribute super."hayland"; + "hayoo-cli" = dontDistribute super."hayoo-cli"; + "hback" = dontDistribute super."hback"; + "hbayes" = dontDistribute super."hbayes"; + "hbb" = dontDistribute super."hbb"; + "hbcd" = dontDistribute super."hbcd"; + "hbeat" = dontDistribute super."hbeat"; + "hblas" = dontDistribute super."hblas"; + "hblock" = dontDistribute super."hblock"; + "hbro" = dontDistribute super."hbro"; + "hbro-contrib" = dontDistribute super."hbro-contrib"; + "hburg" = dontDistribute super."hburg"; + "hcc" = dontDistribute super."hcc"; + "hcg-minus" = dontDistribute super."hcg-minus"; + "hcg-minus-cairo" = dontDistribute super."hcg-minus-cairo"; + "hcheat" = dontDistribute super."hcheat"; + "hchesslib" = dontDistribute super."hchesslib"; + "hcltest" = dontDistribute super."hcltest"; + "hcron" = dontDistribute super."hcron"; + "hcube" = dontDistribute super."hcube"; + "hcwiid" = dontDistribute super."hcwiid"; + "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix"; + "hdbc-aeson" = dontDistribute super."hdbc-aeson"; + "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore"; + "hdbc-tuple" = dontDistribute super."hdbc-tuple"; + "hdbi" = dontDistribute super."hdbi"; + "hdbi-conduit" = dontDistribute super."hdbi-conduit"; + "hdbi-postgresql" = dontDistribute super."hdbi-postgresql"; + "hdbi-sqlite" = dontDistribute super."hdbi-sqlite"; + "hdbi-tests" = dontDistribute super."hdbi-tests"; + "hdf" = dontDistribute super."hdf"; + "hdigest" = dontDistribute super."hdigest"; + "hdirect" = dontDistribute super."hdirect"; + "hdis86" = dontDistribute super."hdis86"; + "hdiscount" = dontDistribute super."hdiscount"; + "hdm" = dontDistribute super."hdm"; + "hdph" = dontDistribute super."hdph"; + "hdph-closure" = dontDistribute super."hdph-closure"; + "headergen" = dontDistribute super."headergen"; + "heapsort" = dontDistribute super."heapsort"; + "hecc" = dontDistribute super."hecc"; + "hedis-config" = dontDistribute super."hedis-config"; + "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-pile" = dontDistribute super."hedis-pile"; + "hedis-simple" = dontDistribute super."hedis-simple"; + "hedis-tags" = dontDistribute super."hedis-tags"; + "hedn" = dontDistribute super."hedn"; + "hein" = dontDistribute super."hein"; + "heist-aeson" = dontDistribute super."heist-aeson"; + "heist-async" = dontDistribute super."heist-async"; + "helics" = dontDistribute super."helics"; + "helics-wai" = dontDistribute super."helics-wai"; + "helisp" = dontDistribute super."helisp"; + "helium" = dontDistribute super."helium"; + "hell" = dontDistribute super."hell"; + "hellage" = dontDistribute super."hellage"; + "hellnet" = dontDistribute super."hellnet"; + "hello" = dontDistribute super."hello"; + "helm" = dontDistribute super."helm"; + "help-esb" = dontDistribute super."help-esb"; + "hemkay" = dontDistribute super."hemkay"; + "hemkay-core" = dontDistribute super."hemkay-core"; + "hemokit" = dontDistribute super."hemokit"; + "hen" = dontDistribute super."hen"; + "henet" = dontDistribute super."henet"; + "hepevt" = dontDistribute super."hepevt"; + "her-lexer" = dontDistribute super."her-lexer"; + "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; + "herbalizer" = dontDistribute super."herbalizer"; + "hermit" = dontDistribute super."hermit"; + "hermit-syb" = dontDistribute super."hermit-syb"; + "heroku" = dontDistribute super."heroku"; + "heroku-persistent" = dontDistribute super."heroku-persistent"; + "herringbone" = dontDistribute super."herringbone"; + "herringbone-embed" = dontDistribute super."herringbone-embed"; + "herringbone-wai" = dontDistribute super."herringbone-wai"; + "hesql" = dontDistribute super."hesql"; + "hetero-map" = dontDistribute super."hetero-map"; + "hetris" = dontDistribute super."hetris"; + "heukarya" = dontDistribute super."heukarya"; + "hevolisa" = dontDistribute super."hevolisa"; + "hevolisa-dph" = dontDistribute super."hevolisa-dph"; + "hexdump" = dontDistribute super."hexdump"; + "hexif" = dontDistribute super."hexif"; + "hexpat-iteratee" = dontDistribute super."hexpat-iteratee"; + "hexpat-lens" = dontDistribute super."hexpat-lens"; + "hexpat-pickle" = dontDistribute super."hexpat-pickle"; + "hexpat-pickle-generic" = dontDistribute super."hexpat-pickle-generic"; + "hexpat-tagsoup" = dontDistribute super."hexpat-tagsoup"; + "hexpr" = dontDistribute super."hexpr"; + "hexquote" = dontDistribute super."hexquote"; + "heyefi" = dontDistribute super."heyefi"; + "hfann" = dontDistribute super."hfann"; + "hfd" = dontDistribute super."hfd"; + "hfiar" = dontDistribute super."hfiar"; + "hfoil" = dontDistribute super."hfoil"; + "hfov" = dontDistribute super."hfov"; + "hfractal" = dontDistribute super."hfractal"; + "hfusion" = dontDistribute super."hfusion"; + "hg-buildpackage" = dontDistribute super."hg-buildpackage"; + "hgal" = dontDistribute super."hgal"; + "hgalib" = dontDistribute super."hgalib"; + "hgdbmi" = dontDistribute super."hgdbmi"; + "hgearman" = dontDistribute super."hgearman"; + "hgen" = dontDistribute super."hgen"; + "hgeometric" = dontDistribute super."hgeometric"; + "hgeometry" = dontDistribute super."hgeometry"; + "hgettext" = dontDistribute super."hgettext"; + "hgithub" = dontDistribute super."hgithub"; + "hgl-example" = dontDistribute super."hgl-example"; + "hgom" = dontDistribute super."hgom"; + "hgopher" = dontDistribute super."hgopher"; + "hgrev" = dontDistribute super."hgrev"; + "hgrib" = dontDistribute super."hgrib"; + "hharp" = dontDistribute super."hharp"; + "hi" = dontDistribute super."hi"; + "hiccup" = dontDistribute super."hiccup"; + "hichi" = dontDistribute super."hichi"; + "hidapi" = dontDistribute super."hidapi"; + "hieraclus" = dontDistribute super."hieraclus"; + "hierarchical-clustering" = dontDistribute super."hierarchical-clustering"; + "hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams"; + "hierarchical-exceptions" = dontDistribute super."hierarchical-exceptions"; + "hierarchy" = dontDistribute super."hierarchy"; + "hiernotify" = dontDistribute super."hiernotify"; + "highWaterMark" = dontDistribute super."highWaterMark"; + "higher-leveldb" = dontDistribute super."higher-leveldb"; + "higherorder" = dontDistribute super."higherorder"; + "highlight-versions" = dontDistribute super."highlight-versions"; + "highlighter" = dontDistribute super."highlighter"; + "highlighter2" = dontDistribute super."highlighter2"; + "hills" = dontDistribute super."hills"; + "himerge" = dontDistribute super."himerge"; + "himg" = dontDistribute super."himg"; + "himpy" = dontDistribute super."himpy"; + "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; + "hinduce-classifier" = dontDistribute super."hinduce-classifier"; + "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; + "hinduce-examples" = dontDistribute super."hinduce-examples"; + "hinduce-missingh" = dontDistribute super."hinduce-missingh"; + "hinquire" = dontDistribute super."hinquire"; + "hinstaller" = dontDistribute super."hinstaller"; + "hint-server" = dontDistribute super."hint-server"; + "hinvaders" = dontDistribute super."hinvaders"; + "hinze-streams" = dontDistribute super."hinze-streams"; + "hipbot" = dontDistribute super."hipbot"; + "hipe" = dontDistribute super."hipe"; + "hips" = dontDistribute super."hips"; + "hircules" = dontDistribute super."hircules"; + "hirt" = dontDistribute super."hirt"; + "hissmetrics" = dontDistribute super."hissmetrics"; + "hist-pl" = dontDistribute super."hist-pl"; + "hist-pl-dawg" = dontDistribute super."hist-pl-dawg"; + "hist-pl-fusion" = dontDistribute super."hist-pl-fusion"; + "hist-pl-lexicon" = dontDistribute super."hist-pl-lexicon"; + "hist-pl-lmf" = dontDistribute super."hist-pl-lmf"; + "hist-pl-transliter" = dontDistribute super."hist-pl-transliter"; + "hist-pl-types" = dontDistribute super."hist-pl-types"; + "histogram-fill-binary" = dontDistribute super."histogram-fill-binary"; + "histogram-fill-cereal" = dontDistribute super."histogram-fill-cereal"; + "historian" = dontDistribute super."historian"; + "hjcase" = dontDistribute super."hjcase"; + "hjpath" = dontDistribute super."hjpath"; + "hjs" = dontDistribute super."hjs"; + "hjson" = dontDistribute super."hjson"; + "hjson-query" = dontDistribute super."hjson-query"; + "hjsonpointer" = dontDistribute super."hjsonpointer"; + "hjsonschema" = dontDistribute super."hjsonschema"; + "hlatex" = dontDistribute super."hlatex"; + "hlbfgsb" = dontDistribute super."hlbfgsb"; + "hlcm" = dontDistribute super."hlcm"; + "hledger-chart" = dontDistribute super."hledger-chart"; + "hledger-diff" = dontDistribute super."hledger-diff"; + "hledger-interest" = dontDistribute super."hledger-interest"; + "hledger-irr" = dontDistribute super."hledger-irr"; + "hledger-vty" = dontDistribute super."hledger-vty"; + "hlibBladeRF" = dontDistribute super."hlibBladeRF"; + "hlibev" = dontDistribute super."hlibev"; + "hlibfam" = dontDistribute super."hlibfam"; + "hlogger" = dontDistribute super."hlogger"; + "hlongurl" = dontDistribute super."hlongurl"; + "hls" = dontDistribute super."hls"; + "hlwm" = dontDistribute super."hlwm"; + "hly" = dontDistribute super."hly"; + "hmark" = dontDistribute super."hmark"; + "hmarkup" = dontDistribute super."hmarkup"; + "hmatrix" = doDistribute super."hmatrix_0_16_1_5"; + "hmatrix-banded" = dontDistribute super."hmatrix-banded"; + "hmatrix-csv" = dontDistribute super."hmatrix-csv"; + "hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; + "hmatrix-gsl" = doDistribute super."hmatrix-gsl_0_16_0_3"; + "hmatrix-gsl-stats" = doDistribute super."hmatrix-gsl-stats_0_4_1_1"; + "hmatrix-mmap" = dontDistribute super."hmatrix-mmap"; + "hmatrix-nipals" = dontDistribute super."hmatrix-nipals"; + "hmatrix-quadprogpp" = dontDistribute super."hmatrix-quadprogpp"; + "hmatrix-special" = dontDistribute super."hmatrix-special"; + "hmatrix-static" = dontDistribute super."hmatrix-static"; + "hmatrix-svdlibc" = dontDistribute super."hmatrix-svdlibc"; + "hmatrix-syntax" = dontDistribute super."hmatrix-syntax"; + "hmatrix-tests" = dontDistribute super."hmatrix-tests"; + "hmeap" = dontDistribute super."hmeap"; + "hmeap-utils" = dontDistribute super."hmeap-utils"; + "hmemdb" = dontDistribute super."hmemdb"; + "hmenu" = dontDistribute super."hmenu"; + "hmidi" = dontDistribute super."hmidi"; + "hmk" = dontDistribute super."hmk"; + "hmm" = dontDistribute super."hmm"; + "hmm-hmatrix" = dontDistribute super."hmm-hmatrix"; + "hmp3" = dontDistribute super."hmp3"; + "hmpfr" = dontDistribute super."hmpfr"; + "hmt" = dontDistribute super."hmt"; + "hmt-diagrams" = dontDistribute super."hmt-diagrams"; + "hmumps" = dontDistribute super."hmumps"; + "hnetcdf" = dontDistribute super."hnetcdf"; + "hnix" = dontDistribute super."hnix"; + "hnn" = dontDistribute super."hnn"; + "hnop" = dontDistribute super."hnop"; + "ho-rewriting" = dontDistribute super."ho-rewriting"; + "hoauth" = dontDistribute super."hoauth"; + "hob" = dontDistribute super."hob"; + "hobbes" = dontDistribute super."hobbes"; + "hobbits" = dontDistribute super."hobbits"; + "hoe" = dontDistribute super."hoe"; + "hofix-mtl" = dontDistribute super."hofix-mtl"; + "hog" = dontDistribute super."hog"; + "hogg" = dontDistribute super."hogg"; + "hogre" = dontDistribute super."hogre"; + "hogre-examples" = dontDistribute super."hogre-examples"; + "hois" = dontDistribute super."hois"; + "hoist-error" = dontDistribute super."hoist-error"; + "hold-em" = dontDistribute super."hold-em"; + "hole" = dontDistribute super."hole"; + "holey-format" = dontDistribute super."holey-format"; + "homeomorphic" = dontDistribute super."homeomorphic"; + "hommage" = dontDistribute super."hommage"; + "hommage-ds" = dontDistribute super."hommage-ds"; + "homplexity" = dontDistribute super."homplexity"; + "honi" = dontDistribute super."honi"; + "honk" = dontDistribute super."honk"; + "hoobuddy" = dontDistribute super."hoobuddy"; + "hood" = dontDistribute super."hood"; + "hood-off" = dontDistribute super."hood-off"; + "hood2" = dontDistribute super."hood2"; + "hoodie" = dontDistribute super."hoodie"; + "hoodle" = dontDistribute super."hoodle"; + "hoodle-builder" = dontDistribute super."hoodle-builder"; + "hoodle-core" = dontDistribute super."hoodle-core"; + "hoodle-extra" = dontDistribute super."hoodle-extra"; + "hoodle-parser" = dontDistribute super."hoodle-parser"; + "hoodle-publish" = dontDistribute super."hoodle-publish"; + "hoodle-render" = dontDistribute super."hoodle-render"; + "hoodle-types" = dontDistribute super."hoodle-types"; + "hoogle-index" = dontDistribute super."hoogle-index"; + "hooks-dir" = dontDistribute super."hooks-dir"; + "hoovie" = dontDistribute super."hoovie"; + "hopencc" = dontDistribute super."hopencc"; + "hopencl" = dontDistribute super."hopencl"; + "hopenpgp-tools" = dontDistribute super."hopenpgp-tools"; + "hopenssl" = dontDistribute super."hopenssl"; + "hopfield" = dontDistribute super."hopfield"; + "hopfield-networks" = dontDistribute super."hopfield-networks"; + "hopfli" = dontDistribute super."hopfli"; + "hops" = dontDistribute super."hops"; + "hoq" = dontDistribute super."hoq"; + "horizon" = dontDistribute super."horizon"; + "hosc" = dontDistribute super."hosc"; + "hosc-json" = dontDistribute super."hosc-json"; + "hosc-utils" = dontDistribute super."hosc-utils"; + "hosts-server" = dontDistribute super."hosts-server"; + "hothasktags" = dontDistribute super."hothasktags"; + "hotswap" = dontDistribute super."hotswap"; + "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "hp2any-core" = dontDistribute super."hp2any-core"; + "hp2any-graph" = dontDistribute super."hp2any-graph"; + "hp2any-manager" = dontDistribute super."hp2any-manager"; + "hp2html" = dontDistribute super."hp2html"; + "hp2pretty" = dontDistribute super."hp2pretty"; + "hpack" = dontDistribute super."hpack"; + "hpaco" = dontDistribute super."hpaco"; + "hpaco-lib" = dontDistribute super."hpaco-lib"; + "hpage" = dontDistribute super."hpage"; + "hpapi" = dontDistribute super."hpapi"; + "hpaste" = dontDistribute super."hpaste"; + "hpasteit" = dontDistribute super."hpasteit"; + "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; + "hpc-strobe" = dontDistribute super."hpc-strobe"; + "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hplayground" = dontDistribute super."hplayground"; + "hplaylist" = dontDistribute super."hplaylist"; + "hpodder" = dontDistribute super."hpodder"; + "hpp" = dontDistribute super."hpp"; + "hpqtypes" = dontDistribute super."hpqtypes"; + "hprotoc-fork" = dontDistribute super."hprotoc-fork"; + "hps" = dontDistribute super."hps"; + "hps-cairo" = dontDistribute super."hps-cairo"; + "hps-kmeans" = dontDistribute super."hps-kmeans"; + "hpuz" = dontDistribute super."hpuz"; + "hpygments" = dontDistribute super."hpygments"; + "hpylos" = dontDistribute super."hpylos"; + "hpyrg" = dontDistribute super."hpyrg"; + "hquantlib" = dontDistribute super."hquantlib"; + "hquery" = dontDistribute super."hquery"; + "hranker" = dontDistribute super."hranker"; + "hreader" = dontDistribute super."hreader"; + "hricket" = dontDistribute super."hricket"; + "hruby" = dontDistribute super."hruby"; + "hs-GeoIP" = dontDistribute super."hs-GeoIP"; + "hs-blake2" = dontDistribute super."hs-blake2"; + "hs-captcha" = dontDistribute super."hs-captcha"; + "hs-carbon" = dontDistribute super."hs-carbon"; + "hs-carbon-examples" = dontDistribute super."hs-carbon-examples"; + "hs-cdb" = dontDistribute super."hs-cdb"; + "hs-dotnet" = dontDistribute super."hs-dotnet"; + "hs-duktape" = dontDistribute super."hs-duktape"; + "hs-excelx" = dontDistribute super."hs-excelx"; + "hs-ffmpeg" = dontDistribute super."hs-ffmpeg"; + "hs-fltk" = dontDistribute super."hs-fltk"; + "hs-gchart" = dontDistribute super."hs-gchart"; + "hs-gen-iface" = dontDistribute super."hs-gen-iface"; + "hs-gizapp" = dontDistribute super."hs-gizapp"; + "hs-inspector" = dontDistribute super."hs-inspector"; + "hs-java" = dontDistribute super."hs-java"; + "hs-json-rpc" = dontDistribute super."hs-json-rpc"; + "hs-logo" = dontDistribute super."hs-logo"; + "hs-mesos" = dontDistribute super."hs-mesos"; + "hs-nombre-generator" = dontDistribute super."hs-nombre-generator"; + "hs-pgms" = dontDistribute super."hs-pgms"; + "hs-php-session" = dontDistribute super."hs-php-session"; + "hs-pkg-config" = dontDistribute super."hs-pkg-config"; + "hs-pkpass" = dontDistribute super."hs-pkpass"; + "hs-re" = dontDistribute super."hs-re"; + "hs-scrape" = dontDistribute super."hs-scrape"; + "hs-twitter" = dontDistribute super."hs-twitter"; + "hs-twitterarchiver" = dontDistribute super."hs-twitterarchiver"; + "hs-vcard" = dontDistribute super."hs-vcard"; + "hs2048" = dontDistribute super."hs2048"; + "hs2bf" = dontDistribute super."hs2bf"; + "hs2dot" = dontDistribute super."hs2dot"; + "hsConfigure" = dontDistribute super."hsConfigure"; + "hsSqlite3" = dontDistribute super."hsSqlite3"; + "hsXenCtrl" = dontDistribute super."hsXenCtrl"; + "hsay" = dontDistribute super."hsay"; + "hsb2hs" = dontDistribute super."hsb2hs"; + "hsbackup" = dontDistribute super."hsbackup"; + "hsbencher" = dontDistribute super."hsbencher"; + "hsbencher-codespeed" = dontDistribute super."hsbencher-codespeed"; + "hsbencher-fusion" = dontDistribute super."hsbencher-fusion"; + "hsc2hs" = dontDistribute super."hsc2hs"; + "hsc3" = dontDistribute super."hsc3"; + "hsc3-auditor" = dontDistribute super."hsc3-auditor"; + "hsc3-cairo" = dontDistribute super."hsc3-cairo"; + "hsc3-data" = dontDistribute super."hsc3-data"; + "hsc3-db" = dontDistribute super."hsc3-db"; + "hsc3-dot" = dontDistribute super."hsc3-dot"; + "hsc3-forth" = dontDistribute super."hsc3-forth"; + "hsc3-graphs" = dontDistribute super."hsc3-graphs"; + "hsc3-lang" = dontDistribute super."hsc3-lang"; + "hsc3-lisp" = dontDistribute super."hsc3-lisp"; + "hsc3-plot" = dontDistribute super."hsc3-plot"; + "hsc3-process" = dontDistribute super."hsc3-process"; + "hsc3-rec" = dontDistribute super."hsc3-rec"; + "hsc3-rw" = dontDistribute super."hsc3-rw"; + "hsc3-server" = dontDistribute super."hsc3-server"; + "hsc3-sf" = dontDistribute super."hsc3-sf"; + "hsc3-sf-hsndfile" = dontDistribute super."hsc3-sf-hsndfile"; + "hsc3-unsafe" = dontDistribute super."hsc3-unsafe"; + "hsc3-utils" = dontDistribute super."hsc3-utils"; + "hscamwire" = dontDistribute super."hscamwire"; + "hscassandra" = dontDistribute super."hscassandra"; + "hscd" = dontDistribute super."hscd"; + "hsclock" = dontDistribute super."hsclock"; + "hscope" = dontDistribute super."hscope"; + "hscrtmpl" = dontDistribute super."hscrtmpl"; + "hscuid" = dontDistribute super."hscuid"; + "hscurses" = dontDistribute super."hscurses"; + "hscurses-fish-ex" = dontDistribute super."hscurses-fish-ex"; + "hsdev" = dontDistribute super."hsdev"; + "hsdif" = dontDistribute super."hsdif"; + "hsdip" = dontDistribute super."hsdip"; + "hsdns" = dontDistribute super."hsdns"; + "hsdns-cache" = dontDistribute super."hsdns-cache"; + "hsemail-ns" = dontDistribute super."hsemail-ns"; + "hsenv" = dontDistribute super."hsenv"; + "hserv" = dontDistribute super."hserv"; + "hset" = dontDistribute super."hset"; + "hsexif" = dontDistribute super."hsexif"; + "hsfacter" = dontDistribute super."hsfacter"; + "hsfcsh" = dontDistribute super."hsfcsh"; + "hsfilt" = dontDistribute super."hsfilt"; + "hsgnutls" = dontDistribute super."hsgnutls"; + "hsgnutls-yj" = dontDistribute super."hsgnutls-yj"; + "hsgsom" = dontDistribute super."hsgsom"; + "hsgtd" = dontDistribute super."hsgtd"; + "hsharc" = dontDistribute super."hsharc"; + "hsignal" = doDistribute super."hsignal_0_2_7_1"; + "hsilop" = dontDistribute super."hsilop"; + "hsimport" = dontDistribute super."hsimport"; + "hsini" = dontDistribute super."hsini"; + "hskeleton" = dontDistribute super."hskeleton"; + "hslackbuilder" = dontDistribute super."hslackbuilder"; + "hslibsvm" = dontDistribute super."hslibsvm"; + "hslinks" = dontDistribute super."hslinks"; + "hslogger-reader" = dontDistribute super."hslogger-reader"; + "hslogger-template" = dontDistribute super."hslogger-template"; + "hslogger4j" = dontDistribute super."hslogger4j"; + "hslogstash" = dontDistribute super."hslogstash"; + "hsmagick" = dontDistribute super."hsmagick"; + "hsmisc" = dontDistribute super."hsmisc"; + "hsmtpclient" = dontDistribute super."hsmtpclient"; + "hsndfile" = dontDistribute super."hsndfile"; + "hsndfile-storablevector" = dontDistribute super."hsndfile-storablevector"; + "hsndfile-vector" = dontDistribute super."hsndfile-vector"; + "hsnock" = dontDistribute super."hsnock"; + "hsnoise" = dontDistribute super."hsnoise"; + "hsns" = dontDistribute super."hsns"; + "hsnsq" = dontDistribute super."hsnsq"; + "hsntp" = dontDistribute super."hsntp"; + "hsoptions" = dontDistribute super."hsoptions"; + "hsp" = dontDistribute super."hsp"; + "hsp-cgi" = dontDistribute super."hsp-cgi"; + "hsparklines" = dontDistribute super."hsparklines"; + "hsparql" = dontDistribute super."hsparql"; + "hspear" = dontDistribute super."hspear"; + "hspec" = doDistribute super."hspec_2_1_10"; + "hspec-checkers" = dontDistribute super."hspec-checkers"; + "hspec-core" = doDistribute super."hspec-core_2_1_10"; + "hspec-discover" = doDistribute super."hspec-discover_2_1_10"; + "hspec-expectations" = doDistribute super."hspec-expectations_0_7_1"; + "hspec-expectations-lens" = dontDistribute super."hspec-expectations-lens"; + "hspec-expectations-lifted" = dontDistribute super."hspec-expectations-lifted"; + "hspec-expectations-pretty" = dontDistribute super."hspec-expectations-pretty"; + "hspec-expectations-pretty-diff" = dontDistribute super."hspec-expectations-pretty-diff"; + "hspec-experimental" = dontDistribute super."hspec-experimental"; + "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; + "hspec-monad-control" = dontDistribute super."hspec-monad-control"; + "hspec-server" = dontDistribute super."hspec-server"; + "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; + "hspec-snap" = doDistribute super."hspec-snap_0_3_3_0"; + "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; + "hspec-test-framework" = dontDistribute super."hspec-test-framework"; + "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; + "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-webdriver" = doDistribute super."hspec-webdriver_1_0_3"; + "hspec2" = dontDistribute super."hspec2"; + "hspr-sh" = dontDistribute super."hspr-sh"; + "hspread" = dontDistribute super."hspread"; + "hspresent" = dontDistribute super."hspresent"; + "hsprocess" = dontDistribute super."hsprocess"; + "hsql" = dontDistribute super."hsql"; + "hsql-mysql" = dontDistribute super."hsql-mysql"; + "hsql-odbc" = dontDistribute super."hsql-odbc"; + "hsql-postgresql" = dontDistribute super."hsql-postgresql"; + "hsql-sqlite3" = dontDistribute super."hsql-sqlite3"; + "hsqml" = dontDistribute super."hsqml"; + "hsqml-datamodel" = dontDistribute super."hsqml-datamodel"; + "hsqml-datamodel-vinyl" = dontDistribute super."hsqml-datamodel-vinyl"; + "hsqml-demo-morris" = dontDistribute super."hsqml-demo-morris"; + "hsqml-demo-notes" = dontDistribute super."hsqml-demo-notes"; + "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples"; + "hsqml-morris" = dontDistribute super."hsqml-morris"; + "hsreadability" = dontDistribute super."hsreadability"; + "hsshellscript" = dontDistribute super."hsshellscript"; + "hssourceinfo" = dontDistribute super."hssourceinfo"; + "hssqlppp" = dontDistribute super."hssqlppp"; + "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; + "hstats" = dontDistribute super."hstats"; + "hstest" = dontDistribute super."hstest"; + "hstidy" = dontDistribute super."hstidy"; + "hstorchat" = dontDistribute super."hstorchat"; + "hstradeking" = dontDistribute super."hstradeking"; + "hstyle" = dontDistribute super."hstyle"; + "hstzaar" = dontDistribute super."hstzaar"; + "hsubconvert" = dontDistribute super."hsubconvert"; + "hsverilog" = dontDistribute super."hsverilog"; + "hswip" = dontDistribute super."hswip"; + "hsx" = dontDistribute super."hsx"; + "hsx-jmacro" = dontDistribute super."hsx-jmacro"; + "hsx-xhtml" = dontDistribute super."hsx-xhtml"; + "hsx2hs" = dontDistribute super."hsx2hs"; + "hsyscall" = dontDistribute super."hsyscall"; + "hszephyr" = dontDistribute super."hszephyr"; + "htags" = dontDistribute super."htags"; + "htar" = dontDistribute super."htar"; + "htiled" = dontDistribute super."htiled"; + "htime" = dontDistribute super."htime"; + "html-email-validate" = dontDistribute super."html-email-validate"; + "html-entities" = dontDistribute super."html-entities"; + "html-kure" = dontDistribute super."html-kure"; + "html-minimalist" = dontDistribute super."html-minimalist"; + "html-rules" = dontDistribute super."html-rules"; + "html-tokenizer" = dontDistribute super."html-tokenizer"; + "html-truncate" = dontDistribute super."html-truncate"; + "html2hamlet" = dontDistribute super."html2hamlet"; + "html5-entity" = dontDistribute super."html5-entity"; + "htodo" = dontDistribute super."htodo"; + "htoml" = dontDistribute super."htoml"; + "htrace" = dontDistribute super."htrace"; + "hts" = dontDistribute super."hts"; + "htsn" = dontDistribute super."htsn"; + "htsn-common" = dontDistribute super."htsn-common"; + "htsn-import" = dontDistribute super."htsn-import"; + "http-accept" = dontDistribute super."http-accept"; + "http-api-data" = dontDistribute super."http-api-data"; + "http-attoparsec" = dontDistribute super."http-attoparsec"; + "http-client-auth" = dontDistribute super."http-client-auth"; + "http-client-conduit" = dontDistribute super."http-client-conduit"; + "http-client-lens" = dontDistribute super."http-client-lens"; + "http-client-multipart" = dontDistribute super."http-client-multipart"; + "http-client-openssl" = dontDistribute super."http-client-openssl"; + "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-streams" = dontDistribute super."http-client-streams"; + "http-conduit-browser" = dontDistribute super."http-conduit-browser"; + "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; + "http-encodings" = dontDistribute super."http-encodings"; + "http-enumerator" = dontDistribute super."http-enumerator"; + "http-kit" = dontDistribute super."http-kit"; + "http-link-header" = dontDistribute super."http-link-header"; + "http-listen" = dontDistribute super."http-listen"; + "http-monad" = dontDistribute super."http-monad"; + "http-proxy" = dontDistribute super."http-proxy"; + "http-querystring" = dontDistribute super."http-querystring"; + "http-server" = dontDistribute super."http-server"; + "http-shed" = dontDistribute super."http-shed"; + "http-test" = dontDistribute super."http-test"; + "http-wget" = dontDistribute super."http-wget"; + "http2" = doDistribute super."http2_1_0_4"; + "httpd-shed" = dontDistribute super."httpd-shed"; + "https-everywhere-rules" = dontDistribute super."https-everywhere-rules"; + "https-everywhere-rules-raw" = dontDistribute super."https-everywhere-rules-raw"; + "httpspec" = dontDistribute super."httpspec"; + "htune" = dontDistribute super."htune"; + "htzaar" = dontDistribute super."htzaar"; + "hub" = dontDistribute super."hub"; + "hubigraph" = dontDistribute super."hubigraph"; + "hubris" = dontDistribute super."hubris"; + "huffman" = dontDistribute super."huffman"; + "hugs2yc" = dontDistribute super."hugs2yc"; + "hulk" = dontDistribute super."hulk"; + "human-readable-duration" = dontDistribute super."human-readable-duration"; + "hums" = dontDistribute super."hums"; + "hunch" = dontDistribute super."hunch"; + "hunit-gui" = dontDistribute super."hunit-gui"; + "hunit-parsec" = dontDistribute super."hunit-parsec"; + "hunit-rematch" = dontDistribute super."hunit-rematch"; + "hunp" = dontDistribute super."hunp"; + "hunt-searchengine" = dontDistribute super."hunt-searchengine"; + "hunt-server" = dontDistribute super."hunt-server"; + "hunt-server-cli" = dontDistribute super."hunt-server-cli"; + "hurdle" = dontDistribute super."hurdle"; + "husk-scheme" = dontDistribute super."husk-scheme"; + "husk-scheme-libs" = dontDistribute super."husk-scheme-libs"; + "husky" = dontDistribute super."husky"; + "hutton" = dontDistribute super."hutton"; + "huttons-razor" = dontDistribute super."huttons-razor"; + "huzzy" = dontDistribute super."huzzy"; + "hvect" = doDistribute super."hvect_0_2_0_0"; + "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; + "hws" = dontDistribute super."hws"; + "hwsl2" = dontDistribute super."hwsl2"; + "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector"; + "hwsl2-reducers" = dontDistribute super."hwsl2-reducers"; + "hx" = dontDistribute super."hx"; + "hxmppc" = dontDistribute super."hxmppc"; + "hxournal" = dontDistribute super."hxournal"; + "hxt-binary" = dontDistribute super."hxt-binary"; + "hxt-cache" = dontDistribute super."hxt-cache"; + "hxt-extras" = dontDistribute super."hxt-extras"; + "hxt-filter" = dontDistribute super."hxt-filter"; + "hxt-xpath" = dontDistribute super."hxt-xpath"; + "hxt-xslt" = dontDistribute super."hxt-xslt"; + "hxthelper" = dontDistribute super."hxthelper"; + "hxweb" = dontDistribute super."hxweb"; + "hyahtzee" = dontDistribute super."hyahtzee"; + "hyakko" = dontDistribute super."hyakko"; + "hybrid" = dontDistribute super."hybrid"; + "hybrid-vectors" = dontDistribute super."hybrid-vectors"; + "hydra-hs" = dontDistribute super."hydra-hs"; + "hydra-print" = dontDistribute super."hydra-print"; + "hydrogen" = dontDistribute super."hydrogen"; + "hydrogen-cli" = dontDistribute super."hydrogen-cli"; + "hydrogen-cli-args" = dontDistribute super."hydrogen-cli-args"; + "hydrogen-data" = dontDistribute super."hydrogen-data"; + "hydrogen-multimap" = dontDistribute super."hydrogen-multimap"; + "hydrogen-parsing" = dontDistribute super."hydrogen-parsing"; + "hydrogen-prelude" = dontDistribute super."hydrogen-prelude"; + "hydrogen-prelude-parsec" = dontDistribute super."hydrogen-prelude-parsec"; + "hydrogen-syntax" = dontDistribute super."hydrogen-syntax"; + "hydrogen-util" = dontDistribute super."hydrogen-util"; + "hydrogen-version" = dontDistribute super."hydrogen-version"; + "hyena" = dontDistribute super."hyena"; + "hylolib" = dontDistribute super."hylolib"; + "hylotab" = dontDistribute super."hylotab"; + "hyloutils" = dontDistribute super."hyloutils"; + "hyperdrive" = dontDistribute super."hyperdrive"; + "hyperfunctions" = dontDistribute super."hyperfunctions"; + "hyperpublic" = dontDistribute super."hyperpublic"; + "hyphenate" = dontDistribute super."hyphenate"; + "hypher" = dontDistribute super."hypher"; + "hzk" = dontDistribute super."hzk"; + "hzulip" = dontDistribute super."hzulip"; + "i18n" = dontDistribute super."i18n"; + "iCalendar" = dontDistribute super."iCalendar"; + "iException" = dontDistribute super."iException"; + "iap-verifier" = dontDistribute super."iap-verifier"; + "ib-api" = dontDistribute super."ib-api"; + "iban" = dontDistribute super."iban"; + "iconv" = dontDistribute super."iconv"; + "ideas" = dontDistribute super."ideas"; + "ideas-math" = dontDistribute super."ideas-math"; + "idempotent" = dontDistribute super."idempotent"; + "identifiers" = dontDistribute super."identifiers"; + "idiii" = dontDistribute super."idiii"; + "idna" = dontDistribute super."idna"; + "idna2008" = dontDistribute super."idna2008"; + "idris" = dontDistribute super."idris"; + "ieee" = dontDistribute super."ieee"; + "ieee-utils" = dontDistribute super."ieee-utils"; + "ieee-utils-tempfix" = dontDistribute super."ieee-utils-tempfix"; + "ieee754-parser" = dontDistribute super."ieee754-parser"; + "ifcxt" = dontDistribute super."ifcxt"; + "iff" = dontDistribute super."iff"; + "ifscs" = dontDistribute super."ifscs"; + "ig" = dontDistribute super."ig"; + "ige-mac-integration" = dontDistribute super."ige-mac-integration"; + "igraph" = dontDistribute super."igraph"; + "igrf" = dontDistribute super."igrf"; + "ihaskell" = doDistribute super."ihaskell_0_6_5_0"; + "ihaskell-display" = dontDistribute super."ihaskell-display"; + "ihaskell-inline-r" = dontDistribute super."ihaskell-inline-r"; + "ihaskell-parsec" = dontDistribute super."ihaskell-parsec"; + "ihaskell-plot" = dontDistribute super."ihaskell-plot"; + "ihaskell-widgets" = dontDistribute super."ihaskell-widgets"; + "ihttp" = dontDistribute super."ihttp"; + "illuminate" = dontDistribute super."illuminate"; + "image-type" = dontDistribute super."image-type"; + "imagefilters" = dontDistribute super."imagefilters"; + "imagemagick" = dontDistribute super."imagemagick"; + "imagepaste" = dontDistribute super."imagepaste"; + "imapget" = dontDistribute super."imapget"; + "imbib" = dontDistribute super."imbib"; + "imgurder" = dontDistribute super."imgurder"; + "imm" = dontDistribute super."imm"; + "imparse" = dontDistribute super."imparse"; + "implicit" = dontDistribute super."implicit"; + "implicit-params" = dontDistribute super."implicit-params"; + "imports" = dontDistribute super."imports"; + "improve" = dontDistribute super."improve"; + "inc-ref" = dontDistribute super."inc-ref"; + "inch" = dontDistribute super."inch"; + "incremental-computing" = dontDistribute super."incremental-computing"; + "incremental-sat-solver" = dontDistribute super."incremental-sat-solver"; + "increments" = dontDistribute super."increments"; + "indentation" = dontDistribute super."indentation"; + "indentparser" = dontDistribute super."indentparser"; + "index-core" = dontDistribute super."index-core"; + "indexed" = dontDistribute super."indexed"; + "indexed-do-notation" = dontDistribute super."indexed-do-notation"; + "indexed-extras" = dontDistribute super."indexed-extras"; + "indexed-free" = dontDistribute super."indexed-free"; + "indian-language-font-converter" = dontDistribute super."indian-language-font-converter"; + "indices" = dontDistribute super."indices"; + "indieweb-algorithms" = dontDistribute super."indieweb-algorithms"; + "infer-upstream" = dontDistribute super."infer-upstream"; + "infernu" = dontDistribute super."infernu"; + "infinite-search" = dontDistribute super."infinite-search"; + "infinity" = dontDistribute super."infinity"; + "infix" = dontDistribute super."infix"; + "inflist" = dontDistribute super."inflist"; + "influxdb" = dontDistribute super."influxdb"; + "informative" = dontDistribute super."informative"; + "inilist" = dontDistribute super."inilist"; + "inject" = dontDistribute super."inject"; + "inject-function" = dontDistribute super."inject-function"; + "inline-c" = dontDistribute super."inline-c"; + "inline-c-cpp" = dontDistribute super."inline-c-cpp"; + "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-r" = dontDistribute super."inline-r"; + "inquire" = dontDistribute super."inquire"; + "inserts" = dontDistribute super."inserts"; + "inspection-proxy" = dontDistribute super."inspection-proxy"; + "instant-aeson" = dontDistribute super."instant-aeson"; + "instant-bytes" = dontDistribute super."instant-bytes"; + "instant-deepseq" = dontDistribute super."instant-deepseq"; + "instant-generics" = dontDistribute super."instant-generics"; + "instant-hashable" = dontDistribute super."instant-hashable"; + "instant-zipper" = dontDistribute super."instant-zipper"; + "instinct" = dontDistribute super."instinct"; + "instrument-chord" = dontDistribute super."instrument-chord"; + "int-cast" = dontDistribute super."int-cast"; + "integer-pure" = dontDistribute super."integer-pure"; + "intel-aes" = dontDistribute super."intel-aes"; + "interchangeable" = dontDistribute super."interchangeable"; + "interleavableGen" = dontDistribute super."interleavableGen"; + "interleavableIO" = dontDistribute super."interleavableIO"; + "interleave" = dontDistribute super."interleave"; + "interlude" = dontDistribute super."interlude"; + "intern" = dontDistribute super."intern"; + "internetmarke" = dontDistribute super."internetmarke"; + "interpol" = dontDistribute super."interpol"; + "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; + "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; + "interpolation" = dontDistribute super."interpolation"; + "intricacy" = dontDistribute super."intricacy"; + "intset" = dontDistribute super."intset"; + "invertible-syntax" = dontDistribute super."invertible-syntax"; + "io-capture" = dontDistribute super."io-capture"; + "io-reactive" = dontDistribute super."io-reactive"; + "io-region" = dontDistribute super."io-region"; + "io-storage" = dontDistribute super."io-storage"; + "io-streams-http" = dontDistribute super."io-streams-http"; + "io-throttle" = dontDistribute super."io-throttle"; + "ioctl" = dontDistribute super."ioctl"; + "ioref-stable" = dontDistribute super."ioref-stable"; + "iothread" = dontDistribute super."iothread"; + "iotransaction" = dontDistribute super."iotransaction"; + "ip-quoter" = dontDistribute super."ip-quoter"; + "ipatch" = dontDistribute super."ipatch"; + "ipc" = dontDistribute super."ipc"; + "ipcvar" = dontDistribute super."ipcvar"; + "ipopt-hs" = dontDistribute super."ipopt-hs"; + "ipprint" = dontDistribute super."ipprint"; + "iproute" = doDistribute super."iproute_1_5_0"; + "iptables-helpers" = dontDistribute super."iptables-helpers"; + "iptadmin" = dontDistribute super."iptadmin"; + "ipython-kernel" = doDistribute super."ipython-kernel_0_6_1_3"; + "irc" = dontDistribute super."irc"; + "irc-bytestring" = dontDistribute super."irc-bytestring"; + "irc-client" = dontDistribute super."irc-client"; + "irc-colors" = dontDistribute super."irc-colors"; + "irc-conduit" = dontDistribute super."irc-conduit"; + "irc-core" = dontDistribute super."irc-core"; + "irc-ctcp" = dontDistribute super."irc-ctcp"; + "irc-fun-bot" = dontDistribute super."irc-fun-bot"; + "irc-fun-client" = dontDistribute super."irc-fun-client"; + "irc-fun-color" = dontDistribute super."irc-fun-color"; + "irc-fun-messages" = dontDistribute super."irc-fun-messages"; + "ircbot" = dontDistribute super."ircbot"; + "ircbouncer" = dontDistribute super."ircbouncer"; + "ireal" = dontDistribute super."ireal"; + "iron-mq" = dontDistribute super."iron-mq"; + "ironforge" = dontDistribute super."ironforge"; + "is" = dontDistribute super."is"; + "isdicom" = dontDistribute super."isdicom"; + "isevaluated" = dontDistribute super."isevaluated"; + "isiz" = dontDistribute super."isiz"; + "ismtp" = dontDistribute super."ismtp"; + "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; + "iso8601-time" = dontDistribute super."iso8601-time"; + "isohunt" = dontDistribute super."isohunt"; + "itanium-abi" = dontDistribute super."itanium-abi"; + "iter-stats" = dontDistribute super."iter-stats"; + "iterIO" = dontDistribute super."iterIO"; + "iteratee" = dontDistribute super."iteratee"; + "iteratee-compress" = dontDistribute super."iteratee-compress"; + "iteratee-mtl" = dontDistribute super."iteratee-mtl"; + "iteratee-parsec" = dontDistribute super."iteratee-parsec"; + "iteratee-stm" = dontDistribute super."iteratee-stm"; + "iterio-server" = dontDistribute super."iterio-server"; + "ivar-simple" = dontDistribute super."ivar-simple"; + "ivor" = dontDistribute super."ivor"; + "ivory" = dontDistribute super."ivory"; + "ivory-backend-c" = dontDistribute super."ivory-backend-c"; + "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-examples" = dontDistribute super."ivory-examples"; + "ivory-hw" = dontDistribute super."ivory-hw"; + "ivory-opts" = dontDistribute super."ivory-opts"; + "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-stdlib" = dontDistribute super."ivory-stdlib"; + "ivy-web" = dontDistribute super."ivy-web"; + "ix-shapable" = dontDistribute super."ix-shapable"; + "ixdopp" = dontDistribute super."ixdopp"; + "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = dontDistribute super."ixset"; + "ixset-typed" = dontDistribute super."ixset-typed"; + "iyql" = dontDistribute super."iyql"; + "j2hs" = dontDistribute super."j2hs"; + "ja-base-extra" = dontDistribute super."ja-base-extra"; + "jack" = dontDistribute super."jack"; + "jack-bindings" = dontDistribute super."jack-bindings"; + "jackminimix" = dontDistribute super."jackminimix"; + "jacobi-roots" = dontDistribute super."jacobi-roots"; + "jail" = dontDistribute super."jail"; + "jailbreak-cabal" = dontDistribute super."jailbreak-cabal"; + "jalaali" = dontDistribute super."jalaali"; + "jalla" = dontDistribute super."jalla"; + "jammittools" = dontDistribute super."jammittools"; + "jarfind" = dontDistribute super."jarfind"; + "java-bridge" = dontDistribute super."java-bridge"; + "java-bridge-extras" = dontDistribute super."java-bridge-extras"; + "java-character" = dontDistribute super."java-character"; + "java-reflect" = dontDistribute super."java-reflect"; + "javasf" = dontDistribute super."javasf"; + "javav" = dontDistribute super."javav"; + "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; + "jdi" = dontDistribute super."jdi"; + "jespresso" = dontDistribute super."jespresso"; + "jobqueue" = dontDistribute super."jobqueue"; + "join" = dontDistribute super."join"; + "joinlist" = dontDistribute super."joinlist"; + "jonathanscard" = dontDistribute super."jonathanscard"; + "jort" = dontDistribute super."jort"; + "jose" = dontDistribute super."jose"; + "jose-jwt" = doDistribute super."jose-jwt_0_6_2"; + "jpeg" = dontDistribute super."jpeg"; + "js-good-parts" = dontDistribute super."js-good-parts"; + "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-hello" = dontDistribute super."jsaddle-hello"; + "jsc" = dontDistribute super."jsc"; + "jsmw" = dontDistribute super."jsmw"; + "json-assertions" = dontDistribute super."json-assertions"; + "json-b" = dontDistribute super."json-b"; + "json-enumerator" = dontDistribute super."json-enumerator"; + "json-extra" = dontDistribute super."json-extra"; + "json-fu" = dontDistribute super."json-fu"; + "json-litobj" = dontDistribute super."json-litobj"; + "json-python" = dontDistribute super."json-python"; + "json-qq" = dontDistribute super."json-qq"; + "json-rpc" = dontDistribute super."json-rpc"; + "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-server" = dontDistribute super."json-rpc-server"; + "json-sop" = dontDistribute super."json-sop"; + "json-state" = dontDistribute super."json-state"; + "json-stream" = dontDistribute super."json-stream"; + "json-togo" = dontDistribute super."json-togo"; + "json-tools" = dontDistribute super."json-tools"; + "json-types" = dontDistribute super."json-types"; + "json2" = dontDistribute super."json2"; + "json2-hdbc" = dontDistribute super."json2-hdbc"; + "json2-types" = dontDistribute super."json2-types"; + "json2yaml" = dontDistribute super."json2yaml"; + "jsonresume" = dontDistribute super."jsonresume"; + "jsonrpc-conduit" = dontDistribute super."jsonrpc-conduit"; + "jsonschema-gen" = dontDistribute super."jsonschema-gen"; + "jsonsql" = dontDistribute super."jsonsql"; + "jsontsv" = dontDistribute super."jsontsv"; + "jspath" = dontDistribute super."jspath"; + "judy" = dontDistribute super."judy"; + "jukebox" = dontDistribute super."jukebox"; + "jumpthefive" = dontDistribute super."jumpthefive"; + "jvm-parser" = dontDistribute super."jvm-parser"; + "kademlia" = dontDistribute super."kademlia"; + "kafka-client" = dontDistribute super."kafka-client"; + "kangaroo" = dontDistribute super."kangaroo"; + "kansas-comet" = dontDistribute super."kansas-comet"; + "kansas-lava" = dontDistribute super."kansas-lava"; + "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; + "kansas-lava-papilio" = dontDistribute super."kansas-lava-papilio"; + "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; + "karakuri" = dontDistribute super."karakuri"; + "karver" = dontDistribute super."karver"; + "katt" = dontDistribute super."katt"; + "kbq-gu" = dontDistribute super."kbq-gu"; + "kd-tree" = dontDistribute super."kd-tree"; + "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "keera-callbacks" = dontDistribute super."keera-callbacks"; + "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; + "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; + "keera-hails-mvc-environment-gtk" = dontDistribute super."keera-hails-mvc-environment-gtk"; + "keera-hails-mvc-model-lightmodel" = dontDistribute super."keera-hails-mvc-model-lightmodel"; + "keera-hails-mvc-model-protectedmodel" = dontDistribute super."keera-hails-mvc-model-protectedmodel"; + "keera-hails-mvc-solutions-config" = dontDistribute super."keera-hails-mvc-solutions-config"; + "keera-hails-mvc-solutions-gtk" = dontDistribute super."keera-hails-mvc-solutions-gtk"; + "keera-hails-mvc-view" = dontDistribute super."keera-hails-mvc-view"; + "keera-hails-mvc-view-gtk" = dontDistribute super."keera-hails-mvc-view-gtk"; + "keera-hails-reactive-fs" = dontDistribute super."keera-hails-reactive-fs"; + "keera-hails-reactive-gtk" = dontDistribute super."keera-hails-reactive-gtk"; + "keera-hails-reactive-network" = dontDistribute super."keera-hails-reactive-network"; + "keera-hails-reactive-polling" = dontDistribute super."keera-hails-reactive-polling"; + "keera-hails-reactive-wx" = dontDistribute super."keera-hails-reactive-wx"; + "keera-hails-reactive-yampa" = dontDistribute super."keera-hails-reactive-yampa"; + "keera-hails-reactivevalues" = dontDistribute super."keera-hails-reactivevalues"; + "keera-posture" = dontDistribute super."keera-posture"; + "keiretsu" = dontDistribute super."keiretsu"; + "kevin" = dontDistribute super."kevin"; + "keyed" = dontDistribute super."keyed"; + "keyring" = dontDistribute super."keyring"; + "keystore" = dontDistribute super."keystore"; + "keyvaluehash" = dontDistribute super."keyvaluehash"; + "keyword-args" = dontDistribute super."keyword-args"; + "kibro" = dontDistribute super."kibro"; + "kicad-data" = dontDistribute super."kicad-data"; + "kickass-torrents-dump-parser" = dontDistribute super."kickass-torrents-dump-parser"; + "kickchan" = dontDistribute super."kickchan"; + "kif-parser" = dontDistribute super."kif-parser"; + "kinds" = dontDistribute super."kinds"; + "kit" = dontDistribute super."kit"; + "kmeans-par" = dontDistribute super."kmeans-par"; + "kmeans-vector" = dontDistribute super."kmeans-vector"; + "knots" = dontDistribute super."knots"; + "koellner-phonetic" = dontDistribute super."koellner-phonetic"; + "kontrakcja-templates" = dontDistribute super."kontrakcja-templates"; + "korfu" = dontDistribute super."korfu"; + "kqueue" = dontDistribute super."kqueue"; + "kraken" = dontDistribute super."kraken"; + "krpc" = dontDistribute super."krpc"; + "ks-test" = dontDistribute super."ks-test"; + "ktx" = dontDistribute super."ktx"; + "kure-your-boilerplate" = dontDistribute super."kure-your-boilerplate"; + "kyotocabinet" = dontDistribute super."kyotocabinet"; + "l-bfgs-b" = dontDistribute super."l-bfgs-b"; + "labeled-graph" = dontDistribute super."labeled-graph"; + "labeled-tree" = dontDistribute super."labeled-tree"; + "laborantin-hs" = dontDistribute super."laborantin-hs"; + "labyrinth" = dontDistribute super."labyrinth"; + "labyrinth-server" = dontDistribute super."labyrinth-server"; + "lackey" = dontDistribute super."lackey"; + "lagrangian" = dontDistribute super."lagrangian"; + "laika" = dontDistribute super."laika"; + "lambda-ast" = dontDistribute super."lambda-ast"; + "lambda-bridge" = dontDistribute super."lambda-bridge"; + "lambda-canvas" = dontDistribute super."lambda-canvas"; + "lambda-devs" = dontDistribute super."lambda-devs"; + "lambda-options" = dontDistribute super."lambda-options"; + "lambda-placeholders" = dontDistribute super."lambda-placeholders"; + "lambda-toolbox" = dontDistribute super."lambda-toolbox"; + "lambda2js" = dontDistribute super."lambda2js"; + "lambdaBase" = dontDistribute super."lambdaBase"; + "lambdaFeed" = dontDistribute super."lambdaFeed"; + "lambdaLit" = dontDistribute super."lambdaLit"; + "lambdabot-utils" = dontDistribute super."lambdabot-utils"; + "lambdacat" = dontDistribute super."lambdacat"; + "lambdacms-core" = dontDistribute super."lambdacms-core"; + "lambdacms-media" = dontDistribute super."lambdacms-media"; + "lambdacube" = dontDistribute super."lambdacube"; + "lambdacube-bullet" = dontDistribute super."lambdacube-bullet"; + "lambdacube-core" = dontDistribute super."lambdacube-core"; + "lambdacube-edsl" = dontDistribute super."lambdacube-edsl"; + "lambdacube-engine" = dontDistribute super."lambdacube-engine"; + "lambdacube-examples" = dontDistribute super."lambdacube-examples"; + "lambdacube-gl" = dontDistribute super."lambdacube-gl"; + "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatwit" = dontDistribute super."lambdatwit"; + "lambdiff" = dontDistribute super."lambdiff"; + "lame-tester" = dontDistribute super."lame-tester"; + "language-asn1" = dontDistribute super."language-asn1"; + "language-bash" = dontDistribute super."language-bash"; + "language-boogie" = dontDistribute super."language-boogie"; + "language-c-comments" = dontDistribute super."language-c-comments"; + "language-c-inline" = dontDistribute super."language-c-inline"; + "language-cil" = dontDistribute super."language-cil"; + "language-css" = dontDistribute super."language-css"; + "language-dot" = dontDistribute super."language-dot"; + "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; + "language-eiffel" = dontDistribute super."language-eiffel"; + "language-fortran" = dontDistribute super."language-fortran"; + "language-gcl" = dontDistribute super."language-gcl"; + "language-go" = dontDistribute super."language-go"; + "language-guess" = dontDistribute super."language-guess"; + "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-kort" = dontDistribute super."language-kort"; + "language-lua" = dontDistribute super."language-lua"; + "language-lua-qq" = dontDistribute super."language-lua-qq"; + "language-lua2" = dontDistribute super."language-lua2"; + "language-mixal" = dontDistribute super."language-mixal"; + "language-nix" = dontDistribute super."language-nix"; + "language-objc" = dontDistribute super."language-objc"; + "language-openscad" = dontDistribute super."language-openscad"; + "language-pig" = dontDistribute super."language-pig"; + "language-puppet" = dontDistribute super."language-puppet"; + "language-python" = dontDistribute super."language-python"; + "language-python-colour" = dontDistribute super."language-python-colour"; + "language-python-test" = dontDistribute super."language-python-test"; + "language-qux" = dontDistribute super."language-qux"; + "language-sh" = dontDistribute super."language-sh"; + "language-slice" = dontDistribute super."language-slice"; + "language-spelling" = dontDistribute super."language-spelling"; + "language-sqlite" = dontDistribute super."language-sqlite"; + "language-thrift" = dontDistribute super."language-thrift"; + "language-typescript" = dontDistribute super."language-typescript"; + "language-vhdl" = dontDistribute super."language-vhdl"; + "lat" = dontDistribute super."lat"; + "latest-npm-version" = dontDistribute super."latest-npm-version"; + "latex" = dontDistribute super."latex"; + "lattices" = doDistribute super."lattices_1_3"; + "launchpad-control" = dontDistribute super."launchpad-control"; + "lax" = dontDistribute super."lax"; + "layers" = dontDistribute super."layers"; + "layers-game" = dontDistribute super."layers-game"; + "layout" = dontDistribute super."layout"; + "layout-bootstrap" = dontDistribute super."layout-bootstrap"; + "lazy-io" = dontDistribute super."lazy-io"; + "lazyarray" = dontDistribute super."lazyarray"; + "lazyio" = dontDistribute super."lazyio"; + "lazysplines" = dontDistribute super."lazysplines"; + "lbfgs" = dontDistribute super."lbfgs"; + "lcs" = dontDistribute super."lcs"; + "lda" = dontDistribute super."lda"; + "ldap-client" = dontDistribute super."ldap-client"; + "ldif" = dontDistribute super."ldif"; + "leaf" = dontDistribute super."leaf"; + "leaky" = dontDistribute super."leaky"; + "leankit-api" = dontDistribute super."leankit-api"; + "leapseconds-announced" = dontDistribute super."leapseconds-announced"; + "learn" = dontDistribute super."learn"; + "learn-physics" = dontDistribute super."learn-physics"; + "learn-physics-examples" = dontDistribute super."learn-physics-examples"; + "learning-hmm" = dontDistribute super."learning-hmm"; + "leetify" = dontDistribute super."leetify"; + "leksah" = dontDistribute super."leksah"; + "leksah-server" = dontDistribute super."leksah-server"; + "lendingclub" = dontDistribute super."lendingclub"; + "lens-datetime" = dontDistribute super."lens-datetime"; + "lens-properties" = dontDistribute super."lens-properties"; + "lens-regex" = dontDistribute super."lens-regex"; + "lens-sop" = dontDistribute super."lens-sop"; + "lens-text-encoding" = dontDistribute super."lens-text-encoding"; + "lens-time" = dontDistribute super."lens-time"; + "lens-tutorial" = dontDistribute super."lens-tutorial"; + "lenses" = dontDistribute super."lenses"; + "lensref" = dontDistribute super."lensref"; + "lentil" = dontDistribute super."lentil"; + "level-monad" = dontDistribute super."level-monad"; + "leveldb-haskell" = dontDistribute super."leveldb-haskell"; + "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; + "levmar" = dontDistribute super."levmar"; + "levmar-chart" = dontDistribute super."levmar-chart"; + "lgtk" = dontDistribute super."lgtk"; + "lha" = dontDistribute super."lha"; + "lhae" = dontDistribute super."lhae"; + "lhc" = dontDistribute super."lhc"; + "lhe" = dontDistribute super."lhe"; + "lhs2TeX-hl" = dontDistribute super."lhs2TeX-hl"; + "lhs2html" = dontDistribute super."lhs2html"; + "lhslatex" = dontDistribute super."lhslatex"; + "libGenI" = dontDistribute super."libGenI"; + "libarchive-conduit" = dontDistribute super."libarchive-conduit"; + "libconfig" = dontDistribute super."libconfig"; + "libcspm" = dontDistribute super."libcspm"; + "libexpect" = dontDistribute super."libexpect"; + "libffi" = dontDistribute super."libffi"; + "libgraph" = dontDistribute super."libgraph"; + "libhbb" = dontDistribute super."libhbb"; + "libinfluxdb" = dontDistribute super."libinfluxdb"; + "libjenkins" = dontDistribute super."libjenkins"; + "liblastfm" = dontDistribute super."liblastfm"; + "liblinear-enumerator" = dontDistribute super."liblinear-enumerator"; + "libltdl" = dontDistribute super."libltdl"; + "libmpd" = dontDistribute super."libmpd"; + "libnvvm" = dontDistribute super."libnvvm"; + "liboleg" = dontDistribute super."liboleg"; + "libpafe" = dontDistribute super."libpafe"; + "libpq" = dontDistribute super."libpq"; + "librandomorg" = dontDistribute super."librandomorg"; + "libravatar" = dontDistribute super."libravatar"; + "libssh2" = dontDistribute super."libssh2"; + "libssh2-conduit" = dontDistribute super."libssh2-conduit"; + "libstackexchange" = dontDistribute super."libstackexchange"; + "libsystemd-daemon" = dontDistribute super."libsystemd-daemon"; + "libsystemd-journal" = dontDistribute super."libsystemd-journal"; + "libtagc" = dontDistribute super."libtagc"; + "libvirt-hs" = dontDistribute super."libvirt-hs"; + "libvorbis" = dontDistribute super."libvorbis"; + "libxml" = dontDistribute super."libxml"; + "libxml-enumerator" = dontDistribute super."libxml-enumerator"; + "libxslt" = dontDistribute super."libxslt"; + "life" = dontDistribute super."life"; + "lifted-threads" = dontDistribute super."lifted-threads"; + "lifter" = dontDistribute super."lifter"; + "ligature" = dontDistribute super."ligature"; + "ligd" = dontDistribute super."ligd"; + "lighttpd-conf" = dontDistribute super."lighttpd-conf"; + "lighttpd-conf-qq" = dontDistribute super."lighttpd-conf-qq"; + "lilypond" = dontDistribute super."lilypond"; + "limp" = dontDistribute super."limp"; + "limp-cbc" = dontDistribute super."limp-cbc"; + "lin-alg" = dontDistribute super."lin-alg"; + "linda" = dontDistribute super."linda"; + "lindenmayer" = dontDistribute super."lindenmayer"; + "line-break" = dontDistribute super."line-break"; + "line2pdf" = dontDistribute super."line2pdf"; + "linear-algebra-cblas" = dontDistribute super."linear-algebra-cblas"; + "linear-circuit" = dontDistribute super."linear-circuit"; + "linear-grammar" = dontDistribute super."linear-grammar"; + "linear-maps" = dontDistribute super."linear-maps"; + "linear-opengl" = dontDistribute super."linear-opengl"; + "linear-vect" = dontDistribute super."linear-vect"; + "linearEqSolver" = dontDistribute super."linearEqSolver"; + "linearscan" = dontDistribute super."linearscan"; + "linearscan-hoopl" = dontDistribute super."linearscan-hoopl"; + "linebreak" = dontDistribute super."linebreak"; + "linguistic-ordinals" = dontDistribute super."linguistic-ordinals"; + "linkchk" = dontDistribute super."linkchk"; + "linkcore" = dontDistribute super."linkcore"; + "linkedhashmap" = dontDistribute super."linkedhashmap"; + "linklater" = dontDistribute super."linklater"; + "linux-blkid" = dontDistribute super."linux-blkid"; + "linux-cgroup" = dontDistribute super."linux-cgroup"; + "linux-evdev" = dontDistribute super."linux-evdev"; + "linux-inotify" = dontDistribute super."linux-inotify"; + "linux-kmod" = dontDistribute super."linux-kmod"; + "linux-mount" = dontDistribute super."linux-mount"; + "linux-perf" = dontDistribute super."linux-perf"; + "linux-ptrace" = dontDistribute super."linux-ptrace"; + "linux-xattr" = dontDistribute super."linux-xattr"; + "linx-gateway" = dontDistribute super."linx-gateway"; + "lio" = dontDistribute super."lio"; + "lio-eci11" = dontDistribute super."lio-eci11"; + "lio-fs" = dontDistribute super."lio-fs"; + "lio-simple" = dontDistribute super."lio-simple"; + "lipsum-gen" = dontDistribute super."lipsum-gen"; + "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; + "liquidhaskell" = dontDistribute super."liquidhaskell"; + "lispparser" = dontDistribute super."lispparser"; + "list-extras" = dontDistribute super."list-extras"; + "list-grouping" = dontDistribute super."list-grouping"; + "list-mux" = dontDistribute super."list-mux"; + "list-remote-forwards" = dontDistribute super."list-remote-forwards"; + "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; + "list-t-html-parser" = dontDistribute super."list-t-html-parser"; + "list-t-http-client" = dontDistribute super."list-t-http-client"; + "list-t-libcurl" = dontDistribute super."list-t-libcurl"; + "list-t-text" = dontDistribute super."list-t-text"; + "list-tries" = dontDistribute super."list-tries"; + "listlike-instances" = dontDistribute super."listlike-instances"; + "lists" = dontDistribute super."lists"; + "listsafe" = dontDistribute super."listsafe"; + "lit" = dontDistribute super."lit"; + "literals" = dontDistribute super."literals"; + "live-sequencer" = dontDistribute super."live-sequencer"; + "ll-picosat" = dontDistribute super."ll-picosat"; + "llrbtree" = dontDistribute super."llrbtree"; + "llsd" = dontDistribute super."llsd"; + "llvm" = dontDistribute super."llvm"; + "llvm-analysis" = dontDistribute super."llvm-analysis"; + "llvm-base" = dontDistribute super."llvm-base"; + "llvm-base-types" = dontDistribute super."llvm-base-types"; + "llvm-base-util" = dontDistribute super."llvm-base-util"; + "llvm-data-interop" = dontDistribute super."llvm-data-interop"; + "llvm-extra" = dontDistribute super."llvm-extra"; + "llvm-ffi" = dontDistribute super."llvm-ffi"; + "llvm-general" = dontDistribute super."llvm-general"; + "llvm-general-pure" = dontDistribute super."llvm-general-pure"; + "llvm-general-quote" = dontDistribute super."llvm-general-quote"; + "llvm-ht" = dontDistribute super."llvm-ht"; + "llvm-pkg-config" = dontDistribute super."llvm-pkg-config"; + "llvm-pretty" = dontDistribute super."llvm-pretty"; + "llvm-pretty-bc-parser" = dontDistribute super."llvm-pretty-bc-parser"; + "llvm-tf" = dontDistribute super."llvm-tf"; + "llvm-tools" = dontDistribute super."llvm-tools"; + "lmdb" = dontDistribute super."lmdb"; + "load-env" = dontDistribute super."load-env"; + "loadavg" = dontDistribute super."loadavg"; + "local-address" = dontDistribute super."local-address"; + "local-search" = dontDistribute super."local-search"; + "located-base" = dontDistribute super."located-base"; + "locators" = dontDistribute super."locators"; + "loch" = dontDistribute super."loch"; + "lock-file" = dontDistribute super."lock-file"; + "lockfree-queue" = dontDistribute super."lockfree-queue"; + "log" = dontDistribute super."log"; + "log-effect" = dontDistribute super."log-effect"; + "log2json" = dontDistribute super."log2json"; + "logfloat" = dontDistribute super."logfloat"; + "logger" = dontDistribute super."logger"; + "logging" = dontDistribute super."logging"; + "logging-facade-journald" = dontDistribute super."logging-facade-journald"; + "logic-TPTP" = dontDistribute super."logic-TPTP"; + "logic-classes" = dontDistribute super."logic-classes"; + "logicst" = dontDistribute super."logicst"; + "logsink" = dontDistribute super."logsink"; + "lojban" = dontDistribute super."lojban"; + "lojbanParser" = dontDistribute super."lojbanParser"; + "lojbanXiragan" = dontDistribute super."lojbanXiragan"; + "lojysamban" = dontDistribute super."lojysamban"; + "loli" = dontDistribute super."loli"; + "lookup-tables" = dontDistribute super."lookup-tables"; + "loop" = doDistribute super."loop_0_2_0"; + "loop-effin" = dontDistribute super."loop-effin"; + "loop-while" = dontDistribute super."loop-while"; + "loops" = dontDistribute super."loops"; + "loopy" = dontDistribute super."loopy"; + "lord" = dontDistribute super."lord"; + "lorem" = dontDistribute super."lorem"; + "loris" = dontDistribute super."loris"; + "loshadka" = dontDistribute super."loshadka"; + "lostcities" = dontDistribute super."lostcities"; + "lowgl" = dontDistribute super."lowgl"; + "ls-usb" = dontDistribute super."ls-usb"; + "lscabal" = dontDistribute super."lscabal"; + "lss" = dontDistribute super."lss"; + "lsystem" = dontDistribute super."lsystem"; + "ltk" = dontDistribute super."ltk"; + "ltl" = dontDistribute super."ltl"; + "lua-bytecode" = dontDistribute super."lua-bytecode"; + "luachunk" = dontDistribute super."luachunk"; + "luautils" = dontDistribute super."luautils"; + "lub" = dontDistribute super."lub"; + "lucid-foundation" = dontDistribute super."lucid-foundation"; + "lucienne" = dontDistribute super."lucienne"; + "luhn" = dontDistribute super."luhn"; + "lui" = dontDistribute super."lui"; + "luka" = dontDistribute super."luka"; + "luminance" = dontDistribute super."luminance"; + "luminance-samples" = dontDistribute super."luminance-samples"; + "lushtags" = dontDistribute super."lushtags"; + "luthor" = dontDistribute super."luthor"; + "lvish" = dontDistribute super."lvish"; + "lvmlib" = dontDistribute super."lvmlib"; + "lvmrun" = dontDistribute super."lvmrun"; + "lxc" = dontDistribute super."lxc"; + "lye" = dontDistribute super."lye"; + "lz4" = dontDistribute super."lz4"; + "lzma" = dontDistribute super."lzma"; + "lzma-clib" = dontDistribute super."lzma-clib"; + "lzma-enumerator" = dontDistribute super."lzma-enumerator"; + "lzma-streams" = dontDistribute super."lzma-streams"; + "maam" = dontDistribute super."maam"; + "mac" = dontDistribute super."mac"; + "maccatcher" = dontDistribute super."maccatcher"; + "machinecell" = dontDistribute super."machinecell"; + "machines-zlib" = dontDistribute super."machines-zlib"; + "macho" = dontDistribute super."macho"; + "maclight" = dontDistribute super."maclight"; + "macosx-make-standalone" = dontDistribute super."macosx-make-standalone"; + "mage" = dontDistribute super."mage"; + "magico" = dontDistribute super."magico"; + "magma" = dontDistribute super."magma"; + "mahoro" = dontDistribute super."mahoro"; + "maid" = dontDistribute super."maid"; + "mailbox-count" = dontDistribute super."mailbox-count"; + "mailchimp-subscribe" = dontDistribute super."mailchimp-subscribe"; + "mailgun" = dontDistribute super."mailgun"; + "majordomo" = dontDistribute super."majordomo"; + "majority" = dontDistribute super."majority"; + "make-hard-links" = dontDistribute super."make-hard-links"; + "make-package" = dontDistribute super."make-package"; + "makedo" = dontDistribute super."makedo"; + "manatee" = dontDistribute super."manatee"; + "manatee-all" = dontDistribute super."manatee-all"; + "manatee-anything" = dontDistribute super."manatee-anything"; + "manatee-browser" = dontDistribute super."manatee-browser"; + "manatee-core" = dontDistribute super."manatee-core"; + "manatee-curl" = dontDistribute super."manatee-curl"; + "manatee-editor" = dontDistribute super."manatee-editor"; + "manatee-filemanager" = dontDistribute super."manatee-filemanager"; + "manatee-imageviewer" = dontDistribute super."manatee-imageviewer"; + "manatee-ircclient" = dontDistribute super."manatee-ircclient"; + "manatee-mplayer" = dontDistribute super."manatee-mplayer"; + "manatee-pdfviewer" = dontDistribute super."manatee-pdfviewer"; + "manatee-processmanager" = dontDistribute super."manatee-processmanager"; + "manatee-reader" = dontDistribute super."manatee-reader"; + "manatee-template" = dontDistribute super."manatee-template"; + "manatee-terminal" = dontDistribute super."manatee-terminal"; + "manatee-welcome" = dontDistribute super."manatee-welcome"; + "mancala" = dontDistribute super."mancala"; + "mandrill" = doDistribute super."mandrill_0_3_0_0"; + "mandulia" = dontDistribute super."mandulia"; + "manifolds" = dontDistribute super."manifolds"; + "marionetta" = dontDistribute super."marionetta"; + "markdown-kate" = dontDistribute super."markdown-kate"; + "markdown-pap" = dontDistribute super."markdown-pap"; + "markdown-unlit" = dontDistribute super."markdown-unlit"; + "markdown2svg" = dontDistribute super."markdown2svg"; + "marked-pretty" = dontDistribute super."marked-pretty"; + "markov" = dontDistribute super."markov"; + "markov-chain" = dontDistribute super."markov-chain"; + "markov-processes" = dontDistribute super."markov-processes"; + "markup-preview" = dontDistribute super."markup-preview"; + "marmalade-upload" = dontDistribute super."marmalade-upload"; + "marquise" = dontDistribute super."marquise"; + "marxup" = dontDistribute super."marxup"; + "masakazu-bot" = dontDistribute super."masakazu-bot"; + "mastermind" = dontDistribute super."mastermind"; + "matchers" = dontDistribute super."matchers"; + "mathblog" = dontDistribute super."mathblog"; + "mathgenealogy" = dontDistribute super."mathgenealogy"; + "mathista" = dontDistribute super."mathista"; + "mathlink" = dontDistribute super."mathlink"; + "matlab" = dontDistribute super."matlab"; + "matrix-market" = dontDistribute super."matrix-market"; + "matrix-market-pure" = dontDistribute super."matrix-market-pure"; + "matsuri" = dontDistribute super."matsuri"; + "maude" = dontDistribute super."maude"; + "maxent" = dontDistribute super."maxent"; + "maxsharing" = dontDistribute super."maxsharing"; + "maybe-justify" = dontDistribute super."maybe-justify"; + "maybench" = dontDistribute super."maybench"; + "mbox-tools" = dontDistribute super."mbox-tools"; + "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; + "mcmc-samplers" = dontDistribute super."mcmc-samplers"; + "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; + "mcmc-types" = dontDistribute super."mcmc-types"; + "mcpi" = dontDistribute super."mcpi"; + "mdcat" = dontDistribute super."mdcat"; + "mdo" = dontDistribute super."mdo"; + "mecab" = dontDistribute super."mecab"; + "mecha" = dontDistribute super."mecha"; + "mediawiki" = dontDistribute super."mediawiki"; + "mediawiki2latex" = dontDistribute super."mediawiki2latex"; + "meep" = dontDistribute super."meep"; + "mega-sdist" = dontDistribute super."mega-sdist"; + "megaparsec" = dontDistribute super."megaparsec"; + "meldable-heap" = dontDistribute super."meldable-heap"; + "melody" = dontDistribute super."melody"; + "memcache" = dontDistribute super."memcache"; + "memcache-conduit" = dontDistribute super."memcache-conduit"; + "memcache-haskell" = dontDistribute super."memcache-haskell"; + "memcached" = dontDistribute super."memcached"; + "memexml" = dontDistribute super."memexml"; + "memo-ptr" = dontDistribute super."memo-ptr"; + "memo-sqlite" = dontDistribute super."memo-sqlite"; + "memory" = doDistribute super."memory_0_7"; + "memscript" = dontDistribute super."memscript"; + "mersenne-random" = dontDistribute super."mersenne-random"; + "messente" = dontDistribute super."messente"; + "meta-misc" = dontDistribute super."meta-misc"; + "meta-par" = dontDistribute super."meta-par"; + "meta-par-accelerate" = dontDistribute super."meta-par-accelerate"; + "metadata" = dontDistribute super."metadata"; + "metamorphic" = dontDistribute super."metamorphic"; + "metaplug" = dontDistribute super."metaplug"; + "metric" = dontDistribute super."metric"; + "metricsd-client" = dontDistribute super."metricsd-client"; + "metronome" = dontDistribute super."metronome"; + "mezzolens" = dontDistribute super."mezzolens"; + "mfsolve" = dontDistribute super."mfsolve"; + "mgeneric" = dontDistribute super."mgeneric"; + "mi" = dontDistribute super."mi"; + "microbench" = dontDistribute super."microbench"; + "microformats2-parser" = dontDistribute super."microformats2-parser"; + "microformats2-types" = dontDistribute super."microformats2-types"; + "microlens" = doDistribute super."microlens_0_2_0_0"; + "microlens-each" = dontDistribute super."microlens-each"; + "microlens-ghc" = doDistribute super."microlens-ghc_0_1_0_1"; + "microlens-mtl" = doDistribute super."microlens-mtl_0_1_4_0"; + "microlens-platform" = dontDistribute super."microlens-platform"; + "microlens-th" = doDistribute super."microlens-th_0_2_1_1"; + "microtimer" = dontDistribute super."microtimer"; + "mida" = dontDistribute super."mida"; + "midi" = dontDistribute super."midi"; + "midi-alsa" = dontDistribute super."midi-alsa"; + "midi-music-box" = dontDistribute super."midi-music-box"; + "midi-util" = dontDistribute super."midi-util"; + "midimory" = dontDistribute super."midimory"; + "midisurface" = dontDistribute super."midisurface"; + "mighttpd" = dontDistribute super."mighttpd"; + "mighttpd2" = dontDistribute super."mighttpd2"; + "mighty-metropolis" = dontDistribute super."mighty-metropolis"; + "mikmod" = dontDistribute super."mikmod"; + "miku" = dontDistribute super."miku"; + "milena" = dontDistribute super."milena"; + "mime" = dontDistribute super."mime"; + "mime-directory" = dontDistribute super."mime-directory"; + "mime-string" = dontDistribute super."mime-string"; + "mines" = dontDistribute super."mines"; + "minesweeper" = dontDistribute super."minesweeper"; + "miniball" = dontDistribute super."miniball"; + "miniforth" = dontDistribute super."miniforth"; + "minimal-configuration" = dontDistribute super."minimal-configuration"; + "minimorph" = dontDistribute super."minimorph"; + "minimung" = dontDistribute super."minimung"; + "minions" = dontDistribute super."minions"; + "minioperational" = dontDistribute super."minioperational"; + "miniplex" = dontDistribute super."miniplex"; + "minirotate" = dontDistribute super."minirotate"; + "minisat" = dontDistribute super."minisat"; + "ministg" = dontDistribute super."ministg"; + "miniutter" = dontDistribute super."miniutter"; + "minst-idx" = dontDistribute super."minst-idx"; + "mirror-tweet" = dontDistribute super."mirror-tweet"; + "missing-py2" = dontDistribute super."missing-py2"; + "mix-arrows" = dontDistribute super."mix-arrows"; + "mixed-strategies" = dontDistribute super."mixed-strategies"; + "mkbndl" = dontDistribute super."mkbndl"; + "mkcabal" = dontDistribute super."mkcabal"; + "ml-w" = dontDistribute super."ml-w"; + "mlist" = dontDistribute super."mlist"; + "mmtl" = dontDistribute super."mmtl"; + "mmtl-base" = dontDistribute super."mmtl-base"; + "moan" = dontDistribute super."moan"; + "modbus-tcp" = dontDistribute super."modbus-tcp"; + "modelicaparser" = dontDistribute super."modelicaparser"; + "modsplit" = dontDistribute super."modsplit"; + "modular-arithmetic" = dontDistribute super."modular-arithmetic"; + "modular-prelude" = dontDistribute super."modular-prelude"; + "modular-prelude-classy" = dontDistribute super."modular-prelude-classy"; + "module-management" = dontDistribute super."module-management"; + "modulespection" = dontDistribute super."modulespection"; + "modulo" = dontDistribute super."modulo"; + "moe" = dontDistribute super."moe"; + "moesocks" = dontDistribute super."moesocks"; + "mohws" = dontDistribute super."mohws"; + "mole" = dontDistribute super."mole"; + "monad-abort-fd" = dontDistribute super."monad-abort-fd"; + "monad-atom" = dontDistribute super."monad-atom"; + "monad-atom-simple" = dontDistribute super."monad-atom-simple"; + "monad-bool" = dontDistribute super."monad-bool"; + "monad-classes" = dontDistribute super."monad-classes"; + "monad-codec" = dontDistribute super."monad-codec"; + "monad-exception" = dontDistribute super."monad-exception"; + "monad-fork" = dontDistribute super."monad-fork"; + "monad-gen" = dontDistribute super."monad-gen"; + "monad-interleave" = dontDistribute super."monad-interleave"; + "monad-levels" = dontDistribute super."monad-levels"; + "monad-loops-stm" = dontDistribute super."monad-loops-stm"; + "monad-lrs" = dontDistribute super."monad-lrs"; + "monad-memo" = dontDistribute super."monad-memo"; + "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; + "monad-open" = dontDistribute super."monad-open"; + "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; + "monad-param" = dontDistribute super."monad-param"; + "monad-ran" = dontDistribute super."monad-ran"; + "monad-resumption" = dontDistribute super."monad-resumption"; + "monad-state" = dontDistribute super."monad-state"; + "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-stlike-io" = dontDistribute super."monad-stlike-io"; + "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; + "monad-supply" = dontDistribute super."monad-supply"; + "monad-task" = dontDistribute super."monad-task"; + "monad-time" = dontDistribute super."monad-time"; + "monad-tx" = dontDistribute super."monad-tx"; + "monad-unify" = dontDistribute super."monad-unify"; + "monad-wrap" = dontDistribute super."monad-wrap"; + "monadIO" = dontDistribute super."monadIO"; + "monadLib-compose" = dontDistribute super."monadLib-compose"; + "monadacme" = dontDistribute super."monadacme"; + "monadbi" = dontDistribute super."monadbi"; + "monadfibre" = dontDistribute super."monadfibre"; + "monadiccp" = dontDistribute super."monadiccp"; + "monadiccp-gecode" = dontDistribute super."monadiccp-gecode"; + "monadio-unwrappable" = dontDistribute super."monadio-unwrappable"; + "monadlist" = dontDistribute super."monadlist"; + "monadloc" = dontDistribute super."monadloc"; + "monadloc-pp" = dontDistribute super."monadloc-pp"; + "monadplus" = dontDistribute super."monadplus"; + "monads-fd" = dontDistribute super."monads-fd"; + "monadtransform" = dontDistribute super."monadtransform"; + "monarch" = dontDistribute super."monarch"; + "mongodb-queue" = dontDistribute super."mongodb-queue"; + "mongrel2-handler" = dontDistribute super."mongrel2-handler"; + "monitor" = dontDistribute super."monitor"; + "mono-foldable" = dontDistribute super."mono-foldable"; + "mono-traversable" = doDistribute super."mono-traversable_0_9_3"; + "monoid-absorbing" = dontDistribute super."monoid-absorbing"; + "monoid-owns" = dontDistribute super."monoid-owns"; + "monoid-record" = dontDistribute super."monoid-record"; + "monoid-statistics" = dontDistribute super."monoid-statistics"; + "monoid-transformer" = dontDistribute super."monoid-transformer"; + "monoidplus" = dontDistribute super."monoidplus"; + "monoids" = dontDistribute super."monoids"; + "monomorphic" = dontDistribute super."monomorphic"; + "montage" = dontDistribute super."montage"; + "montage-client" = dontDistribute super."montage-client"; + "monte-carlo" = dontDistribute super."monte-carlo"; + "moo" = dontDistribute super."moo"; + "moonshine" = dontDistribute super."moonshine"; + "morfette" = dontDistribute super."morfette"; + "morfeusz" = dontDistribute super."morfeusz"; + "morte" = dontDistribute super."morte"; + "mosaico-lib" = dontDistribute super."mosaico-lib"; + "mount" = dontDistribute super."mount"; + "mp" = dontDistribute super."mp"; + "mp3decoder" = dontDistribute super."mp3decoder"; + "mpdmate" = dontDistribute super."mpdmate"; + "mpppc" = dontDistribute super."mpppc"; + "mpretty" = dontDistribute super."mpretty"; + "mprover" = dontDistribute super."mprover"; + "mps" = dontDistribute super."mps"; + "mpvguihs" = dontDistribute super."mpvguihs"; + "mqtt-hs" = dontDistribute super."mqtt-hs"; + "ms" = dontDistribute super."ms"; + "msgpack" = dontDistribute super."msgpack"; + "msgpack-aeson" = dontDistribute super."msgpack-aeson"; + "msgpack-idl" = dontDistribute super."msgpack-idl"; + "msgpack-rpc" = dontDistribute super."msgpack-rpc"; + "msh" = dontDistribute super."msh"; + "msu" = dontDistribute super."msu"; + "mtgoxapi" = dontDistribute super."mtgoxapi"; + "mtl-c" = dontDistribute super."mtl-c"; + "mtl-evil-instances" = dontDistribute super."mtl-evil-instances"; + "mtl-tf" = dontDistribute super."mtl-tf"; + "mtl-unleashed" = dontDistribute super."mtl-unleashed"; + "mtlparse" = dontDistribute super."mtlparse"; + "mtlx" = dontDistribute super."mtlx"; + "mtp" = dontDistribute super."mtp"; + "mtree" = dontDistribute super."mtree"; + "mucipher" = dontDistribute super."mucipher"; + "mudbath" = dontDistribute super."mudbath"; + "muesli" = dontDistribute super."muesli"; + "multext-east-msd" = dontDistribute super."multext-east-msd"; + "multi-cabal" = dontDistribute super."multi-cabal"; + "multifocal" = dontDistribute super."multifocal"; + "multihash" = dontDistribute super."multihash"; + "multipart-names" = dontDistribute super."multipart-names"; + "multipass" = dontDistribute super."multipass"; + "multiplate" = dontDistribute super."multiplate"; + "multiplate-simplified" = dontDistribute super."multiplate-simplified"; + "multiplicity" = dontDistribute super."multiplicity"; + "multirec" = dontDistribute super."multirec"; + "multirec-alt-deriver" = dontDistribute super."multirec-alt-deriver"; + "multirec-binary" = dontDistribute super."multirec-binary"; + "multiset-comb" = dontDistribute super."multiset-comb"; + "multisetrewrite" = dontDistribute super."multisetrewrite"; + "multistate" = dontDistribute super."multistate"; + "muon" = dontDistribute super."muon"; + "murder" = dontDistribute super."murder"; + "murmur3" = dontDistribute super."murmur3"; + "murmurhash3" = dontDistribute super."murmurhash3"; + "music-articulation" = dontDistribute super."music-articulation"; + "music-diatonic" = dontDistribute super."music-diatonic"; + "music-dynamics" = dontDistribute super."music-dynamics"; + "music-dynamics-literal" = dontDistribute super."music-dynamics-literal"; + "music-graphics" = dontDistribute super."music-graphics"; + "music-parts" = dontDistribute super."music-parts"; + "music-pitch" = dontDistribute super."music-pitch"; + "music-pitch-literal" = dontDistribute super."music-pitch-literal"; + "music-preludes" = dontDistribute super."music-preludes"; + "music-score" = dontDistribute super."music-score"; + "music-sibelius" = dontDistribute super."music-sibelius"; + "music-suite" = dontDistribute super."music-suite"; + "music-util" = dontDistribute super."music-util"; + "musicbrainz-email" = dontDistribute super."musicbrainz-email"; + "musicxml" = dontDistribute super."musicxml"; + "musicxml2" = dontDistribute super."musicxml2"; + "mustache" = dontDistribute super."mustache"; + "mustache-haskell" = dontDistribute super."mustache-haskell"; + "mustache2hs" = dontDistribute super."mustache2hs"; + "mutable-iter" = dontDistribute super."mutable-iter"; + "mute-unmute" = dontDistribute super."mute-unmute"; + "mvc" = dontDistribute super."mvc"; + "mvc-updates" = dontDistribute super."mvc-updates"; + "mvclient" = dontDistribute super."mvclient"; + "mwc-probability" = dontDistribute super."mwc-probability"; + "mwc-random-monad" = dontDistribute super."mwc-random-monad"; + "myTestlll" = dontDistribute super."myTestlll"; + "mybitcoin-sci" = dontDistribute super."mybitcoin-sci"; + "myo" = dontDistribute super."myo"; + "mysnapsession" = dontDistribute super."mysnapsession"; + "mysnapsession-example" = dontDistribute super."mysnapsession-example"; + "mysql-effect" = dontDistribute super."mysql-effect"; + "mysql-simple-quasi" = dontDistribute super."mysql-simple-quasi"; + "mysql-simple-typed" = dontDistribute super."mysql-simple-typed"; + "mzv" = dontDistribute super."mzv"; + "n-m" = dontDistribute super."n-m"; + "nagios-check" = dontDistribute super."nagios-check"; + "nagios-perfdata" = dontDistribute super."nagios-perfdata"; + "nagios-plugin-ekg" = dontDistribute super."nagios-plugin-ekg"; + "named-formlet" = dontDistribute super."named-formlet"; + "named-lock" = dontDistribute super."named-lock"; + "named-records" = dontDistribute super."named-records"; + "namelist" = dontDistribute super."namelist"; + "names" = dontDistribute super."names"; + "names-th" = dontDistribute super."names-th"; + "nano-cryptr" = dontDistribute super."nano-cryptr"; + "nano-hmac" = dontDistribute super."nano-hmac"; + "nano-md5" = dontDistribute super."nano-md5"; + "nanoAgda" = dontDistribute super."nanoAgda"; + "nanocurses" = dontDistribute super."nanocurses"; + "nanomsg" = dontDistribute super."nanomsg"; + "nanomsg-haskell" = dontDistribute super."nanomsg-haskell"; + "nanoparsec" = dontDistribute super."nanoparsec"; + "narc" = dontDistribute super."narc"; + "nat" = dontDistribute super."nat"; + "nationstates" = doDistribute super."nationstates_0_2_0_3"; + "nats-queue" = dontDistribute super."nats-queue"; + "natural-number" = dontDistribute super."natural-number"; + "natural-numbers" = dontDistribute super."natural-numbers"; + "natural-sort" = dontDistribute super."natural-sort"; + "natural-transformation" = dontDistribute super."natural-transformation"; + "naturalcomp" = dontDistribute super."naturalcomp"; + "naturals" = dontDistribute super."naturals"; + "naver-translate" = dontDistribute super."naver-translate"; + "nbt" = dontDistribute super."nbt"; + "nc-indicators" = dontDistribute super."nc-indicators"; + "ncurses" = dontDistribute super."ncurses"; + "neat" = dontDistribute super."neat"; + "needle" = dontDistribute super."needle"; + "neet" = dontDistribute super."neet"; + "nehe-tuts" = dontDistribute super."nehe-tuts"; + "neil" = dontDistribute super."neil"; + "neither" = dontDistribute super."neither"; + "nemesis" = dontDistribute super."nemesis"; + "nemesis-titan" = dontDistribute super."nemesis-titan"; + "nerf" = dontDistribute super."nerf"; + "nero" = dontDistribute super."nero"; + "nero-wai" = dontDistribute super."nero-wai"; + "nero-warp" = dontDistribute super."nero-warp"; + "nested-routes" = dontDistribute super."nested-routes"; + "nested-sets" = dontDistribute super."nested-sets"; + "nestedmap" = dontDistribute super."nestedmap"; + "net-concurrent" = dontDistribute super."net-concurrent"; + "netclock" = dontDistribute super."netclock"; + "netcore" = dontDistribute super."netcore"; + "netlines" = dontDistribute super."netlines"; + "netlink" = dontDistribute super."netlink"; + "netlist" = dontDistribute super."netlist"; + "netlist-to-vhdl" = dontDistribute super."netlist-to-vhdl"; + "netpbm" = dontDistribute super."netpbm"; + "netrc" = dontDistribute super."netrc"; + "netspec" = dontDistribute super."netspec"; + "netstring-enumerator" = dontDistribute super."netstring-enumerator"; + "nettle" = dontDistribute super."nettle"; + "nettle-frp" = dontDistribute super."nettle-frp"; + "nettle-netkit" = dontDistribute super."nettle-netkit"; + "nettle-openflow" = dontDistribute super."nettle-openflow"; + "netwire" = dontDistribute super."netwire"; + "netwire-input" = dontDistribute super."netwire-input"; + "netwire-input-glfw" = dontDistribute super."netwire-input-glfw"; + "network-address" = dontDistribute super."network-address"; + "network-api-support" = dontDistribute super."network-api-support"; + "network-bitcoin" = dontDistribute super."network-bitcoin"; + "network-builder" = dontDistribute super."network-builder"; + "network-bytestring" = dontDistribute super."network-bytestring"; + "network-conduit" = dontDistribute super."network-conduit"; + "network-connection" = dontDistribute super."network-connection"; + "network-data" = dontDistribute super."network-data"; + "network-dbus" = dontDistribute super."network-dbus"; + "network-dns" = dontDistribute super."network-dns"; + "network-enumerator" = dontDistribute super."network-enumerator"; + "network-fancy" = dontDistribute super."network-fancy"; + "network-house" = dontDistribute super."network-house"; + "network-interfacerequest" = dontDistribute super."network-interfacerequest"; + "network-ip" = dontDistribute super."network-ip"; + "network-metrics" = dontDistribute super."network-metrics"; + "network-minihttp" = dontDistribute super."network-minihttp"; + "network-msg" = dontDistribute super."network-msg"; + "network-netpacket" = dontDistribute super."network-netpacket"; + "network-pgi" = dontDistribute super."network-pgi"; + "network-rpca" = dontDistribute super."network-rpca"; + "network-server" = dontDistribute super."network-server"; + "network-service" = dontDistribute super."network-service"; + "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr"; + "network-simple-tls" = dontDistribute super."network-simple-tls"; + "network-socket-options" = dontDistribute super."network-socket-options"; + "network-stream" = dontDistribute super."network-stream"; + "network-topic-models" = dontDistribute super."network-topic-models"; + "network-transport-amqp" = dontDistribute super."network-transport-amqp"; + "network-transport-composed" = dontDistribute super."network-transport-composed"; + "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; + "network-transport-tcp" = dontDistribute super."network-transport-tcp"; + "network-transport-tests" = dontDistribute super."network-transport-tests"; + "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; + "network-uri-static" = dontDistribute super."network-uri-static"; + "network-wai-router" = dontDistribute super."network-wai-router"; + "network-websocket" = dontDistribute super."network-websocket"; + "networked-game" = dontDistribute super."networked-game"; + "newports" = dontDistribute super."newports"; + "newsynth" = dontDistribute super."newsynth"; + "newt" = dontDistribute super."newt"; + "newtype-deriving" = dontDistribute super."newtype-deriving"; + "newtype-th" = dontDistribute super."newtype-th"; + "newtyper" = dontDistribute super."newtyper"; + "nextstep-plist" = dontDistribute super."nextstep-plist"; + "nf" = dontDistribute super."nf"; + "ngrams-loader" = dontDistribute super."ngrams-loader"; + "nibblestring" = dontDistribute super."nibblestring"; + "nicify" = dontDistribute super."nicify"; + "nicify-lib" = dontDistribute super."nicify-lib"; + "nicovideo-translator" = dontDistribute super."nicovideo-translator"; + "nikepub" = dontDistribute super."nikepub"; + "nimber" = dontDistribute super."nimber"; + "nitro" = dontDistribute super."nitro"; + "nix-eval" = dontDistribute super."nix-eval"; + "nix-paths" = dontDistribute super."nix-paths"; + "nixfromnpm" = dontDistribute super."nixfromnpm"; + "nixos-types" = dontDistribute super."nixos-types"; + "nkjp" = dontDistribute super."nkjp"; + "nlp-scores" = dontDistribute super."nlp-scores"; + "nlp-scores-scripts" = dontDistribute super."nlp-scores-scripts"; + "nm" = dontDistribute super."nm"; + "nme" = dontDistribute super."nme"; + "nntp" = dontDistribute super."nntp"; + "no-role-annots" = dontDistribute super."no-role-annots"; + "nofib-analyze" = dontDistribute super."nofib-analyze"; + "noise" = dontDistribute super."noise"; + "non-empty" = dontDistribute super."non-empty"; + "non-negative" = dontDistribute super."non-negative"; + "nondeterminism" = dontDistribute super."nondeterminism"; + "nonfree" = dontDistribute super."nonfree"; + "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; + "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; + "noodle" = dontDistribute super."noodle"; + "normaldistribution" = dontDistribute super."normaldistribution"; + "not-gloss" = dontDistribute super."not-gloss"; + "not-gloss-examples" = dontDistribute super."not-gloss-examples"; + "not-in-base" = dontDistribute super."not-in-base"; + "notcpp" = dontDistribute super."notcpp"; + "notmuch-haskell" = dontDistribute super."notmuch-haskell"; + "notmuch-web" = dontDistribute super."notmuch-web"; + "notzero" = dontDistribute super."notzero"; + "np-extras" = dontDistribute super."np-extras"; + "np-linear" = dontDistribute super."np-linear"; + "nptools" = dontDistribute super."nptools"; + "nth-prime" = dontDistribute super."nth-prime"; + "nthable" = dontDistribute super."nthable"; + "ntp-control" = dontDistribute super."ntp-control"; + "null-canvas" = dontDistribute super."null-canvas"; + "number" = dontDistribute super."number"; + "numbering" = dontDistribute super."numbering"; + "numerals" = dontDistribute super."numerals"; + "numerals-base" = dontDistribute super."numerals-base"; + "numeric-extras" = doDistribute super."numeric-extras_0_0_3"; + "numeric-limits" = dontDistribute super."numeric-limits"; + "numeric-prelude" = dontDistribute super."numeric-prelude"; + "numeric-qq" = dontDistribute super."numeric-qq"; + "numeric-quest" = dontDistribute super."numeric-quest"; + "numeric-tools" = dontDistribute super."numeric-tools"; + "numericpeano" = dontDistribute super."numericpeano"; + "nums" = dontDistribute super."nums"; + "numtype-dk" = dontDistribute super."numtype-dk"; + "numtype-tf" = dontDistribute super."numtype-tf"; + "nurbs" = dontDistribute super."nurbs"; + "nvim-hs" = dontDistribute super."nvim-hs"; + "nvim-hs-contrib" = dontDistribute super."nvim-hs-contrib"; + "nyan" = dontDistribute super."nyan"; + "nylas" = dontDistribute super."nylas"; + "nymphaea" = dontDistribute super."nymphaea"; + "oauthenticated" = dontDistribute super."oauthenticated"; + "obdd" = dontDistribute super."obdd"; + "oberon0" = dontDistribute super."oberon0"; + "obj" = dontDistribute super."obj"; + "objectid" = dontDistribute super."objectid"; + "observable-sharing" = dontDistribute super."observable-sharing"; + "octohat" = dontDistribute super."octohat"; + "octopus" = dontDistribute super."octopus"; + "oculus" = dontDistribute super."oculus"; + "off-simple" = dontDistribute super."off-simple"; + "ofx" = dontDistribute super."ofx"; + "ohloh-hs" = dontDistribute super."ohloh-hs"; + "oi" = dontDistribute super."oi"; + "oidc-client" = dontDistribute super."oidc-client"; + "ois-input-manager" = dontDistribute super."ois-input-manager"; + "old-version" = dontDistribute super."old-version"; + "olwrapper" = dontDistribute super."olwrapper"; + "omaketex" = dontDistribute super."omaketex"; + "omega" = dontDistribute super."omega"; + "omnicodec" = dontDistribute super."omnicodec"; + "on-a-horse" = dontDistribute super."on-a-horse"; + "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "one-liner" = dontDistribute super."one-liner"; + "one-time-password" = dontDistribute super."one-time-password"; + "oneOfN" = dontDistribute super."oneOfN"; + "oneormore" = dontDistribute super."oneormore"; + "only" = dontDistribute super."only"; + "onu-course" = dontDistribute super."onu-course"; + "oo-prototypes" = dontDistribute super."oo-prototypes"; + "opaleye-classy" = dontDistribute super."opaleye-classy"; + "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; + "opaleye-trans" = dontDistribute super."opaleye-trans"; + "open-browser" = dontDistribute super."open-browser"; + "open-pandoc" = dontDistribute super."open-pandoc"; + "open-symbology" = dontDistribute super."open-symbology"; + "open-typerep" = dontDistribute super."open-typerep"; + "open-union" = dontDistribute super."open-union"; + "open-witness" = dontDistribute super."open-witness"; + "opencv-raw" = dontDistribute super."opencv-raw"; + "opendatatable" = dontDistribute super."opendatatable"; + "openexchangerates" = dontDistribute super."openexchangerates"; + "openflow" = dontDistribute super."openflow"; + "opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo"; + "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"; + "opml" = dontDistribute super."opml"; + "opml-conduit" = dontDistribute super."opml-conduit"; + "opn" = dontDistribute super."opn"; + "optimal-blocks" = dontDistribute super."optimal-blocks"; + "optimization" = dontDistribute super."optimization"; + "optimusprime" = dontDistribute super."optimusprime"; + "optional" = dontDistribute super."optional"; + "options-time" = dontDistribute super."options-time"; + "optparse-declarative" = dontDistribute super."optparse-declarative"; + "orc" = dontDistribute super."orc"; + "orchestrate" = dontDistribute super."orchestrate"; + "orchid" = dontDistribute super."orchid"; + "orchid-demo" = dontDistribute super."orchid-demo"; + "ord-adhoc" = dontDistribute super."ord-adhoc"; + "order-maintenance" = dontDistribute super."order-maintenance"; + "order-statistics" = dontDistribute super."order-statistics"; + "ordered" = dontDistribute super."ordered"; + "orders" = dontDistribute super."orders"; + "ordrea" = dontDistribute super."ordrea"; + "organize-imports" = dontDistribute super."organize-imports"; + "orgmode" = dontDistribute super."orgmode"; + "orgmode-parse" = dontDistribute super."orgmode-parse"; + "origami" = dontDistribute super."origami"; + "os-release" = dontDistribute super."os-release"; + "osc" = dontDistribute super."osc"; + "osm-download" = dontDistribute super."osm-download"; + "oso2pdf" = dontDistribute super."oso2pdf"; + "osx-ar" = dontDistribute super."osx-ar"; + "ot" = dontDistribute super."ot"; + "ottparse-pretty" = dontDistribute super."ottparse-pretty"; + "overture" = dontDistribute super."overture"; + "pack" = dontDistribute super."pack"; + "package-o-tron" = dontDistribute super."package-o-tron"; + "package-vt" = dontDistribute super."package-vt"; + "packdeps" = dontDistribute super."packdeps"; + "packed-dawg" = dontDistribute super."packed-dawg"; + "packedstring" = dontDistribute super."packedstring"; + "packer" = dontDistribute super."packer"; + "packunused" = dontDistribute super."packunused"; + "pacman-memcache" = dontDistribute super."pacman-memcache"; + "padKONTROL" = dontDistribute super."padKONTROL"; + "pagarme" = dontDistribute super."pagarme"; + "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; + "palindromes" = dontDistribute super."palindromes"; + "pam" = dontDistribute super."pam"; + "panda" = dontDistribute super."panda"; + "pandoc-citeproc" = doDistribute super."pandoc-citeproc_0_7_4"; + "pandoc-citeproc-preamble" = dontDistribute super."pandoc-citeproc-preamble"; + "pandoc-crossref" = dontDistribute super."pandoc-crossref"; + "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; + "pandoc-lens" = dontDistribute super."pandoc-lens"; + "pandoc-placetable" = dontDistribute super."pandoc-placetable"; + "pandoc-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-utils" = dontDistribute super."parsec-utils"; + "parsec1" = dontDistribute super."parsec1"; + "parsec2" = dontDistribute super."parsec2"; + "parsec3" = dontDistribute super."parsec3"; + "parsec3-numbers" = dontDistribute super."parsec3-numbers"; + "parsedate" = dontDistribute super."parsedate"; + "parseerror-eq" = dontDistribute super."parseerror-eq"; + "parsek" = dontDistribute super."parsek"; + "parsely" = dontDistribute super."parsely"; + "parser-helper" = dontDistribute super."parser-helper"; + "parsergen" = dontDistribute super."parsergen"; + "parsestar" = dontDistribute super."parsestar"; + "parsimony" = dontDistribute super."parsimony"; + "partial" = dontDistribute super."partial"; + "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; + "partial-lens" = dontDistribute super."partial-lens"; + "partial-uri" = dontDistribute super."partial-uri"; + "partly" = dontDistribute super."partly"; + "passage" = dontDistribute super."passage"; + "passwords" = dontDistribute super."passwords"; + "pastis" = dontDistribute super."pastis"; + "pasty" = dontDistribute super."pasty"; + "patch-combinators" = dontDistribute super."patch-combinators"; + "patch-image" = dontDistribute super."patch-image"; + "patches-vector" = dontDistribute super."patches-vector"; + "pathfinding" = dontDistribute super."pathfinding"; + "pathfindingcore" = dontDistribute super."pathfindingcore"; + "pathtype" = dontDistribute super."pathtype"; + "pathwalk" = dontDistribute super."pathwalk"; + "patronscraper" = dontDistribute super."patronscraper"; + "patterns" = dontDistribute super."patterns"; + "paymill" = dontDistribute super."paymill"; + "paypal-adaptive-hoops" = dontDistribute super."paypal-adaptive-hoops"; + "paypal-api" = dontDistribute super."paypal-api"; + "pb" = dontDistribute super."pb"; + "pbc4hs" = dontDistribute super."pbc4hs"; + "pbkdf" = dontDistribute super."pbkdf"; + "pcap" = dontDistribute super."pcap"; + "pcap-conduit" = dontDistribute super."pcap-conduit"; + "pcap-enumerator" = dontDistribute super."pcap-enumerator"; + "pcd-loader" = dontDistribute super."pcd-loader"; + "pcf" = dontDistribute super."pcf"; + "pcg-random" = dontDistribute super."pcg-random"; + "pcre-heavy" = doDistribute super."pcre-heavy_0_2_5"; + "pcre-less" = dontDistribute super."pcre-less"; + "pcre-light-extra" = dontDistribute super."pcre-light-extra"; + "pcre-utils" = dontDistribute super."pcre-utils"; + "pdf-toolbox-content" = dontDistribute super."pdf-toolbox-content"; + "pdf-toolbox-core" = dontDistribute super."pdf-toolbox-core"; + "pdf-toolbox-document" = dontDistribute super."pdf-toolbox-document"; + "pdf-toolbox-viewer" = dontDistribute super."pdf-toolbox-viewer"; + "pdf2line" = dontDistribute super."pdf2line"; + "pdfsplit" = dontDistribute super."pdfsplit"; + "pdynload" = dontDistribute super."pdynload"; + "peakachu" = dontDistribute super."peakachu"; + "peano" = dontDistribute super."peano"; + "peano-inf" = dontDistribute super."peano-inf"; + "pec" = dontDistribute super."pec"; + "pecoff" = dontDistribute super."pecoff"; + "peg" = dontDistribute super."peg"; + "peggy" = dontDistribute super."peggy"; + "pell" = dontDistribute super."pell"; + "penn-treebank" = dontDistribute super."penn-treebank"; + "penny" = dontDistribute super."penny"; + "penny-bin" = dontDistribute super."penny-bin"; + "penny-lib" = dontDistribute super."penny-lib"; + "peparser" = dontDistribute super."peparser"; + "perceptron" = dontDistribute super."perceptron"; + "perdure" = dontDistribute super."perdure"; + "period" = dontDistribute super."period"; + "perm" = dontDistribute super."perm"; + "permutation" = dontDistribute super."permutation"; + "permute" = dontDistribute super."permute"; + "persist2er" = dontDistribute super."persist2er"; + "persistable-record" = dontDistribute super."persistable-record"; + "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-equivalence" = dontDistribute super."persistent-equivalence"; + "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; + "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; + "persistent-map" = dontDistribute super."persistent-map"; + "persistent-mysql" = doDistribute super."persistent-mysql_2_2"; + "persistent-odbc" = dontDistribute super."persistent-odbc"; + "persistent-protobuf" = dontDistribute super."persistent-protobuf"; + "persistent-ratelimit" = dontDistribute super."persistent-ratelimit"; + "persistent-redis" = dontDistribute super."persistent-redis"; + "persistent-vector" = dontDistribute super."persistent-vector"; + "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; + "persona" = dontDistribute super."persona"; + "persona-idp" = dontDistribute super."persona-idp"; + "pesca" = dontDistribute super."pesca"; + "peyotls" = dontDistribute super."peyotls"; + "peyotls-codec" = dontDistribute super."peyotls-codec"; + "pez" = dontDistribute super."pez"; + "pg-harness" = dontDistribute super."pg-harness"; + "pg-harness-client" = dontDistribute super."pg-harness-client"; + "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pgdl" = dontDistribute super."pgdl"; + "pgm" = dontDistribute super."pgm"; + "pgp-wordlist" = dontDistribute super."pgp-wordlist"; + "pgsql-simple" = dontDistribute super."pgsql-simple"; + "pgstream" = dontDistribute super."pgstream"; + "phasechange" = dontDistribute super."phasechange"; + "phone-push" = dontDistribute super."phone-push"; + "phonetic-code" = dontDistribute super."phonetic-code"; + "phooey" = dontDistribute super."phooey"; + "photoname" = dontDistribute super."photoname"; + "phraskell" = dontDistribute super."phraskell"; + "phybin" = dontDistribute super."phybin"; + "pi-calculus" = dontDistribute super."pi-calculus"; + "pia-forward" = dontDistribute super."pia-forward"; + "pianola" = dontDistribute super."pianola"; + "picologic" = dontDistribute super."picologic"; + "picosat" = dontDistribute super."picosat"; + "piet" = dontDistribute super."piet"; + "piki" = dontDistribute super."piki"; + "pinboard" = dontDistribute super."pinboard"; + "pipe-enumerator" = dontDistribute super."pipe-enumerator"; + "pipeclip" = dontDistribute super."pipeclip"; + "pipes-async" = dontDistribute super."pipes-async"; + "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; + "pipes-cellular" = dontDistribute super."pipes-cellular"; + "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; + "pipes-cereal" = dontDistribute super."pipes-cereal"; + "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-conduit" = dontDistribute super."pipes-conduit"; + "pipes-core" = dontDistribute super."pipes-core"; + "pipes-courier" = dontDistribute super."pipes-courier"; + "pipes-csv" = dontDistribute super."pipes-csv"; + "pipes-errors" = dontDistribute super."pipes-errors"; + "pipes-extra" = dontDistribute super."pipes-extra"; + "pipes-extras" = dontDistribute super."pipes-extras"; + "pipes-files" = dontDistribute super."pipes-files"; + "pipes-interleave" = dontDistribute super."pipes-interleave"; + "pipes-mongodb" = dontDistribute super."pipes-mongodb"; + "pipes-network-tls" = dontDistribute super."pipes-network-tls"; + "pipes-p2p" = dontDistribute super."pipes-p2p"; + "pipes-p2p-examples" = dontDistribute super."pipes-p2p-examples"; + "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; + "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-shell" = dontDistribute super."pipes-shell"; + "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; + "pipes-vector" = dontDistribute super."pipes-vector"; + "pipes-websockets" = dontDistribute super."pipes-websockets"; + "pipes-zeromq4" = dontDistribute super."pipes-zeromq4"; + "pipes-zlib" = dontDistribute super."pipes-zlib"; + "pisigma" = dontDistribute super."pisigma"; + "pit" = dontDistribute super."pit"; + "pitchtrack" = dontDistribute super."pitchtrack"; + "pkcs1" = dontDistribute super."pkcs1"; + "pkcs7" = dontDistribute super."pkcs7"; + "pkggraph" = dontDistribute super."pkggraph"; + "pktree" = dontDistribute super."pktree"; + "plailude" = dontDistribute super."plailude"; + "planar-graph" = dontDistribute super."planar-graph"; + "plat" = dontDistribute super."plat"; + "playlists" = dontDistribute super."playlists"; + "plist" = dontDistribute super."plist"; + "plivo" = dontDistribute super."plivo"; + "plot" = doDistribute super."plot_0_2_3_4"; + "plot-gtk" = doDistribute super."plot-gtk_0_2_0_2"; + "plot-gtk-ui" = dontDistribute super."plot-gtk-ui"; + "plot-gtk3" = doDistribute super."plot-gtk3_0_1_0_1"; + "plot-lab" = dontDistribute super."plot-lab"; + "plotfont" = dontDistribute super."plotfont"; + "plotserver-api" = dontDistribute super."plotserver-api"; + "plugins" = dontDistribute super."plugins"; + "plugins-auto" = dontDistribute super."plugins-auto"; + "plugins-multistage" = dontDistribute super."plugins-multistage"; + "plumbers" = dontDistribute super."plumbers"; + "ply-loader" = dontDistribute super."ply-loader"; + "png-file" = dontDistribute super."png-file"; + "pngload" = dontDistribute super."pngload"; + "pngload-fixed" = dontDistribute super."pngload-fixed"; + "pnm" = dontDistribute super."pnm"; + "pocket-dns" = dontDistribute super."pocket-dns"; + "pointedlist" = dontDistribute super."pointedlist"; + "pointfree" = dontDistribute super."pointfree"; + "pointful" = dontDistribute super."pointful"; + "pointless-fun" = dontDistribute super."pointless-fun"; + "pointless-haskell" = dontDistribute super."pointless-haskell"; + "pointless-lenses" = dontDistribute super."pointless-lenses"; + "pointless-rewrite" = dontDistribute super."pointless-rewrite"; + "poker-eval" = dontDistribute super."poker-eval"; + "pokitdok" = dontDistribute super."pokitdok"; + "polar" = dontDistribute super."polar"; + "polar-configfile" = dontDistribute super."polar-configfile"; + "polar-shader" = dontDistribute super."polar-shader"; + "polh-lexicon" = dontDistribute super."polh-lexicon"; + "polimorf" = dontDistribute super."polimorf"; + "poll" = dontDistribute super."poll"; + "polyToMonoid" = dontDistribute super."polyToMonoid"; + "polymap" = dontDistribute super."polymap"; + "polynomial" = dontDistribute super."polynomial"; + "polynomials-bernstein" = dontDistribute super."polynomials-bernstein"; + "polyseq" = dontDistribute super."polyseq"; + "polysoup" = dontDistribute super."polysoup"; + "polytypeable" = dontDistribute super."polytypeable"; + "polytypeable-utils" = dontDistribute super."polytypeable-utils"; + "ponder" = dontDistribute super."ponder"; + "pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver"; + "pontarius-xmpp" = dontDistribute super."pontarius-xmpp"; + "pontarius-xpmn" = dontDistribute super."pontarius-xpmn"; + "pony" = dontDistribute super."pony"; + "pool" = dontDistribute super."pool"; + "pool-conduit" = dontDistribute super."pool-conduit"; + "pooled-io" = dontDistribute super."pooled-io"; + "pop3-client" = dontDistribute super."pop3-client"; + "popenhs" = dontDistribute super."popenhs"; + "poppler" = dontDistribute super."poppler"; + "populate-setup-exe-cache" = dontDistribute super."populate-setup-exe-cache"; + "portable-lines" = dontDistribute super."portable-lines"; + "portaudio" = dontDistribute super."portaudio"; + "porte" = dontDistribute super."porte"; + "porter" = dontDistribute super."porter"; + "ports" = dontDistribute super."ports"; + "ports-tools" = dontDistribute super."ports-tools"; + "positive" = dontDistribute super."positive"; + "posix-acl" = dontDistribute super."posix-acl"; + "posix-escape" = dontDistribute super."posix-escape"; + "posix-filelock" = dontDistribute super."posix-filelock"; + "posix-paths" = dontDistribute super."posix-paths"; + "posix-pty" = dontDistribute super."posix-pty"; + "posix-timer" = dontDistribute super."posix-timer"; + "posix-waitpid" = dontDistribute super."posix-waitpid"; + "possible" = dontDistribute super."possible"; + "postcodes" = dontDistribute super."postcodes"; + "postgresql-config" = dontDistribute super."postgresql-config"; + "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; + "postgresql-cube" = dontDistribute super."postgresql-cube"; + "postgresql-orm" = dontDistribute super."postgresql-orm"; + "postgresql-query" = dontDistribute super."postgresql-query"; + "postgresql-schema" = dontDistribute super."postgresql-schema"; + "postgresql-simple-migration" = dontDistribute super."postgresql-simple-migration"; + "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; + "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; + "postgresql-typed" = dontDistribute super."postgresql-typed"; + "postgrest" = dontDistribute super."postgrest"; + "postie" = dontDistribute super."postie"; + "postmark" = dontDistribute super."postmark"; + "postmaster" = dontDistribute super."postmaster"; + "potato-tool" = dontDistribute super."potato-tool"; + "potrace" = dontDistribute super."potrace"; + "potrace-diagrams" = dontDistribute super."potrace-diagrams"; + "powermate" = dontDistribute super."powermate"; + "powerpc" = dontDistribute super."powerpc"; + "ppm" = dontDistribute super."ppm"; + "pqc" = dontDistribute super."pqc"; + "pqueue-mtl" = dontDistribute super."pqueue-mtl"; + "practice-room" = dontDistribute super."practice-room"; + "precis" = dontDistribute super."precis"; + "pred-trie" = doDistribute super."pred-trie_0_2_0"; + "predicates" = dontDistribute super."predicates"; + "prednote-test" = dontDistribute super."prednote-test"; + "prefork" = dontDistribute super."prefork"; + "pregame" = dontDistribute super."pregame"; + "prelude-generalize" = dontDistribute super."prelude-generalize"; + "prelude-plus" = dontDistribute super."prelude-plus"; + "prelude-prime" = dontDistribute super."prelude-prime"; + "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "preprocess-haskell" = dontDistribute super."preprocess-haskell"; + "preprocessor-tools" = dontDistribute super."preprocessor-tools"; + "present" = dontDistribute super."present"; + "press" = dontDistribute super."press"; + "presto-hdbc" = dontDistribute super."presto-hdbc"; + "prettify" = dontDistribute super."prettify"; + "pretty-compact" = dontDistribute super."pretty-compact"; + "pretty-error" = dontDistribute super."pretty-error"; + "pretty-hex" = dontDistribute super."pretty-hex"; + "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-sop" = dontDistribute super."pretty-sop"; + "pretty-tree" = dontDistribute super."pretty-tree"; + "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-uniq" = dontDistribute super."prim-uniq"; + "primula-board" = dontDistribute super."primula-board"; + "primula-bot" = dontDistribute super."primula-bot"; + "printf-mauke" = dontDistribute super."printf-mauke"; + "printxosd" = dontDistribute super."printxosd"; + "priority-queue" = dontDistribute super."priority-queue"; + "priority-sync" = dontDistribute super."priority-sync"; + "privileged-concurrency" = dontDistribute super."privileged-concurrency"; + "prizm" = dontDistribute super."prizm"; + "probability" = dontDistribute super."probability"; + "probable" = dontDistribute super."probable"; + "proc" = dontDistribute super."proc"; + "process-conduit" = dontDistribute super."process-conduit"; + "process-iterio" = dontDistribute super."process-iterio"; + "process-leksah" = dontDistribute super."process-leksah"; + "process-listlike" = dontDistribute super."process-listlike"; + "process-progress" = dontDistribute super."process-progress"; + "process-qq" = dontDistribute super."process-qq"; + "process-streaming" = dontDistribute super."process-streaming"; + "processing" = dontDistribute super."processing"; + "processor-creative-kit" = dontDistribute super."processor-creative-kit"; + "procrastinating-structure" = dontDistribute super."procrastinating-structure"; + "procrastinating-variable" = dontDistribute super."procrastinating-variable"; + "procstat" = dontDistribute super."procstat"; + "proctest" = dontDistribute super."proctest"; + "prof2dot" = dontDistribute super."prof2dot"; + "prof2pretty" = dontDistribute super."prof2pretty"; + "profiteur" = dontDistribute super."profiteur"; + "progress" = dontDistribute super."progress"; + "progressbar" = dontDistribute super."progressbar"; + "progression" = dontDistribute super."progression"; + "progressive" = dontDistribute super."progressive"; + "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; + "projection" = dontDistribute super."projection"; + "prolog" = dontDistribute super."prolog"; + "prolog-graph" = dontDistribute super."prolog-graph"; + "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; + "promise" = dontDistribute super."promise"; + "promises" = dontDistribute super."promises"; + "prompt" = dontDistribute super."prompt"; + "propane" = dontDistribute super."propane"; + "propellor" = dontDistribute super."propellor"; + "properties" = dontDistribute super."properties"; + "property-list" = dontDistribute super."property-list"; + "proplang" = dontDistribute super."proplang"; + "props" = dontDistribute super."props"; + "prosper" = dontDistribute super."prosper"; + "proteaaudio" = dontDistribute super."proteaaudio"; + "protobuf" = dontDistribute super."protobuf"; + "protobuf-native" = dontDistribute super."protobuf-native"; + "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; + "protocol-buffers-fork" = dontDistribute super."protocol-buffers-fork"; + "proton-haskell" = dontDistribute super."proton-haskell"; + "prototype" = dontDistribute super."prototype"; + "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; + "proxy-kindness" = dontDistribute super."proxy-kindness"; + "psc-ide" = dontDistribute super."psc-ide"; + "pseudo-boolean" = dontDistribute super."pseudo-boolean"; + "pseudo-trie" = dontDistribute super."pseudo-trie"; + "pseudomacros" = dontDistribute super."pseudomacros"; + "pub" = dontDistribute super."pub"; + "publicsuffix" = dontDistribute super."publicsuffix"; + "publicsuffixlist" = dontDistribute super."publicsuffixlist"; + "publicsuffixlistcreate" = dontDistribute super."publicsuffixlistcreate"; + "pubnub" = dontDistribute super."pubnub"; + "pubsub" = dontDistribute super."pubsub"; + "puffytools" = dontDistribute super."puffytools"; + "pugixml" = dontDistribute super."pugixml"; + "pugs-DrIFT" = dontDistribute super."pugs-DrIFT"; + "pugs-HsSyck" = dontDistribute super."pugs-HsSyck"; + "pugs-compat" = dontDistribute super."pugs-compat"; + "pugs-hsregex" = dontDistribute super."pugs-hsregex"; + "pulse-simple" = dontDistribute super."pulse-simple"; + "punkt" = dontDistribute super."punkt"; + "punycode" = dontDistribute super."punycode"; + "puppetresources" = dontDistribute super."puppetresources"; + "pure-cdb" = dontDistribute super."pure-cdb"; + "pure-fft" = dontDistribute super."pure-fft"; + "pure-priority-queue" = dontDistribute super."pure-priority-queue"; + "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; + "pure-zlib" = dontDistribute super."pure-zlib"; + "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "push-notify" = dontDistribute super."push-notify"; + "push-notify-ccs" = dontDistribute super."push-notify-ccs"; + "push-notify-general" = dontDistribute super."push-notify-general"; + "pusher-haskell" = dontDistribute super."pusher-haskell"; + "pusher-http-haskell" = dontDistribute super."pusher-http-haskell"; + "pushme" = dontDistribute super."pushme"; + "putlenses" = dontDistribute super."putlenses"; + "puzzle-draw" = dontDistribute super."puzzle-draw"; + "puzzle-draw-cmdline" = dontDistribute super."puzzle-draw-cmdline"; + "pvd" = dontDistribute super."pvd"; + "pwstore-cli" = dontDistribute super."pwstore-cli"; + "pwstore-purehaskell" = dontDistribute super."pwstore-purehaskell"; + "pxsl-tools" = dontDistribute super."pxsl-tools"; + "pyffi" = dontDistribute super."pyffi"; + "pyfi" = dontDistribute super."pyfi"; + "python-pickle" = dontDistribute super."python-pickle"; + "qc-oi-testgenerator" = dontDistribute super."qc-oi-testgenerator"; + "qd" = dontDistribute super."qd"; + "qd-vec" = dontDistribute super."qd-vec"; + "qhull-simple" = dontDistribute super."qhull-simple"; + "qrcode" = dontDistribute super."qrcode"; + "qt" = dontDistribute super."qt"; + "quadratic-irrational" = dontDistribute super."quadratic-irrational"; + "quantfin" = dontDistribute super."quantfin"; + "quantities" = dontDistribute super."quantities"; + "quantum-arrow" = dontDistribute super."quantum-arrow"; + "qudb" = dontDistribute super."qudb"; + "quenya-verb" = dontDistribute super."quenya-verb"; + "querystring-pickle" = dontDistribute super."querystring-pickle"; + "questioner" = dontDistribute super."questioner"; + "queue" = dontDistribute super."queue"; + "queuelike" = dontDistribute super."queuelike"; + "quick-generator" = dontDistribute super."quick-generator"; + "quickcheck-poly" = dontDistribute super."quickcheck-poly"; + "quickcheck-properties" = dontDistribute super."quickcheck-properties"; + "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb"; + "quickcheck-property-monad" = dontDistribute super."quickcheck-property-monad"; + "quickcheck-regex" = dontDistribute super."quickcheck-regex"; + "quickcheck-relaxng" = dontDistribute super."quickcheck-relaxng"; + "quickcheck-rematch" = dontDistribute super."quickcheck-rematch"; + "quickcheck-script" = dontDistribute super."quickcheck-script"; + "quickcheck-simple" = dontDistribute super."quickcheck-simple"; + "quickcheck-text" = dontDistribute super."quickcheck-text"; + "quickcheck-webdriver" = dontDistribute super."quickcheck-webdriver"; + "quicklz" = dontDistribute super."quicklz"; + "quickpull" = dontDistribute super."quickpull"; + "quickset" = dontDistribute super."quickset"; + "quickspec" = dontDistribute super."quickspec"; + "quicktest" = dontDistribute super."quicktest"; + "quickwebapp" = dontDistribute super."quickwebapp"; + "quiver" = dontDistribute super."quiver"; + "quiver-bytestring" = dontDistribute super."quiver-bytestring"; + "quiver-cell" = dontDistribute super."quiver-cell"; + "quiver-csv" = dontDistribute super."quiver-csv"; + "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-http" = dontDistribute super."quiver-http"; + "quoridor-hs" = dontDistribute super."quoridor-hs"; + "qux" = dontDistribute super."qux"; + "rabocsv2qif" = dontDistribute super."rabocsv2qif"; + "rad" = dontDistribute super."rad"; + "radian" = dontDistribute super."radian"; + "radium" = dontDistribute super."radium"; + "radium-formula-parser" = dontDistribute super."radium-formula-parser"; + "radix" = dontDistribute super."radix"; + "rados-haskell" = dontDistribute super."rados-haskell"; + "rail-compiler-editor" = dontDistribute super."rail-compiler-editor"; + "rainbow-tests" = dontDistribute super."rainbow-tests"; + "rake" = dontDistribute super."rake"; + "rakhana" = dontDistribute super."rakhana"; + "ralist" = dontDistribute super."ralist"; + "rallod" = dontDistribute super."rallod"; + "raml" = dontDistribute super."raml"; + "rand-vars" = dontDistribute super."rand-vars"; + "randfile" = dontDistribute super."randfile"; + "random-access-list" = dontDistribute super."random-access-list"; + "random-derive" = dontDistribute super."random-derive"; + "random-eff" = dontDistribute super."random-eff"; + "random-effin" = dontDistribute super."random-effin"; + "random-extras" = dontDistribute super."random-extras"; + "random-hypergeometric" = dontDistribute super."random-hypergeometric"; + "random-stream" = dontDistribute super."random-stream"; + "random-variates" = dontDistribute super."random-variates"; + "randomgen" = dontDistribute super."randomgen"; + "randproc" = dontDistribute super."randproc"; + "randsolid" = dontDistribute super."randsolid"; + "range-set-list" = dontDistribute super."range-set-list"; + "range-space" = dontDistribute super."range-space"; + "rangemin" = dontDistribute super."rangemin"; + "ranges" = dontDistribute super."ranges"; + "rank1dynamic" = dontDistribute super."rank1dynamic"; + "rascal" = dontDistribute super."rascal"; + "rate-limit" = dontDistribute super."rate-limit"; + "ratio-int" = dontDistribute super."ratio-int"; + "raven-haskell" = dontDistribute super."raven-haskell"; + "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty"; + "rawstring-qm" = dontDistribute super."rawstring-qm"; + "razom-text-util" = dontDistribute super."razom-text-util"; + "rbr" = dontDistribute super."rbr"; + "rclient" = dontDistribute super."rclient"; + "rcu" = dontDistribute super."rcu"; + "rdf4h" = dontDistribute super."rdf4h"; + "rdioh" = dontDistribute super."rdioh"; + "rdtsc" = dontDistribute super."rdtsc"; + "rdtsc-enolan" = dontDistribute super."rdtsc-enolan"; + "re2" = dontDistribute super."re2"; + "react-flux" = dontDistribute super."react-flux"; + "react-haskell" = dontDistribute super."react-haskell"; + "reaction-logic" = dontDistribute super."reaction-logic"; + "reactive" = dontDistribute super."reactive"; + "reactive-bacon" = dontDistribute super."reactive-bacon"; + "reactive-balsa" = dontDistribute super."reactive-balsa"; + "reactive-banana" = dontDistribute super."reactive-banana"; + "reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl"; + "reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny"; + "reactive-banana-wx" = dontDistribute super."reactive-banana-wx"; + "reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip"; + "reactive-glut" = dontDistribute super."reactive-glut"; + "reactive-haskell" = dontDistribute super."reactive-haskell"; + "reactive-io" = dontDistribute super."reactive-io"; + "reactive-thread" = dontDistribute super."reactive-thread"; + "reactor" = dontDistribute super."reactor"; + "read-bounded" = dontDistribute super."read-bounded"; + "readable" = dontDistribute super."readable"; + "readline" = dontDistribute super."readline"; + "readline-statevar" = dontDistribute super."readline-statevar"; + "readpyc" = dontDistribute super."readpyc"; + "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; + "reasonable-lens" = dontDistribute super."reasonable-lens"; + "reasonable-operational" = dontDistribute super."reasonable-operational"; + "recaptcha" = dontDistribute super."recaptcha"; + "record" = dontDistribute super."record"; + "record-aeson" = dontDistribute super."record-aeson"; + "record-gl" = dontDistribute super."record-gl"; + "record-preprocessor" = dontDistribute super."record-preprocessor"; + "record-syntax" = dontDistribute super."record-syntax"; + "records" = dontDistribute super."records"; + "records-th" = dontDistribute super."records-th"; + "recursion-schemes" = dontDistribute super."recursion-schemes"; + "recursive-line-count" = dontDistribute super."recursive-line-count"; + "redHandlers" = dontDistribute super."redHandlers"; + "reddit" = dontDistribute super."reddit"; + "redis" = dontDistribute super."redis"; + "redis-hs" = dontDistribute super."redis-hs"; + "redis-job-queue" = dontDistribute super."redis-job-queue"; + "redis-simple" = dontDistribute super."redis-simple"; + "redo" = dontDistribute super."redo"; + "reducers" = doDistribute super."reducers_3_10_3_2"; + "reenact" = dontDistribute super."reenact"; + "reexport-crypto-random" = dontDistribute super."reexport-crypto-random"; + "ref" = dontDistribute super."ref"; + "ref-mtl" = dontDistribute super."ref-mtl"; + "ref-tf" = dontDistribute super."ref-tf"; + "refcount" = dontDistribute super."refcount"; + "reference" = dontDistribute super."reference"; + "references" = dontDistribute super."references"; + "refh" = dontDistribute super."refh"; + "refined" = dontDistribute super."refined"; + "reflection-extras" = dontDistribute super."reflection-extras"; + "reflection-without-remorse" = dontDistribute super."reflection-without-remorse"; + "reflex" = dontDistribute super."reflex"; + "reflex-animation" = dontDistribute super."reflex-animation"; + "reflex-dom" = dontDistribute super."reflex-dom"; + "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; + "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; + "reform" = dontDistribute super."reform"; + "reform-blaze" = dontDistribute super."reform-blaze"; + "reform-hamlet" = dontDistribute super."reform-hamlet"; + "reform-happstack" = dontDistribute super."reform-happstack"; + "reform-hsp" = dontDistribute super."reform-hsp"; + "regex-applicative-text" = dontDistribute super."regex-applicative-text"; + "regex-compat-tdfa" = dontDistribute super."regex-compat-tdfa"; + "regex-deriv" = dontDistribute super."regex-deriv"; + "regex-dfa" = dontDistribute super."regex-dfa"; + "regex-easy" = dontDistribute super."regex-easy"; + "regex-genex" = dontDistribute super."regex-genex"; + "regex-parsec" = dontDistribute super."regex-parsec"; + "regex-pderiv" = dontDistribute super."regex-pderiv"; + "regex-posix-unittest" = dontDistribute super."regex-posix-unittest"; + "regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes"; + "regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter"; + "regex-tdfa-text" = dontDistribute super."regex-tdfa-text"; + "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; + "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; + "regex-tre" = dontDistribute super."regex-tre"; + "regex-xmlschema" = dontDistribute super."regex-xmlschema"; + "regexchar" = dontDistribute super."regexchar"; + "regexdot" = dontDistribute super."regexdot"; + "regexp-tries" = dontDistribute super."regexp-tries"; + "regexpr" = dontDistribute super."regexpr"; + "regexpr-symbolic" = dontDistribute super."regexpr-symbolic"; + "regexqq" = dontDistribute super."regexqq"; + "regional-pointers" = dontDistribute super."regional-pointers"; + "regions" = dontDistribute super."regions"; + "regions-monadsfd" = dontDistribute super."regions-monadsfd"; + "regions-monadstf" = dontDistribute super."regions-monadstf"; + "regions-mtl" = dontDistribute super."regions-mtl"; + "regress" = dontDistribute super."regress"; + "regular" = dontDistribute super."regular"; + "regular-extras" = dontDistribute super."regular-extras"; + "regular-web" = dontDistribute super."regular-web"; + "regular-xmlpickler" = dontDistribute super."regular-xmlpickler"; + "reheat" = dontDistribute super."reheat"; + "rehoo" = dontDistribute super."rehoo"; + "rei" = dontDistribute super."rei"; + "reified-records" = dontDistribute super."reified-records"; + "reify" = dontDistribute super."reify"; + "reinterpret-cast" = dontDistribute super."reinterpret-cast"; + "relacion" = dontDistribute super."relacion"; + "relation" = dontDistribute super."relation"; + "relational-postgresql8" = dontDistribute super."relational-postgresql8"; + "relational-query" = dontDistribute super."relational-query"; + "relational-query-HDBC" = dontDistribute super."relational-query-HDBC"; + "relational-record" = dontDistribute super."relational-record"; + "relational-record-examples" = dontDistribute super."relational-record-examples"; + "relational-schemas" = dontDistribute super."relational-schemas"; + "relative-date" = dontDistribute super."relative-date"; + "relit" = dontDistribute super."relit"; + "rematch" = dontDistribute super."rematch"; + "rematch-text" = dontDistribute super."rematch-text"; + "remote" = dontDistribute super."remote"; + "remote-debugger" = dontDistribute super."remote-debugger"; + "remotion" = dontDistribute super."remotion"; + "renderable" = dontDistribute super."renderable"; + "reord" = dontDistribute super."reord"; + "reorderable" = dontDistribute super."reorderable"; + "repa-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"; + "request-monad" = dontDistribute super."request-monad"; + "reserve" = dontDistribute super."reserve"; + "resistor-cube" = dontDistribute super."resistor-cube"; + "resolve-trivial-conflicts" = dontDistribute super."resolve-trivial-conflicts"; + "resource-effect" = dontDistribute super."resource-effect"; + "resource-embed" = dontDistribute super."resource-embed"; + "resource-pool-catchio" = dontDistribute super."resource-pool-catchio"; + "resource-simple" = dontDistribute super."resource-simple"; + "respond" = dontDistribute super."respond"; + "rest-core" = doDistribute super."rest-core_0_36_0_6"; + "rest-example" = dontDistribute super."rest-example"; + "rest-gen" = doDistribute super."rest-gen_0_17_1_3"; + "rest-happstack" = doDistribute super."rest-happstack_0_2_10_8"; + "rest-snap" = doDistribute super."rest-snap_0_1_17_18"; + "rest-wai" = doDistribute super."rest-wai_0_1_0_8"; + "restful-snap" = dontDistribute super."restful-snap"; + "restricted-workers" = dontDistribute super."restricted-workers"; + "restyle" = dontDistribute super."restyle"; + "resumable-exceptions" = dontDistribute super."resumable-exceptions"; + "rethinkdb" = dontDistribute super."rethinkdb"; + "rethinkdb-model" = dontDistribute super."rethinkdb-model"; + "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; + "retryer" = dontDistribute super."retryer"; + "revdectime" = dontDistribute super."revdectime"; + "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-geocoding" = dontDistribute super."reverse-geocoding"; + "reversi" = dontDistribute super."reversi"; + "rewrite" = dontDistribute super."rewrite"; + "rewriting" = dontDistribute super."rewriting"; + "rex" = dontDistribute super."rex"; + "rezoom" = dontDistribute super."rezoom"; + "rfc3339" = dontDistribute super."rfc3339"; + "rhythm-game-tutorial" = dontDistribute super."rhythm-game-tutorial"; + "riak" = dontDistribute super."riak"; + "riak-protobuf" = dontDistribute super."riak-protobuf"; + "richreports" = dontDistribute super."richreports"; + "riemann" = dontDistribute super."riemann"; + "riff" = dontDistribute super."riff"; + "ring-buffer" = dontDistribute super."ring-buffer"; + "riot" = dontDistribute super."riot"; + "ripple" = dontDistribute super."ripple"; + "ripple-federation" = dontDistribute super."ripple-federation"; + "risc386" = dontDistribute super."risc386"; + "rivers" = dontDistribute super."rivers"; + "rivet" = dontDistribute super."rivet"; + "rivet-core" = dontDistribute super."rivet-core"; + "rivet-migration" = dontDistribute super."rivet-migration"; + "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; + "rlglue" = dontDistribute super."rlglue"; + "rmonad" = dontDistribute super."rmonad"; + "rncryptor" = dontDistribute super."rncryptor"; + "rng-utils" = dontDistribute super."rng-utils"; + "robin" = dontDistribute super."robin"; + "robot" = dontDistribute super."robot"; + "robots-txt" = dontDistribute super."robots-txt"; + "rocksdb-haskell" = dontDistribute super."rocksdb-haskell"; + "roguestar" = dontDistribute super."roguestar"; + "roguestar-engine" = dontDistribute super."roguestar-engine"; + "roguestar-gl" = dontDistribute super."roguestar-gl"; + "roguestar-glut" = dontDistribute super."roguestar-glut"; + "rollbar" = dontDistribute super."rollbar"; + "roller" = dontDistribute super."roller"; + "rolling-queue" = dontDistribute super."rolling-queue"; + "roman-numerals" = dontDistribute super."roman-numerals"; + "romkan" = dontDistribute super."romkan"; + "roots" = dontDistribute super."roots"; + "rope" = dontDistribute super."rope"; + "rosa" = dontDistribute super."rosa"; + "rose-trees" = dontDistribute super."rose-trees"; + "rosezipper" = dontDistribute super."rosezipper"; + "roshask" = dontDistribute super."roshask"; + "rosso" = dontDistribute super."rosso"; + "rot13" = dontDistribute super."rot13"; + "rotating-log" = dontDistribute super."rotating-log"; + "rounding" = dontDistribute super."rounding"; + "roundtrip" = dontDistribute super."roundtrip"; + "roundtrip-aeson" = dontDistribute super."roundtrip-aeson"; + "roundtrip-string" = dontDistribute super."roundtrip-string"; + "roundtrip-xml" = dontDistribute super."roundtrip-xml"; + "route-generator" = dontDistribute super."route-generator"; + "route-planning" = dontDistribute super."route-planning"; + "rowrecord" = dontDistribute super."rowrecord"; + "rpc" = dontDistribute super."rpc"; + "rpc-framework" = dontDistribute super."rpc-framework"; + "rpf" = dontDistribute super."rpf"; + "rpm" = dontDistribute super."rpm"; + "rsagl" = dontDistribute super."rsagl"; + "rsagl-frp" = dontDistribute super."rsagl-frp"; + "rsagl-math" = dontDistribute super."rsagl-math"; + "rspp" = dontDistribute super."rspp"; + "rss" = dontDistribute super."rss"; + "rss2irc" = dontDistribute super."rss2irc"; + "rtld" = dontDistribute super."rtld"; + "rtlsdr" = dontDistribute super."rtlsdr"; + "rtorrent-rpc" = dontDistribute super."rtorrent-rpc"; + "rtorrent-state" = dontDistribute super."rtorrent-state"; + "rubberband" = dontDistribute super."rubberband"; + "ruby-marshal" = dontDistribute super."ruby-marshal"; + "ruby-qq" = dontDistribute super."ruby-qq"; + "ruff" = dontDistribute super."ruff"; + "ruler" = dontDistribute super."ruler"; + "ruler-core" = dontDistribute super."ruler-core"; + "rungekutta" = dontDistribute super."rungekutta"; + "runghc" = dontDistribute super."runghc"; + "rwlock" = dontDistribute super."rwlock"; + "rws" = dontDistribute super."rws"; + "s3-signer" = dontDistribute super."s3-signer"; + "safe-access" = dontDistribute super."safe-access"; + "safe-failure" = dontDistribute super."safe-failure"; + "safe-failure-cme" = dontDistribute super."safe-failure-cme"; + "safe-freeze" = dontDistribute super."safe-freeze"; + "safe-globals" = dontDistribute super."safe-globals"; + "safe-lazy-io" = dontDistribute super."safe-lazy-io"; + "safe-plugins" = dontDistribute super."safe-plugins"; + "safe-printf" = dontDistribute super."safe-printf"; + "safeint" = dontDistribute super."safeint"; + "safer-file-handles" = dontDistribute super."safer-file-handles"; + "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring"; + "safer-file-handles-text" = dontDistribute super."safer-file-handles-text"; + "saferoute" = dontDistribute super."saferoute"; + "sai-shape-syb" = dontDistribute super."sai-shape-syb"; + "saltine" = dontDistribute super."saltine"; + "saltine-quickcheck" = dontDistribute super."saltine-quickcheck"; + "salvia" = dontDistribute super."salvia"; + "salvia-demo" = dontDistribute super."salvia-demo"; + "salvia-extras" = dontDistribute super."salvia-extras"; + "salvia-protocol" = dontDistribute super."salvia-protocol"; + "salvia-sessions" = dontDistribute super."salvia-sessions"; + "salvia-websocket" = dontDistribute super."salvia-websocket"; + "sample-frame" = dontDistribute super."sample-frame"; + "sample-frame-np" = dontDistribute super."sample-frame-np"; + "samtools" = dontDistribute super."samtools"; + "samtools-conduit" = dontDistribute super."samtools-conduit"; + "samtools-enumerator" = dontDistribute super."samtools-enumerator"; + "samtools-iteratee" = dontDistribute super."samtools-iteratee"; + "sandlib" = dontDistribute super."sandlib"; + "sandman" = dontDistribute super."sandman"; + "sarasvati" = dontDistribute super."sarasvati"; + "sasl" = dontDistribute super."sasl"; + "sat" = dontDistribute super."sat"; + "sat-micro-hs" = dontDistribute super."sat-micro-hs"; + "satchmo" = dontDistribute super."satchmo"; + "satchmo-backends" = dontDistribute super."satchmo-backends"; + "satchmo-examples" = dontDistribute super."satchmo-examples"; + "satchmo-funsat" = dontDistribute super."satchmo-funsat"; + "satchmo-minisat" = dontDistribute super."satchmo-minisat"; + "satchmo-toysat" = dontDistribute super."satchmo-toysat"; + "sbp" = dontDistribute super."sbp"; + "sc3-rdu" = dontDistribute super."sc3-rdu"; + "scalable-server" = dontDistribute super."scalable-server"; + "scaleimage" = dontDistribute super."scaleimage"; + "scalp-webhooks" = dontDistribute super."scalp-webhooks"; + "scan" = dontDistribute super."scan"; + "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scat" = dontDistribute super."scat"; + "scc" = dontDistribute super."scc"; + "scenegraph" = dontDistribute super."scenegraph"; + "scgi" = dontDistribute super."scgi"; + "schedevr" = dontDistribute super."schedevr"; + "schedule-planner" = dontDistribute super."schedule-planner"; + "schedyield" = dontDistribute super."schedyield"; + "scholdoc" = dontDistribute super."scholdoc"; + "scholdoc-citeproc" = dontDistribute super."scholdoc-citeproc"; + "scholdoc-texmath" = dontDistribute super."scholdoc-texmath"; + "scholdoc-types" = dontDistribute super."scholdoc-types"; + "schonfinkeling" = dontDistribute super."schonfinkeling"; + "sci-ratio" = dontDistribute super."sci-ratio"; + "science-constants" = dontDistribute super."science-constants"; + "science-constants-dimensional" = dontDistribute super."science-constants-dimensional"; + "scion" = dontDistribute super."scion"; + "scion-browser" = dontDistribute super."scion-browser"; + "scons2dot" = dontDistribute super."scons2dot"; + "scope" = dontDistribute super."scope"; + "scope-cairo" = dontDistribute super."scope-cairo"; + "scottish" = dontDistribute super."scottish"; + "scotty-binding-play" = dontDistribute super."scotty-binding-play"; + "scotty-blaze" = dontDistribute super."scotty-blaze"; + "scotty-cookie" = dontDistribute super."scotty-cookie"; + "scotty-fay" = dontDistribute super."scotty-fay"; + "scotty-hastache" = dontDistribute super."scotty-hastache"; + "scotty-rest" = dontDistribute super."scotty-rest"; + "scotty-session" = dontDistribute super."scotty-session"; + "scotty-tls" = dontDistribute super."scotty-tls"; + "scp-streams" = dontDistribute super."scp-streams"; + "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrobble" = dontDistribute super."scrobble"; + "scroll" = dontDistribute super."scroll"; + "scrypt" = dontDistribute super."scrypt"; + "scrz" = dontDistribute super."scrz"; + "scyther-proof" = dontDistribute super."scyther-proof"; + "sde-solver" = dontDistribute super."sde-solver"; + "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; + "sdl2" = doDistribute super."sdl2_1_3_1"; + "sdl2-cairo" = dontDistribute super."sdl2-cairo"; + "sdl2-compositor" = dontDistribute super."sdl2-compositor"; + "sdl2-image" = dontDistribute super."sdl2-image"; + "sdl2-ttf" = dontDistribute super."sdl2-ttf"; + "sdnv" = dontDistribute super."sdnv"; + "sdr" = dontDistribute super."sdr"; + "seacat" = dontDistribute super."seacat"; + "seal-module" = dontDistribute super."seal-module"; + "search" = dontDistribute super."search"; + "sec" = dontDistribute super."sec"; + "secdh" = dontDistribute super."secdh"; + "seclib" = dontDistribute super."seclib"; + "second-transfer" = doDistribute super."second-transfer_0_6_1_0"; + "secp256k1" = dontDistribute super."secp256k1"; + "secret-santa" = dontDistribute super."secret-santa"; + "secret-sharing" = dontDistribute super."secret-sharing"; + "secrm" = dontDistribute super."secrm"; + "secure-sockets" = dontDistribute super."secure-sockets"; + "sednaDBXML" = dontDistribute super."sednaDBXML"; + "select" = dontDistribute super."select"; + "selectors" = dontDistribute super."selectors"; + "selenium" = dontDistribute super."selenium"; + "selenium-server" = dontDistribute super."selenium-server"; + "selfrestart" = dontDistribute super."selfrestart"; + "selinux" = dontDistribute super."selinux"; + "semaphore-plus" = dontDistribute super."semaphore-plus"; + "semi-iso" = dontDistribute super."semi-iso"; + "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; + "semigroups-actions" = dontDistribute super."semigroups-actions"; + "semiring" = dontDistribute super."semiring"; + "semiring-simple" = dontDistribute super."semiring-simple"; + "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensenet" = dontDistribute super."sensenet"; + "sentry" = dontDistribute super."sentry"; + "senza" = dontDistribute super."senza"; + "separated" = dontDistribute super."separated"; + "seqaid" = dontDistribute super."seqaid"; + "seqid" = dontDistribute super."seqid"; + "seqid-streams" = dontDistribute super."seqid-streams"; + "seqloc-datafiles" = dontDistribute super."seqloc-datafiles"; + "sequence" = dontDistribute super."sequence"; + "sequent-core" = dontDistribute super."sequent-core"; + "sequential-index" = dontDistribute super."sequential-index"; + "sequor" = dontDistribute super."sequor"; + "serial" = dontDistribute super."serial"; + "serial-test-generators" = dontDistribute super."serial-test-generators"; + "serialport" = dontDistribute super."serialport"; + "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0"; + "servant-blaze" = dontDistribute super."servant-blaze"; + "servant-ede" = dontDistribute super."servant-ede"; + "servant-examples" = dontDistribute super."servant-examples"; + "servant-lucid" = dontDistribute super."servant-lucid"; + "servant-mock" = dontDistribute super."servant-mock"; + "servant-pool" = dontDistribute super."servant-pool"; + "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-response" = dontDistribute super."servant-response"; + "servant-scotty" = dontDistribute super."servant-scotty"; + "servius" = dontDistribute super."servius"; + "ses-html" = dontDistribute super."ses-html"; + "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; + "sessions" = dontDistribute super."sessions"; + "set-cover" = dontDistribute super."set-cover"; + "set-with" = dontDistribute super."set-with"; + "setdown" = dontDistribute super."setdown"; + "setops" = dontDistribute super."setops"; + "sets" = dontDistribute super."sets"; + "setters" = dontDistribute super."setters"; + "settings" = dontDistribute super."settings"; + "sexp" = dontDistribute super."sexp"; + "sexp-show" = dontDistribute super."sexp-show"; + "sexpr" = dontDistribute super."sexpr"; + "sext" = dontDistribute super."sext"; + "sfml-audio" = dontDistribute super."sfml-audio"; + "sfmt" = dontDistribute super."sfmt"; + "sgd" = dontDistribute super."sgd"; + "sgf" = dontDistribute super."sgf"; + "sgrep" = dontDistribute super."sgrep"; + "sha-streams" = dontDistribute super."sha-streams"; + "shadower" = dontDistribute super."shadower"; + "shadowsocks" = dontDistribute super."shadowsocks"; + "shady-gen" = dontDistribute super."shady-gen"; + "shady-graphics" = dontDistribute super."shady-graphics"; + "shake-cabal-build" = dontDistribute super."shake-cabal-build"; + "shake-extras" = dontDistribute super."shake-extras"; + "shake-minify" = dontDistribute super."shake-minify"; + "shake-pack" = dontDistribute super."shake-pack"; + "shaker" = dontDistribute super."shaker"; + "shakespeare-css" = dontDistribute super."shakespeare-css"; + "shakespeare-i18n" = dontDistribute super."shakespeare-i18n"; + "shakespeare-js" = dontDistribute super."shakespeare-js"; + "shakespeare-text" = dontDistribute super."shakespeare-text"; + "shana" = dontDistribute super."shana"; + "shapefile" = dontDistribute super."shapefile"; + "shapely-data" = dontDistribute super."shapely-data"; + "shared-buffer" = dontDistribute super."shared-buffer"; + "shared-fields" = dontDistribute super."shared-fields"; + "shared-memory" = dontDistribute super."shared-memory"; + "sharedio" = dontDistribute super."sharedio"; + "she" = dontDistribute super."she"; + "shelduck" = dontDistribute super."shelduck"; + "shell-escape" = dontDistribute super."shell-escape"; + "shell-monad" = dontDistribute super."shell-monad"; + "shell-pipe" = dontDistribute super."shell-pipe"; + "shellish" = dontDistribute super."shellish"; + "shellmate" = dontDistribute super."shellmate"; + "shelly-extra" = dontDistribute super."shelly-extra"; + "shivers-cfg" = dontDistribute super."shivers-cfg"; + "shoap" = dontDistribute super."shoap"; + "shortcircuit" = dontDistribute super."shortcircuit"; + "shorten-strings" = dontDistribute super."shorten-strings"; + "should-not-typecheck" = dontDistribute super."should-not-typecheck"; + "show-type" = dontDistribute super."show-type"; + "showdown" = dontDistribute super."showdown"; + "shpider" = dontDistribute super."shpider"; + "shplit" = dontDistribute super."shplit"; + "shqq" = dontDistribute super."shqq"; + "shuffle" = dontDistribute super."shuffle"; + "sieve" = dontDistribute super."sieve"; + "sifflet" = dontDistribute super."sifflet"; + "sifflet-lib" = dontDistribute super."sifflet-lib"; + "sign" = dontDistribute super."sign"; + "signal" = dontDistribute super."signal"; + "signals" = dontDistribute super."signals"; + "signed-multiset" = dontDistribute super."signed-multiset"; + "simd" = dontDistribute super."simd"; + "simgi" = dontDistribute super."simgi"; + "simple" = dontDistribute super."simple"; + "simple-actors" = dontDistribute super."simple-actors"; + "simple-atom" = dontDistribute super."simple-atom"; + "simple-bluetooth" = dontDistribute super."simple-bluetooth"; + "simple-c-value" = dontDistribute super."simple-c-value"; + "simple-conduit" = dontDistribute super."simple-conduit"; + "simple-config" = dontDistribute super."simple-config"; + "simple-css" = dontDistribute super."simple-css"; + "simple-eval" = dontDistribute super."simple-eval"; + "simple-firewire" = dontDistribute super."simple-firewire"; + "simple-form" = dontDistribute super."simple-form"; + "simple-genetic-algorithm" = dontDistribute super."simple-genetic-algorithm"; + "simple-genetic-algorithm-mr" = dontDistribute super."simple-genetic-algorithm-mr"; + "simple-get-opt" = dontDistribute super."simple-get-opt"; + "simple-index" = dontDistribute super."simple-index"; + "simple-log" = dontDistribute super."simple-log"; + "simple-log-syslog" = dontDistribute super."simple-log-syslog"; + "simple-neural-networks" = dontDistribute super."simple-neural-networks"; + "simple-nix" = dontDistribute super."simple-nix"; + "simple-observer" = dontDistribute super."simple-observer"; + "simple-pascal" = dontDistribute super."simple-pascal"; + "simple-pipe" = dontDistribute super."simple-pipe"; + "simple-postgresql-orm" = dontDistribute super."simple-postgresql-orm"; + "simple-rope" = dontDistribute super."simple-rope"; + "simple-server" = dontDistribute super."simple-server"; + "simple-session" = dontDistribute super."simple-session"; + "simple-sessions" = dontDistribute super."simple-sessions"; + "simple-smt" = dontDistribute super."simple-smt"; + "simple-sql-parser" = dontDistribute super."simple-sql-parser"; + "simple-stacked-vm" = dontDistribute super."simple-stacked-vm"; + "simple-tabular" = dontDistribute super."simple-tabular"; + "simple-templates" = dontDistribute super."simple-templates"; + "simple-vec3" = dontDistribute super."simple-vec3"; + "simpleargs" = dontDistribute super."simpleargs"; + "simpleirc" = dontDistribute super."simpleirc"; + "simpleirc-lens" = dontDistribute super."simpleirc-lens"; + "simplenote" = dontDistribute super."simplenote"; + "simpleprelude" = dontDistribute super."simpleprelude"; + "simplesmtpclient" = dontDistribute super."simplesmtpclient"; + "simplessh" = dontDistribute super."simplessh"; + "simplex" = dontDistribute super."simplex"; + "simplex-basic" = dontDistribute super."simplex-basic"; + "simseq" = dontDistribute super."simseq"; + "simtreelo" = dontDistribute super."simtreelo"; + "sindre" = dontDistribute super."sindre"; + "singleton-nats" = dontDistribute super."singleton-nats"; + "sink" = dontDistribute super."sink"; + "sirkel" = dontDistribute super."sirkel"; + "sitemap" = dontDistribute super."sitemap"; + "sized" = dontDistribute super."sized"; + "sized-types" = dontDistribute super."sized-types"; + "sized-vector" = dontDistribute super."sized-vector"; + "sizes" = dontDistribute super."sizes"; + "sjsp" = dontDistribute super."sjsp"; + "skeleton" = dontDistribute super."skeleton"; + "skeletons" = dontDistribute super."skeletons"; + "skell" = dontDistribute super."skell"; + "skype4hs" = dontDistribute super."skype4hs"; + "skypelogexport" = dontDistribute super."skypelogexport"; + "slack" = dontDistribute super."slack"; + "slack-api" = dontDistribute super."slack-api"; + "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; + "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; + "slidemews" = dontDistribute super."slidemews"; + "sloane" = dontDistribute super."sloane"; + "slot-lambda" = dontDistribute super."slot-lambda"; + "sloth" = dontDistribute super."sloth"; + "smallarray" = dontDistribute super."smallarray"; + "smallcaps" = dontDistribute super."smallcaps"; + "smallcheck-laws" = dontDistribute super."smallcheck-laws"; + "smallcheck-lens" = dontDistribute super."smallcheck-lens"; + "smallcheck-series" = dontDistribute super."smallcheck-series"; + "smallpt-hs" = dontDistribute super."smallpt-hs"; + "smallstring" = dontDistribute super."smallstring"; + "smaoin" = dontDistribute super."smaoin"; + "smartGroup" = dontDistribute super."smartGroup"; + "smartcheck" = dontDistribute super."smartcheck"; + "smartconstructor" = dontDistribute super."smartconstructor"; + "smartword" = dontDistribute super."smartword"; + "sme" = dontDistribute super."sme"; + "smsaero" = dontDistribute super."smsaero"; + "smt-lib" = dontDistribute super."smt-lib"; + "smtlib2" = dontDistribute super."smtlib2"; + "smtp-mail-ng" = dontDistribute super."smtp-mail-ng"; + "smtp2mta" = dontDistribute super."smtp2mta"; + "smtps-gmail" = dontDistribute super."smtps-gmail"; + "snake-game" = dontDistribute super."snake-game"; + "snap-accept" = dontDistribute super."snap-accept"; + "snap-app" = dontDistribute super."snap-app"; + "snap-auth-cli" = dontDistribute super."snap-auth-cli"; + "snap-blaze" = dontDistribute super."snap-blaze"; + "snap-blaze-clay" = dontDistribute super."snap-blaze-clay"; + "snap-configuration-utilities" = dontDistribute super."snap-configuration-utilities"; + "snap-cors" = dontDistribute super."snap-cors"; + "snap-elm" = dontDistribute super."snap-elm"; + "snap-error-collector" = dontDistribute super."snap-error-collector"; + "snap-extras" = dontDistribute super."snap-extras"; + "snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic"; + "snap-loader-static" = dontDistribute super."snap-loader-static"; + "snap-predicates" = dontDistribute super."snap-predicates"; + "snap-testing" = dontDistribute super."snap-testing"; + "snap-utils" = dontDistribute super."snap-utils"; + "snap-web-routes" = dontDistribute super."snap-web-routes"; + "snaplet-acid-state" = dontDistribute super."snaplet-acid-state"; + "snaplet-actionlog" = dontDistribute super."snaplet-actionlog"; + "snaplet-amqp" = dontDistribute super."snaplet-amqp"; + "snaplet-auth-acid" = dontDistribute super."snaplet-auth-acid"; + "snaplet-coffee" = dontDistribute super."snaplet-coffee"; + "snaplet-css-min" = dontDistribute super."snaplet-css-min"; + "snaplet-environments" = dontDistribute super."snaplet-environments"; + "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; + "snaplet-hasql" = dontDistribute super."snaplet-hasql"; + "snaplet-haxl" = dontDistribute super."snaplet-haxl"; + "snaplet-hdbc" = dontDistribute super."snaplet-hdbc"; + "snaplet-hslogger" = dontDistribute super."snaplet-hslogger"; + "snaplet-i18n" = dontDistribute super."snaplet-i18n"; + "snaplet-influxdb" = dontDistribute super."snaplet-influxdb"; + "snaplet-lss" = dontDistribute super."snaplet-lss"; + "snaplet-mandrill" = dontDistribute super."snaplet-mandrill"; + "snaplet-mongoDB" = dontDistribute super."snaplet-mongoDB"; + "snaplet-mongodb-minimalistic" = dontDistribute super."snaplet-mongodb-minimalistic"; + "snaplet-mysql-simple" = dontDistribute super."snaplet-mysql-simple"; + "snaplet-oauth" = dontDistribute super."snaplet-oauth"; + "snaplet-persistent" = dontDistribute super."snaplet-persistent"; + "snaplet-postgresql-simple" = dontDistribute super."snaplet-postgresql-simple"; + "snaplet-postmark" = dontDistribute super."snaplet-postmark"; + "snaplet-purescript" = dontDistribute super."snaplet-purescript"; + "snaplet-recaptcha" = dontDistribute super."snaplet-recaptcha"; + "snaplet-redis" = dontDistribute super."snaplet-redis"; + "snaplet-redson" = dontDistribute super."snaplet-redson"; + "snaplet-rest" = dontDistribute super."snaplet-rest"; + "snaplet-riak" = dontDistribute super."snaplet-riak"; + "snaplet-sass" = dontDistribute super."snaplet-sass"; + "snaplet-sedna" = dontDistribute super."snaplet-sedna"; + "snaplet-ses-html" = dontDistribute super."snaplet-ses-html"; + "snaplet-sqlite-simple" = dontDistribute super."snaplet-sqlite-simple"; + "snaplet-stripe" = dontDistribute super."snaplet-stripe"; + "snaplet-tasks" = dontDistribute super."snaplet-tasks"; + "snaplet-typed-sessions" = dontDistribute super."snaplet-typed-sessions"; + "snaplet-wordpress" = dontDistribute super."snaplet-wordpress"; + "snappy" = dontDistribute super."snappy"; + "snappy-conduit" = dontDistribute super."snappy-conduit"; + "snappy-framing" = dontDistribute super."snappy-framing"; + "snappy-iteratee" = dontDistribute super."snappy-iteratee"; + "sndfile-enumerators" = dontDistribute super."sndfile-enumerators"; + "sneakyterm" = dontDistribute super."sneakyterm"; + "sneathlane-haste" = dontDistribute super."sneathlane-haste"; + "snippet-extractor" = dontDistribute super."snippet-extractor"; + "snm" = dontDistribute super."snm"; + "snow-white" = dontDistribute super."snow-white"; + "snowball" = dontDistribute super."snowball"; + "snowglobe" = dontDistribute super."snowglobe"; + "soap" = dontDistribute super."soap"; + "soap-openssl" = dontDistribute super."soap-openssl"; + "soap-tls" = dontDistribute super."soap-tls"; + "sock2stream" = dontDistribute super."sock2stream"; + "sockaddr" = dontDistribute super."sockaddr"; + "socket" = dontDistribute super."socket"; + "socket-activation" = dontDistribute super."socket-activation"; + "socket-sctp" = dontDistribute super."socket-sctp"; + "socketio" = dontDistribute super."socketio"; + "soegtk" = dontDistribute super."soegtk"; + "sonic-visualiser" = dontDistribute super."sonic-visualiser"; + "sophia" = dontDistribute super."sophia"; + "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; + "sorted" = dontDistribute super."sorted"; + "sorted-list" = dontDistribute super."sorted-list"; + "sorting" = dontDistribute super."sorting"; + "sorty" = dontDistribute super."sorty"; + "sound-collage" = dontDistribute super."sound-collage"; + "sounddelay" = dontDistribute super."sounddelay"; + "source-code-server" = dontDistribute super."source-code-server"; + "sousit" = dontDistribute super."sousit"; + "sox" = dontDistribute super."sox"; + "soxlib" = dontDistribute super."soxlib"; + "soyuz" = dontDistribute super."soyuz"; + "spacefill" = dontDistribute super."spacefill"; + "spacepart" = dontDistribute super."spacepart"; + "spaceprobe" = dontDistribute super."spaceprobe"; + "spanout" = dontDistribute super."spanout"; + "sparse" = dontDistribute super."sparse"; + "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; + "sparsebit" = dontDistribute super."sparsebit"; + "sparsecheck" = dontDistribute super."sparsecheck"; + "sparser" = dontDistribute super."sparser"; + "spata" = dontDistribute super."spata"; + "spatial-math" = dontDistribute super."spatial-math"; + "spawn" = dontDistribute super."spawn"; + "spe" = dontDistribute super."spe"; + "special-functors" = dontDistribute super."special-functors"; + "special-keys" = dontDistribute super."special-keys"; + "specialize-th" = dontDistribute super."specialize-th"; + "species" = dontDistribute super."species"; + "speculation-transformers" = dontDistribute super."speculation-transformers"; + "speedy-slice" = dontDistribute super."speedy-slice"; + "spelling-suggest" = dontDistribute super."spelling-suggest"; + "sphero" = dontDistribute super."sphero"; + "sphinx-cli" = dontDistribute super."sphinx-cli"; + "spice" = dontDistribute super."spice"; + "spike" = dontDistribute super."spike"; + "spine" = dontDistribute super."spine"; + "spir-v" = dontDistribute super."spir-v"; + "splay" = dontDistribute super."splay"; + "splaytree" = dontDistribute super."splaytree"; + "spline3" = dontDistribute super."spline3"; + "splines" = dontDistribute super."splines"; + "split-channel" = dontDistribute super."split-channel"; + "split-record" = dontDistribute super."split-record"; + "split-tchan" = dontDistribute super."split-tchan"; + "splitter" = dontDistribute super."splitter"; + "splot" = dontDistribute super."splot"; + "spool" = dontDistribute super."spool"; + "spoonutil" = dontDistribute super."spoonutil"; + "spoty" = dontDistribute super."spoty"; + "spreadsheet" = dontDistribute super."spreadsheet"; + "spritz" = dontDistribute super."spritz"; + "spsa" = dontDistribute super."spsa"; + "spy" = dontDistribute super."spy"; + "sql-simple" = dontDistribute super."sql-simple"; + "sql-simple-mysql" = dontDistribute super."sql-simple-mysql"; + "sql-simple-pool" = dontDistribute super."sql-simple-pool"; + "sql-simple-postgresql" = dontDistribute super."sql-simple-postgresql"; + "sql-simple-sqlite" = dontDistribute super."sql-simple-sqlite"; + "sql-words" = dontDistribute super."sql-words"; + "sqlite" = dontDistribute super."sqlite"; + "sqlite-simple-typed" = dontDistribute super."sqlite-simple-typed"; + "sqlvalue-list" = dontDistribute super."sqlvalue-list"; + "squeeze" = dontDistribute super."squeeze"; + "sr-extra" = dontDistribute super."sr-extra"; + "srcinst" = dontDistribute super."srcinst"; + "srec" = dontDistribute super."srec"; + "sscgi" = dontDistribute super."sscgi"; + "ssh" = dontDistribute super."ssh"; + "sshd-lint" = dontDistribute super."sshd-lint"; + "sshtun" = dontDistribute super."sshtun"; + "sssp" = dontDistribute super."sssp"; + "sstable" = dontDistribute super."sstable"; + "ssv" = dontDistribute super."ssv"; + "stable-heap" = dontDistribute super."stable-heap"; + "stable-maps" = dontDistribute super."stable-maps"; + "stable-memo" = dontDistribute super."stable-memo"; + "stable-tree" = dontDistribute super."stable-tree"; + "stack-prism" = dontDistribute super."stack-prism"; + "stackage-curator" = dontDistribute super."stackage-curator"; + "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; + "standalone-haddock" = dontDistribute super."standalone-haddock"; + "star-to-star" = dontDistribute super."star-to-star"; + "star-to-star-contra" = dontDistribute super."star-to-star-contra"; + "starling" = dontDistribute super."starling"; + "starrover2" = dontDistribute super."starrover2"; + "stash" = dontDistribute super."stash"; + "state" = dontDistribute super."state"; + "state-plus" = dontDistribute super."state-plus"; + "state-record" = dontDistribute super."state-record"; + "stateWriter" = dontDistribute super."stateWriter"; + "statechart" = dontDistribute super."statechart"; + "stateful-mtl" = dontDistribute super."stateful-mtl"; + "statethread" = dontDistribute super."statethread"; + "statgrab" = dontDistribute super."statgrab"; + "static-hash" = dontDistribute super."static-hash"; + "static-resources" = dontDistribute super."static-resources"; + "staticanalysis" = dontDistribute super."staticanalysis"; + "statistics-dirichlet" = dontDistribute super."statistics-dirichlet"; + "statistics-fusion" = dontDistribute super."statistics-fusion"; + "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; + "stats" = dontDistribute super."stats"; + "statsd" = dontDistribute super."statsd"; + "statsd-datadog" = dontDistribute super."statsd-datadog"; + "statvfs" = dontDistribute super."statvfs"; + "stb-image" = dontDistribute super."stb-image"; + "stb-truetype" = dontDistribute super."stb-truetype"; + "stdata" = dontDistribute super."stdata"; + "stdf" = dontDistribute super."stdf"; + "steambrowser" = dontDistribute super."steambrowser"; + "steeloverseer" = dontDistribute super."steeloverseer"; + "stemmer" = dontDistribute super."stemmer"; + "step-function" = dontDistribute super."step-function"; + "stepwise" = dontDistribute super."stepwise"; + "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; + "stitch" = dontDistribute super."stitch"; + "stm-channelize" = dontDistribute super."stm-channelize"; + "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; + "stm-firehose" = dontDistribute super."stm-firehose"; + "stm-io-hooks" = dontDistribute super."stm-io-hooks"; + "stm-lifted" = dontDistribute super."stm-lifted"; + "stm-linkedlist" = dontDistribute super."stm-linkedlist"; + "stm-orelse-io" = dontDistribute super."stm-orelse-io"; + "stm-promise" = dontDistribute super."stm-promise"; + "stm-queue-extras" = dontDistribute super."stm-queue-extras"; + "stm-sbchan" = dontDistribute super."stm-sbchan"; + "stm-split" = dontDistribute super."stm-split"; + "stm-tlist" = dontDistribute super."stm-tlist"; + "stmcontrol" = dontDistribute super."stmcontrol"; + "stomp-conduit" = dontDistribute super."stomp-conduit"; + "stomp-patterns" = dontDistribute super."stomp-patterns"; + "stomp-queue" = dontDistribute super."stomp-queue"; + "stompl" = dontDistribute super."stompl"; + "stopwatch" = dontDistribute super."stopwatch"; + "storable" = dontDistribute super."storable"; + "storable-record" = dontDistribute super."storable-record"; + "storable-static-array" = dontDistribute super."storable-static-array"; + "storable-tuple" = dontDistribute super."storable-tuple"; + "storablevector" = dontDistribute super."storablevector"; + "storablevector-carray" = dontDistribute super."storablevector-carray"; + "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; + "str" = dontDistribute super."str"; + "stratum-tool" = dontDistribute super."stratum-tool"; + "stream-fusion" = dontDistribute super."stream-fusion"; + "stream-monad" = dontDistribute super."stream-monad"; + "streamed" = dontDistribute super."streamed"; + "streaming" = dontDistribute super."streaming"; + "streaming-bytestring" = dontDistribute super."streaming-bytestring"; + "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-utils" = dontDistribute super."streaming-utils"; + "streamproc" = dontDistribute super."streamproc"; + "strict-base-types" = dontDistribute super."strict-base-types"; + "strict-concurrency" = dontDistribute super."strict-concurrency"; + "strict-ghc-plugin" = dontDistribute super."strict-ghc-plugin"; + "strict-identity" = dontDistribute super."strict-identity"; + "strict-io" = dontDistribute super."strict-io"; + "strictify" = dontDistribute super."strictify"; + "strictly" = dontDistribute super."strictly"; + "string" = dontDistribute super."string"; + "string-conv" = dontDistribute super."string-conv"; + "string-convert" = dontDistribute super."string-convert"; + "string-qq" = dontDistribute super."string-qq"; + "string-quote" = dontDistribute super."string-quote"; + "string-similarity" = dontDistribute super."string-similarity"; + "stringlike" = dontDistribute super."stringlike"; + "stringprep" = dontDistribute super."stringprep"; + "strings" = dontDistribute super."strings"; + "stringtable-atom" = dontDistribute super."stringtable-atom"; + "strio" = dontDistribute super."strio"; + "stripe" = dontDistribute super."stripe"; + "stripe-haskell" = dontDistribute super."stripe-haskell"; + "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"; + "subnet" = dontDistribute super."subnet"; + "subtitleParser" = dontDistribute super."subtitleParser"; + "subtitles" = dontDistribute super."subtitles"; + "suffixarray" = dontDistribute super."suffixarray"; + "suffixtree" = dontDistribute super."suffixtree"; + "sugarhaskell" = dontDistribute super."sugarhaskell"; + "suitable" = dontDistribute super."suitable"; + "sundown" = dontDistribute super."sundown"; + "sunlight" = dontDistribute super."sunlight"; + "sunroof-compiler" = dontDistribute super."sunroof-compiler"; + "sunroof-examples" = dontDistribute super."sunroof-examples"; + "sunroof-server" = dontDistribute super."sunroof-server"; + "super-user-spark" = dontDistribute super."super-user-spark"; + "supercollider-ht" = dontDistribute super."supercollider-ht"; + "supercollider-midi" = dontDistribute super."supercollider-midi"; + "superdoc" = dontDistribute super."superdoc"; + "supero" = dontDistribute super."supero"; + "supervisor" = dontDistribute super."supervisor"; + "suspend" = dontDistribute super."suspend"; + "svg2q" = dontDistribute super."svg2q"; + "svgcairo" = dontDistribute super."svgcairo"; + "svgutils" = dontDistribute super."svgutils"; + "svm" = dontDistribute super."svm"; + "svm-light-utils" = dontDistribute super."svm-light-utils"; + "svm-simple" = dontDistribute super."svm-simple"; + "svndump" = dontDistribute super."svndump"; + "swapper" = dontDistribute super."swapper"; + "swearjure" = dontDistribute super."swearjure"; + "swf" = dontDistribute super."swf"; + "swift-lda" = dontDistribute super."swift-lda"; + "swish" = dontDistribute super."swish"; + "sws" = dontDistribute super."sws"; + "syb-extras" = dontDistribute super."syb-extras"; + "syb-with-class" = dontDistribute super."syb-with-class"; + "syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text"; + "sylvia" = dontDistribute super."sylvia"; + "sym" = dontDistribute super."sym"; + "sym-plot" = dontDistribute super."sym-plot"; + "sync" = dontDistribute super."sync"; + "sync-mht" = dontDistribute super."sync-mht"; + "synchronous-channels" = dontDistribute super."synchronous-channels"; + "syncthing-hs" = dontDistribute super."syncthing-hs"; + "synt" = dontDistribute super."synt"; + "syntactic" = dontDistribute super."syntactic"; + "syntactical" = dontDistribute super."syntactical"; + "syntax" = dontDistribute super."syntax"; + "syntax-attoparsec" = dontDistribute super."syntax-attoparsec"; + "syntax-example" = dontDistribute super."syntax-example"; + "syntax-example-json" = dontDistribute super."syntax-example-json"; + "syntax-pretty" = dontDistribute super."syntax-pretty"; + "syntax-printer" = dontDistribute super."syntax-printer"; + "syntax-trees" = dontDistribute super."syntax-trees"; + "syntax-trees-fork-bairyn" = dontDistribute super."syntax-trees-fork-bairyn"; + "synthesizer" = dontDistribute super."synthesizer"; + "synthesizer-alsa" = dontDistribute super."synthesizer-alsa"; + "synthesizer-core" = dontDistribute super."synthesizer-core"; + "synthesizer-dimensional" = dontDistribute super."synthesizer-dimensional"; + "synthesizer-filter" = dontDistribute super."synthesizer-filter"; + "synthesizer-inference" = dontDistribute super."synthesizer-inference"; + "synthesizer-llvm" = dontDistribute super."synthesizer-llvm"; + "synthesizer-midi" = dontDistribute super."synthesizer-midi"; + "sys-auth-smbclient" = dontDistribute super."sys-auth-smbclient"; + "sys-process" = dontDistribute super."sys-process"; + "system-canonicalpath" = dontDistribute super."system-canonicalpath"; + "system-command" = dontDistribute super."system-command"; + "system-gpio" = dontDistribute super."system-gpio"; + "system-inotify" = dontDistribute super."system-inotify"; + "system-lifted" = dontDistribute super."system-lifted"; + "system-random-effect" = dontDistribute super."system-random-effect"; + "system-time-monotonic" = dontDistribute super."system-time-monotonic"; + "system-util" = dontDistribute super."system-util"; + "system-uuid" = dontDistribute super."system-uuid"; + "systemd" = dontDistribute super."systemd"; + "syz" = dontDistribute super."syz"; + "t-regex" = dontDistribute super."t-regex"; + "ta" = dontDistribute super."ta"; + "table" = dontDistribute super."table"; + "table-tennis" = dontDistribute super."table-tennis"; + "tableaux" = dontDistribute super."tableaux"; + "tables" = dontDistribute super."tables"; + "tablestorage" = dontDistribute super."tablestorage"; + "tabloid" = dontDistribute super."tabloid"; + "taffybar" = dontDistribute super."taffybar"; + "tag-bits" = dontDistribute super."tag-bits"; + "tag-stream" = dontDistribute super."tag-stream"; + "tagchup" = dontDistribute super."tagchup"; + "tagged-exception-core" = dontDistribute super."tagged-exception-core"; + "tagged-list" = dontDistribute super."tagged-list"; + "tagged-th" = dontDistribute super."tagged-th"; + "tagged-transformer" = dontDistribute super."tagged-transformer"; + "tagging" = dontDistribute super."tagging"; + "taggy" = dontDistribute super."taggy"; + "taggy-lens" = dontDistribute super."taggy-lens"; + "taglib" = dontDistribute super."taglib"; + "taglib-api" = dontDistribute super."taglib-api"; + "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "takahashi" = dontDistribute super."takahashi"; + "takusen-oracle" = dontDistribute super."takusen-oracle"; + "tamarin-prover" = dontDistribute super."tamarin-prover"; + "tamarin-prover-term" = dontDistribute super."tamarin-prover-term"; + "tamarin-prover-theory" = dontDistribute super."tamarin-prover-theory"; + "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; + "tamper" = dontDistribute super."tamper"; + "target" = dontDistribute super."target"; + "task" = dontDistribute super."task"; + "taskpool" = dontDistribute super."taskpool"; + "tasty" = doDistribute super."tasty_0_10_1_2"; + "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; + "tasty-html" = dontDistribute super."tasty-html"; + "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; + "tasty-integrate" = dontDistribute super."tasty-integrate"; + "tasty-laws" = dontDistribute super."tasty-laws"; + "tasty-lens" = dontDistribute super."tasty-lens"; + "tasty-program" = dontDistribute super."tasty-program"; + "tasty-tap" = dontDistribute super."tasty-tap"; + "tau" = dontDistribute super."tau"; + "tbox" = dontDistribute super."tbox"; + "tcache-AWS" = dontDistribute super."tcache-AWS"; + "tccli" = dontDistribute super."tccli"; + "tce-conf" = dontDistribute super."tce-conf"; + "tconfig" = dontDistribute super."tconfig"; + "tcp" = dontDistribute super."tcp"; + "tdd-util" = dontDistribute super."tdd-util"; + "tdoc" = dontDistribute super."tdoc"; + "teams" = dontDistribute super."teams"; + "teeth" = dontDistribute super."teeth"; + "telegram" = dontDistribute super."telegram"; + "tellbot" = dontDistribute super."tellbot"; + "template-default" = dontDistribute super."template-default"; + "template-haskell-util" = dontDistribute super."template-haskell-util"; + "template-hsml" = dontDistribute super."template-hsml"; + "templatepg" = dontDistribute super."templatepg"; + "templater" = dontDistribute super."templater"; + "tempodb" = dontDistribute super."tempodb"; + "temporal-csound" = dontDistribute super."temporal-csound"; + "temporal-media" = dontDistribute super."temporal-media"; + "temporal-music-notation" = dontDistribute super."temporal-music-notation"; + "temporal-music-notation-demo" = dontDistribute super."temporal-music-notation-demo"; + "temporal-music-notation-western" = dontDistribute super."temporal-music-notation-western"; + "temporary-resourcet" = dontDistribute super."temporary-resourcet"; + "tempus" = dontDistribute super."tempus"; + "tempus-fugit" = dontDistribute super."tempus-fugit"; + "tensor" = dontDistribute super."tensor"; + "term-rewriting" = dontDistribute super."term-rewriting"; + "termbox-bindings" = dontDistribute super."termbox-bindings"; + "termination-combinators" = dontDistribute super."termination-combinators"; + "terminfo" = doDistribute super."terminfo_0_4_0_1"; + "terminfo-hs" = dontDistribute super."terminfo-hs"; + "terrahs" = dontDistribute super."terrahs"; + "tersmu" = dontDistribute super."tersmu"; + "test-framework-doctest" = dontDistribute super."test-framework-doctest"; + "test-framework-golden" = dontDistribute super."test-framework-golden"; + "test-framework-program" = dontDistribute super."test-framework-program"; + "test-framework-quickcheck" = dontDistribute super."test-framework-quickcheck"; + "test-framework-sandbox" = dontDistribute super."test-framework-sandbox"; + "test-framework-skip" = dontDistribute super."test-framework-skip"; + "test-framework-smallcheck" = dontDistribute super."test-framework-smallcheck"; + "test-framework-testing-feat" = dontDistribute super."test-framework-testing-feat"; + "test-framework-th-prime" = dontDistribute super."test-framework-th-prime"; + "test-invariant" = dontDistribute super."test-invariant"; + "test-pkg" = dontDistribute super."test-pkg"; + "test-sandbox" = dontDistribute super."test-sandbox"; + "test-sandbox-compose" = dontDistribute super."test-sandbox-compose"; + "test-sandbox-hunit" = dontDistribute super."test-sandbox-hunit"; + "test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck"; + "test-shouldbe" = dontDistribute super."test-shouldbe"; + "test-simple" = dontDistribute super."test-simple"; + "testPkg" = dontDistribute super."testPkg"; + "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; + "testloop" = dontDistribute super."testloop"; + "testpack" = dontDistribute super."testpack"; + "testpattern" = dontDistribute super."testpattern"; + "testrunner" = dontDistribute super."testrunner"; + "tetris" = dontDistribute super."tetris"; + "tex2txt" = dontDistribute super."tex2txt"; + "texrunner" = dontDistribute super."texrunner"; + "text-and-plots" = dontDistribute super."text-and-plots"; + "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-translit" = dontDistribute super."text-icu-translit"; + "text-json-qq" = dontDistribute super."text-json-qq"; + "text-latin1" = dontDistribute super."text-latin1"; + "text-ldap" = dontDistribute super."text-ldap"; + "text-locale-encoding" = dontDistribute super."text-locale-encoding"; + "text-normal" = dontDistribute super."text-normal"; + "text-position" = dontDistribute super."text-position"; + "text-printer" = dontDistribute super."text-printer"; + "text-regex-replace" = dontDistribute super."text-regex-replace"; + "text-register-machine" = dontDistribute super."text-register-machine"; + "text-render" = dontDistribute super."text-render"; + "text-show" = doDistribute super."text-show_2"; + "text-show-instances" = dontDistribute super."text-show-instances"; + "text-stream-decode" = dontDistribute super."text-stream-decode"; + "text-utf7" = dontDistribute super."text-utf7"; + "text-xml-generic" = dontDistribute super."text-xml-generic"; + "text-xml-qq" = dontDistribute super."text-xml-qq"; + "text-zipper" = dontDistribute super."text-zipper"; + "text1" = dontDistribute super."text1"; + "textPlot" = dontDistribute super."textPlot"; + "textmatetags" = dontDistribute super."textmatetags"; + "textocat-api" = dontDistribute super."textocat-api"; + "texts" = dontDistribute super."texts"; + "tfp" = dontDistribute super."tfp"; + "tfp-th" = dontDistribute super."tfp-th"; + "tftp" = dontDistribute super."tftp"; + "tga" = dontDistribute super."tga"; + "th-alpha" = dontDistribute super."th-alpha"; + "th-build" = dontDistribute super."th-build"; + "th-context" = dontDistribute super."th-context"; + "th-fold" = dontDistribute super."th-fold"; + "th-inline-io-action" = dontDistribute super."th-inline-io-action"; + "th-instance-reification" = dontDistribute super."th-instance-reification"; + "th-instances" = dontDistribute super."th-instances"; + "th-kinds" = dontDistribute super."th-kinds"; + "th-lift-instances" = dontDistribute super."th-lift-instances"; + "th-printf" = dontDistribute super."th-printf"; + "th-sccs" = dontDistribute super."th-sccs"; + "th-traced" = dontDistribute super."th-traced"; + "th-typegraph" = dontDistribute super."th-typegraph"; + "themoviedb" = dontDistribute super."themoviedb"; + "themplate" = dontDistribute super."themplate"; + "theoremquest" = dontDistribute super."theoremquest"; + "theoremquest-client" = dontDistribute super."theoremquest-client"; + "these" = dontDistribute super."these"; + "thespian" = dontDistribute super."thespian"; + "theta-functions" = dontDistribute super."theta-functions"; + "thih" = dontDistribute super."thih"; + "thimk" = dontDistribute super."thimk"; + "thorn" = dontDistribute super."thorn"; + "thread-local-storage" = dontDistribute super."thread-local-storage"; + "threadPool" = dontDistribute super."threadPool"; + "threadmanager" = dontDistribute super."threadmanager"; + "threads-pool" = dontDistribute super."threads-pool"; + "threads-supervisor" = dontDistribute super."threads-supervisor"; + "threadscope" = dontDistribute super."threadscope"; + "threefish" = dontDistribute super."threefish"; + "threepenny-gui" = dontDistribute super."threepenny-gui"; + "thrift" = dontDistribute super."thrift"; + "thrist" = dontDistribute super."thrist"; + "throttle" = dontDistribute super."throttle"; + "thumbnail" = dontDistribute super."thumbnail"; + "tianbar" = dontDistribute super."tianbar"; + "tic-tac-toe" = dontDistribute super."tic-tac-toe"; + "tickle" = dontDistribute super."tickle"; + "tictactoe3d" = dontDistribute super."tictactoe3d"; + "tidal" = dontDistribute super."tidal"; + "tidal-midi" = dontDistribute super."tidal-midi"; + "tidal-vis" = dontDistribute super."tidal-vis"; + "tie-knot" = dontDistribute super."tie-knot"; + "tiempo" = dontDistribute super."tiempo"; + "tiger" = dontDistribute super."tiger"; + "tight-apply" = dontDistribute super."tight-apply"; + "tightrope" = dontDistribute super."tightrope"; + "tighttp" = dontDistribute super."tighttp"; + "tilings" = dontDistribute super."tilings"; + "timberc" = dontDistribute super."timberc"; + "time-extras" = dontDistribute super."time-extras"; + "time-exts" = dontDistribute super."time-exts"; + "time-http" = dontDistribute super."time-http"; + "time-interval" = dontDistribute super."time-interval"; + "time-io-access" = dontDistribute super."time-io-access"; + "time-patterns" = dontDistribute super."time-patterns"; + "time-qq" = dontDistribute super."time-qq"; + "time-recurrence" = dontDistribute super."time-recurrence"; + "time-series" = dontDistribute super."time-series"; + "time-units" = dontDistribute super."time-units"; + "time-w3c" = dontDistribute super."time-w3c"; + "timecalc" = dontDistribute super."timecalc"; + "timeconsole" = dontDistribute super."timeconsole"; + "timeless" = dontDistribute super."timeless"; + "timeout" = dontDistribute super."timeout"; + "timeout-control" = dontDistribute super."timeout-control"; + "timeout-with-results" = dontDistribute super."timeout-with-results"; + "timeparsers" = dontDistribute super."timeparsers"; + "timeplot" = dontDistribute super."timeplot"; + "timers" = dontDistribute super."timers"; + "timers-updatable" = dontDistribute super."timers-updatable"; + "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines"; + "timestamper" = dontDistribute super."timestamper"; + "timezone-olson-th" = dontDistribute super."timezone-olson-th"; + "timing-convenience" = dontDistribute super."timing-convenience"; + "tinyMesh" = dontDistribute super."tinyMesh"; + "tinytemplate" = dontDistribute super."tinytemplate"; + "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend"; + "tip-lib" = dontDistribute super."tip-lib"; + "titlecase" = dontDistribute super."titlecase"; + "tkhs" = dontDistribute super."tkhs"; + "tkyprof" = dontDistribute super."tkyprof"; + "tld" = dontDistribute super."tld"; + "tls" = doDistribute super."tls_1_3_2"; + "tls-debug" = doDistribute super."tls-debug_0_4_0"; + "tls-extra" = dontDistribute super."tls-extra"; + "tmpl" = dontDistribute super."tmpl"; + "tn" = dontDistribute super."tn"; + "tnet" = dontDistribute super."tnet"; + "to-haskell" = dontDistribute super."to-haskell"; + "to-string-class" = dontDistribute super."to-string-class"; + "to-string-instances" = dontDistribute super."to-string-instances"; + "todos" = dontDistribute super."todos"; + "tofromxml" = dontDistribute super."tofromxml"; + "toilet" = dontDistribute super."toilet"; + "tokenify" = dontDistribute super."tokenify"; + "tokenize" = dontDistribute super."tokenize"; + "toktok" = dontDistribute super."toktok"; + "tokyocabinet-haskell" = dontDistribute super."tokyocabinet-haskell"; + "tokyotyrant-haskell" = dontDistribute super."tokyotyrant-haskell"; + "tomato-rubato-openal" = dontDistribute super."tomato-rubato-openal"; + "toml" = dontDistribute super."toml"; + "toolshed" = dontDistribute super."toolshed"; + "topkata" = dontDistribute super."topkata"; + "torch" = dontDistribute super."torch"; + "total" = dontDistribute super."total"; + "total-map" = dontDistribute super."total-map"; + "total-maps" = dontDistribute super."total-maps"; + "touched" = dontDistribute super."touched"; + "toysolver" = dontDistribute super."toysolver"; + "tpdb" = dontDistribute super."tpdb"; + "trace" = dontDistribute super."trace"; + "trace-call" = dontDistribute super."trace-call"; + "trace-function-call" = dontDistribute super."trace-function-call"; + "traced" = dontDistribute super."traced"; + "tracer" = dontDistribute super."tracer"; + "tracker" = dontDistribute super."tracker"; + "trajectory" = dontDistribute super."trajectory"; + "transactional-events" = dontDistribute super."transactional-events"; + "transf" = dontDistribute super."transf"; + "transformations" = dontDistribute super."transformations"; + "transformers-abort" = dontDistribute super."transformers-abort"; + "transformers-compose" = dontDistribute super."transformers-compose"; + "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-free" = dontDistribute super."transformers-free"; + "transformers-runnable" = dontDistribute super."transformers-runnable"; + "transformers-supply" = dontDistribute super."transformers-supply"; + "transient" = dontDistribute super."transient"; + "translatable-intset" = dontDistribute super."translatable-intset"; + "translate" = dontDistribute super."translate"; + "travis" = dontDistribute super."travis"; + "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; + "trawl" = dontDistribute super."trawl"; + "traypoweroff" = dontDistribute super."traypoweroff"; + "tree-monad" = dontDistribute super."tree-monad"; + "treemap-html" = dontDistribute super."treemap-html"; + "treemap-html-tools" = dontDistribute super."treemap-html-tools"; + "treeviz" = dontDistribute super."treeviz"; + "tremulous-query" = dontDistribute super."tremulous-query"; + "trhsx" = dontDistribute super."trhsx"; + "triangulation" = dontDistribute super."triangulation"; + "tries" = dontDistribute super."tries"; + "trimpolya" = dontDistribute super."trimpolya"; + "trivia" = dontDistribute super."trivia"; + "trivial-constraint" = dontDistribute super."trivial-constraint"; + "tropical" = dontDistribute super."tropical"; + "true-name" = dontDistribute super."true-name"; + "truelevel" = dontDistribute super."truelevel"; + "trurl" = dontDistribute super."trurl"; + "truthful" = dontDistribute super."truthful"; + "tsession" = dontDistribute super."tsession"; + "tsession-happstack" = dontDistribute super."tsession-happstack"; + "tskiplist" = dontDistribute super."tskiplist"; + "tslogger" = dontDistribute super."tslogger"; + "tsp-viz" = dontDistribute super."tsp-viz"; + "tsparse" = dontDistribute super."tsparse"; + "tst" = dontDistribute super."tst"; + "tsvsql" = dontDistribute super."tsvsql"; + "ttrie" = dontDistribute super."ttrie"; + "tubes" = dontDistribute super."tubes"; + "tuntap" = dontDistribute super."tuntap"; + "tup-functor" = dontDistribute super."tup-functor"; + "tuple-gen" = dontDistribute super."tuple-gen"; + "tuple-generic" = dontDistribute super."tuple-generic"; + "tuple-hlist" = dontDistribute super."tuple-hlist"; + "tuple-lenses" = dontDistribute super."tuple-lenses"; + "tuple-morph" = dontDistribute super."tuple-morph"; + "tuple-th" = dontDistribute super."tuple-th"; + "tupleinstances" = dontDistribute super."tupleinstances"; + "turing" = dontDistribute super."turing"; + "turing-music" = dontDistribute super."turing-music"; + "turkish-deasciifier" = dontDistribute super."turkish-deasciifier"; + "turni" = dontDistribute super."turni"; + "tweak" = dontDistribute super."tweak"; + "twentefp" = dontDistribute super."twentefp"; + "twentefp-eventloop-graphics" = dontDistribute super."twentefp-eventloop-graphics"; + "twentefp-eventloop-trees" = dontDistribute super."twentefp-eventloop-trees"; + "twentefp-graphs" = dontDistribute super."twentefp-graphs"; + "twentefp-number" = dontDistribute super."twentefp-number"; + "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; + "twentefp-trees" = dontDistribute super."twentefp-trees"; + "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "twhs" = dontDistribute super."twhs"; + "twidge" = dontDistribute super."twidge"; + "twilight-stm" = dontDistribute super."twilight-stm"; + "twilio" = dontDistribute super."twilio"; + "twill" = dontDistribute super."twill"; + "twiml" = dontDistribute super."twiml"; + "twine" = dontDistribute super."twine"; + "twisty" = dontDistribute super."twisty"; + "twitch" = dontDistribute super."twitch"; + "twitter" = dontDistribute super."twitter"; + "twitter-conduit" = dontDistribute super."twitter-conduit"; + "twitter-enumerator" = dontDistribute super."twitter-enumerator"; + "twitter-types" = dontDistribute super."twitter-types"; + "twitter-types-lens" = dontDistribute super."twitter-types-lens"; + "tx" = dontDistribute super."tx"; + "txt-sushi" = dontDistribute super."txt-sushi"; + "txt2rtf" = dontDistribute super."txt2rtf"; + "txtblk" = dontDistribute super."txtblk"; + "ty" = dontDistribute super."ty"; + "typalyze" = dontDistribute super."typalyze"; + "type-aligned" = dontDistribute super."type-aligned"; + "type-booleans" = dontDistribute super."type-booleans"; + "type-cereal" = dontDistribute super."type-cereal"; + "type-combinators" = dontDistribute super."type-combinators"; + "type-digits" = dontDistribute super."type-digits"; + "type-equality" = dontDistribute super."type-equality"; + "type-equality-check" = dontDistribute super."type-equality-check"; + "type-functions" = dontDistribute super."type-functions"; + "type-hint" = dontDistribute super."type-hint"; + "type-int" = dontDistribute super."type-int"; + "type-iso" = dontDistribute super."type-iso"; + "type-level" = dontDistribute super."type-level"; + "type-level-bst" = dontDistribute super."type-level-bst"; + "type-level-natural-number" = dontDistribute super."type-level-natural-number"; + "type-level-natural-number-induction" = dontDistribute super."type-level-natural-number-induction"; + "type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations"; + "type-level-sets" = dontDistribute super."type-level-sets"; + "type-level-tf" = dontDistribute super."type-level-tf"; + "type-list" = doDistribute super."type-list_0_2_0_0"; + "type-natural" = dontDistribute super."type-natural"; + "type-ord" = dontDistribute super."type-ord"; + "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; + "type-prelude" = dontDistribute super."type-prelude"; + "type-settheory" = dontDistribute super."type-settheory"; + "type-spine" = dontDistribute super."type-spine"; + "type-structure" = dontDistribute super."type-structure"; + "type-sub-th" = dontDistribute super."type-sub-th"; + "type-unary" = dontDistribute super."type-unary"; + "typeable-th" = dontDistribute super."typeable-th"; + "typedquery" = dontDistribute super."typedquery"; + "typehash" = dontDistribute super."typehash"; + "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typeof" = dontDistribute super."typeof"; + "typeparams" = dontDistribute super."typeparams"; + "typesafe-endian" = dontDistribute super."typesafe-endian"; + "typescript-docs" = dontDistribute super."typescript-docs"; + "typical" = dontDistribute super."typical"; + "typography-geometry" = dontDistribute super."typography-geometry"; + "tz" = dontDistribute super."tz"; + "tzdata" = dontDistribute super."tzdata"; + "uAgda" = dontDistribute super."uAgda"; + "ua-parser" = dontDistribute super."ua-parser"; + "uacpid" = dontDistribute super."uacpid"; + "uberlast" = dontDistribute super."uberlast"; + "uconv" = dontDistribute super."uconv"; + "udbus" = dontDistribute super."udbus"; + "udbus-model" = dontDistribute super."udbus-model"; + "udcode" = dontDistribute super."udcode"; + "udev" = dontDistribute super."udev"; + "uglymemo" = dontDistribute super."uglymemo"; + "uhc-light" = dontDistribute super."uhc-light"; + "uhc-util" = dontDistribute super."uhc-util"; + "uhexdump" = dontDistribute super."uhexdump"; + "uhttpc" = dontDistribute super."uhttpc"; + "ui-command" = dontDistribute super."ui-command"; + "uid" = dontDistribute super."uid"; + "una" = dontDistribute super."una"; + "unagi-chan" = dontDistribute super."unagi-chan"; + "unagi-streams" = dontDistribute super."unagi-streams"; + "unamb" = dontDistribute super."unamb"; + "unamb-custom" = dontDistribute super."unamb-custom"; + "unbound" = dontDistribute super."unbound"; + "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; + "unboxed-containers" = dontDistribute super."unboxed-containers"; + "unexceptionalio" = dontDistribute super."unexceptionalio"; + "unfoldable" = dontDistribute super."unfoldable"; + "ungadtagger" = dontDistribute super."ungadtagger"; + "uni-events" = dontDistribute super."uni-events"; + "uni-graphs" = dontDistribute super."uni-graphs"; + "uni-htk" = dontDistribute super."uni-htk"; + "uni-posixutil" = dontDistribute super."uni-posixutil"; + "uni-reactor" = dontDistribute super."uni-reactor"; + "uni-uDrawGraph" = dontDistribute super."uni-uDrawGraph"; + "uni-util" = dontDistribute super."uni-util"; + "unicode" = dontDistribute super."unicode"; + "unicode-names" = dontDistribute super."unicode-names"; + "unicode-normalization" = dontDistribute super."unicode-normalization"; + "unicode-prelude" = dontDistribute super."unicode-prelude"; + "unicode-properties" = dontDistribute super."unicode-properties"; + "unicode-symbols" = dontDistribute super."unicode-symbols"; + "unicoder" = dontDistribute super."unicoder"; + "unification-fd" = dontDistribute super."unification-fd"; + "uniform-io" = dontDistribute super."uniform-io"; + "uniform-pair" = dontDistribute super."uniform-pair"; + "union-find-array" = dontDistribute super."union-find-array"; + "union-map" = dontDistribute super."union-map"; + "unique" = dontDistribute super."unique"; + "unique-logic" = dontDistribute super."unique-logic"; + "unique-logic-tf" = dontDistribute super."unique-logic-tf"; + "uniqueid" = dontDistribute super."uniqueid"; + "unit" = dontDistribute super."unit"; + "units" = dontDistribute super."units"; + "units-attoparsec" = dontDistribute super."units-attoparsec"; + "units-defs" = dontDistribute super."units-defs"; + "units-parser" = dontDistribute super."units-parser"; + "unittyped" = dontDistribute super."unittyped"; + "universal-binary" = dontDistribute super."universal-binary"; + "universe" = dontDistribute super."universe"; + "universe-base" = dontDistribute super."universe-base"; + "universe-instances-base" = dontDistribute super."universe-instances-base"; + "universe-instances-extended" = dontDistribute super."universe-instances-extended"; + "universe-instances-trans" = dontDistribute super."universe-instances-trans"; + "universe-reverse-instances" = dontDistribute super."universe-reverse-instances"; + "universe-th" = dontDistribute super."universe-th"; + "unix-bytestring" = dontDistribute super."unix-bytestring"; + "unix-fcntl" = dontDistribute super."unix-fcntl"; + "unix-handle" = dontDistribute super."unix-handle"; + "unix-io-extra" = dontDistribute super."unix-io-extra"; + "unix-memory" = dontDistribute super."unix-memory"; + "unix-process-conduit" = dontDistribute super."unix-process-conduit"; + "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unlit" = dontDistribute super."unlit"; + "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; + "unordered-graphs" = dontDistribute super."unordered-graphs"; + "unpack-funcs" = dontDistribute super."unpack-funcs"; + "unroll-ghc-plugin" = dontDistribute super."unroll-ghc-plugin"; + "unsafe" = dontDistribute super."unsafe"; + "unsafe-promises" = dontDistribute super."unsafe-promises"; + "unsafely" = dontDistribute super."unsafely"; + "unsafeperformst" = dontDistribute super."unsafeperformst"; + "unscramble" = dontDistribute super."unscramble"; + "unusable-pkg" = dontDistribute super."unusable-pkg"; + "uom-plugin" = dontDistribute super."uom-plugin"; + "up" = dontDistribute super."up"; + "up-grade" = dontDistribute super."up-grade"; + "uploadcare" = dontDistribute super."uploadcare"; + "upskirt" = dontDistribute super."upskirt"; + "ureader" = dontDistribute super."ureader"; + "urembed" = dontDistribute super."urembed"; + "uri" = dontDistribute super."uri"; + "uri-conduit" = dontDistribute super."uri-conduit"; + "uri-enumerator" = dontDistribute super."uri-enumerator"; + "uri-enumerator-file" = dontDistribute super."uri-enumerator-file"; + "uri-template" = dontDistribute super."uri-template"; + "url-generic" = dontDistribute super."url-generic"; + "urlcheck" = dontDistribute super."urlcheck"; + "urldecode" = dontDistribute super."urldecode"; + "urldisp-happstack" = dontDistribute super."urldisp-happstack"; + "urlencoded" = dontDistribute super."urlencoded"; + "urn" = dontDistribute super."urn"; + "urxml" = dontDistribute super."urxml"; + "usb" = dontDistribute super."usb"; + "usb-enumerator" = dontDistribute super."usb-enumerator"; + "usb-hid" = dontDistribute super."usb-hid"; + "usb-id-database" = dontDistribute super."usb-id-database"; + "usb-iteratee" = dontDistribute super."usb-iteratee"; + "usb-safe" = dontDistribute super."usb-safe"; + "userid" = dontDistribute super."userid"; + "utc" = dontDistribute super."utc"; + "utf8-env" = dontDistribute super."utf8-env"; + "utf8-prelude" = dontDistribute super."utf8-prelude"; + "utility-ht" = dontDistribute super."utility-ht"; + "uu-cco" = dontDistribute super."uu-cco"; + "uu-cco-examples" = dontDistribute super."uu-cco-examples"; + "uu-cco-hut-parsing" = dontDistribute super."uu-cco-hut-parsing"; + "uu-cco-uu-parsinglib" = dontDistribute super."uu-cco-uu-parsinglib"; + "uu-options" = dontDistribute super."uu-options"; + "uu-tc" = dontDistribute super."uu-tc"; + "uuagc" = dontDistribute super."uuagc"; + "uuagc-bootstrap" = dontDistribute super."uuagc-bootstrap"; + "uuagc-cabal" = dontDistribute super."uuagc-cabal"; + "uuagc-diagrams" = dontDistribute super."uuagc-diagrams"; + "uuagd" = dontDistribute super."uuagd"; + "uuid-aeson" = dontDistribute super."uuid-aeson"; + "uuid-le" = dontDistribute super."uuid-le"; + "uuid-orphans" = dontDistribute super."uuid-orphans"; + "uuid-quasi" = dontDistribute super."uuid-quasi"; + "uulib" = dontDistribute super."uulib"; + "uvector" = dontDistribute super."uvector"; + "uvector-algorithms" = dontDistribute super."uvector-algorithms"; + "uxadt" = dontDistribute super."uxadt"; + "uzbl-with-source" = dontDistribute super."uzbl-with-source"; + "v4l2" = dontDistribute super."v4l2"; + "v4l2-examples" = dontDistribute super."v4l2-examples"; + "vacuum" = dontDistribute super."vacuum"; + "vacuum-cairo" = dontDistribute super."vacuum-cairo"; + "vacuum-graphviz" = dontDistribute super."vacuum-graphviz"; + "vacuum-opengl" = dontDistribute super."vacuum-opengl"; + "vacuum-ubigraph" = dontDistribute super."vacuum-ubigraph"; + "vado" = dontDistribute super."vado"; + "valid-names" = dontDistribute super."valid-names"; + "validate" = dontDistribute super."validate"; + "validate-input" = doDistribute super."validate-input_0_2_0_0"; + "validated-literals" = dontDistribute super."validated-literals"; + "validation" = dontDistribute super."validation"; + "validations" = dontDistribute super."validations"; + "value-supply" = dontDistribute super."value-supply"; + "vampire" = dontDistribute super."vampire"; + "var" = dontDistribute super."var"; + "varan" = dontDistribute super."varan"; + "variable-precision" = dontDistribute super."variable-precision"; + "variables" = dontDistribute super."variables"; + "varying" = dontDistribute super."varying"; + "vaultaire-common" = dontDistribute super."vaultaire-common"; + "vcache" = dontDistribute super."vcache"; + "vcache-trie" = dontDistribute super."vcache-trie"; + "vcard" = dontDistribute super."vcard"; + "vcd" = dontDistribute super."vcd"; + "vcs-revision" = dontDistribute super."vcs-revision"; + "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; + "vcsgui" = dontDistribute super."vcsgui"; + "vcswrapper" = dontDistribute super."vcswrapper"; + "vect" = dontDistribute super."vect"; + "vect-floating" = dontDistribute super."vect-floating"; + "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate"; + "vect-opengl" = dontDistribute super."vect-opengl"; + "vector-binary" = dontDistribute super."vector-binary"; + "vector-bytestring" = dontDistribute super."vector-bytestring"; + "vector-clock" = dontDistribute super."vector-clock"; + "vector-conduit" = dontDistribute super."vector-conduit"; + "vector-fftw" = dontDistribute super."vector-fftw"; + "vector-functorlazy" = dontDistribute super."vector-functorlazy"; + "vector-heterogenous" = dontDistribute super."vector-heterogenous"; + "vector-instances-collections" = dontDistribute super."vector-instances-collections"; + "vector-mmap" = dontDistribute super."vector-mmap"; + "vector-random" = dontDistribute super."vector-random"; + "vector-read-instances" = dontDistribute super."vector-read-instances"; + "vector-space-map" = dontDistribute super."vector-space-map"; + "vector-space-opengl" = dontDistribute super."vector-space-opengl"; + "vector-static" = dontDistribute super."vector-static"; + "vector-strategies" = dontDistribute super."vector-strategies"; + "verbalexpressions" = dontDistribute super."verbalexpressions"; + "verbosity" = dontDistribute super."verbosity"; + "verilog" = dontDistribute super."verilog"; + "vhdl" = dontDistribute super."vhdl"; + "views" = dontDistribute super."views"; + "vigilance" = dontDistribute super."vigilance"; + "vimeta" = dontDistribute super."vimeta"; + "vimus" = dontDistribute super."vimus"; + "vintage-basic" = dontDistribute super."vintage-basic"; + "vinyl" = dontDistribute super."vinyl"; + "vinyl-gl" = dontDistribute super."vinyl-gl"; + "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-utils" = dontDistribute super."vinyl-utils"; + "virthualenv" = dontDistribute super."virthualenv"; + "vision" = dontDistribute super."vision"; + "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; + "visual-prof" = dontDistribute super."visual-prof"; + "vivid" = dontDistribute super."vivid"; + "vk-aws-route53" = dontDistribute super."vk-aws-route53"; + "vk-posix-pty" = dontDistribute super."vk-posix-pty"; + "vocabulary-kadma" = dontDistribute super."vocabulary-kadma"; + "vorbiscomment" = dontDistribute super."vorbiscomment"; + "vowpal-utils" = dontDistribute super."vowpal-utils"; + "voyeur" = dontDistribute super."voyeur"; + "vte" = dontDistribute super."vte"; + "vtegtk3" = dontDistribute super."vtegtk3"; + "vty" = dontDistribute super."vty"; + "vty-examples" = dontDistribute super."vty-examples"; + "vty-menu" = dontDistribute super."vty-menu"; + "vty-ui" = dontDistribute super."vty-ui"; + "vty-ui-extras" = dontDistribute super."vty-ui-extras"; + "waddle" = dontDistribute super."waddle"; + "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; + "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; + "wai-dispatch" = dontDistribute super."wai-dispatch"; + "wai-frontend-monadcgi" = dontDistribute super."wai-frontend-monadcgi"; + "wai-graceful" = dontDistribute super."wai-graceful"; + "wai-handler-devel" = dontDistribute super."wai-handler-devel"; + "wai-handler-fastcgi" = dontDistribute super."wai-handler-fastcgi"; + "wai-handler-scgi" = dontDistribute super."wai-handler-scgi"; + "wai-handler-snap" = dontDistribute super."wai-handler-snap"; + "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; + "wai-hastache" = dontDistribute super."wai-hastache"; + "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-lens" = dontDistribute super."wai-lens"; + "wai-lite" = dontDistribute super."wai-lite"; + "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; + "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; + "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; + "wai-middleware-catch" = dontDistribute super."wai-middleware-catch"; + "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; + "wai-middleware-etag" = dontDistribute super."wai-middleware-etag"; + "wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip"; + "wai-middleware-headers" = dontDistribute super."wai-middleware-headers"; + "wai-middleware-hmac" = dontDistribute super."wai-middleware-hmac"; + "wai-middleware-hmac-client" = dontDistribute super."wai-middleware-hmac-client"; + "wai-middleware-metrics" = dontDistribute super."wai-middleware-metrics"; + "wai-middleware-preprocessor" = dontDistribute super."wai-middleware-preprocessor"; + "wai-middleware-route" = dontDistribute super."wai-middleware-route"; + "wai-middleware-static" = doDistribute super."wai-middleware-static_0_7_0_1"; + "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; + "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs"; + "wai-request-spec" = dontDistribute super."wai-request-spec"; + "wai-responsible" = dontDistribute super."wai-responsible"; + "wai-router" = dontDistribute super."wai-router"; + "wai-routes" = doDistribute super."wai-routes_0_7_3"; + "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; + "wai-static-cache" = dontDistribute super."wai-static-cache"; + "wai-static-pages" = dontDistribute super."wai-static-pages"; + "wai-test" = dontDistribute super."wai-test"; + "wai-throttler" = dontDistribute super."wai-throttler"; + "wai-transformers" = dontDistribute super."wai-transformers"; + "wai-util" = dontDistribute super."wai-util"; + "wait-handle" = dontDistribute super."wait-handle"; + "waitfree" = dontDistribute super."waitfree"; + "warc" = dontDistribute super."warc"; + "warp" = doDistribute super."warp_3_1_3_1"; + "warp-dynamic" = dontDistribute super."warp-dynamic"; + "warp-static" = dontDistribute super."warp-static"; + "warp-tls-uid" = dontDistribute super."warp-tls-uid"; + "watchdog" = dontDistribute super."watchdog"; + "watcher" = dontDistribute super."watcher"; + "watchit" = dontDistribute super."watchit"; + "wavconvert" = dontDistribute super."wavconvert"; + "wavefront" = dontDistribute super."wavefront"; + "wavesurfer" = dontDistribute super."wavesurfer"; + "wavy" = dontDistribute super."wavy"; + "wcwidth" = dontDistribute super."wcwidth"; + "weather-api" = dontDistribute super."weather-api"; + "web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell"; + "web-css" = dontDistribute super."web-css"; + "web-encodings" = dontDistribute super."web-encodings"; + "web-mongrel2" = dontDistribute super."web-mongrel2"; + "web-page" = dontDistribute super."web-page"; + "web-plugins" = dontDistribute super."web-plugins"; + "web-routes" = dontDistribute super."web-routes"; + "web-routes-boomerang" = dontDistribute super."web-routes-boomerang"; + "web-routes-happstack" = dontDistribute super."web-routes-happstack"; + "web-routes-hsp" = dontDistribute super."web-routes-hsp"; + "web-routes-mtl" = dontDistribute super."web-routes-mtl"; + "web-routes-quasi" = dontDistribute super."web-routes-quasi"; + "web-routes-regular" = dontDistribute super."web-routes-regular"; + "web-routes-th" = dontDistribute super."web-routes-th"; + "web-routes-transformers" = dontDistribute super."web-routes-transformers"; + "web-routes-wai" = dontDistribute super."web-routes-wai"; + "webcrank" = dontDistribute super."webcrank"; + "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; + "webcrank-wai" = dontDistribute super."webcrank-wai"; + "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webidl" = dontDistribute super."webidl"; + "webify" = dontDistribute super."webify"; + "webkit" = dontDistribute super."webkit"; + "webkit-javascriptcore" = dontDistribute super."webkit-javascriptcore"; + "webkitgtk3" = dontDistribute super."webkitgtk3"; + "webkitgtk3-javascriptcore" = dontDistribute super."webkitgtk3-javascriptcore"; + "webrtc-vad" = dontDistribute super."webrtc-vad"; + "webserver" = dontDistribute super."webserver"; + "websnap" = dontDistribute super."websnap"; + "websockets-snap" = dontDistribute super."websockets-snap"; + "webwire" = dontDistribute super."webwire"; + "wedding-announcement" = dontDistribute super."wedding-announcement"; + "wedged" = dontDistribute super."wedged"; + "weighted-regexp" = dontDistribute super."weighted-regexp"; + "weighted-search" = dontDistribute super."weighted-search"; + "welshy" = dontDistribute super."welshy"; + "wheb-mongo" = dontDistribute super."wheb-mongo"; + "wheb-redis" = dontDistribute super."wheb-redis"; + "wheb-strapped" = dontDistribute super."wheb-strapped"; + "while-lang-parser" = dontDistribute super."while-lang-parser"; + "whim" = dontDistribute super."whim"; + "whiskers" = dontDistribute super."whiskers"; + "whitespace" = dontDistribute super."whitespace"; + "whois" = dontDistribute super."whois"; + "why3" = dontDistribute super."why3"; + "wigner-symbols" = dontDistribute super."wigner-symbols"; + "wikipedia4epub" = dontDistribute super."wikipedia4epub"; + "win-hp-path" = dontDistribute super."win-hp-path"; + "windowslive" = dontDistribute super."windowslive"; + "winerror" = dontDistribute super."winerror"; + "winio" = dontDistribute super."winio"; + "wiring" = dontDistribute super."wiring"; + "withdependencies" = dontDistribute super."withdependencies"; + "witness" = dontDistribute super."witness"; + "witty" = dontDistribute super."witty"; + "wkt" = dontDistribute super."wkt"; + "wl-pprint-ansiterm" = dontDistribute super."wl-pprint-ansiterm"; + "wlc-hs" = dontDistribute super."wlc-hs"; + "wobsurv" = dontDistribute super."wobsurv"; + "woffex" = dontDistribute super."woffex"; + "wol" = dontDistribute super."wol"; + "wolf" = dontDistribute super."wolf"; + "woot" = dontDistribute super."woot"; + "word-trie" = dontDistribute super."word-trie"; + "word24" = dontDistribute super."word24"; + "wordcloud" = dontDistribute super."wordcloud"; + "wordexp" = dontDistribute super."wordexp"; + "words" = dontDistribute super."words"; + "wordsearch" = dontDistribute super."wordsearch"; + "wordsetdiff" = dontDistribute super."wordsetdiff"; + "workflow-osx" = dontDistribute super."workflow-osx"; + "wp-archivebot" = dontDistribute super."wp-archivebot"; + "wraparound" = dontDistribute super."wraparound"; + "wraxml" = dontDistribute super."wraxml"; + "wreq-sb" = dontDistribute super."wreq-sb"; + "wright" = dontDistribute super."wright"; + "wsedit" = dontDistribute super."wsedit"; + "wtk" = dontDistribute super."wtk"; + "wtk-gtk" = dontDistribute super."wtk-gtk"; + "wumpus-basic" = dontDistribute super."wumpus-basic"; + "wumpus-core" = dontDistribute super."wumpus-core"; + "wumpus-drawing" = dontDistribute super."wumpus-drawing"; + "wumpus-microprint" = dontDistribute super."wumpus-microprint"; + "wumpus-tree" = dontDistribute super."wumpus-tree"; + "wuss" = dontDistribute super."wuss"; + "wx" = dontDistribute super."wx"; + "wxAsteroids" = dontDistribute super."wxAsteroids"; + "wxFruit" = dontDistribute super."wxFruit"; + "wxc" = dontDistribute super."wxc"; + "wxcore" = dontDistribute super."wxcore"; + "wxdirect" = dontDistribute super."wxdirect"; + "wxhnotepad" = dontDistribute super."wxhnotepad"; + "wxturtle" = dontDistribute super."wxturtle"; + "wybor" = dontDistribute super."wybor"; + "wyvern" = dontDistribute super."wyvern"; + "x-dsp" = dontDistribute super."x-dsp"; + "x11-xim" = dontDistribute super."x11-xim"; + "x11-xinput" = dontDistribute super."x11-xinput"; + "x509-util" = dontDistribute super."x509-util"; + "xattr" = dontDistribute super."xattr"; + "xbattbar" = dontDistribute super."xbattbar"; + "xcb-types" = dontDistribute super."xcb-types"; + "xcffib" = dontDistribute super."xcffib"; + "xchat-plugin" = dontDistribute super."xchat-plugin"; + "xcp" = dontDistribute super."xcp"; + "xdg-basedir" = dontDistribute super."xdg-basedir"; + "xdg-userdirs" = dontDistribute super."xdg-userdirs"; + "xdot" = dontDistribute super."xdot"; + "xfconf" = dontDistribute super."xfconf"; + "xhaskell-library" = dontDistribute super."xhaskell-library"; + "xhb" = dontDistribute super."xhb"; + "xhb-atom-cache" = dontDistribute super."xhb-atom-cache"; + "xhb-ewmh" = dontDistribute super."xhb-ewmh"; + "xhtml" = doDistribute super."xhtml_3000_2_1"; + "xhtml-combinators" = dontDistribute super."xhtml-combinators"; + "xilinx-lava" = dontDistribute super."xilinx-lava"; + "xine" = dontDistribute super."xine"; + "xing-api" = dontDistribute super."xing-api"; + "xinput-conduit" = dontDistribute super."xinput-conduit"; + "xkbcommon" = dontDistribute super."xkbcommon"; + "xkcd" = dontDistribute super."xkcd"; + "xlsx-templater" = dontDistribute super."xlsx-templater"; + "xml-basic" = dontDistribute super."xml-basic"; + "xml-catalog" = dontDistribute super."xml-catalog"; + "xml-conduit-parse" = dontDistribute super."xml-conduit-parse"; + "xml-conduit-writer" = dontDistribute super."xml-conduit-writer"; + "xml-enumerator" = dontDistribute super."xml-enumerator"; + "xml-enumerator-combinators" = dontDistribute super."xml-enumerator-combinators"; + "xml-extractors" = dontDistribute super."xml-extractors"; + "xml-helpers" = dontDistribute super."xml-helpers"; + "xml-html-conduit-lens" = dontDistribute super."xml-html-conduit-lens"; + "xml-monad" = dontDistribute super."xml-monad"; + "xml-parsec" = dontDistribute super."xml-parsec"; + "xml-picklers" = dontDistribute super."xml-picklers"; + "xml-pipe" = dontDistribute super."xml-pipe"; + "xml-prettify" = dontDistribute super."xml-prettify"; + "xml-push" = dontDistribute super."xml-push"; + "xml2html" = dontDistribute super."xml2html"; + "xml2json" = dontDistribute super."xml2json"; + "xml2x" = dontDistribute super."xml2x"; + "xmltv" = dontDistribute super."xmltv"; + "xmms2-client" = dontDistribute super."xmms2-client"; + "xmms2-client-glib" = dontDistribute super."xmms2-client-glib"; + "xmobar" = dontDistribute super."xmobar"; + "xmonad" = dontDistribute super."xmonad"; + "xmonad-bluetilebranch" = dontDistribute super."xmonad-bluetilebranch"; + "xmonad-contrib" = dontDistribute super."xmonad-contrib"; + "xmonad-contrib-bluetilebranch" = dontDistribute super."xmonad-contrib-bluetilebranch"; + "xmonad-contrib-gpl" = dontDistribute super."xmonad-contrib-gpl"; + "xmonad-entryhelper" = dontDistribute super."xmonad-entryhelper"; + "xmonad-eval" = dontDistribute super."xmonad-eval"; + "xmonad-extras" = dontDistribute super."xmonad-extras"; + "xmonad-screenshot" = dontDistribute super."xmonad-screenshot"; + "xmonad-utils" = dontDistribute super."xmonad-utils"; + "xmonad-wallpaper" = dontDistribute super."xmonad-wallpaper"; + "xmonad-windownames" = dontDistribute super."xmonad-windownames"; + "xmpipe" = dontDistribute super."xmpipe"; + "xorshift" = dontDistribute super."xorshift"; + "xosd" = dontDistribute super."xosd"; + "xournal-builder" = dontDistribute super."xournal-builder"; + "xournal-convert" = dontDistribute super."xournal-convert"; + "xournal-parser" = dontDistribute super."xournal-parser"; + "xournal-render" = dontDistribute super."xournal-render"; + "xournal-types" = dontDistribute super."xournal-types"; + "xsact" = dontDistribute super."xsact"; + "xsd" = dontDistribute super."xsd"; + "xsha1" = dontDistribute super."xsha1"; + "xslt" = dontDistribute super."xslt"; + "xtc" = dontDistribute super."xtc"; + "xtest" = dontDistribute super."xtest"; + "xturtle" = dontDistribute super."xturtle"; + "xxhash" = dontDistribute super."xxhash"; + "y0l0bot" = dontDistribute super."y0l0bot"; + "yabi" = dontDistribute super."yabi"; + "yabi-muno" = dontDistribute super."yabi-muno"; + "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; + "yahoo-web-search" = dontDistribute super."yahoo-web-search"; + "yajl" = dontDistribute super."yajl"; + "yajl-enumerator" = dontDistribute super."yajl-enumerator"; + "yall" = dontDistribute super."yall"; + "yamemo" = dontDistribute super."yamemo"; + "yaml-config" = dontDistribute super."yaml-config"; + "yaml-light" = dontDistribute super."yaml-light"; + "yaml-light-lens" = dontDistribute super."yaml-light-lens"; + "yaml-rpc" = dontDistribute super."yaml-rpc"; + "yaml-rpc-scotty" = dontDistribute super."yaml-rpc-scotty"; + "yaml-rpc-snap" = dontDistribute super."yaml-rpc-snap"; + "yaml2owl" = dontDistribute super."yaml2owl"; + "yamlkeysdiff" = dontDistribute super."yamlkeysdiff"; + "yampa-canvas" = dontDistribute super."yampa-canvas"; + "yampa-glfw" = dontDistribute super."yampa-glfw"; + "yampa-glut" = dontDistribute super."yampa-glut"; + "yampa2048" = dontDistribute super."yampa2048"; + "yaop" = dontDistribute super."yaop"; + "yap" = dontDistribute super."yap"; + "yarr" = dontDistribute super."yarr"; + "yarr-image-io" = dontDistribute super."yarr-image-io"; + "yate" = dontDistribute super."yate"; + "yavie" = dontDistribute super."yavie"; + "ycextra" = dontDistribute super."ycextra"; + "yeganesh" = dontDistribute super."yeganesh"; + "yeller" = dontDistribute super."yeller"; + "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yesod-angular" = dontDistribute super."yesod-angular"; + "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; + "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; + "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos"; + "yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap"; + "yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre"; + "yesod-auth-ldap-native" = dontDistribute super."yesod-auth-ldap-native"; + "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; + "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; + "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; + "yesod-bootstrap" = dontDistribute super."yesod-bootstrap"; + "yesod-comments" = dontDistribute super."yesod-comments"; + "yesod-content-pdf" = dontDistribute super."yesod-content-pdf"; + "yesod-continuations" = dontDistribute super."yesod-continuations"; + "yesod-crud" = dontDistribute super."yesod-crud"; + "yesod-crud-persist" = dontDistribute super."yesod-crud-persist"; + "yesod-datatables" = dontDistribute super."yesod-datatables"; + "yesod-dsl" = dontDistribute super."yesod-dsl"; + "yesod-examples" = dontDistribute super."yesod-examples"; + "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-json" = dontDistribute super."yesod-json"; + "yesod-links" = dontDistribute super."yesod-links"; + "yesod-lucid" = dontDistribute super."yesod-lucid"; + "yesod-markdown" = dontDistribute super."yesod-markdown"; + "yesod-media-simple" = dontDistribute super."yesod-media-simple"; + "yesod-newsfeed" = doDistribute super."yesod-newsfeed_1_4_0_1"; + "yesod-paginate" = dontDistribute super."yesod-paginate"; + "yesod-pagination" = dontDistribute super."yesod-pagination"; + "yesod-paginator" = dontDistribute super."yesod-paginator"; + "yesod-platform" = dontDistribute super."yesod-platform"; + "yesod-pnotify" = dontDistribute super."yesod-pnotify"; + "yesod-pure" = dontDistribute super."yesod-pure"; + "yesod-purescript" = dontDistribute super."yesod-purescript"; + "yesod-raml" = dontDistribute super."yesod-raml"; + "yesod-recaptcha" = dontDistribute super."yesod-recaptcha"; + "yesod-routes" = dontDistribute super."yesod-routes"; + "yesod-routes-flow" = dontDistribute super."yesod-routes-flow"; + "yesod-routes-typescript" = dontDistribute super."yesod-routes-typescript"; + "yesod-rst" = dontDistribute super."yesod-rst"; + "yesod-s3" = dontDistribute super."yesod-s3"; + "yesod-sass" = dontDistribute super."yesod-sass"; + "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-table" = doDistribute super."yesod-table_1_0_6"; + "yesod-tableview" = dontDistribute super."yesod-tableview"; + "yesod-test" = doDistribute super."yesod-test_1_4_4"; + "yesod-test-json" = dontDistribute super."yesod-test-json"; + "yesod-tls" = dontDistribute super."yesod-tls"; + "yesod-transloadit" = dontDistribute super."yesod-transloadit"; + "yesod-vend" = dontDistribute super."yesod-vend"; + "yesod-websockets-extra" = dontDistribute super."yesod-websockets-extra"; + "yesod-worker" = dontDistribute super."yesod-worker"; + "yet-another-logger" = dontDistribute super."yet-another-logger"; + "yhccore" = dontDistribute super."yhccore"; + "yi" = dontDistribute super."yi"; + "yi-contrib" = dontDistribute super."yi-contrib"; + "yi-emacs-colours" = dontDistribute super."yi-emacs-colours"; + "yi-fuzzy-open" = dontDistribute super."yi-fuzzy-open"; + "yi-gtk" = dontDistribute super."yi-gtk"; + "yi-language" = dontDistribute super."yi-language"; + "yi-monokai" = dontDistribute super."yi-monokai"; + "yi-rope" = dontDistribute super."yi-rope"; + "yi-snippet" = dontDistribute super."yi-snippet"; + "yi-solarized" = dontDistribute super."yi-solarized"; + "yi-spolsky" = dontDistribute super."yi-spolsky"; + "yi-vty" = dontDistribute super."yi-vty"; + "yices" = dontDistribute super."yices"; + "yices-easy" = dontDistribute super."yices-easy"; + "yices-painless" = dontDistribute super."yices-painless"; + "yjftp" = dontDistribute super."yjftp"; + "yjftp-libs" = dontDistribute super."yjftp-libs"; + "yjsvg" = dontDistribute super."yjsvg"; + "yjtools" = dontDistribute super."yjtools"; + "yocto" = dontDistribute super."yocto"; + "yoko" = dontDistribute super."yoko"; + "york-lava" = dontDistribute super."york-lava"; + "youtube" = dontDistribute super."youtube"; + "yql" = dontDistribute super."yql"; + "yst" = dontDistribute super."yst"; + "yuiGrid" = dontDistribute super."yuiGrid"; + "yuuko" = dontDistribute super."yuuko"; + "yxdb-utils" = dontDistribute super."yxdb-utils"; + "z3" = dontDistribute super."z3"; + "zalgo" = dontDistribute super."zalgo"; + "zampolit" = dontDistribute super."zampolit"; + "zasni-gerna" = dontDistribute super."zasni-gerna"; + "zcache" = dontDistribute super."zcache"; + "zenc" = dontDistribute super."zenc"; + "zendesk-api" = dontDistribute super."zendesk-api"; + "zeno" = dontDistribute super."zeno"; + "zeromq-haskell" = dontDistribute super."zeromq-haskell"; + "zeromq3-conduit" = dontDistribute super."zeromq3-conduit"; + "zeromq3-haskell" = dontDistribute super."zeromq3-haskell"; + "zeroth" = dontDistribute super."zeroth"; + "zigbee-znet25" = dontDistribute super."zigbee-znet25"; + "zim-parser" = dontDistribute super."zim-parser"; + "zip-conduit" = dontDistribute super."zip-conduit"; + "zipedit" = dontDistribute super."zipedit"; + "zipper" = dontDistribute super."zipper"; + "zippers" = dontDistribute super."zippers"; + "zippo" = dontDistribute super."zippo"; + "zlib-conduit" = dontDistribute super."zlib-conduit"; + "zmcat" = dontDistribute super."zmcat"; + "zmidi-core" = dontDistribute super."zmidi-core"; + "zmidi-score" = dontDistribute super."zmidi-score"; + "zmqat" = dontDistribute super."zmqat"; + "zoneinfo" = dontDistribute super."zoneinfo"; + "zoom" = dontDistribute super."zoom"; + "zoom-cache" = dontDistribute super."zoom-cache"; + "zoom-cache-pcm" = dontDistribute super."zoom-cache-pcm"; + "zoom-cache-sndfile" = dontDistribute super."zoom-cache-sndfile"; + "zoom-refs" = dontDistribute super."zoom-refs"; + "zot" = dontDistribute super."zot"; + "zsh-battery" = dontDistribute super."zsh-battery"; + "ztail" = dontDistribute super."ztail"; + +} diff --git a/pkgs/development/haskell-modules/configuration-lts-3.2.nix b/pkgs/development/haskell-modules/configuration-lts-3.2.nix index e49acc129f8..88d949c84aa 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.2.nix @@ -504,6 +504,7 @@ self: super: { "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"; @@ -1538,6 +1539,7 @@ self: super: { "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; "bindings-yices" = dontDistribute super."bindings-yices"; + "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; "binembed-example" = dontDistribute super."binembed-example"; "bio" = dontDistribute super."bio"; @@ -1921,6 +1923,7 @@ self: super: { "codecov-haskell" = dontDistribute super."codecov-haskell"; "codemonitor" = dontDistribute super."codemonitor"; "codepad" = dontDistribute super."codepad"; + "codex" = doDistribute super."codex_0_3_0_8"; "codo-notation" = dontDistribute super."codo-notation"; "cofunctor" = dontDistribute super."cofunctor"; "cognimeta-utils" = dontDistribute super."cognimeta-utils"; @@ -2156,6 +2159,7 @@ self: super: { "cube" = dontDistribute super."cube"; "cubical" = dontDistribute super."cubical"; "cubicbezier" = dontDistribute super."cubicbezier"; + "cubicspline" = doDistribute super."cubicspline_0_1_1"; "cublas" = dontDistribute super."cublas"; "cuboid" = dontDistribute super."cuboid"; "cuda" = dontDistribute super."cuda"; @@ -2617,6 +2621,7 @@ self: super: { "empty" = dontDistribute super."empty"; "encoding" = dontDistribute super."encoding"; "endo" = dontDistribute super."endo"; + "engine-io" = doDistribute super."engine-io_1_2_10"; "engine-io-snap" = dontDistribute super."engine-io-snap"; "engine-io-wai" = dontDistribute super."engine-io-wai"; "engine-io-yesod" = dontDistribute super."engine-io-yesod"; @@ -3734,9 +3739,11 @@ self: super: { "hly" = dontDistribute super."hly"; "hmark" = dontDistribute super."hmark"; "hmarkup" = dontDistribute super."hmarkup"; + "hmatrix" = doDistribute super."hmatrix_0_16_1_5"; "hmatrix-banded" = dontDistribute super."hmatrix-banded"; "hmatrix-csv" = dontDistribute super."hmatrix-csv"; "hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; + "hmatrix-gsl" = doDistribute super."hmatrix-gsl_0_16_0_3"; "hmatrix-gsl-stats" = doDistribute super."hmatrix-gsl-stats_0_4_1"; "hmatrix-mmap" = dontDistribute super."hmatrix-mmap"; "hmatrix-nipals" = dontDistribute super."hmatrix-nipals"; @@ -3943,6 +3950,7 @@ self: super: { "hsgsom" = dontDistribute super."hsgsom"; "hsgtd" = dontDistribute super."hsgtd"; "hsharc" = dontDistribute super."hsharc"; + "hsignal" = doDistribute super."hsignal_0_2_7_1"; "hsilop" = dontDistribute super."hsilop"; "hsimport" = dontDistribute super."hsimport"; "hsini" = dontDistribute super."hsini"; @@ -3993,6 +4001,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-webdriver" = doDistribute super."hspec-webdriver_1_0_3"; "hspec2" = dontDistribute super."hspec2"; "hspr-sh" = dontDistribute super."hspr-sh"; "hspread" = dontDistribute super."hspread"; @@ -4014,6 +4023,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstest" = dontDistribute super."hstest"; "hstidy" = dontDistribute super."hstidy"; @@ -4157,6 +4167,7 @@ self: super: { "ib-api" = dontDistribute super."ib-api"; "iban" = dontDistribute super."iban"; "iconv" = dontDistribute super."iconv"; + "ide-backend-common" = doDistribute super."ide-backend-common_0_10_0"; "ideas" = dontDistribute super."ideas"; "ideas-math" = dontDistribute super."ideas-math"; "idempotent" = dontDistribute super."idempotent"; @@ -5036,6 +5047,7 @@ self: super: { "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"; @@ -5175,6 +5187,7 @@ self: super: { "network-bitcoin" = dontDistribute super."network-bitcoin"; "network-builder" = dontDistribute super."network-builder"; "network-bytestring" = dontDistribute super."network-bytestring"; + "network-carbon" = doDistribute super."network-carbon_1_0_5"; "network-conduit" = dontDistribute super."network-conduit"; "network-connection" = dontDistribute super."network-connection"; "network-data" = dontDistribute super."network-data"; @@ -5183,6 +5196,7 @@ self: super: { "network-enumerator" = dontDistribute super."network-enumerator"; "network-fancy" = dontDistribute super."network-fancy"; "network-house" = dontDistribute super."network-house"; + "network-info" = doDistribute super."network-info_0_2_0_7"; "network-interfacerequest" = dontDistribute super."network-interfacerequest"; "network-ip" = dontDistribute super."network-ip"; "network-metrics" = dontDistribute super."network-metrics"; @@ -5389,6 +5403,7 @@ self: super: { "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; + "pandoc" = doDistribute super."pandoc_1_15_0_6"; "pandoc-citeproc" = doDistribute super."pandoc-citeproc_0_7_3_1"; "pandoc-citeproc-preamble" = dontDistribute super."pandoc-citeproc-preamble"; "pandoc-crossref" = dontDistribute super."pandoc-crossref"; @@ -5446,6 +5461,7 @@ self: super: { "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; "pathtype" = dontDistribute super."pathtype"; + "pathwalk" = dontDistribute super."pathwalk"; "patronscraper" = dontDistribute super."patronscraper"; "patterns" = dontDistribute super."patterns"; "paymill" = dontDistribute super."paymill"; @@ -5580,7 +5596,10 @@ self: super: { "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; "plivo" = dontDistribute super."plivo"; + "plot" = doDistribute super."plot_0_2_3_4"; + "plot-gtk" = doDistribute super."plot-gtk_0_2_0_2"; "plot-gtk-ui" = dontDistribute super."plot-gtk-ui"; + "plot-gtk3" = doDistribute super."plot-gtk3_0_1_0_1"; "plot-lab" = dontDistribute super."plot-lab"; "plotfont" = dontDistribute super."plotfont"; "plotserver-api" = dontDistribute super."plotserver-api"; @@ -5692,6 +5711,7 @@ self: super: { "pretty-error" = dontDistribute super."pretty-error"; "pretty-hex" = dontDistribute super."pretty-hex"; "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-show" = doDistribute super."pretty-show_1_6_8_2"; "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; @@ -5949,6 +5969,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -6526,6 +6547,7 @@ self: super: { "sockaddr" = dontDistribute super."sockaddr"; "socket" = dontDistribute super."socket"; "socket-activation" = dontDistribute super."socket-activation"; + "socket-io" = doDistribute super."socket-io_1_3_3"; "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "soegtk" = dontDistribute super."soegtk"; @@ -6902,6 +6924,7 @@ self: super: { "testrunner" = dontDistribute super."testrunner"; "tetris" = dontDistribute super."tetris"; "tex2txt" = dontDistribute super."tex2txt"; + "texmath" = doDistribute super."texmath_0_8_3"; "texrunner" = dontDistribute super."texrunner"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-format-simple" = dontDistribute super."text-format-simple"; @@ -7482,6 +7505,7 @@ self: super: { "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; "webdriver" = doDistribute super."webdriver_0_6_2_1"; + "webdriver-angular" = doDistribute super."webdriver-angular_0_1_7"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.3.nix b/pkgs/development/haskell-modules/configuration-lts-3.3.nix index d09df4b2ac4..a65db0029e4 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.3.nix @@ -504,6 +504,7 @@ self: super: { "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"; @@ -1536,6 +1537,7 @@ self: super: { "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; "bindings-yices" = dontDistribute super."bindings-yices"; + "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; "binembed-example" = dontDistribute super."binembed-example"; "bio" = dontDistribute super."bio"; @@ -1918,6 +1920,7 @@ self: super: { "codecov-haskell" = dontDistribute super."codecov-haskell"; "codemonitor" = dontDistribute super."codemonitor"; "codepad" = dontDistribute super."codepad"; + "codex" = doDistribute super."codex_0_3_0_8"; "codo-notation" = dontDistribute super."codo-notation"; "cofunctor" = dontDistribute super."cofunctor"; "cognimeta-utils" = dontDistribute super."cognimeta-utils"; @@ -2151,6 +2154,7 @@ self: super: { "cube" = dontDistribute super."cube"; "cubical" = dontDistribute super."cubical"; "cubicbezier" = dontDistribute super."cubicbezier"; + "cubicspline" = doDistribute super."cubicspline_0_1_1"; "cublas" = dontDistribute super."cublas"; "cuboid" = dontDistribute super."cuboid"; "cuda" = dontDistribute super."cuda"; @@ -2612,6 +2616,7 @@ self: super: { "empty" = dontDistribute super."empty"; "encoding" = dontDistribute super."encoding"; "endo" = dontDistribute super."endo"; + "engine-io" = doDistribute super."engine-io_1_2_10"; "engine-io-snap" = dontDistribute super."engine-io-snap"; "engine-io-wai" = dontDistribute super."engine-io-wai"; "engine-io-yesod" = dontDistribute super."engine-io-yesod"; @@ -3727,9 +3732,11 @@ self: super: { "hly" = dontDistribute super."hly"; "hmark" = dontDistribute super."hmark"; "hmarkup" = dontDistribute super."hmarkup"; + "hmatrix" = doDistribute super."hmatrix_0_16_1_5"; "hmatrix-banded" = dontDistribute super."hmatrix-banded"; "hmatrix-csv" = dontDistribute super."hmatrix-csv"; "hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; + "hmatrix-gsl" = doDistribute super."hmatrix-gsl_0_16_0_3"; "hmatrix-gsl-stats" = doDistribute super."hmatrix-gsl-stats_0_4_1"; "hmatrix-mmap" = dontDistribute super."hmatrix-mmap"; "hmatrix-nipals" = dontDistribute super."hmatrix-nipals"; @@ -3935,6 +3942,7 @@ self: super: { "hsgsom" = dontDistribute super."hsgsom"; "hsgtd" = dontDistribute super."hsgtd"; "hsharc" = dontDistribute super."hsharc"; + "hsignal" = doDistribute super."hsignal_0_2_7_1"; "hsilop" = dontDistribute super."hsilop"; "hsimport" = dontDistribute super."hsimport"; "hsini" = dontDistribute super."hsini"; @@ -3985,6 +3993,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-webdriver" = doDistribute super."hspec-webdriver_1_0_3"; "hspec2" = dontDistribute super."hspec2"; "hspr-sh" = dontDistribute super."hspr-sh"; "hspread" = dontDistribute super."hspread"; @@ -4006,6 +4015,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstest" = dontDistribute super."hstest"; "hstidy" = dontDistribute super."hstidy"; @@ -4149,6 +4159,7 @@ self: super: { "ib-api" = dontDistribute super."ib-api"; "iban" = dontDistribute super."iban"; "iconv" = dontDistribute super."iconv"; + "ide-backend-common" = doDistribute super."ide-backend-common_0_10_0"; "ideas" = dontDistribute super."ideas"; "ideas-math" = dontDistribute super."ideas-math"; "idempotent" = dontDistribute super."idempotent"; @@ -5028,6 +5039,7 @@ self: super: { "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"; @@ -5166,6 +5178,7 @@ self: super: { "network-bitcoin" = dontDistribute super."network-bitcoin"; "network-builder" = dontDistribute super."network-builder"; "network-bytestring" = dontDistribute super."network-bytestring"; + "network-carbon" = doDistribute super."network-carbon_1_0_5"; "network-conduit" = dontDistribute super."network-conduit"; "network-connection" = dontDistribute super."network-connection"; "network-data" = dontDistribute super."network-data"; @@ -5174,6 +5187,7 @@ self: super: { "network-enumerator" = dontDistribute super."network-enumerator"; "network-fancy" = dontDistribute super."network-fancy"; "network-house" = dontDistribute super."network-house"; + "network-info" = doDistribute super."network-info_0_2_0_7"; "network-interfacerequest" = dontDistribute super."network-interfacerequest"; "network-ip" = dontDistribute super."network-ip"; "network-metrics" = dontDistribute super."network-metrics"; @@ -5380,6 +5394,7 @@ self: super: { "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; + "pandoc" = doDistribute super."pandoc_1_15_0_6"; "pandoc-citeproc" = doDistribute super."pandoc-citeproc_0_7_3_1"; "pandoc-citeproc-preamble" = dontDistribute super."pandoc-citeproc-preamble"; "pandoc-crossref" = dontDistribute super."pandoc-crossref"; @@ -5437,6 +5452,7 @@ self: super: { "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; "pathtype" = dontDistribute super."pathtype"; + "pathwalk" = dontDistribute super."pathwalk"; "patronscraper" = dontDistribute super."patronscraper"; "patterns" = dontDistribute super."patterns"; "paymill" = dontDistribute super."paymill"; @@ -5571,7 +5587,10 @@ self: super: { "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; "plivo" = dontDistribute super."plivo"; + "plot" = doDistribute super."plot_0_2_3_4"; + "plot-gtk" = doDistribute super."plot-gtk_0_2_0_2"; "plot-gtk-ui" = dontDistribute super."plot-gtk-ui"; + "plot-gtk3" = doDistribute super."plot-gtk3_0_1_0_1"; "plot-lab" = dontDistribute super."plot-lab"; "plotfont" = dontDistribute super."plotfont"; "plotserver-api" = dontDistribute super."plotserver-api"; @@ -5683,6 +5702,7 @@ self: super: { "pretty-error" = dontDistribute super."pretty-error"; "pretty-hex" = dontDistribute super."pretty-hex"; "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-show" = doDistribute super."pretty-show_1_6_8_2"; "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; @@ -5939,6 +5959,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -6514,6 +6535,7 @@ self: super: { "sockaddr" = dontDistribute super."sockaddr"; "socket" = dontDistribute super."socket"; "socket-activation" = dontDistribute super."socket-activation"; + "socket-io" = doDistribute super."socket-io_1_3_3"; "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "soegtk" = dontDistribute super."soegtk"; @@ -6889,6 +6911,7 @@ self: super: { "testrunner" = dontDistribute super."testrunner"; "tetris" = dontDistribute super."tetris"; "tex2txt" = dontDistribute super."tex2txt"; + "texmath" = doDistribute super."texmath_0_8_3"; "texrunner" = dontDistribute super."texrunner"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-format-simple" = dontDistribute super."text-format-simple"; @@ -7468,6 +7491,7 @@ self: super: { "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; "webdriver" = doDistribute super."webdriver_0_6_2_1"; + "webdriver-angular" = doDistribute super."webdriver-angular_0_1_7"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.4.nix b/pkgs/development/haskell-modules/configuration-lts-3.4.nix index 7752315a4a2..d1b70b80eff 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.4.nix @@ -504,6 +504,7 @@ self: super: { "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"; @@ -1536,6 +1537,7 @@ self: super: { "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; "bindings-yices" = dontDistribute super."bindings-yices"; + "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; "binembed-example" = dontDistribute super."binembed-example"; "bio" = dontDistribute super."bio"; @@ -1917,6 +1919,7 @@ self: super: { "codecov-haskell" = dontDistribute super."codecov-haskell"; "codemonitor" = dontDistribute super."codemonitor"; "codepad" = dontDistribute super."codepad"; + "codex" = doDistribute super."codex_0_3_0_8"; "codo-notation" = dontDistribute super."codo-notation"; "cofunctor" = dontDistribute super."cofunctor"; "cognimeta-utils" = dontDistribute super."cognimeta-utils"; @@ -2150,6 +2153,7 @@ self: super: { "cube" = dontDistribute super."cube"; "cubical" = dontDistribute super."cubical"; "cubicbezier" = dontDistribute super."cubicbezier"; + "cubicspline" = doDistribute super."cubicspline_0_1_1"; "cublas" = dontDistribute super."cublas"; "cuboid" = dontDistribute super."cuboid"; "cuda" = dontDistribute super."cuda"; @@ -2611,6 +2615,7 @@ self: super: { "empty" = dontDistribute super."empty"; "encoding" = dontDistribute super."encoding"; "endo" = dontDistribute super."endo"; + "engine-io" = doDistribute super."engine-io_1_2_10"; "engine-io-snap" = dontDistribute super."engine-io-snap"; "engine-io-wai" = dontDistribute super."engine-io-wai"; "engine-io-yesod" = dontDistribute super."engine-io-yesod"; @@ -3726,9 +3731,11 @@ self: super: { "hly" = dontDistribute super."hly"; "hmark" = dontDistribute super."hmark"; "hmarkup" = dontDistribute super."hmarkup"; + "hmatrix" = doDistribute super."hmatrix_0_16_1_5"; "hmatrix-banded" = dontDistribute super."hmatrix-banded"; "hmatrix-csv" = dontDistribute super."hmatrix-csv"; "hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; + "hmatrix-gsl" = doDistribute super."hmatrix-gsl_0_16_0_3"; "hmatrix-gsl-stats" = doDistribute super."hmatrix-gsl-stats_0_4_1"; "hmatrix-mmap" = dontDistribute super."hmatrix-mmap"; "hmatrix-nipals" = dontDistribute super."hmatrix-nipals"; @@ -3934,6 +3941,7 @@ self: super: { "hsgsom" = dontDistribute super."hsgsom"; "hsgtd" = dontDistribute super."hsgtd"; "hsharc" = dontDistribute super."hsharc"; + "hsignal" = doDistribute super."hsignal_0_2_7_1"; "hsilop" = dontDistribute super."hsilop"; "hsimport" = dontDistribute super."hsimport"; "hsini" = dontDistribute super."hsini"; @@ -3984,6 +3992,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-webdriver" = doDistribute super."hspec-webdriver_1_0_3"; "hspec2" = dontDistribute super."hspec2"; "hspr-sh" = dontDistribute super."hspr-sh"; "hspread" = dontDistribute super."hspread"; @@ -4005,6 +4014,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstest" = dontDistribute super."hstest"; "hstidy" = dontDistribute super."hstidy"; @@ -4148,6 +4158,7 @@ self: super: { "ib-api" = dontDistribute super."ib-api"; "iban" = dontDistribute super."iban"; "iconv" = dontDistribute super."iconv"; + "ide-backend-common" = doDistribute super."ide-backend-common_0_10_0"; "ideas" = dontDistribute super."ideas"; "ideas-math" = dontDistribute super."ideas-math"; "idempotent" = dontDistribute super."idempotent"; @@ -5027,6 +5038,7 @@ self: super: { "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"; @@ -5165,6 +5177,7 @@ self: super: { "network-bitcoin" = dontDistribute super."network-bitcoin"; "network-builder" = dontDistribute super."network-builder"; "network-bytestring" = dontDistribute super."network-bytestring"; + "network-carbon" = doDistribute super."network-carbon_1_0_5"; "network-conduit" = dontDistribute super."network-conduit"; "network-connection" = dontDistribute super."network-connection"; "network-data" = dontDistribute super."network-data"; @@ -5173,6 +5186,7 @@ self: super: { "network-enumerator" = dontDistribute super."network-enumerator"; "network-fancy" = dontDistribute super."network-fancy"; "network-house" = dontDistribute super."network-house"; + "network-info" = doDistribute super."network-info_0_2_0_7"; "network-interfacerequest" = dontDistribute super."network-interfacerequest"; "network-ip" = dontDistribute super."network-ip"; "network-metrics" = dontDistribute super."network-metrics"; @@ -5379,6 +5393,7 @@ self: super: { "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; + "pandoc" = doDistribute super."pandoc_1_15_0_6"; "pandoc-citeproc" = doDistribute super."pandoc-citeproc_0_7_3_1"; "pandoc-citeproc-preamble" = dontDistribute super."pandoc-citeproc-preamble"; "pandoc-crossref" = dontDistribute super."pandoc-crossref"; @@ -5436,6 +5451,7 @@ self: super: { "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; "pathtype" = dontDistribute super."pathtype"; + "pathwalk" = dontDistribute super."pathwalk"; "patronscraper" = dontDistribute super."patronscraper"; "patterns" = dontDistribute super."patterns"; "paymill" = dontDistribute super."paymill"; @@ -5570,7 +5586,10 @@ self: super: { "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; "plivo" = dontDistribute super."plivo"; + "plot" = doDistribute super."plot_0_2_3_4"; + "plot-gtk" = doDistribute super."plot-gtk_0_2_0_2"; "plot-gtk-ui" = dontDistribute super."plot-gtk-ui"; + "plot-gtk3" = doDistribute super."plot-gtk3_0_1_0_1"; "plot-lab" = dontDistribute super."plot-lab"; "plotfont" = dontDistribute super."plotfont"; "plotserver-api" = dontDistribute super."plotserver-api"; @@ -5682,6 +5701,7 @@ self: super: { "pretty-error" = dontDistribute super."pretty-error"; "pretty-hex" = dontDistribute super."pretty-hex"; "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-show" = doDistribute super."pretty-show_1_6_8_2"; "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; @@ -5938,6 +5958,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -6512,6 +6533,7 @@ self: super: { "sockaddr" = dontDistribute super."sockaddr"; "socket" = dontDistribute super."socket"; "socket-activation" = dontDistribute super."socket-activation"; + "socket-io" = doDistribute super."socket-io_1_3_3"; "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "soegtk" = dontDistribute super."soegtk"; @@ -6886,6 +6908,7 @@ self: super: { "testrunner" = dontDistribute super."testrunner"; "tetris" = dontDistribute super."tetris"; "tex2txt" = dontDistribute super."tex2txt"; + "texmath" = doDistribute super."texmath_0_8_3"; "texrunner" = dontDistribute super."texrunner"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-format-simple" = dontDistribute super."text-format-simple"; @@ -7464,6 +7487,7 @@ self: super: { "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; "webdriver" = doDistribute super."webdriver_0_6_2_1"; + "webdriver-angular" = doDistribute super."webdriver-angular_0_1_7"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.5.nix b/pkgs/development/haskell-modules/configuration-lts-3.5.nix index 062b528c3be..561fa5e879c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.5.nix @@ -504,6 +504,7 @@ self: super: { "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"; @@ -1535,6 +1536,7 @@ self: super: { "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; "bindings-yices" = dontDistribute super."bindings-yices"; + "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; "binembed-example" = dontDistribute super."binembed-example"; "bio" = dontDistribute super."bio"; @@ -1915,6 +1917,7 @@ self: super: { "codecov-haskell" = dontDistribute super."codecov-haskell"; "codemonitor" = dontDistribute super."codemonitor"; "codepad" = dontDistribute super."codepad"; + "codex" = doDistribute super."codex_0_3_0_8"; "codo-notation" = dontDistribute super."codo-notation"; "cofunctor" = dontDistribute super."cofunctor"; "cognimeta-utils" = dontDistribute super."cognimeta-utils"; @@ -2147,6 +2150,7 @@ self: super: { "cube" = dontDistribute super."cube"; "cubical" = dontDistribute super."cubical"; "cubicbezier" = dontDistribute super."cubicbezier"; + "cubicspline" = doDistribute super."cubicspline_0_1_1"; "cublas" = dontDistribute super."cublas"; "cuboid" = dontDistribute super."cuboid"; "cuda" = dontDistribute super."cuda"; @@ -2608,6 +2612,7 @@ self: super: { "empty" = dontDistribute super."empty"; "encoding" = dontDistribute super."encoding"; "endo" = dontDistribute super."endo"; + "engine-io" = doDistribute super."engine-io_1_2_10"; "engine-io-snap" = dontDistribute super."engine-io-snap"; "engine-io-wai" = dontDistribute super."engine-io-wai"; "engine-io-yesod" = dontDistribute super."engine-io-yesod"; @@ -3719,9 +3724,11 @@ self: super: { "hly" = dontDistribute super."hly"; "hmark" = dontDistribute super."hmark"; "hmarkup" = dontDistribute super."hmarkup"; + "hmatrix" = doDistribute super."hmatrix_0_16_1_5"; "hmatrix-banded" = dontDistribute super."hmatrix-banded"; "hmatrix-csv" = dontDistribute super."hmatrix-csv"; "hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; + "hmatrix-gsl" = doDistribute super."hmatrix-gsl_0_16_0_3"; "hmatrix-gsl-stats" = doDistribute super."hmatrix-gsl-stats_0_4_1"; "hmatrix-mmap" = dontDistribute super."hmatrix-mmap"; "hmatrix-nipals" = dontDistribute super."hmatrix-nipals"; @@ -3927,6 +3934,7 @@ self: super: { "hsgsom" = dontDistribute super."hsgsom"; "hsgtd" = dontDistribute super."hsgtd"; "hsharc" = dontDistribute super."hsharc"; + "hsignal" = doDistribute super."hsignal_0_2_7_1"; "hsilop" = dontDistribute super."hsilop"; "hsimport" = dontDistribute super."hsimport"; "hsini" = dontDistribute super."hsini"; @@ -3976,6 +3984,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-webdriver" = doDistribute super."hspec-webdriver_1_0_3"; "hspec2" = dontDistribute super."hspec2"; "hspr-sh" = dontDistribute super."hspr-sh"; "hspread" = dontDistribute super."hspread"; @@ -3997,6 +4006,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstest" = dontDistribute super."hstest"; "hstidy" = dontDistribute super."hstidy"; @@ -4140,6 +4150,7 @@ self: super: { "ib-api" = dontDistribute super."ib-api"; "iban" = dontDistribute super."iban"; "iconv" = dontDistribute super."iconv"; + "ide-backend-common" = doDistribute super."ide-backend-common_0_10_0"; "ideas" = dontDistribute super."ideas"; "ideas-math" = dontDistribute super."ideas-math"; "idempotent" = dontDistribute super."idempotent"; @@ -5015,6 +5026,7 @@ self: super: { "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"; @@ -5152,6 +5164,7 @@ self: super: { "network-bitcoin" = dontDistribute super."network-bitcoin"; "network-builder" = dontDistribute super."network-builder"; "network-bytestring" = dontDistribute super."network-bytestring"; + "network-carbon" = doDistribute super."network-carbon_1_0_5"; "network-conduit" = dontDistribute super."network-conduit"; "network-connection" = dontDistribute super."network-connection"; "network-data" = dontDistribute super."network-data"; @@ -5160,6 +5173,7 @@ self: super: { "network-enumerator" = dontDistribute super."network-enumerator"; "network-fancy" = dontDistribute super."network-fancy"; "network-house" = dontDistribute super."network-house"; + "network-info" = doDistribute super."network-info_0_2_0_7"; "network-interfacerequest" = dontDistribute super."network-interfacerequest"; "network-ip" = dontDistribute super."network-ip"; "network-metrics" = dontDistribute super."network-metrics"; @@ -5366,6 +5380,7 @@ self: super: { "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; + "pandoc" = doDistribute super."pandoc_1_15_0_6"; "pandoc-citeproc" = doDistribute super."pandoc-citeproc_0_7_3_1"; "pandoc-citeproc-preamble" = dontDistribute super."pandoc-citeproc-preamble"; "pandoc-crossref" = dontDistribute super."pandoc-crossref"; @@ -5422,6 +5437,7 @@ self: super: { "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; "pathtype" = dontDistribute super."pathtype"; + "pathwalk" = dontDistribute super."pathwalk"; "patronscraper" = dontDistribute super."patronscraper"; "patterns" = dontDistribute super."patterns"; "paymill" = dontDistribute super."paymill"; @@ -5555,7 +5571,10 @@ self: super: { "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; "plivo" = dontDistribute super."plivo"; + "plot" = doDistribute super."plot_0_2_3_4"; + "plot-gtk" = doDistribute super."plot-gtk_0_2_0_2"; "plot-gtk-ui" = dontDistribute super."plot-gtk-ui"; + "plot-gtk3" = doDistribute super."plot-gtk3_0_1_0_1"; "plot-lab" = dontDistribute super."plot-lab"; "plotfont" = dontDistribute super."plotfont"; "plotserver-api" = dontDistribute super."plotserver-api"; @@ -5665,6 +5684,7 @@ self: super: { "pretty-error" = dontDistribute super."pretty-error"; "pretty-hex" = dontDistribute super."pretty-hex"; "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-show" = doDistribute super."pretty-show_1_6_8_2"; "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; @@ -5921,6 +5941,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -6494,6 +6515,7 @@ self: super: { "sockaddr" = dontDistribute super."sockaddr"; "socket" = dontDistribute super."socket"; "socket-activation" = dontDistribute super."socket-activation"; + "socket-io" = doDistribute super."socket-io_1_3_3"; "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "soegtk" = dontDistribute super."soegtk"; @@ -6865,6 +6887,7 @@ self: super: { "testrunner" = dontDistribute super."testrunner"; "tetris" = dontDistribute super."tetris"; "tex2txt" = dontDistribute super."tex2txt"; + "texmath" = doDistribute super."texmath_0_8_3"; "texrunner" = dontDistribute super."texrunner"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-format-simple" = dontDistribute super."text-format-simple"; @@ -7441,6 +7464,7 @@ self: super: { "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; "webdriver" = doDistribute super."webdriver_0_6_2_1"; + "webdriver-angular" = doDistribute super."webdriver-angular_0_1_7"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.6.nix b/pkgs/development/haskell-modules/configuration-lts-3.6.nix index 6828d438427..7ff7b92e69d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.6.nix @@ -504,6 +504,7 @@ self: super: { "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"; @@ -1381,6 +1382,7 @@ self: super: { "azure-servicebus" = dontDistribute super."azure-servicebus"; "azurify" = dontDistribute super."azurify"; "b-tree" = dontDistribute super."b-tree"; + "b9" = doDistribute super."b9_0_5_13"; "babylon" = dontDistribute super."babylon"; "backdropper" = dontDistribute super."backdropper"; "backtracking-exceptions" = dontDistribute super."backtracking-exceptions"; @@ -1532,6 +1534,7 @@ self: super: { "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; "bindings-yices" = dontDistribute super."bindings-yices"; + "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; "binembed-example" = dontDistribute super."binembed-example"; "bio" = dontDistribute super."bio"; @@ -1911,6 +1914,7 @@ self: super: { "codecov-haskell" = dontDistribute super."codecov-haskell"; "codemonitor" = dontDistribute super."codemonitor"; "codepad" = dontDistribute super."codepad"; + "codex" = doDistribute super."codex_0_3_0_8"; "codo-notation" = dontDistribute super."codo-notation"; "cofunctor" = dontDistribute super."cofunctor"; "cognimeta-utils" = dontDistribute super."cognimeta-utils"; @@ -2143,6 +2147,7 @@ self: super: { "cube" = dontDistribute super."cube"; "cubical" = dontDistribute super."cubical"; "cubicbezier" = dontDistribute super."cubicbezier"; + "cubicspline" = doDistribute super."cubicspline_0_1_1"; "cublas" = dontDistribute super."cublas"; "cuboid" = dontDistribute super."cuboid"; "cuda" = dontDistribute super."cuda"; @@ -2602,6 +2607,7 @@ self: super: { "empty" = dontDistribute super."empty"; "encoding" = dontDistribute super."encoding"; "endo" = dontDistribute super."endo"; + "engine-io" = doDistribute super."engine-io_1_2_10"; "engine-io-snap" = dontDistribute super."engine-io-snap"; "engine-io-wai" = dontDistribute super."engine-io-wai"; "engine-io-yesod" = dontDistribute super."engine-io-yesod"; @@ -3706,9 +3712,12 @@ self: super: { "hly" = dontDistribute super."hly"; "hmark" = dontDistribute super."hmark"; "hmarkup" = dontDistribute super."hmarkup"; + "hmatrix" = doDistribute super."hmatrix_0_16_1_5"; "hmatrix-banded" = dontDistribute super."hmatrix-banded"; "hmatrix-csv" = dontDistribute super."hmatrix-csv"; "hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; + "hmatrix-gsl" = doDistribute super."hmatrix-gsl_0_16_0_3"; + "hmatrix-gsl-stats" = doDistribute super."hmatrix-gsl-stats_0_4_1_1"; "hmatrix-mmap" = dontDistribute super."hmatrix-mmap"; "hmatrix-nipals" = dontDistribute super."hmatrix-nipals"; "hmatrix-quadprogpp" = dontDistribute super."hmatrix-quadprogpp"; @@ -3912,6 +3921,7 @@ self: super: { "hsgsom" = dontDistribute super."hsgsom"; "hsgtd" = dontDistribute super."hsgtd"; "hsharc" = dontDistribute super."hsharc"; + "hsignal" = doDistribute super."hsignal_0_2_7_1"; "hsilop" = dontDistribute super."hsilop"; "hsimport" = dontDistribute super."hsimport"; "hsini" = dontDistribute super."hsini"; @@ -3961,6 +3971,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-webdriver" = doDistribute super."hspec-webdriver_1_0_3"; "hspec2" = dontDistribute super."hspec2"; "hspr-sh" = dontDistribute super."hspr-sh"; "hspread" = dontDistribute super."hspread"; @@ -3982,6 +3993,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstest" = dontDistribute super."hstest"; "hstidy" = dontDistribute super."hstidy"; @@ -4125,6 +4137,7 @@ self: super: { "ib-api" = dontDistribute super."ib-api"; "iban" = dontDistribute super."iban"; "iconv" = dontDistribute super."iconv"; + "ide-backend-common" = doDistribute super."ide-backend-common_0_10_0"; "ideas" = dontDistribute super."ideas"; "ideas-math" = dontDistribute super."ideas-math"; "idempotent" = dontDistribute super."idempotent"; @@ -4993,6 +5006,7 @@ self: super: { "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"; @@ -5130,6 +5144,7 @@ self: super: { "network-bitcoin" = dontDistribute super."network-bitcoin"; "network-builder" = dontDistribute super."network-builder"; "network-bytestring" = dontDistribute super."network-bytestring"; + "network-carbon" = doDistribute super."network-carbon_1_0_5"; "network-conduit" = dontDistribute super."network-conduit"; "network-connection" = dontDistribute super."network-connection"; "network-data" = dontDistribute super."network-data"; @@ -5138,6 +5153,7 @@ self: super: { "network-enumerator" = dontDistribute super."network-enumerator"; "network-fancy" = dontDistribute super."network-fancy"; "network-house" = dontDistribute super."network-house"; + "network-info" = doDistribute super."network-info_0_2_0_7"; "network-interfacerequest" = dontDistribute super."network-interfacerequest"; "network-ip" = dontDistribute super."network-ip"; "network-metrics" = dontDistribute super."network-metrics"; @@ -5344,6 +5360,7 @@ self: super: { "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; + "pandoc" = doDistribute super."pandoc_1_15_0_6"; "pandoc-citeproc" = doDistribute super."pandoc-citeproc_0_7_3_1"; "pandoc-citeproc-preamble" = dontDistribute super."pandoc-citeproc-preamble"; "pandoc-crossref" = dontDistribute super."pandoc-crossref"; @@ -5400,6 +5417,7 @@ self: super: { "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; "pathtype" = dontDistribute super."pathtype"; + "pathwalk" = dontDistribute super."pathwalk"; "patronscraper" = dontDistribute super."patronscraper"; "patterns" = dontDistribute super."patterns"; "paymill" = dontDistribute super."paymill"; @@ -5531,7 +5549,10 @@ self: super: { "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; "plivo" = dontDistribute super."plivo"; + "plot" = doDistribute super."plot_0_2_3_4"; + "plot-gtk" = doDistribute super."plot-gtk_0_2_0_2"; "plot-gtk-ui" = dontDistribute super."plot-gtk-ui"; + "plot-gtk3" = doDistribute super."plot-gtk3_0_1_0_1"; "plot-lab" = dontDistribute super."plot-lab"; "plotfont" = dontDistribute super."plotfont"; "plotserver-api" = dontDistribute super."plotserver-api"; @@ -5641,6 +5662,7 @@ self: super: { "pretty-error" = dontDistribute super."pretty-error"; "pretty-hex" = dontDistribute super."pretty-hex"; "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-show" = doDistribute super."pretty-show_1_6_8_2"; "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; @@ -5895,6 +5917,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -6467,6 +6490,7 @@ self: super: { "sockaddr" = dontDistribute super."sockaddr"; "socket" = dontDistribute super."socket"; "socket-activation" = dontDistribute super."socket-activation"; + "socket-io" = doDistribute super."socket-io_1_3_3"; "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "soegtk" = dontDistribute super."soegtk"; @@ -6838,6 +6862,7 @@ self: super: { "testrunner" = dontDistribute super."testrunner"; "tetris" = dontDistribute super."tetris"; "tex2txt" = dontDistribute super."tex2txt"; + "texmath" = doDistribute super."texmath_0_8_3"; "texrunner" = dontDistribute super."texrunner"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-format-simple" = dontDistribute super."text-format-simple"; @@ -7410,6 +7435,7 @@ self: super: { "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; "webdriver" = doDistribute super."webdriver_0_6_2_1"; + "webdriver-angular" = doDistribute super."webdriver-angular_0_1_7"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.7.nix b/pkgs/development/haskell-modules/configuration-lts-3.7.nix index 9eb767dc814..0502247f2b7 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.7.nix @@ -503,6 +503,7 @@ self: super: { "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"; @@ -1376,6 +1377,7 @@ self: super: { "azure-servicebus" = dontDistribute super."azure-servicebus"; "azurify" = dontDistribute super."azurify"; "b-tree" = dontDistribute super."b-tree"; + "b9" = doDistribute super."b9_0_5_13"; "babylon" = dontDistribute super."babylon"; "backdropper" = dontDistribute super."backdropper"; "backtracking-exceptions" = dontDistribute super."backtracking-exceptions"; @@ -1527,6 +1529,7 @@ self: super: { "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; "bindings-yices" = dontDistribute super."bindings-yices"; + "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; "binembed-example" = dontDistribute super."binembed-example"; "bio" = dontDistribute super."bio"; @@ -1903,6 +1906,7 @@ self: super: { "codecov-haskell" = dontDistribute super."codecov-haskell"; "codemonitor" = dontDistribute super."codemonitor"; "codepad" = dontDistribute super."codepad"; + "codex" = doDistribute super."codex_0_3_0_8"; "codo-notation" = dontDistribute super."codo-notation"; "cofunctor" = dontDistribute super."cofunctor"; "cognimeta-utils" = dontDistribute super."cognimeta-utils"; @@ -2134,6 +2138,7 @@ self: super: { "cube" = dontDistribute super."cube"; "cubical" = dontDistribute super."cubical"; "cubicbezier" = dontDistribute super."cubicbezier"; + "cubicspline" = doDistribute super."cubicspline_0_1_1"; "cublas" = dontDistribute super."cublas"; "cuboid" = dontDistribute super."cuboid"; "cuda" = dontDistribute super."cuda"; @@ -2589,6 +2594,7 @@ self: super: { "empty" = dontDistribute super."empty"; "encoding" = dontDistribute super."encoding"; "endo" = dontDistribute super."endo"; + "engine-io" = doDistribute super."engine-io_1_2_10"; "engine-io-snap" = dontDistribute super."engine-io-snap"; "engine-io-wai" = dontDistribute super."engine-io-wai"; "engine-io-yesod" = dontDistribute super."engine-io-yesod"; @@ -3689,9 +3695,12 @@ self: super: { "hly" = dontDistribute super."hly"; "hmark" = dontDistribute super."hmark"; "hmarkup" = dontDistribute super."hmarkup"; + "hmatrix" = doDistribute super."hmatrix_0_16_1_5"; "hmatrix-banded" = dontDistribute super."hmatrix-banded"; "hmatrix-csv" = dontDistribute super."hmatrix-csv"; "hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; + "hmatrix-gsl" = doDistribute super."hmatrix-gsl_0_16_0_3"; + "hmatrix-gsl-stats" = doDistribute super."hmatrix-gsl-stats_0_4_1_1"; "hmatrix-mmap" = dontDistribute super."hmatrix-mmap"; "hmatrix-nipals" = dontDistribute super."hmatrix-nipals"; "hmatrix-quadprogpp" = dontDistribute super."hmatrix-quadprogpp"; @@ -3895,6 +3904,7 @@ self: super: { "hsgsom" = dontDistribute super."hsgsom"; "hsgtd" = dontDistribute super."hsgtd"; "hsharc" = dontDistribute super."hsharc"; + "hsignal" = doDistribute super."hsignal_0_2_7_1"; "hsilop" = dontDistribute super."hsilop"; "hsimport" = dontDistribute super."hsimport"; "hsini" = dontDistribute super."hsini"; @@ -3944,6 +3954,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-webdriver" = doDistribute super."hspec-webdriver_1_0_3"; "hspec2" = dontDistribute super."hspec2"; "hspr-sh" = dontDistribute super."hspr-sh"; "hspread" = dontDistribute super."hspread"; @@ -3965,6 +3976,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstest" = dontDistribute super."hstest"; "hstidy" = dontDistribute super."hstidy"; @@ -4107,6 +4119,7 @@ self: super: { "ib-api" = dontDistribute super."ib-api"; "iban" = dontDistribute super."iban"; "iconv" = dontDistribute super."iconv"; + "ide-backend-common" = doDistribute super."ide-backend-common_0_10_0"; "ideas" = dontDistribute super."ideas"; "ideas-math" = dontDistribute super."ideas-math"; "idempotent" = dontDistribute super."idempotent"; @@ -4972,6 +4985,7 @@ self: super: { "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"; @@ -5109,6 +5123,7 @@ self: super: { "network-bitcoin" = dontDistribute super."network-bitcoin"; "network-builder" = dontDistribute super."network-builder"; "network-bytestring" = dontDistribute super."network-bytestring"; + "network-carbon" = doDistribute super."network-carbon_1_0_5"; "network-conduit" = dontDistribute super."network-conduit"; "network-connection" = dontDistribute super."network-connection"; "network-data" = dontDistribute super."network-data"; @@ -5117,6 +5132,7 @@ self: super: { "network-enumerator" = dontDistribute super."network-enumerator"; "network-fancy" = dontDistribute super."network-fancy"; "network-house" = dontDistribute super."network-house"; + "network-info" = doDistribute super."network-info_0_2_0_7"; "network-interfacerequest" = dontDistribute super."network-interfacerequest"; "network-ip" = dontDistribute super."network-ip"; "network-metrics" = dontDistribute super."network-metrics"; @@ -5323,6 +5339,8 @@ self: super: { "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; + "pandoc" = doDistribute super."pandoc_1_15_0_6"; + "pandoc-citeproc" = doDistribute super."pandoc-citeproc_0_7_4"; "pandoc-citeproc-preamble" = dontDistribute super."pandoc-citeproc-preamble"; "pandoc-crossref" = dontDistribute super."pandoc-crossref"; "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; @@ -5377,6 +5395,7 @@ self: super: { "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; "pathtype" = dontDistribute super."pathtype"; + "pathwalk" = dontDistribute super."pathwalk"; "patronscraper" = dontDistribute super."patronscraper"; "patterns" = dontDistribute super."patterns"; "paymill" = dontDistribute super."paymill"; @@ -5508,7 +5527,10 @@ self: super: { "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; "plivo" = dontDistribute super."plivo"; + "plot" = doDistribute super."plot_0_2_3_4"; + "plot-gtk" = doDistribute super."plot-gtk_0_2_0_2"; "plot-gtk-ui" = dontDistribute super."plot-gtk-ui"; + "plot-gtk3" = doDistribute super."plot-gtk3_0_1_0_1"; "plot-lab" = dontDistribute super."plot-lab"; "plotfont" = dontDistribute super."plotfont"; "plotserver-api" = dontDistribute super."plotserver-api"; @@ -5617,6 +5639,7 @@ self: super: { "pretty-error" = dontDistribute super."pretty-error"; "pretty-hex" = dontDistribute super."pretty-hex"; "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-show" = doDistribute super."pretty-show_1_6_8_2"; "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; @@ -5868,6 +5891,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -6438,6 +6462,7 @@ self: super: { "sockaddr" = dontDistribute super."sockaddr"; "socket" = dontDistribute super."socket"; "socket-activation" = dontDistribute super."socket-activation"; + "socket-io" = doDistribute super."socket-io_1_3_3"; "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "soegtk" = dontDistribute super."soegtk"; @@ -6521,6 +6546,7 @@ self: super: { "stable-maps" = dontDistribute super."stable-maps"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stack" = doDistribute super."stack_0_1_5_0"; "stack-prism" = dontDistribute super."stack-prism"; "stackage-curator" = dontDistribute super."stackage-curator"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; @@ -6807,6 +6833,7 @@ self: super: { "testrunner" = dontDistribute super."testrunner"; "tetris" = dontDistribute super."tetris"; "tex2txt" = dontDistribute super."tex2txt"; + "texmath" = doDistribute super."texmath_0_8_3"; "texrunner" = dontDistribute super."texrunner"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-format-simple" = dontDistribute super."text-format-simple"; @@ -7375,6 +7402,7 @@ self: super: { "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; + "webdriver-angular" = doDistribute super."webdriver-angular_0_1_7"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.8.nix b/pkgs/development/haskell-modules/configuration-lts-3.8.nix index 671e459c6fe..309fbb64bad 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.8.nix @@ -503,6 +503,7 @@ self: super: { "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"; @@ -1375,6 +1376,7 @@ self: super: { "azure-servicebus" = dontDistribute super."azure-servicebus"; "azurify" = dontDistribute super."azurify"; "b-tree" = dontDistribute super."b-tree"; + "b9" = doDistribute super."b9_0_5_13"; "babylon" = dontDistribute super."babylon"; "backdropper" = dontDistribute super."backdropper"; "backtracking-exceptions" = dontDistribute super."backtracking-exceptions"; @@ -1525,6 +1527,7 @@ self: super: { "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; "bindings-yices" = dontDistribute super."bindings-yices"; + "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; "binembed-example" = dontDistribute super."binembed-example"; "bio" = dontDistribute super."bio"; @@ -1898,6 +1901,7 @@ self: super: { "codecov-haskell" = dontDistribute super."codecov-haskell"; "codemonitor" = dontDistribute super."codemonitor"; "codepad" = dontDistribute super."codepad"; + "codex" = doDistribute super."codex_0_3_0_8"; "codo-notation" = dontDistribute super."codo-notation"; "cofunctor" = dontDistribute super."cofunctor"; "cognimeta-utils" = dontDistribute super."cognimeta-utils"; @@ -2127,6 +2131,7 @@ self: super: { "cube" = dontDistribute super."cube"; "cubical" = dontDistribute super."cubical"; "cubicbezier" = dontDistribute super."cubicbezier"; + "cubicspline" = doDistribute super."cubicspline_0_1_1"; "cublas" = dontDistribute super."cublas"; "cuboid" = dontDistribute super."cuboid"; "cuda" = dontDistribute super."cuda"; @@ -2575,6 +2580,7 @@ self: super: { "empty" = dontDistribute super."empty"; "encoding" = dontDistribute super."encoding"; "endo" = dontDistribute super."endo"; + "engine-io" = doDistribute super."engine-io_1_2_10"; "engine-io-snap" = dontDistribute super."engine-io-snap"; "engine-io-wai" = dontDistribute super."engine-io-wai"; "engine-io-yesod" = dontDistribute super."engine-io-yesod"; @@ -2712,6 +2718,7 @@ self: super: { "fdo-trash" = dontDistribute super."fdo-trash"; "fec" = dontDistribute super."fec"; "fedora-packages" = dontDistribute super."fedora-packages"; + "feed" = doDistribute super."feed_0_3_10_2"; "feed-cli" = dontDistribute super."feed-cli"; "feed-collect" = dontDistribute super."feed-collect"; "feed-crawl" = dontDistribute super."feed-crawl"; @@ -3280,6 +3287,7 @@ self: super: { "hake" = dontDistribute super."hake"; "hakismet" = dontDistribute super."hakismet"; "hako" = dontDistribute super."hako"; + "hakyll" = doDistribute super."hakyll_4_7_3_0"; "hakyll-R" = dontDistribute super."hakyll-R"; "hakyll-agda" = dontDistribute super."hakyll-agda"; "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates"; @@ -3672,9 +3680,12 @@ self: super: { "hly" = dontDistribute super."hly"; "hmark" = dontDistribute super."hmark"; "hmarkup" = dontDistribute super."hmarkup"; + "hmatrix" = doDistribute super."hmatrix_0_16_1_5"; "hmatrix-banded" = dontDistribute super."hmatrix-banded"; "hmatrix-csv" = dontDistribute super."hmatrix-csv"; "hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; + "hmatrix-gsl" = doDistribute super."hmatrix-gsl_0_16_0_3"; + "hmatrix-gsl-stats" = doDistribute super."hmatrix-gsl-stats_0_4_1_1"; "hmatrix-mmap" = dontDistribute super."hmatrix-mmap"; "hmatrix-nipals" = dontDistribute super."hmatrix-nipals"; "hmatrix-quadprogpp" = dontDistribute super."hmatrix-quadprogpp"; @@ -3878,6 +3889,7 @@ self: super: { "hsgsom" = dontDistribute super."hsgsom"; "hsgtd" = dontDistribute super."hsgtd"; "hsharc" = dontDistribute super."hsharc"; + "hsignal" = doDistribute super."hsignal_0_2_7_1"; "hsilop" = dontDistribute super."hsilop"; "hsimport" = dontDistribute super."hsimport"; "hsini" = dontDistribute super."hsini"; @@ -3927,6 +3939,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-webdriver" = doDistribute super."hspec-webdriver_1_0_3"; "hspec2" = dontDistribute super."hspec2"; "hspr-sh" = dontDistribute super."hspr-sh"; "hspread" = dontDistribute super."hspread"; @@ -3948,6 +3961,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstest" = dontDistribute super."hstest"; "hstidy" = dontDistribute super."hstidy"; @@ -4090,6 +4104,7 @@ self: super: { "ib-api" = dontDistribute super."ib-api"; "iban" = dontDistribute super."iban"; "iconv" = dontDistribute super."iconv"; + "ide-backend-common" = doDistribute super."ide-backend-common_0_10_0"; "ideas" = dontDistribute super."ideas"; "ideas-math" = dontDistribute super."ideas-math"; "idempotent" = dontDistribute super."idempotent"; @@ -4952,6 +4967,7 @@ self: super: { "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"; @@ -5089,6 +5105,7 @@ self: super: { "network-bitcoin" = dontDistribute super."network-bitcoin"; "network-builder" = dontDistribute super."network-builder"; "network-bytestring" = dontDistribute super."network-bytestring"; + "network-carbon" = doDistribute super."network-carbon_1_0_5"; "network-conduit" = dontDistribute super."network-conduit"; "network-connection" = dontDistribute super."network-connection"; "network-data" = dontDistribute super."network-data"; @@ -5097,6 +5114,7 @@ self: super: { "network-enumerator" = dontDistribute super."network-enumerator"; "network-fancy" = dontDistribute super."network-fancy"; "network-house" = dontDistribute super."network-house"; + "network-info" = doDistribute super."network-info_0_2_0_7"; "network-interfacerequest" = dontDistribute super."network-interfacerequest"; "network-ip" = dontDistribute super."network-ip"; "network-metrics" = dontDistribute super."network-metrics"; @@ -5303,6 +5321,8 @@ self: super: { "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; + "pandoc" = doDistribute super."pandoc_1_15_0_6"; + "pandoc-citeproc" = doDistribute super."pandoc-citeproc_0_7_4"; "pandoc-citeproc-preamble" = dontDistribute super."pandoc-citeproc-preamble"; "pandoc-crossref" = dontDistribute super."pandoc-crossref"; "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; @@ -5357,6 +5377,7 @@ self: super: { "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; "pathtype" = dontDistribute super."pathtype"; + "pathwalk" = dontDistribute super."pathwalk"; "patronscraper" = dontDistribute super."patronscraper"; "patterns" = dontDistribute super."patterns"; "paymill" = dontDistribute super."paymill"; @@ -5487,7 +5508,10 @@ self: super: { "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; "plivo" = dontDistribute super."plivo"; + "plot" = doDistribute super."plot_0_2_3_4"; + "plot-gtk" = doDistribute super."plot-gtk_0_2_0_2"; "plot-gtk-ui" = dontDistribute super."plot-gtk-ui"; + "plot-gtk3" = doDistribute super."plot-gtk3_0_1_0_1"; "plot-lab" = dontDistribute super."plot-lab"; "plotfont" = dontDistribute super."plotfont"; "plotserver-api" = dontDistribute super."plotserver-api"; @@ -5595,6 +5619,7 @@ self: super: { "pretty-error" = dontDistribute super."pretty-error"; "pretty-hex" = dontDistribute super."pretty-hex"; "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-show" = doDistribute super."pretty-show_1_6_8_2"; "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; @@ -5844,6 +5869,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -6414,6 +6440,7 @@ self: super: { "sockaddr" = dontDistribute super."sockaddr"; "socket" = dontDistribute super."socket"; "socket-activation" = dontDistribute super."socket-activation"; + "socket-io" = doDistribute super."socket-io_1_3_3"; "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "soegtk" = dontDistribute super."soegtk"; @@ -6497,6 +6524,7 @@ self: super: { "stable-maps" = dontDistribute super."stable-maps"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stack" = doDistribute super."stack_0_1_5_0"; "stack-prism" = dontDistribute super."stack-prism"; "stackage-curator" = dontDistribute super."stackage-curator"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; @@ -6779,6 +6807,7 @@ self: super: { "testrunner" = dontDistribute super."testrunner"; "tetris" = dontDistribute super."tetris"; "tex2txt" = dontDistribute super."tex2txt"; + "texmath" = doDistribute super."texmath_0_8_3"; "texrunner" = dontDistribute super."texrunner"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-format-simple" = dontDistribute super."text-format-simple"; @@ -7345,6 +7374,7 @@ self: super: { "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; + "webdriver-angular" = doDistribute super."webdriver-angular_0_1_7"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.9.nix b/pkgs/development/haskell-modules/configuration-lts-3.9.nix index f287ddbc898..e57050cface 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.9.nix @@ -502,6 +502,7 @@ self: super: { "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"; @@ -1372,6 +1373,7 @@ self: super: { "azure-servicebus" = dontDistribute super."azure-servicebus"; "azurify" = dontDistribute super."azurify"; "b-tree" = dontDistribute super."b-tree"; + "b9" = doDistribute super."b9_0_5_13"; "babylon" = dontDistribute super."babylon"; "backdropper" = dontDistribute super."backdropper"; "backtracking-exceptions" = dontDistribute super."backtracking-exceptions"; @@ -1520,6 +1522,7 @@ self: super: { "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; "bindings-yices" = dontDistribute super."bindings-yices"; + "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; "binembed-example" = dontDistribute super."binembed-example"; "bio" = dontDistribute super."bio"; @@ -1892,6 +1895,7 @@ self: super: { "codecov-haskell" = dontDistribute super."codecov-haskell"; "codemonitor" = dontDistribute super."codemonitor"; "codepad" = dontDistribute super."codepad"; + "codex" = doDistribute super."codex_0_3_0_8"; "codo-notation" = dontDistribute super."codo-notation"; "cofunctor" = dontDistribute super."cofunctor"; "cognimeta-utils" = dontDistribute super."cognimeta-utils"; @@ -2121,6 +2125,7 @@ self: super: { "cube" = dontDistribute super."cube"; "cubical" = dontDistribute super."cubical"; "cubicbezier" = dontDistribute super."cubicbezier"; + "cubicspline" = doDistribute super."cubicspline_0_1_1"; "cublas" = dontDistribute super."cublas"; "cuboid" = dontDistribute super."cuboid"; "cuda" = dontDistribute super."cuda"; @@ -2567,6 +2572,7 @@ self: super: { "empty" = dontDistribute super."empty"; "encoding" = dontDistribute super."encoding"; "endo" = dontDistribute super."endo"; + "engine-io" = doDistribute super."engine-io_1_2_10"; "engine-io-snap" = dontDistribute super."engine-io-snap"; "engine-io-wai" = dontDistribute super."engine-io-wai"; "engine-io-yesod" = dontDistribute super."engine-io-yesod"; @@ -2703,6 +2709,7 @@ self: super: { "fdo-trash" = dontDistribute super."fdo-trash"; "fec" = dontDistribute super."fec"; "fedora-packages" = dontDistribute super."fedora-packages"; + "feed" = doDistribute super."feed_0_3_10_2"; "feed-cli" = dontDistribute super."feed-cli"; "feed-collect" = dontDistribute super."feed-collect"; "feed-crawl" = dontDistribute super."feed-crawl"; @@ -3270,6 +3277,7 @@ self: super: { "hake" = dontDistribute super."hake"; "hakismet" = dontDistribute super."hakismet"; "hako" = dontDistribute super."hako"; + "hakyll" = doDistribute super."hakyll_4_7_3_0"; "hakyll-R" = dontDistribute super."hakyll-R"; "hakyll-agda" = dontDistribute super."hakyll-agda"; "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates"; @@ -3662,9 +3670,12 @@ self: super: { "hly" = dontDistribute super."hly"; "hmark" = dontDistribute super."hmark"; "hmarkup" = dontDistribute super."hmarkup"; + "hmatrix" = doDistribute super."hmatrix_0_16_1_5"; "hmatrix-banded" = dontDistribute super."hmatrix-banded"; "hmatrix-csv" = dontDistribute super."hmatrix-csv"; "hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; + "hmatrix-gsl" = doDistribute super."hmatrix-gsl_0_16_0_3"; + "hmatrix-gsl-stats" = doDistribute super."hmatrix-gsl-stats_0_4_1_1"; "hmatrix-mmap" = dontDistribute super."hmatrix-mmap"; "hmatrix-nipals" = dontDistribute super."hmatrix-nipals"; "hmatrix-quadprogpp" = dontDistribute super."hmatrix-quadprogpp"; @@ -3867,6 +3878,7 @@ self: super: { "hsgsom" = dontDistribute super."hsgsom"; "hsgtd" = dontDistribute super."hsgtd"; "hsharc" = dontDistribute super."hsharc"; + "hsignal" = doDistribute super."hsignal_0_2_7_1"; "hsilop" = dontDistribute super."hsilop"; "hsimport" = dontDistribute super."hsimport"; "hsini" = dontDistribute super."hsini"; @@ -3916,6 +3928,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-webdriver" = doDistribute super."hspec-webdriver_1_0_3"; "hspec2" = dontDistribute super."hspec2"; "hspr-sh" = dontDistribute super."hspr-sh"; "hspread" = dontDistribute super."hspread"; @@ -3937,6 +3950,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstest" = dontDistribute super."hstest"; "hstidy" = dontDistribute super."hstidy"; @@ -4079,6 +4093,7 @@ self: super: { "ib-api" = dontDistribute super."ib-api"; "iban" = dontDistribute super."iban"; "iconv" = dontDistribute super."iconv"; + "ide-backend-common" = doDistribute super."ide-backend-common_0_10_0"; "ideas" = dontDistribute super."ideas"; "ideas-math" = dontDistribute super."ideas-math"; "idempotent" = dontDistribute super."idempotent"; @@ -4940,6 +4955,7 @@ self: super: { "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"; @@ -5077,6 +5093,7 @@ self: super: { "network-bitcoin" = dontDistribute super."network-bitcoin"; "network-builder" = dontDistribute super."network-builder"; "network-bytestring" = dontDistribute super."network-bytestring"; + "network-carbon" = doDistribute super."network-carbon_1_0_5"; "network-conduit" = dontDistribute super."network-conduit"; "network-connection" = dontDistribute super."network-connection"; "network-data" = dontDistribute super."network-data"; @@ -5085,6 +5102,7 @@ self: super: { "network-enumerator" = dontDistribute super."network-enumerator"; "network-fancy" = dontDistribute super."network-fancy"; "network-house" = dontDistribute super."network-house"; + "network-info" = doDistribute super."network-info_0_2_0_7"; "network-interfacerequest" = dontDistribute super."network-interfacerequest"; "network-ip" = dontDistribute super."network-ip"; "network-metrics" = dontDistribute super."network-metrics"; @@ -5290,6 +5308,8 @@ self: super: { "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; + "pandoc" = doDistribute super."pandoc_1_15_0_6"; + "pandoc-citeproc" = doDistribute super."pandoc-citeproc_0_7_4"; "pandoc-citeproc-preamble" = dontDistribute super."pandoc-citeproc-preamble"; "pandoc-crossref" = dontDistribute super."pandoc-crossref"; "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; @@ -5344,6 +5364,7 @@ self: super: { "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; "pathtype" = dontDistribute super."pathtype"; + "pathwalk" = dontDistribute super."pathwalk"; "patronscraper" = dontDistribute super."patronscraper"; "patterns" = dontDistribute super."patterns"; "paymill" = dontDistribute super."paymill"; @@ -5473,7 +5494,10 @@ self: super: { "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; "plivo" = dontDistribute super."plivo"; + "plot" = doDistribute super."plot_0_2_3_4"; + "plot-gtk" = doDistribute super."plot-gtk_0_2_0_2"; "plot-gtk-ui" = dontDistribute super."plot-gtk-ui"; + "plot-gtk3" = doDistribute super."plot-gtk3_0_1_0_1"; "plot-lab" = dontDistribute super."plot-lab"; "plotfont" = dontDistribute super."plotfont"; "plotserver-api" = dontDistribute super."plotserver-api"; @@ -5581,6 +5605,7 @@ self: super: { "pretty-error" = dontDistribute super."pretty-error"; "pretty-hex" = dontDistribute super."pretty-hex"; "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-show" = doDistribute super."pretty-show_1_6_8_2"; "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; @@ -5830,6 +5855,7 @@ self: super: { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -6197,6 +6223,7 @@ self: super: { "shady-graphics" = dontDistribute super."shady-graphics"; "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"; "shake-minify" = dontDistribute super."shake-minify"; "shake-pack" = dontDistribute super."shake-pack"; "shaker" = dontDistribute super."shaker"; @@ -6398,6 +6425,7 @@ self: super: { "sockaddr" = dontDistribute super."sockaddr"; "socket" = dontDistribute super."socket"; "socket-activation" = dontDistribute super."socket-activation"; + "socket-io" = doDistribute super."socket-io_1_3_3"; "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "soegtk" = dontDistribute super."soegtk"; @@ -6481,6 +6509,7 @@ self: super: { "stable-maps" = dontDistribute super."stable-maps"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stack" = doDistribute super."stack_0_1_5_0"; "stack-prism" = dontDistribute super."stack-prism"; "stackage-curator" = dontDistribute super."stackage-curator"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; @@ -6763,6 +6792,7 @@ self: super: { "testrunner" = dontDistribute super."testrunner"; "tetris" = dontDistribute super."tetris"; "tex2txt" = dontDistribute super."tex2txt"; + "texmath" = doDistribute super."texmath_0_8_3"; "texrunner" = dontDistribute super."texrunner"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-format-simple" = dontDistribute super."text-format-simple"; @@ -7254,6 +7284,7 @@ self: super: { "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; + "wai-extra" = doDistribute super."wai-extra_3_0_11_1"; "wai-frontend-monadcgi" = dontDistribute super."wai-frontend-monadcgi"; "wai-graceful" = dontDistribute super."wai-graceful"; "wai-handler-devel" = dontDistribute super."wai-handler-devel"; @@ -7328,6 +7359,7 @@ self: super: { "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; + "webdriver-angular" = doDistribute super."webdriver-angular_0_1_7"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix index 2a5fc069b1a..822ef9a6a02 100644 --- a/pkgs/development/haskell-modules/hackage-packages.nix +++ b/pkgs/development/haskell-modules/hackage-packages.nix @@ -1723,6 +1723,7 @@ self: { process split strict temporary transformers ]; executableHaskellDepends = [ base cmdargs ]; + jailbreak = true; homepage = "http://byorgey.wordpress.com/blogliterately/"; description = "A tool for posting Haskelly articles to blogs"; license = "GPL"; @@ -1749,6 +1750,7 @@ self: { process split strict temporary transformers ]; executableHaskellDepends = [ base cmdargs ]; + jailbreak = true; homepage = "http://byorgey.wordpress.com/blogliterately/"; description = "A tool for posting Haskelly articles to blogs"; license = "GPL"; @@ -9795,6 +9797,20 @@ self: { license = "unknown"; }) {}; + "Hish" = callPackage + ({ mkDerivation, base, MissingH, process }: + mkDerivation { + pname = "Hish"; + version = "0.0.1"; + sha256 = "3c701417d5abd2e7742d40f5ec01982a0175b75f11b023662502398f8cbaaf36"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base MissingH process ]; + executableHaskellDepends = [ base MissingH process ]; + homepage = "https://github.com/jaiyalas/Hish"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "Histogram" = callPackage ({ mkDerivation, base, containers, gnuplot }: mkDerivation { @@ -27248,6 +27264,30 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "approximate_0_2_2_2" = callPackage + ({ mkDerivation, base, binary, bytes, cereal, comonad, deepseq + , directory, doctest, filepath, ghc-prim, hashable, hashable-extras + , lens, log-domain, pointed, safecopy, semigroupoids, semigroups + , simple-reflect, vector + }: + mkDerivation { + pname = "approximate"; + version = "0.2.2.2"; + sha256 = "b101ce547ef8b9e82f488982df7946601393c57496e434c84fa6ca7a7907c210"; + libraryHaskellDepends = [ + base binary bytes cereal comonad deepseq ghc-prim hashable + hashable-extras lens log-domain pointed safecopy semigroupoids + semigroups vector + ]; + testHaskellDepends = [ + base directory doctest filepath semigroups simple-reflect + ]; + homepage = "http://github.com/analytics/approximate/"; + description = "Approximate discrete values and numbers"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "approximate-equality" = callPackage ({ mkDerivation, base, type-level-natural-number }: mkDerivation { @@ -29946,6 +29986,8 @@ self: { pname = "aws"; version = "0.12.1"; sha256 = "6c85bac359ea94d78f287b45c6e7e981dc260a1c029a7888ed752a1c0e64d32b"; + revision = "1"; + editedCabalFile = "15033cfa014e706515a9d2b59c4996a921e41bfd9a460d7f8388d3faa55e9ff5"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -30590,7 +30632,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "b9" = callPackage + "b9_0_5_13" = callPackage ({ mkDerivation, aeson, async, base, bifunctors, binary, boxes , bytestring, conduit, conduit-extra, ConfigFile, directory , filepath, free, hspec, hspec-expectations, mtl @@ -30620,9 +30662,10 @@ self: { homepage = "https://github.com/sheyll/b9-vm-image-builder"; description = "A tool and library for building virtual machine images"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "b9_0_5_14" = callPackage + "b9" = callPackage ({ mkDerivation, aeson, async, base, bifunctors, binary, boxes , bytestring, conduit, conduit-extra, ConfigFile, directory , filepath, free, hashable, hspec, hspec-expectations, mtl @@ -30653,7 +30696,6 @@ self: { homepage = "https://github.com/sheyll/b9-vm-image-builder"; description = "A tool and library for building virtual machine images"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "babylon" = callPackage @@ -32507,6 +32549,24 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "bimap_0_3_1" = callPackage + ({ mkDerivation, base, containers, exceptions, QuickCheck + , template-haskell + }: + mkDerivation { + pname = "bimap"; + version = "0.3.1"; + sha256 = "b4e07666e79b81a00f43982191848b76a96784f0b29792290fbdec0b08ba4c0f"; + libraryHaskellDepends = [ base containers exceptions ]; + testHaskellDepends = [ + base containers exceptions QuickCheck template-haskell + ]; + homepage = "https://github.com/joelwilliamson/bimap"; + description = "Bidirectional mapping between two key types"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "bimap-server" = callPackage ({ mkDerivation, aeson, base, bimap, binary, directory, http-types , unix, wai, warp @@ -33811,6 +33871,18 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) gmp; inherit (pkgs) yices;}; + "bindynamic" = callPackage + ({ mkDerivation, base, binary, bytestring, rank1dynamic }: + mkDerivation { + pname = "bindynamic"; + version = "1.0.0.0"; + sha256 = "f1e9c392ea6a9be6a4d7200ed8060e5560ac6881c65c9423cc6e63d2bbe7246e"; + libraryHaskellDepends = [ base binary bytestring rank1dynamic ]; + homepage = "https://github.com/lspitzner/bindynamic"; + description = "A variation of Data.Dynamic.Dynamic with a Binary instance"; + license = stdenv.lib.licenses.gpl3; + }) {}; + "binembed" = callPackage ({ mkDerivation, base, bytestring, Cabal, containers, directory , dlist, filepath @@ -35474,6 +35546,35 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "bloodhound_0_9_0_0" = callPackage + ({ mkDerivation, aeson, base, blaze-builder, bytestring, containers + , data-default-class, directory, doctest, doctest-prop, exceptions + , filepath, hspec, http-client, http-types, mtl, mtl-compat + , network-uri, QuickCheck, quickcheck-properties, semigroups, text + , time, transformers, unordered-containers, vector + }: + mkDerivation { + pname = "bloodhound"; + version = "0.9.0.0"; + sha256 = "5721bbac1fef25f1793fc227b9798e1c4d4eedd3507b369a223f790ac78860f2"; + libraryHaskellDepends = [ + aeson base blaze-builder bytestring containers data-default-class + exceptions http-client http-types mtl mtl-compat network-uri + semigroups text time transformers unordered-containers vector + ]; + testHaskellDepends = [ + aeson base bytestring containers directory doctest doctest-prop + filepath hspec http-client http-types mtl QuickCheck + quickcheck-properties semigroups text time unordered-containers + vector + ]; + jailbreak = true; + homepage = "https://github.com/bitemyapp/bloodhound"; + description = "ElasticSearch client library for Haskell"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "bloomfilter" = callPackage ({ mkDerivation, array, base, bytestring, deepseq, QuickCheck , random, test-framework, test-framework-quickcheck2 @@ -40129,14 +40230,13 @@ self: { }: mkDerivation { pname = "cassava-conduit"; - version = "0.2.0"; - sha256 = "168cfd9ef4ebb2e744b0f13fa40b6c3dbf38430f116338681749687c4888e727"; + version = "0.2.1"; + sha256 = "3b75c027d9be6637b5ce550960995eedb4b9e3f7c8acdecdae36c350ba600c55"; libraryHaskellDepends = [ array base bifunctors bytestring cassava conduit conduit-extra containers mtl ]; testHaskellDepends = [ base QuickCheck ]; - jailbreak = true; homepage = "https://github.com/domdere/cassava-conduit"; description = "Conduit interface for cassava package"; license = stdenv.lib.licenses.bsd3; @@ -40384,8 +40484,8 @@ self: { }: mkDerivation { pname = "cblrepo"; - version = "0.18.1"; - sha256 = "a34f1ff7468b9eceeb010e8a2c328d4e845902aa763f23a3dd622f34b21e1e78"; + version = "0.18.2"; + sha256 = "d5511174340ac9723d40f70a3382c4e789b5183f4133657c343b380ea1221a98"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -41990,27 +42090,26 @@ self: { }) {}; "clafer" = callPackage - ({ mkDerivation, aeson, array, base, bytestring, cmdargs + ({ mkDerivation, aeson, alex, array, base, bytestring, cmdargs , containers, data-stringmap, directory, doctest, executable-path - , filepath, HTTP, HUnit, json-builder, lens, lens-aeson, mtl - , mtl-compat, network, network-uri, parsec, process, QuickCheck - , split, string-conversions, tasty, tasty-hunit, tasty-th, text - , transformers, transformers-compat + , file-embed, filepath, happy, HTTP, HUnit, json-builder, lens + , lens-aeson, mtl, mtl-compat, network, network-uri, parsec + , process, QuickCheck, split, string-conversions, tasty + , tasty-hunit, tasty-th, text, transformers, transformers-compat }: mkDerivation { pname = "clafer"; - version = "0.4.1"; - sha256 = "e3015519a90073e986ed67ba753384b536d9d02652c34aa1195adb6f7e12c0d0"; - revision = "1"; - editedCabalFile = "177981f500b77d9bf9b941da7693d895357d4a7cc1181e4ca85561ca5d2e0f1c"; + version = "0.4.2"; + sha256 = "020aa22d8e0fc8cf8038530e4a5478f35d3c8553d1aaa06536813ecc5a58fc87"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ aeson array base bytestring cmdargs containers data-stringmap - directory executable-path filepath HTTP json-builder lens - lens-aeson mtl mtl-compat network network-uri parsec process split - string-conversions text transformers transformers-compat + directory executable-path file-embed filepath HTTP json-builder + lens lens-aeson mtl mtl-compat network network-uri parsec process + split string-conversions text transformers transformers-compat ]; + libraryToolDepends = [ alex happy ]; executableHaskellDepends = [ base cmdargs containers filepath mtl process split ]; @@ -42034,8 +42133,8 @@ self: { }: mkDerivation { pname = "claferIG"; - version = "0.4.1"; - sha256 = "e804d364884837730b91c46f9dcfa8b39ea7438e9bbd3a810676ba635b6caf33"; + version = "0.4.2"; + sha256 = "7beca40d0c4286e794120caf8f238b2c12feed79abf51bd8bfc92a44079fcf67"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -42065,8 +42164,8 @@ self: { }: mkDerivation { pname = "claferwiki"; - version = "0.4.1"; - sha256 = "d61f2b7effa17209ab106a90f83ab6afdcea65e1da330bb2d387441d4ec80eb3"; + version = "0.4.2"; + sha256 = "307fc315856b948a5e336b6de685130b740bc0d1030e91ed34cd31f4bd20e67a"; libraryHaskellDepends = [ base clafer containers directory gitit MissingH mtl network network-uri process SHA split time transformers transformers-compat @@ -42233,8 +42332,8 @@ self: { }: mkDerivation { pname = "clash-ghc"; - version = "0.6"; - sha256 = "aace7ed491332ffbbada8475d25f0c18f3cae0b1ecabecfff877252de278e25e"; + version = "0.6.1"; + sha256 = "7cee8b008e9da145cf3854259fcc7c1917d4311bc9badc17a4c1dd2087da6fd7"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -42350,8 +42449,8 @@ self: { }: mkDerivation { pname = "clash-lib"; - version = "0.6"; - sha256 = "1329b252c4ae8acd13fdfe65437987d791e2eff0a317ed5a3c0ef2e0ccdcaf77"; + version = "0.6.1"; + sha256 = "f7e701258f7eb4b25fb0e5529f069eee8bf44e540e7ba32f9a86d13d40fdf67f"; libraryHaskellDepends = [ aeson attoparsec base bytestring clash-prelude concurrent-supply containers deepseq directory errors fgl filepath hashable lens mtl @@ -42408,15 +42507,16 @@ self: { "clash-prelude" = callPackage ({ mkDerivation, array, base, data-default, doctest, ghc-prim , ghc-typelits-natnormalise, Glob, integer-gmp, lens, QuickCheck - , singletons, template-haskell, th-lift + , reflection, singletons, template-haskell, th-lift }: mkDerivation { pname = "clash-prelude"; - version = "0.10"; - sha256 = "a1781f1a2ac5714f5467d697612d679508fd9847dc32463a05fd29394d1fa682"; + version = "0.10.1"; + sha256 = "2be01788ccbb1a8dcf16ee12e2a7bbba4733482f13bbfe66d13ceda21ec6fb2b"; libraryHaskellDepends = [ array base data-default ghc-prim ghc-typelits-natnormalise - integer-gmp lens QuickCheck singletons template-haskell th-lift + integer-gmp lens QuickCheck reflection singletons template-haskell + th-lift ]; testHaskellDepends = [ base doctest Glob ]; homepage = "http://www.clash-lang.org/"; @@ -42515,8 +42615,8 @@ self: { }: mkDerivation { pname = "clash-systemverilog"; - version = "0.6"; - sha256 = "4504a1f6b0e5921d1f04ea0aa50ff938751f32a03f9fde01367734c85da88e2c"; + version = "0.6.1"; + sha256 = "ba5caf41c95d92ad36a34ae085d667a13b34d437fed1fd497ab97917994bad7a"; libraryHaskellDepends = [ base clash-lib clash-prelude fgl lens mtl text unordered-containers wl-pprint-text @@ -42604,8 +42704,8 @@ self: { }: mkDerivation { pname = "clash-verilog"; - version = "0.6"; - sha256 = "b34e9cd42c8558e9b9b780b5499c8ceb9ffab92bf2e3136124b7e34b84902fb4"; + version = "0.6.1"; + sha256 = "b8035a6e711e91289ff13da74c105d4965df2957856ecefd2be027daf8016b60"; libraryHaskellDepends = [ base clash-lib clash-prelude fgl lens mtl text unordered-containers wl-pprint-text @@ -42693,8 +42793,8 @@ self: { }: mkDerivation { pname = "clash-vhdl"; - version = "0.6"; - sha256 = "7d2d5e2d3f52f8474ada33594073c9e74500c1988cb13f0beb4674c1f5bb784c"; + version = "0.6.1"; + sha256 = "6d24b80a4255233e5e70e6d7547e97b22668c30db1ddc219d5e95562768aa201"; libraryHaskellDepends = [ base clash-lib clash-prelude fgl lens mtl text unordered-containers wl-pprint-text @@ -44506,7 +44606,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "codex" = callPackage + "codex_0_3_0_8" = callPackage ({ mkDerivation, base, bytestring, Cabal, containers, cryptohash , directory, either, filepath, hackage-db, http-client, lens , machines, machines-directory, MissingH, monad-loops, network @@ -44527,6 +44627,34 @@ self: { base bytestring Cabal directory either filepath hackage-db MissingH monad-loops network wreq yaml ]; + jailbreak = true; + homepage = "http://github.com/aloiscochard/codex"; + description = "A ctags file generator for cabal project dependencies"; + license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "codex" = callPackage + ({ mkDerivation, base, bytestring, Cabal, containers, cryptohash + , directory, either, filepath, hackage-db, http-client, lens + , machines, machines-directory, MissingH, monad-loops, network + , process, tar, text, transformers, wreq, yaml, zlib + }: + mkDerivation { + pname = "codex"; + version = "0.3.0.10"; + sha256 = "ae2ace3744de09abb7cf8d8d8e36905ea08698c47f1b0677433f4649196f4e76"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base bytestring Cabal containers cryptohash directory either + filepath hackage-db http-client lens machines machines-directory + process tar text transformers wreq yaml zlib + ]; + executableHaskellDepends = [ + base bytestring Cabal directory either filepath hackage-db MissingH + monad-loops network wreq yaml + ]; homepage = "http://github.com/aloiscochard/codex"; description = "A ctags file generator for cabal project dependencies"; license = stdenv.lib.licenses.asl20; @@ -46288,6 +46416,29 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "conduit_1_2_5_1" = callPackage + ({ mkDerivation, base, containers, exceptions, hspec, lifted-base + , mmorph, mtl, QuickCheck, resourcet, safe, transformers + , transformers-base + }: + mkDerivation { + pname = "conduit"; + version = "1.2.5.1"; + sha256 = "651fddf1641b2a92eae5acad77711b03df466b4a0d4a7d7c6d70b6d2b8e6062b"; + libraryHaskellDepends = [ + base exceptions lifted-base mmorph mtl resourcet transformers + transformers-base + ]; + testHaskellDepends = [ + base containers exceptions hspec mtl QuickCheck resourcet safe + transformers + ]; + homepage = "http://github.com/snoyberg/conduit"; + description = "Streaming data processing library"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "conduit-audio" = callPackage ({ mkDerivation, base, conduit, vector }: mkDerivation { @@ -47219,18 +47370,18 @@ self: { "console-program" = callPackage ({ mkDerivation, ansi-terminal, ansi-wl-pprint, base, containers - , directory, fez-conf, haskeline, parsec, parsec-extra, split - , transformers, utility-ht + , directory, haskeline, parsec, parsec-extra, split, transformers + , unix, utility-ht }: mkDerivation { pname = "console-program"; - version = "0.3.2.0"; - sha256 = "7564cd91c29b33dade6f1a19a2d82bee7a76ba08486a7f388c10049a2cdf2794"; + version = "0.4.0.3"; + sha256 = "89faaa72131c56397b3603ac67d577b4cf7fc5607fc4369f3e0255b403d1fe88"; libraryHaskellDepends = [ - ansi-terminal ansi-wl-pprint base containers directory fez-conf - haskeline parsec parsec-extra split transformers utility-ht + ansi-terminal ansi-wl-pprint base containers directory haskeline + parsec parsec-extra split transformers unix utility-ht ]; - description = "Interpret the command line and contents of a config file as commands and options"; + description = "Interpret the command line and settings in a config file as commands and options"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -50854,12 +51005,27 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "cubicspline" = callPackage + "cubicspline_0_1_1" = callPackage ({ mkDerivation, base, hmatrix, safe }: mkDerivation { pname = "cubicspline"; version = "0.1.1"; sha256 = "1ac5800f351a7c2d802a4f3eeff291f57cb4d14f17031b1c2f50232737408c58"; + revision = "1"; + editedCabalFile = "9a41e57d036a8210e1749a8a17929446725aa7cd2e7b8b0945f50303a3d59394"; + libraryHaskellDepends = [ base hmatrix safe ]; + jailbreak = true; + description = "Natural cubic spline interpolation"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "cubicspline" = callPackage + ({ mkDerivation, base, hmatrix, safe }: + mkDerivation { + pname = "cubicspline"; + version = "0.1.2"; + sha256 = "5b6ced9ca65b0d01ddceaf18605c8f915491d8d4a6aaef73475c4e8d4b1a9b79"; libraryHaskellDepends = [ base hmatrix safe ]; description = "Natural cubic spline interpolation"; license = stdenv.lib.licenses.bsd3; @@ -58453,8 +58619,8 @@ self: { }: mkDerivation { pname = "diversity"; - version = "0.7.0.3"; - sha256 = "a9d977cfd093038d6df942df959e7f913298a8f18068ebf88380f4d8c6a9163b"; + version = "0.7.1.0"; + sha256 = "2eef79088a2ea95e92427db52af34a26dd79f51a2625c6fd22301b82b7d34aad"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -58473,20 +58639,21 @@ self: { ({ mkDerivation, acid-state, aeson, base, blaze-html, blaze-markup , composition-tree, containers, data-default, directory, either , lens, pandoc, patches-vector, safecopy, servant, servant-blaze - , servant-server, shakespeare, template-haskell, text, transformers - , vector, warp, yaml + , servant-server, shakespeare, template-haskell, text, time + , time-locale-compat, transformers, vector, warp, yaml }: mkDerivation { pname = "dixi"; - version = "0.1.0.0"; - sha256 = "85d7bfd8dc4b0789900ccbdc0b7da330b7d613c9b2a991a02396aafd27d01686"; + version = "0.2.0.0"; + sha256 = "840eb12d35c1a7be9e82f568e13d58584c098b0b013e9e62e753fcdd3db21752"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ acid-state aeson base blaze-html blaze-markup composition-tree containers data-default directory either lens pandoc patches-vector safecopy servant servant-blaze servant-server shakespeare - template-haskell text transformers vector warp yaml + template-haskell text time time-locale-compat transformers vector + warp yaml ]; homepage = "https://github.com/liamoc/dixi"; description = "A wiki implemented with a firm theoretical foundation"; @@ -60343,7 +60510,6 @@ self: { hmatrix-gsl HUnit linear QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 vector ]; - jailbreak = true; description = "your dynamic optimization buddy"; license = stdenv.lib.licenses.gpl3; hydraPlatforms = stdenv.lib.platforms.none; @@ -62326,7 +62492,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "engine-io" = callPackage + "engine-io_1_2_10" = callPackage ({ mkDerivation, aeson, async, attoparsec, base, base64-bytestring , bytestring, either, free, monad-loops, mwc-random, stm, stm-delay , text, transformers, unordered-containers, vector, websockets @@ -62343,6 +62509,26 @@ self: { homepage = "http://github.com/ocharles/engine.io"; description = "A Haskell implementation of Engine.IO"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "engine-io" = callPackage + ({ mkDerivation, aeson, async, attoparsec, base, base64-bytestring + , bytestring, either, free, monad-loops, mwc-random, stm, stm-delay + , text, transformers, unordered-containers, vector, websockets + }: + mkDerivation { + pname = "engine-io"; + version = "1.2.11"; + sha256 = "bd57162b4b2233ef3fbe4ce6cba7d562476da59257b1baaa801847d9809e601d"; + libraryHaskellDepends = [ + aeson async attoparsec base base64-bytestring bytestring either + free monad-loops mwc-random stm stm-delay text transformers + unordered-containers vector websockets + ]; + homepage = "http://github.com/ocharles/engine.io"; + description = "A Haskell implementation of Engine.IO"; + license = stdenv.lib.licenses.bsd3; }) {}; "engine-io-growler" = callPackage @@ -62407,8 +62593,8 @@ self: { }: mkDerivation { pname = "engine-io-yesod"; - version = "1.0.2"; - sha256 = "5c2de379277d777f9442eee96b460a1b7e98973efb566a0b9e43d88f44c01296"; + version = "1.0.3"; + sha256 = "ef27642e8ffcb149d98dadb6c695aff7c2a66a63ee7dddf75b4168fa71b5de2f"; libraryHaskellDepends = [ base bytestring conduit conduit-extra engine-io http-types text unordered-containers wai wai-websockets websockets yesod-core @@ -63566,6 +63752,28 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "ether_0_3_1_1" = callPackage + ({ mkDerivation, base, mmorph, monad-control, mtl, newtype-generics + , QuickCheck, tasty, tasty-quickcheck, template-haskell + , transformers, transformers-base, transformers-lift + }: + mkDerivation { + pname = "ether"; + version = "0.3.1.1"; + sha256 = "bafa8037e0ee2fef84b7e14e6064a7c4ce72d4acabd72da5ed58cb4ead1b00b1"; + libraryHaskellDepends = [ + base mmorph monad-control mtl newtype-generics template-haskell + transformers transformers-base transformers-lift + ]; + testHaskellDepends = [ + base mtl QuickCheck tasty tasty-quickcheck transformers + ]; + homepage = "https://int-index.github.io/ether/"; + description = "Monad transformers and classes"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "ethereum-client-haskell" = callPackage ({ mkDerivation, ansi-wl-pprint, array, base, base16-bytestring , binary, bytestring, cmdargs, containers, cryptohash, data-default @@ -64845,15 +65053,20 @@ self: { }: mkDerivation { pname = "factory"; - version = "0.2.1.1"; - sha256 = "55055ff6d83f7dd08696bddcab027f0afc481fd4f561e0eded3b37015e8b501f"; + version = "0.2.1.2"; + sha256 = "0d8d4c53c948e1e577a2813c6c512bb25615dfad790839414705b53ed5b402bd"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ array base containers deepseq parallel primes random toolshed ]; - executableHaskellDepends = [ Cabal QuickCheck ]; - homepage = "http://functionalley.eu"; + executableHaskellDepends = [ + array base Cabal containers deepseq random toolshed + ]; + testHaskellDepends = [ + array base containers deepseq primes QuickCheck random toolshed + ]; + homepage = "http://functionalley.eu/Factory/factory.html"; description = "Rational arithmetic in an irrational world"; license = "GPL"; }) {}; @@ -66215,7 +66428,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "feed" = callPackage + "feed_0_3_10_2" = callPackage ({ mkDerivation, base, HUnit, old-locale, old-time, test-framework , test-framework-hunit, time, time-locale-compat, utf8-string, xml }: @@ -66233,6 +66446,27 @@ self: { homepage = "https://github.com/bergmark/feed"; description = "Interfacing with RSS (v 0.9x, 2.x, 1.0) + Atom feeds."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "feed" = callPackage + ({ mkDerivation, base, HUnit, old-locale, old-time, test-framework + , test-framework-hunit, time, time-locale-compat, utf8-string, xml + }: + mkDerivation { + pname = "feed"; + version = "0.3.10.3"; + sha256 = "83af8320f10ce4b92c16ba33b22c74e5a188cb76e06f421705030fcff25ac378"; + libraryHaskellDepends = [ + base old-locale old-time time time-locale-compat utf8-string xml + ]; + testHaskellDepends = [ + base HUnit old-locale old-time test-framework test-framework-hunit + time time-locale-compat utf8-string xml + ]; + homepage = "https://github.com/bergmark/feed"; + description = "Interfacing with RSS (v 0.9x, 2.x, 1.0) + Atom feeds."; + license = stdenv.lib.licenses.bsd3; }) {}; "feed-cli" = callPackage @@ -67456,12 +67690,16 @@ self: { }: mkDerivation { pname = "fishfood"; - version = "0.0.1.4"; - sha256 = "ffdc12216f142512efca5b2a5c369f040cdf24fdb355f990d209447da9a7fed2"; - isLibrary = false; + version = "0.0.1.5"; + sha256 = "58fa4da2e7437ba36be2027a9bcd73cc9aceb180599b59b65a771ac3d9155271"; + isLibrary = true; isExecutable = true; - executableHaskellDepends = [ - base Cabal containers directory factory mtl QuickCheck toolshed + libraryHaskellDepends = [ + base Cabal containers directory factory mtl toolshed + ]; + executableHaskellDepends = [ base Cabal mtl toolshed ]; + testHaskellDepends = [ + base Cabal containers mtl QuickCheck toolshed ]; homepage = "http://functionalley.eu"; description = "Calculates file-size frequency-distribution"; @@ -68339,8 +68577,8 @@ self: { }: mkDerivation { pname = "fltkhs"; - version = "0.2.0.2"; - sha256 = "89bdc1cdc7710db7a57076e8bd0908c7d950ff725dee6227605bfd952eea68ea"; + version = "0.3.0.0"; + sha256 = "48dbfa979cd3137383e39f68be7556fc569327b3ad3ca0f65a705604a05ca929"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base bytestring ]; @@ -68358,8 +68596,8 @@ self: { ({ mkDerivation, base, bytestring, fltkhs }: mkDerivation { pname = "fltkhs-fluid-examples"; - version = "0.0.0.1"; - sha256 = "fefb4146e1140c6e8f00b8004ce6bb5a7b903bd6942b1eb85ce70abbd6ef6fca"; + version = "0.0.0.2"; + sha256 = "1152b9d4e25df28011abd695fa066a798b11839c34d31eb5ccd2820587eaa3b7"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ base bytestring fltkhs ]; @@ -70420,25 +70658,25 @@ self: { }) {}; "funbot" = callPackage - ({ mkDerivation, aeson, base, bytestring, feed, feed-collect - , funbot-ext-events, HTTP, http-client, http-client-tls - , http-listen, irc-fun-bot, irc-fun-color, json-state, network-uri - , settings, tagsoup, text, time, time-interval, time-units - , transformers, unordered-containers, utf8-string - , vcs-web-hook-parse + ({ mkDerivation, aeson, base, bytestring, containers, feed + , feed-collect, funbot-ext-events, HTTP, http-client + , http-client-tls, http-listen, irc-fun-bot, irc-fun-color + , json-state, network-uri, settings, tagsoup, text, time + , time-interval, time-units, transformers, unordered-containers + , utf8-string, vcs-web-hook-parse }: mkDerivation { pname = "funbot"; - version = "0.2"; - sha256 = "ce68139f253485451abfc91326f43a8cb711aa7d6f765ca67de3c6ce33f8cb48"; + version = "0.3"; + sha256 = "b59ff6ae40115e1c470677d5bc7188276a282dc383f6afad1f7c801f9c0d52b4"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ - aeson base bytestring feed feed-collect funbot-ext-events HTTP - http-client http-client-tls http-listen irc-fun-bot irc-fun-color - json-state network-uri settings tagsoup text time time-interval - time-units transformers unordered-containers utf8-string - vcs-web-hook-parse + aeson base bytestring containers feed feed-collect + funbot-ext-events HTTP http-client http-client-tls http-listen + irc-fun-bot irc-fun-color json-state network-uri settings tagsoup + text time time-interval time-units transformers + unordered-containers utf8-string vcs-web-hook-parse ]; homepage = "https://notabug.org/fr33domlover/funbot/"; description = "IRC bot for fun, learning, creativity and collaboration"; @@ -73623,20 +73861,22 @@ self: { }) {}; "git-freq" = callPackage - ({ mkDerivation, base, bytestring, containers, hspec + ({ mkDerivation, base, bytestring, containers, hspec, io-streams , optparse-applicative, process, text }: mkDerivation { pname = "git-freq"; - version = "0.0.2"; - sha256 = "d4d0896d47d1ad2c4a15d5184e6cd5dd5946c59ff624b6caf3a7a1b2da3c28ee"; + version = "0.0.3"; + sha256 = "a237869ac82825596f90169d46ed2b95f16c6350bf53f1861671214c173d3be3"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ - base bytestring containers optparse-applicative process text + base bytestring containers io-streams optparse-applicative process + text ]; testHaskellDepends = [ - base bytestring containers hspec optparse-applicative process text + base bytestring containers hspec io-streams optparse-applicative + process text ]; homepage = "https://github.com/fujimura/git-freq"; description = "A Git subcommand to show total addition, deletion per file"; @@ -76898,12 +77138,15 @@ self: { }) {}; "grouped-list" = callPackage - ({ mkDerivation, base, containers, deepseq, pointed }: + ({ mkDerivation, base, containers, deepseq, pointed, QuickCheck + , tasty, tasty-quickcheck + }: mkDerivation { pname = "grouped-list"; - version = "0.1.2.0"; - sha256 = "77aa60756373ca42065568fb5c57c8cb9b5f85e89ed3d35192b8df4c48ae390f"; + version = "0.1.3.0"; + sha256 = "ceeef72febab1b23c778fba9532c6fc61d799f4fd2239c9ebc2d0dcfacbb1bdf"; libraryHaskellDepends = [ base containers deepseq pointed ]; + testHaskellDepends = [ base QuickCheck tasty tasty-quickcheck ]; homepage = "https://github.com/Daniel-Diaz/grouped-list/blob/master/README.md"; description = "Grouped lists. Equal consecutive elements are grouped."; license = stdenv.lib.licenses.bsd3; @@ -78555,7 +78798,6 @@ self: { version = "0.9.0"; sha256 = "0abf643e33f0cc10c652d871390e8c5b07f6e549dd0f1bb44f159d61596c0c6a"; libraryHaskellDepends = [ base containers hmatrix random ]; - jailbreak = true; homepage = "http://perception.inf.um.es/tensor"; description = "Multidimensional arrays and simple tensor computations"; license = stdenv.lib.licenses.bsd3; @@ -80145,6 +80387,7 @@ self: { test-framework test-framework-hunit test-framework-quickcheck2 text time time-locale-compat ]; + jailbreak = true; doCheck = false; homepage = "http://jaspervdj.be/hakyll"; description = "A static website compiler library"; @@ -80152,7 +80395,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "hakyll" = callPackage + "hakyll_4_7_3_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 @@ -80186,13 +80429,15 @@ self: { test-framework test-framework-hunit test-framework-quickcheck2 text time time-locale-compat ]; + jailbreak = true; doCheck = false; homepage = "http://jaspervdj.be/hakyll"; description = "A static website compiler library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "hakyll_4_7_3_1" = callPackage + "hakyll" = callPackage ({ mkDerivation, base, binary, blaze-html, blaze-markup, bytestring , cmdargs, containers, cryptohash, data-default, deepseq, directory , filepath, fsnotify, http-conduit, http-types, HUnit, lrucache @@ -80226,10 +80471,10 @@ self: { test-framework test-framework-hunit test-framework-quickcheck2 text time time-locale-compat ]; + doCheck = false; homepage = "http://jaspervdj.be/hakyll"; description = "A static website compiler library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hakyll-R" = callPackage @@ -90736,7 +90981,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) openblasCompat;}; - "hmatrix" = callPackage + "hmatrix_0_16_1_5" = callPackage ({ mkDerivation, array, base, binary, bytestring, deepseq , openblasCompat, random, split, storable-complex, vector }: @@ -90754,9 +90999,10 @@ self: { homepage = "https://github.com/albertoruiz/hmatrix"; description = "Numeric Linear Algebra"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) openblasCompat;}; - "hmatrix_0_17_0_1" = callPackage + "hmatrix" = callPackage ({ mkDerivation, array, base, binary, bytestring, deepseq , openblasCompat, random, split, storable-complex, vector }: @@ -90774,7 +91020,6 @@ self: { homepage = "https://github.com/albertoruiz/hmatrix"; description = "Numeric Linear Algebra"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) openblasCompat;}; "hmatrix-banded" = callPackage @@ -90812,7 +91057,6 @@ self: { sha256 = "ca90e4f1b8e95547ad70bf16c4334504ec2d5d446dad8b0fd0d4929e4ccbc551"; libraryHaskellDepends = [ base containers hmatrix ]; librarySystemDepends = [ glpk ]; - jailbreak = true; homepage = "https://github.com/albertoruiz/hmatrix"; description = "Linear Programming based on GLPK"; license = "GPL"; @@ -90836,7 +91080,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) gsl;}; - "hmatrix-gsl" = callPackage + "hmatrix-gsl_0_16_0_3" = callPackage ({ mkDerivation, array, base, gsl, hmatrix, process, random, vector }: mkDerivation { @@ -90850,9 +91094,10 @@ self: { homepage = "https://github.com/albertoruiz/hmatrix"; description = "Numerical computation"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) gsl;}; - "hmatrix-gsl_0_17_0_0" = callPackage + "hmatrix-gsl" = callPackage ({ mkDerivation, array, base, gsl, hmatrix, process, random, vector }: mkDerivation { @@ -90863,11 +91108,9 @@ self: { array base hmatrix process random vector ]; libraryPkgconfigDepends = [ gsl ]; - jailbreak = true; homepage = "https://github.com/albertoruiz/hmatrix"; description = "Numerical computation"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) gsl;}; "hmatrix-gsl-stats_0_2_1" = callPackage @@ -90900,7 +91143,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) gsl;}; - "hmatrix-gsl-stats" = callPackage + "hmatrix-gsl-stats_0_4_1_1" = callPackage ({ mkDerivation, base, binary, gsl, hmatrix, storable-complex }: mkDerivation { pname = "hmatrix-gsl-stats"; @@ -90914,7 +91157,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) gsl;}; - "hmatrix-gsl-stats_0_4_1_3" = callPackage + "hmatrix-gsl-stats" = callPackage ({ mkDerivation, base, binary, gsl, hmatrix, storable-complex , vector }: @@ -90926,7 +91169,6 @@ self: { base binary hmatrix storable-complex vector ]; libraryPkgconfigDepends = [ gsl ]; - jailbreak = true; homepage = "http://code.haskell.org/hmatrix-gsl-stats"; description = "GSL Statistics interface"; license = stdenv.lib.licenses.bsd3; @@ -90991,7 +91233,6 @@ self: { version = "0.4.0.0"; sha256 = "1fba0cc75e22df1655ac5771180b26f8ce706783363c825aa6fac8cff5f02933"; libraryHaskellDepends = [ base hmatrix hmatrix-gsl ]; - jailbreak = true; homepage = "https://github.com/albertoruiz/hmatrix"; description = "Interface to GSL special functions"; license = "GPL"; @@ -91026,6 +91267,7 @@ self: { isExecutable = true; libraryHaskellDepends = [ base hmatrix ]; executableHaskellDepends = [ base hmatrix ]; + jailbreak = true; homepage = "http://github.com/bgamari/hmatrix-svdlibc"; description = "SVDLIBC bindings for HMatrix"; license = stdenv.lib.licenses.bsd3; @@ -91061,7 +91303,6 @@ self: { base deepseq hmatrix hmatrix-gsl HUnit QuickCheck random ]; testHaskellDepends = [ base HUnit QuickCheck random ]; - jailbreak = true; homepage = "https://github.com/albertoruiz/hmatrix"; description = "Tests for hmatrix"; license = stdenv.lib.licenses.bsd3; @@ -95169,6 +95410,8 @@ self: { pname = "hsdev"; version = "0.1.4.3"; sha256 = "66c1bf834bfff8030533f056bb57d4fc4a61d1698ea10c217c9841d2b13aa9ad"; + revision = "1"; + editedCabalFile = "42abb281e07630ed6ebee4022d6b07fef645d7b2e5c20f36de0d65f96e3ab0d7"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -95186,6 +95429,7 @@ self: { network process text transformers unordered-containers vector ]; testHaskellDepends = [ base ]; + jailbreak = true; homepage = "https://github.com/mvoidex/hsdev"; description = "Haskell development library and tool with support of autocompletion, symbol info, go to declaration, find references etc"; license = stdenv.lib.licenses.bsd3; @@ -95507,7 +95751,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) blas; lapack = null;}; - "hsignal" = callPackage + "hsignal_0_2_7_1" = callPackage ({ mkDerivation, array, base, binary, blas, bytestring, gsl , hmatrix, hmatrix-gsl, hmatrix-gsl-stats, hstatistics, lapack, mtl , storable-complex @@ -95528,7 +95772,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) blas; inherit (pkgs) gsl; lapack = null;}; - "hsignal_0_2_7_2" = callPackage + "hsignal" = callPackage ({ mkDerivation, array, base, binary, blas, bytestring, gsl , hmatrix, hmatrix-gsl, hmatrix-gsl-stats, hstatistics, lapack, mtl , storable-complex, vector @@ -95543,7 +95787,6 @@ self: { ]; librarySystemDepends = [ blas lapack ]; libraryPkgconfigDepends = [ gsl ]; - jailbreak = true; homepage = "http://code.haskell.org/hsignal"; description = "Signal processing and EEG data analysis"; license = stdenv.lib.licenses.bsd3; @@ -97248,7 +97491,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "hspec-webdriver" = callPackage + "hspec-webdriver_1_0_3" = callPackage ({ mkDerivation, base, data-default, hashable, hspec, hspec-core , HUnit, lifted-base, stm, text, transformers, unordered-containers , webdriver @@ -97265,9 +97508,10 @@ self: { homepage = "https://bitbucket.org/wuzzeb/webdriver-utils"; description = "Write end2end web application tests using webdriver and hspec"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "hspec-webdriver_1_1_0" = callPackage + "hspec-webdriver" = callPackage ({ mkDerivation, base, data-default, hashable, hspec, hspec-core , HUnit, lifted-base, stm, text, transformers, unordered-containers , webdriver @@ -97283,7 +97527,6 @@ self: { homepage = "https://bitbucket.org/wuzzeb/webdriver-utils"; description = "Write end2end web application tests using webdriver and hspec"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hspec2" = callPackage @@ -97640,7 +97883,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "hstatistics" = callPackage + "hstatistics_0_2_5_2" = callPackage ({ mkDerivation, array, base, hmatrix, hmatrix-gsl-stats, random , vector }: @@ -97657,7 +97900,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "hstatistics_0_2_5_3" = callPackage + "hstatistics" = callPackage ({ mkDerivation, array, base, hmatrix, hmatrix-gsl-stats, random , vector }: @@ -97668,7 +97911,6 @@ self: { libraryHaskellDepends = [ array base hmatrix hmatrix-gsl-stats random vector ]; - jailbreak = true; homepage = "http://code.haskell.org/hstatistics"; description = "Statistics"; license = stdenv.lib.licenses.bsd3; @@ -101397,6 +101639,19 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "hybrid-vectors_0_2_1" = callPackage + ({ mkDerivation, base, deepseq, primitive, vector }: + mkDerivation { + pname = "hybrid-vectors"; + version = "0.2.1"; + sha256 = "2edcd8fcfedc76a944ac690bfc257f2974100df6484c6c20883d27773836cca2"; + libraryHaskellDepends = [ base deepseq primitive vector ]; + homepage = "http://github.com/ekmett/hybrid-vectors"; + description = "Hybrid vectors e.g. Mixed Boxed/Unboxed vectors"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "hydra-hs" = callPackage ({ mkDerivation, base, hmatrix, sixense_x64 }: mkDerivation { @@ -101757,6 +102012,32 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "hyperloglog_0_4_0_1" = callPackage + ({ mkDerivation, approximate, base, binary, bits, bytes, cereal + , cereal-vector, comonad, deepseq, directory, distributive, doctest + , filepath, generic-deriving, hashable, hashable-extras, lens + , reflection, safecopy, semigroupoids, semigroups, simple-reflect + , siphash, tagged, vector + }: + mkDerivation { + pname = "hyperloglog"; + version = "0.4.0.1"; + sha256 = "31977c1b40a68153e0910c8bdf700a07471fc7f5435b603e6d89fce691d20483"; + libraryHaskellDepends = [ + approximate base binary bits bytes cereal cereal-vector comonad + deepseq distributive hashable hashable-extras lens reflection + safecopy semigroupoids semigroups siphash tagged vector + ]; + testHaskellDepends = [ + base directory doctest filepath generic-deriving semigroups + simple-reflect + ]; + homepage = "http://github.com/analytics/hyperloglog"; + description = "An approximate streaming (constant space) unique object counter"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "hyperpublic" = callPackage ({ mkDerivation, aeson, attoparsec, base, bytestring , http-enumerator, http-types @@ -102516,7 +102797,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "ide-backend-common" = callPackage + "ide-backend-common_0_10_0" = callPackage ({ mkDerivation, aeson, async, attoparsec, base, binary, bytestring , bytestring-trie, containers, crypto-api, data-accessor, directory , filepath, fingertree, monad-logger, mtl, pretty-show, pureMD5 @@ -102534,6 +102815,27 @@ self: { ]; description = "Shared library used be ide-backend and ide-backend-server"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "ide-backend-common" = callPackage + ({ mkDerivation, aeson, async, attoparsec, base, binary, bytestring + , bytestring-trie, containers, crypto-api, data-accessor, directory + , filepath, fingertree, monad-logger, mtl, pretty-show, pureMD5 + , tagged, template-haskell, temporary, text, transformers, unix + }: + mkDerivation { + pname = "ide-backend-common"; + version = "0.10.1.1"; + sha256 = "858cc32d6c73ca0d55e1fc7dc25831e437a3cca483438a74bbc236f8f93cfcb3"; + libraryHaskellDepends = [ + aeson async attoparsec base binary bytestring bytestring-trie + containers crypto-api data-accessor directory filepath fingertree + monad-logger mtl pretty-show pureMD5 tagged template-haskell + temporary text transformers unix + ]; + description = "Shared library used be ide-backend and ide-backend-server"; + license = stdenv.lib.licenses.mit; }) {}; "ide-backend-rts" = callPackage @@ -102700,9 +103002,9 @@ self: { ({ mkDerivation, annotated-wl-pprint, ansi-terminal, ansi-wl-pprint , base, base64-bytestring, binary, blaze-html, blaze-markup , bytestring, cheapskate, containers, deepseq, directory, filepath - , fingertree, haskeline, libffi, mtl, network, optparse-applicative - , parsers, pretty, process, safe, split, text, time, transformers - , transformers-compat, trifecta, uniplate, unix + , fingertree, haskeline, hscurses, libffi, mtl, network + , optparse-applicative, parsers, pretty, process, safe, split, text + , time, transformers, transformers-compat, trifecta, uniplate, unix , unordered-containers, utf8-string, vector , vector-binary-instances, zip-archive, zlib }: @@ -102710,17 +103012,17 @@ self: { pname = "idris"; version = "0.9.19.1"; sha256 = "ec61914e6099e1159157f1528348b2b67c46808a97fabd6a5f9d4addb60ec480"; - configureFlags = [ "-fffi" "-fgmp" ]; + configureFlags = [ "-fcurses" "-fffi" "-fgmp" ]; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ annotated-wl-pprint ansi-terminal ansi-wl-pprint base base64-bytestring binary blaze-html blaze-markup bytestring cheapskate containers deepseq directory filepath fingertree - haskeline libffi mtl network optparse-applicative parsers pretty - process safe split text time transformers transformers-compat - trifecta uniplate unix unordered-containers utf8-string vector - vector-binary-instances zip-archive zlib + haskeline hscurses libffi mtl network optparse-applicative parsers + pretty process safe split text time transformers + transformers-compat trifecta uniplate unix unordered-containers + utf8-string vector vector-binary-instances zip-archive zlib ]; executableHaskellDepends = [ base directory filepath haskeline transformers @@ -105564,19 +105866,18 @@ self: { }) {}; "irc-fun-bot" = callPackage - ({ mkDerivation, aeson, base, fast-logger, irc-fun-client + ({ mkDerivation, aeson, base, clock, fast-logger, irc-fun-client , irc-fun-messages, json-state, time, time-interval, time-units , transformers, unordered-containers }: mkDerivation { pname = "irc-fun-bot"; - version = "0.3.0.0"; - sha256 = "e6c6bb7419a53a778509d2e6d5366ab0c39910eceb8a36c6362663cdb25578a1"; - revision = "1"; - editedCabalFile = "472f2848b9c1c427b795970225b1c543f0588738a557376c6ea39353154067d3"; + version = "0.4.0.0"; + sha256 = "defa781ecd1ff744f5b36907be56d58189fcd31de85599f713628a4ffd06c253"; libraryHaskellDepends = [ - aeson base fast-logger irc-fun-client irc-fun-messages json-state - time time-interval time-units transformers unordered-containers + aeson base clock fast-logger irc-fun-client irc-fun-messages + json-state time time-interval time-units transformers + unordered-containers ]; jailbreak = true; homepage = "http://rel4tion.org/projects/irc-fun-bot/"; @@ -105591,10 +105892,8 @@ self: { }: mkDerivation { pname = "irc-fun-client"; - version = "0.2.0.0"; - sha256 = "032c59b494afa94637db7e7bc2257fa210527e4336279dd988647fbbec449b74"; - revision = "1"; - editedCabalFile = "52e1944cad0fdf0ba4ba1451bc81f55594a69b0a60df9c51115caa41bc5d6a87"; + version = "0.3.0.0"; + sha256 = "325178cd683dc79974519e87da2e23fe7707c12feff697605915fa5e99aaf258"; libraryHaskellDepends = [ auto-update base fast-logger irc-fun-messages network time time-units unordered-containers @@ -105623,10 +105922,8 @@ self: { ({ mkDerivation, base, regex-applicative }: mkDerivation { pname = "irc-fun-messages"; - version = "0.1.0.1"; - sha256 = "8e011e44267849f81b2bb703aa2174bfc89fe6b5bb1b0b26baf5fdb113015ed8"; - revision = "1"; - editedCabalFile = "490742d798d69af070467e0e29ffd06fc05fd90041a6ae0cfa1f2f13a844fb71"; + version = "0.2.0.0"; + sha256 = "47345b37fb95a265c5237a826ba1351e78ad956b35a7dcd13bd7c625f8d8c5a1"; libraryHaskellDepends = [ base regex-applicative ]; homepage = "http://rel4tion.org/projects/irc-fun-messages/"; description = "Types and functions for working with the IRC protocol"; @@ -110130,6 +110427,7 @@ self: { ad base hmatrix HUnit nonlinear-optimization test-framework test-framework-hunit test-framework-quickcheck2 vector ]; + jailbreak = true; homepage = "http://github.com/jfischoff/lagrangian"; description = "Solve Lagrange multiplier problems"; license = stdenv.lib.licenses.bsd3; @@ -110448,6 +110746,8 @@ self: { pname = "lambdabot-novelty-plugins"; version = "5.0.3"; sha256 = "fecaa0830dbf817b9e1c8f981d7e13ead31634f136c83ea5fce22125d245de20"; + revision = "1"; + editedCabalFile = "f86a4fc89b03db22bbd8bbcdd9cd57ba97d777fb9e7f38daaf04bbf63763dcb5"; libraryHaskellDepends = [ base binary brainfuck bytestring containers dice directory lambdabot-core misfortune process random-fu regex-tdfa unlambda @@ -110483,6 +110783,8 @@ self: { pname = "lambdabot-social-plugins"; version = "5.0.1"; sha256 = "6c6e4d0e33f2c0a0e411a1bac20c12fd01bdeb2008c4feb4231672522420977a"; + revision = "1"; + editedCabalFile = "a4543b07e078f70dbfee02c7bf58ea46d2d5067b1fa5eb5d7069a5b03f17937f"; libraryHaskellDepends = [ base binary bytestring containers lambdabot-core mtl split time ]; @@ -113189,6 +113491,7 @@ self: { version = "1.2.1.5"; sha256 = "727ec5ebd523997b471685c7aed6f1a91120707e3b273734d23a6fc6a35d5525"; libraryHaskellDepends = [ base bindings-levmar hmatrix vector ]; + jailbreak = true; homepage = "https://github.com/basvandijk/levmar"; description = "An implementation of the Levenberg-Marquardt algorithm"; license = stdenv.lib.licenses.bsd3; @@ -113590,16 +113893,16 @@ self: { }) {}; "libinfluxdb" = callPackage - ({ mkDerivation, base, clock, containers, http-client + ({ mkDerivation, base, bytestring, clock, containers, http-client , http-client-tls, http-types, resource-pool, stm, text }: mkDerivation { pname = "libinfluxdb"; - version = "0.0.2"; - sha256 = "bcb8304cdcb954c6e804da77297efa3f94549f16de2a9a05db000d5d09e658c3"; + version = "0.0.3"; + sha256 = "ef915c368e9e7f3cc4fc0386f266d90b39e960ae4f82462c8a7883ea24ee759c"; libraryHaskellDepends = [ - base clock containers http-client http-client-tls http-types - resource-pool stm text + base bytestring clock containers http-client http-client-tls + http-types resource-pool stm text ]; description = "libinfluxdb"; license = stdenv.lib.licenses.mit; @@ -114649,6 +114952,7 @@ self: { base comfort-graph containers non-empty QuickCheck transformers utility-ht ]; + jailbreak = true; homepage = "http://hub.darcs.net/thielema/linear-circuit"; description = "Compute resistance of linear electrical circuits"; license = stdenv.lib.licenses.bsd3; @@ -116577,8 +116881,8 @@ self: { }: mkDerivation { pname = "logic-classes"; - version = "1.5.2"; - sha256 = "923b9561737391e3cce75d8994ad4840bbfb53dd625da0c1750c71787c48e216"; + version = "1.5.3"; + sha256 = "82707e7131c779d8a49065c1b30a03626ea8554fefc9972a11552de5b420527e"; libraryHaskellDepends = [ applicative-extras base containers HUnit mtl pretty PropLogic safecopy set-extra syb template-haskell @@ -117315,16 +117619,16 @@ self: { }) {objc = null;}; "luminance" = callPackage - ({ mkDerivation, base, contravariant, gl, linear, mtl, resourcet - , semigroups, transformers, void + ({ mkDerivation, base, containers, contravariant, dlist, gl, linear + , mtl, resourcet, semigroups, transformers, vector, void }: mkDerivation { pname = "luminance"; - version = "0.4"; - sha256 = "30cbf60f084e195bcc6166df357ec74e04f1b190aab53d3aa964f1c406cae4cc"; + version = "0.5.1"; + sha256 = "7906cd004ed671c79a0fee8886ad79bae9d9f2a2ad94c7994035a96d2263dad4"; libraryHaskellDepends = [ - base contravariant gl linear mtl resourcet semigroups transformers - void + base containers contravariant dlist gl linear mtl resourcet + semigroups transformers vector void ]; jailbreak = true; homepage = "https://github.com/phaazon/luminance"; @@ -117334,19 +117638,18 @@ self: { "luminance-samples" = callPackage ({ mkDerivation, base, contravariant, GLFW-b, JuicyPixels - , luminance, mtl, resourcet, transformers, vector + , luminance, mtl, resourcet, transformers }: mkDerivation { pname = "luminance-samples"; - version = "0.4"; - sha256 = "49f9b316faa13098b3757032e1d7ab9664ae602f39e3e2ccb8ee7887dbfd7ff3"; + version = "0.5"; + sha256 = "6ca0ec3ade06225c430ceb452b437fbec4740b72c18a29a67dc76ede7e54d636"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ base contravariant GLFW-b JuicyPixels luminance mtl resourcet - transformers vector + transformers ]; - jailbreak = true; homepage = "https://github.com/phaazon/luminance-samples"; description = "Luminance samples"; license = stdenv.lib.licenses.bsd3; @@ -118035,6 +118338,7 @@ self: { executableHaskellDepends = [ base hmatrix transformers utility-ht ]; + jailbreak = true; homepage = "http://hub.darcs.net/thielema/magico"; description = "Compute solutions for Magico puzzle"; license = stdenv.lib.licenses.bsd3; @@ -119711,6 +120015,7 @@ self: { test-framework test-framework-hunit test-framework-quickcheck2 vector ]; + jailbreak = true; homepage = "https://github.com/jfischoff/maxent"; description = "Compute Maximum Entropy Distributions"; license = stdenv.lib.licenses.bsd3; @@ -120053,25 +120358,6 @@ self: { }) {}; "megaparsec" = callPackage - ({ mkDerivation, base, bytestring, HUnit, mtl, QuickCheck - , test-framework, test-framework-hunit, test-framework-quickcheck2 - , text, transformers - }: - mkDerivation { - pname = "megaparsec"; - version = "4.0.0"; - sha256 = "4e8a0cbd888aac62c25984280075f0b84b7a52f572e80c011f3934c68e339677"; - libraryHaskellDepends = [ base bytestring mtl text transformers ]; - testHaskellDepends = [ - base HUnit mtl QuickCheck test-framework test-framework-hunit - test-framework-quickcheck2 transformers - ]; - homepage = "https://github.com/mrkkrp/megaparsec"; - description = "Monadic parser combinators"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "megaparsec_4_1_0" = callPackage ({ mkDerivation, base, bytestring, HUnit, mtl, QuickCheck , test-framework, test-framework-hunit, test-framework-quickcheck2 , text, transformers @@ -120085,11 +120371,9 @@ self: { base HUnit mtl QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 transformers ]; - jailbreak = true; homepage = "https://github.com/mrkkrp/megaparsec"; description = "Monadic parser combinators"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "meldable-heap" = callPackage @@ -120949,8 +121233,8 @@ self: { }: mkDerivation { pname = "mida"; - version = "0.4.4"; - sha256 = "c84f11a3435a27714d93ac687043d9b54334c8af770354557bd60cc73ac536f7"; + version = "0.4.5"; + sha256 = "250875ec1250cc14c718b2cff1f002cf5b4e504685c8722034dd0b56506995b5"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -123020,8 +123304,8 @@ self: { }: mkDerivation { pname = "monad-parallel"; - version = "0.7.2"; - sha256 = "fa410be89895b177dd092a30a324e12a026d59bc999070e0c1d4da91d747bee3"; + version = "0.7.2.0"; + sha256 = "9993e6590abe8cc69db34d8b11dec3ab2e13179cf3d162f2b79b86462c5becdd"; libraryHaskellDepends = [ base parallel transformers transformers-compat ]; @@ -123935,8 +124219,8 @@ self: { ({ mkDerivation, base, mtl }: mkDerivation { pname = "monoid-absorbing"; - version = "0.1.0.1"; - sha256 = "b2c51c949445862ce641bff764bccaac1e5da796448863ede8fe6ae5403278d9"; + version = "0.1.0.4"; + sha256 = "3b7f739fe8cd242d225c427f24b3bd27c8b2a9fccf78d61e58dd0da606a502eb"; libraryHaskellDepends = [ base mtl ]; homepage = "http://github.com/maciejpirog/monoid-absorbing"; description = "A library for (left, right) zero monoids and backtracking with cut"; @@ -124674,6 +124958,23 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "msh" = callPackage + ({ mkDerivation, base, containers, haskell-src-exts + , haskell-src-meta, lens, mtl, parsec, template-haskell, text + }: + mkDerivation { + pname = "msh"; + version = "0.1.0.0"; + sha256 = "5881b95bea0ea25e2fc7c8c647992b96e0fa00ac64b1b24221842af5593d85b2"; + libraryHaskellDepends = [ + base containers haskell-src-exts haskell-src-meta lens mtl parsec + template-haskell text + ]; + homepage = "http://www.cl.cam.ac.uk/~mbg28/"; + description = "Template Haskell implementation of Programming with Monadic State Hierarchies"; + license = stdenv.lib.licenses.mit; + }) {}; + "msi-kb-backlit" = callPackage ({ mkDerivation, base, bytestring, hid, split }: mkDerivation { @@ -125764,8 +126065,8 @@ self: { }: mkDerivation { pname = "mustache"; - version = "0.3.0.0"; - sha256 = "4887b89e0e7e76f4de39fa0315ff20113514d068e684a732bf075ade42c79c41"; + version = "0.3.0.1"; + sha256 = "e92c1630bfa24fd2906554f4b48f156d0049f9cacc2cbf4759783dce4af743bd"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -126899,8 +127200,8 @@ self: { }: mkDerivation { pname = "ncurses"; - version = "0.2.12"; - sha256 = "fbafe7fcb6e829fa1c3a3827c9adc871e7784cd76448d0c75d99b92f81dc1165"; + version = "0.2.13"; + sha256 = "c378d447537351ff99ab1156eb75c1e898f470715dc31303ae1426ad39871354"; libraryHaskellDepends = [ base containers text transformers ]; librarySystemDepends = [ ncurses ]; libraryToolDepends = [ c2hs ]; @@ -127876,7 +128177,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "network-carbon" = callPackage + "network-carbon_1_0_5" = callPackage ({ mkDerivation, base, bytestring, network, text, time, vector }: mkDerivation { pname = "network-carbon"; @@ -127888,6 +128189,21 @@ self: { homepage = "http://github.com/ocharles/network-carbon"; description = "A Haskell implementation of the Carbon protocol (part of the Graphite monitoring tools)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "network-carbon" = callPackage + ({ mkDerivation, base, bytestring, network, text, time, vector }: + mkDerivation { + pname = "network-carbon"; + version = "1.0.6"; + sha256 = "28e0a72d86be8a21637a62a83273311aab446b1d6e4a13f2638101aa6cd19ef6"; + libraryHaskellDepends = [ + base bytestring network text time vector + ]; + homepage = "http://github.com/ocharles/network-carbon"; + description = "A Haskell implementation of the Carbon protocol (part of the Graphite monitoring tools)"; + license = stdenv.lib.licenses.bsd3; }) {}; "network-conduit" = callPackage @@ -128163,7 +128479,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "network-info" = callPackage + "network-info_0_2_0_7" = callPackage ({ mkDerivation, base }: mkDerivation { pname = "network-info"; @@ -128173,9 +128489,10 @@ self: { homepage = "http://github.com/jystic/network-info"; description = "Access the local computer's basic network configuration"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "network-info_0_2_0_8" = callPackage + "network-info" = callPackage ({ mkDerivation, base }: mkDerivation { pname = "network-info"; @@ -128185,7 +128502,6 @@ self: { homepage = "http://github.com/jystic/network-info"; description = "Access the local computer's basic network configuration"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "network-interfacerequest" = callPackage @@ -128716,8 +129032,8 @@ self: { }: mkDerivation { pname = "network-transport-zeromq"; - version = "0.2.1"; - sha256 = "300239433fc33296cf01cd1977293d3afbcb6a5da354469c077324e4bab7df2d"; + version = "0.2.1.1"; + sha256 = "93b56e1a2b337c24cc899874d23eed335ff640c5c1e143b69584c4d71f0cca35"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -128733,7 +129049,6 @@ self: { network-transport network-transport-tests stm stm-chans tasty tasty-hunit test-framework zeromq4-haskell ]; - jailbreak = true; homepage = "https://github.com/tweag/network-transport-zeromq"; description = "ZeroMQ backend for network-transport"; license = stdenv.lib.licenses.bsd3; @@ -130498,8 +130813,8 @@ self: { }: mkDerivation { pname = "oidc-client"; - version = "0.1.0.0"; - sha256 = "106f3a05bbfdfed6ab5a8a15cd9c312fb492c2e85aedb71bc33350f7dc6017f3"; + version = "0.1.0.1"; + sha256 = "53eb07c9e188ff017c10248694ffc9c297b5c8cfdf2bb2992c15caba8c3e9c34"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -130508,6 +130823,7 @@ self: { tls ]; testHaskellDepends = [ base hspec ]; + jailbreak = true; homepage = "https://github.com/krdlab/haskell-oidc-client"; description = "OpenID Connect 1.0 library for RP"; license = stdenv.lib.licenses.mit; @@ -132888,7 +133204,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "pandoc" = callPackage + "pandoc_1_15_0_6" = callPackage ({ mkDerivation, aeson, ansi-terminal, array, base , base64-bytestring, binary, blaze-html, blaze-markup, bytestring , cmark, containers, data-default, deepseq-generics, Diff @@ -132932,6 +133248,99 @@ self: { homepage = "http://pandoc.org"; description = "Conversion between markup formats"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "pandoc" = callPackage + ({ mkDerivation, aeson, ansi-terminal, array, base + , base64-bytestring, binary, blaze-html, blaze-markup, bytestring + , cmark, containers, data-default, deepseq-generics, Diff + , directory, executable-path, extensible-exceptions, filemanip + , filepath, ghc-prim, haddock-library, highlighting-kate, hslua + , HTTP, http-client, http-client-tls, http-types, HUnit + , JuicyPixels, mtl, network, network-uri, old-time, pandoc-types + , parsec, process, QuickCheck, random, scientific, SHA, syb + , tagsoup, temporary, test-framework, test-framework-hunit + , test-framework-quickcheck2, texmath, text, time + , unordered-containers, vector, xml, yaml, zip-archive, zlib + }: + mkDerivation { + pname = "pandoc"; + version = "1.15.1"; + sha256 = "77503f8981cfcbe7df841ed1c71de9164d0eaf17b8b9c51e6d966e4fd333b733"; + configureFlags = [ "-fhttps" ]; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson array base base64-bytestring binary blaze-html blaze-markup + bytestring cmark containers data-default deepseq-generics directory + extensible-exceptions filemanip filepath ghc-prim haddock-library + highlighting-kate hslua HTTP http-client http-client-tls http-types + JuicyPixels mtl network network-uri old-time pandoc-types parsec + process random scientific SHA syb tagsoup temporary texmath text + time unordered-containers vector xml yaml zip-archive zlib + ]; + executableHaskellDepends = [ + aeson base bytestring containers directory extensible-exceptions + filepath highlighting-kate HTTP network network-uri pandoc-types + text yaml + ]; + testHaskellDepends = [ + ansi-terminal base bytestring containers Diff directory + executable-path filepath highlighting-kate HUnit pandoc-types + process QuickCheck syb test-framework test-framework-hunit + test-framework-quickcheck2 text zip-archive + ]; + doCheck = false; + homepage = "http://pandoc.org"; + description = "Conversion between markup formats"; + license = "GPL"; + }) {}; + + "pandoc_1_15_1_1" = callPackage + ({ mkDerivation, aeson, ansi-terminal, array, base + , base64-bytestring, binary, blaze-html, blaze-markup, bytestring + , cmark, containers, data-default, deepseq-generics, Diff + , directory, executable-path, extensible-exceptions, filemanip + , filepath, ghc-prim, haddock-library, highlighting-kate, hslua + , HTTP, http-client, http-client-tls, http-types, HUnit + , JuicyPixels, mtl, network, network-uri, old-time, pandoc-types + , parsec, process, QuickCheck, random, scientific, SHA, syb + , tagsoup, temporary, test-framework, test-framework-hunit + , test-framework-quickcheck2, texmath, text, time + , unordered-containers, vector, xml, yaml, zip-archive, zlib + }: + mkDerivation { + pname = "pandoc"; + version = "1.15.1.1"; + sha256 = "a70e0af56c294dbb1ba646df24f90b81542d060ec7167f70ff2b873ed7ed6d5e"; + configureFlags = [ "-fhttps" ]; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson array base base64-bytestring binary blaze-html blaze-markup + bytestring cmark containers data-default deepseq-generics directory + extensible-exceptions filemanip filepath ghc-prim haddock-library + highlighting-kate hslua HTTP http-client http-client-tls http-types + JuicyPixels mtl network network-uri old-time pandoc-types parsec + process random scientific SHA syb tagsoup temporary texmath text + time unordered-containers vector xml yaml zip-archive zlib + ]; + executableHaskellDepends = [ + aeson base bytestring containers directory extensible-exceptions + filepath highlighting-kate HTTP network network-uri pandoc-types + text yaml + ]; + testHaskellDepends = [ + ansi-terminal base bytestring containers Diff directory + executable-path filepath highlighting-kate HUnit pandoc-types + process QuickCheck syb test-framework test-framework-hunit + test-framework-quickcheck2 text zip-archive + ]; + homepage = "http://pandoc.org"; + description = "Conversion between markup formats"; + license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pandoc-citeproc_0_6" = callPackage @@ -132993,6 +133402,7 @@ self: { process temporary text yaml ]; jailbreak = true; + doCheck = false; description = "Supports using pandoc with citeproc"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -133024,6 +133434,7 @@ self: { aeson base bytestring directory filepath pandoc pandoc-types process temporary text yaml ]; + doCheck = false; description = "Supports using pandoc with citeproc"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -133055,12 +133466,13 @@ self: { aeson base bytestring directory filepath pandoc pandoc-types process temporary text yaml ]; + doCheck = false; description = "Supports using pandoc with citeproc"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "pandoc-citeproc" = callPackage + "pandoc-citeproc_0_7_4" = callPackage ({ mkDerivation, aeson, aeson-pretty, attoparsec, base, bytestring , containers, data-default, directory, filepath, hs-bibutils, mtl , old-locale, pandoc, pandoc-types, parsec, process, rfc5051 @@ -133089,9 +133501,10 @@ self: { doCheck = false; description = "Supports using pandoc with citeproc"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "pandoc-citeproc_0_8_0_1" = callPackage + "pandoc-citeproc" = callPackage ({ mkDerivation, aeson, aeson-pretty, attoparsec, base, bytestring , containers, data-default, directory, filepath, hs-bibutils, mtl , old-locale, pandoc, pandoc-types, parsec, process, rfc5051 @@ -133117,9 +133530,9 @@ self: { aeson base bytestring directory filepath pandoc pandoc-types process temporary text yaml ]; + doCheck = false; description = "Supports using pandoc with citeproc"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pandoc-citeproc-preamble" = callPackage @@ -134304,6 +134717,24 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "patches-vector_0_1_4_0" = callPackage + ({ mkDerivation, base, doctest, edit-distance-vector, microlens + , QuickCheck, vector + }: + mkDerivation { + pname = "patches-vector"; + version = "0.1.4.0"; + sha256 = "28694082916c56c5b2c8f74d51cea6babff0e946dfade5b6832edd3977cdb995"; + libraryHaskellDepends = [ + base edit-distance-vector microlens vector + ]; + testHaskellDepends = [ base doctest QuickCheck ]; + 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; + }) {}; + "path" = callPackage ({ mkDerivation, base, exceptions, filepath, hspec, HUnit, mtl , template-haskell @@ -134388,14 +134819,15 @@ self: { }) {}; "pathtype" = callPackage - ({ mkDerivation, base, directory, QuickCheck, random, time }: + ({ mkDerivation, base, deepseq, directory, QuickCheck, random, time + }: mkDerivation { pname = "pathtype"; - version = "0.5.4.3"; - sha256 = "d319d61c53b3645d5ada2642444b99ba42c6e30ca1cce42f829836c919ce7b02"; + version = "0.5.5"; + sha256 = "9e50b405ecb681966a278901f74103077d2ac63168280a7a952df14e70c6e488"; isLibrary = true; isExecutable = true; - libraryHaskellDepends = [ base directory QuickCheck time ]; + libraryHaskellDepends = [ base deepseq directory QuickCheck time ]; executableHaskellDepends = [ base ]; testHaskellDepends = [ base random ]; homepage = "http://hub.darcs.net/thielema/pathtype/"; @@ -134403,6 +134835,18 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "pathwalk" = callPackage + ({ mkDerivation, base, directory, filepath }: + mkDerivation { + pname = "pathwalk"; + version = "0.1.1.1"; + sha256 = "cf9f191459012440036579f04d25b717ec36a2fe58b211daa39729cbe389dc18"; + libraryHaskellDepends = [ base directory filepath ]; + jailbreak = true; + description = "Path walking utilities for Haskell programs"; + license = stdenv.lib.licenses.mit; + }) {}; + "patience" = callPackage ({ mkDerivation, base, containers }: mkDerivation { @@ -134793,8 +135237,8 @@ self: { }: mkDerivation { pname = "pdf-toolbox-content"; - version = "0.0.4.0"; - sha256 = "de615950a445022afc2950765d5be9cc7cf16c90bbcc3b4eeded8f491e9afd54"; + version = "0.0.5.0"; + sha256 = "586fcc00bc9f1f71c7d19612133cd10bbad215013abe8c6b5019f05645b678fc"; libraryHaskellDepends = [ attoparsec base base16-bytestring bytestring containers io-streams pdf-toolbox-core text @@ -134828,8 +135272,8 @@ self: { }: mkDerivation { pname = "pdf-toolbox-document"; - version = "0.0.6.0"; - sha256 = "ce5f7e1622c73ecfa24e8ec590dad12c3ca27db6bdac20738bff5f0bdce01231"; + version = "0.0.7.0"; + sha256 = "35df65f736f7ab5ea27214d8680b6eb7098a5a0d2d477709702d5c8a2880cd2d"; libraryHaskellDepends = [ base bytestring cipher-aes cipher-rc4 containers crypto-api cryptohash io-streams pdf-toolbox-content pdf-toolbox-core text @@ -134847,8 +135291,8 @@ self: { }: mkDerivation { pname = "pdf-toolbox-viewer"; - version = "0.0.4.0"; - sha256 = "cd7d565349c7ff1c6d3fd04e7f9523732fb03dc000a37cdb07f45ae14f93b05c"; + version = "0.0.5.0"; + sha256 = "b8e595dae83fb2b8e47e0fd18a5dda508f85c2352beed3c507e3fe6fad0669ef"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -138669,7 +139113,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "plot" = callPackage + "plot_0_2_3_4" = callPackage ({ mkDerivation, array, base, cairo, colour, hmatrix, mtl, pango , transformers }: @@ -138683,9 +139127,10 @@ self: { homepage = "http://github.com/amcphail/plot"; description = "A plotting library, exportable as eps/pdf/svg/png or renderable with gtk"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "plot_0_2_3_5" = callPackage + "plot" = callPackage ({ mkDerivation, array, base, cairo, colour, hmatrix, mtl, pango , transformers }: @@ -138696,10 +139141,21 @@ self: { libraryHaskellDepends = [ array base cairo colour hmatrix mtl pango transformers ]; - jailbreak = true; homepage = "http://github.com/amcphail/plot"; description = "A plotting library, exportable as eps/pdf/svg/png or renderable with gtk"; license = stdenv.lib.licenses.bsd3; + }) {}; + + "plot-gtk_0_2_0_2" = callPackage + ({ mkDerivation, base, glib, gtk, hmatrix, mtl, plot, process }: + mkDerivation { + pname = "plot-gtk"; + version = "0.2.0.2"; + sha256 = "b6fab12df045798e95ee7e55ff19cea709d179d66e7a3770194daba0b394e3a2"; + libraryHaskellDepends = [ base glib gtk hmatrix mtl plot process ]; + homepage = "http://code.haskell.org/plot"; + description = "GTK plots and interaction with GHCi"; + license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; }) {}; @@ -138707,8 +139163,8 @@ self: { ({ mkDerivation, base, glib, gtk, hmatrix, mtl, plot, process }: mkDerivation { pname = "plot-gtk"; - version = "0.2.0.2"; - sha256 = "b6fab12df045798e95ee7e55ff19cea709d179d66e7a3770194daba0b394e3a2"; + version = "0.2.0.3"; + sha256 = "fe433cdb56b1585d3fc94b51d60324a05f5f9419d861303986336e5889c1fefe"; libraryHaskellDepends = [ base glib gtk hmatrix mtl plot process ]; homepage = "http://code.haskell.org/plot"; description = "GTK plots and interaction with GHCi"; @@ -138722,8 +139178,8 @@ self: { }: mkDerivation { pname = "plot-gtk-ui"; - version = "0.3.0.0"; - sha256 = "aebc4583755c7465a1f9b9c072d2f686b02be0538b1df1898243042ecbf02e2b"; + version = "0.3.0.1"; + sha256 = "41c788c5093333bcc9b320bd21dc3e43f8677d9f5d94a66b106fc303649a5b79"; libraryHaskellDepends = [ base cairo colour fixed-vector gtk hmatrix plot text vector ]; @@ -138749,7 +139205,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "plot-gtk3" = callPackage + "plot-gtk3_0_1_0_1" = callPackage ({ mkDerivation, base, glib, gtk3, hmatrix, mtl, plot, process }: mkDerivation { pname = "plot-gtk3"; @@ -138764,6 +139220,21 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "plot-gtk3" = callPackage + ({ mkDerivation, base, glib, gtk3, hmatrix, mtl, plot, process }: + mkDerivation { + pname = "plot-gtk3"; + version = "0.1.0.2"; + sha256 = "79098174d2a1bf5f715bc6b68bf0086036603d77a6c55cc95babc201355dd1d9"; + libraryHaskellDepends = [ + base glib gtk3 hmatrix mtl plot process + ]; + homepage = "http://code.haskell.org/plot"; + description = "GTK3 plots and interaction with GHCi"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "plot-lab" = callPackage ({ mkDerivation, base, colour, gtk, hmatrix, plot, text, vector }: mkDerivation { @@ -141234,7 +141705,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "pretty-show" = callPackage + "pretty-show_1_6_8_2" = callPackage ({ mkDerivation, array, base, filepath, ghc-prim, happy , haskell-lexer, pretty }: @@ -141251,6 +141722,28 @@ self: { ]; libraryToolDepends = [ happy ]; executableHaskellDepends = [ base ]; + jailbreak = true; + homepage = "http://wiki.github.com/yav/pretty-show"; + description = "Tools for working with derived `Show` instances and generic inspection of values"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "pretty-show" = callPackage + ({ mkDerivation, array, base, filepath, ghc-prim, happy + , haskell-lexer, pretty + }: + mkDerivation { + pname = "pretty-show"; + version = "1.6.9"; + sha256 = "06bb89709abf23cbf59d50400654cc7a616649f851f9640268b2b5f225a1e477"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + array base filepath ghc-prim haskell-lexer pretty + ]; + libraryToolDepends = [ happy ]; + executableHaskellDepends = [ base ]; homepage = "http://wiki.github.com/yav/pretty-show"; description = "Tools for working with derived `Show` instances and generic inspection of values"; license = stdenv.lib.licenses.mit; @@ -146782,8 +147275,8 @@ self: { }: mkDerivation { pname = "reflex-animation"; - version = "0.1.3"; - sha256 = "9ea13b90681e35b0d91a1aed2d2bca90dc304e9769865c0c1325a9f80b06a42b"; + version = "0.1.4"; + sha256 = "0fb5631b5924b82faaace339a1ac21da747a7e31cde076b322920d3bc837b449"; libraryHaskellDepends = [ base bifunctors containers profunctors reflex reflex-transformers semigroups vector-space @@ -146856,6 +147349,34 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "reflex-gloss-scene" = callPackage + ({ mkDerivation, base, containers, dependent-sum, gloss + , gloss-rendering, lens, linear, MonadRandom, mtl, profunctors + , random, reflex, reflex-animation, reflex-gloss + , reflex-transformers, semigroups, transformers, tuple + , vector-space + }: + mkDerivation { + pname = "reflex-gloss-scene"; + version = "0.1"; + sha256 = "2e030497d984b09a4497f52941a29a6216650b22a5752cd3133ad459fe142cd1"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base containers dependent-sum gloss gloss-rendering lens + MonadRandom mtl profunctors random reflex reflex-animation + reflex-gloss reflex-transformers semigroups transformers tuple + vector-space + ]; + executableHaskellDepends = [ + base containers gloss lens linear mtl reflex reflex-animation + reflex-transformers transformers + ]; + homepage = "https://github.com/saulzar/reflex-gloss-scene"; + description = "A simple scene-graph using reflex and gloss"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "reflex-transformers" = callPackage ({ mkDerivation, base, containers, lens, mtl, reflex, semigroups , stateWriter, transformers @@ -147365,17 +147886,18 @@ self: { }: mkDerivation { pname = "regexchar"; - version = "0.9.0.12"; - sha256 = "6c03965b9e0476f169d50b068c0462598d016f9542ff210f4323df41e0583eb8"; + version = "0.9.0.13"; + sha256 = "6ad4cfa40156d9a26b8a3c023feb757ad3be217a9f64c1ab40a984118959b79b"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - base containers parsec regexdot toolshed + array base containers parsec regex-base regexdot toolshed ]; executableHaskellDepends = [ - array Cabal parallel QuickCheck regex-base regex-posix + base Cabal parallel regex-base regex-posix regexdot toolshed ]; - homepage = "http://functionalley.eu"; + testHaskellDepends = [ base QuickCheck regexdot toolshed ]; + homepage = "http://functionalley.eu/RegExChar/regExChar.html"; description = "A POSIX, extended regex-engine"; license = "GPL"; }) {}; @@ -147384,10 +147906,10 @@ self: { ({ mkDerivation, base, deepseq, parallel, parsec, toolshed }: mkDerivation { pname = "regexdot"; - version = "0.11.1.1"; - sha256 = "12392f1028ff7f25e8e4ac1d1154eaad4fadf421f8fac30f36f1de493bc52bdb"; + version = "0.11.1.2"; + sha256 = "c8f0ce31ae36d1f181a9c5a863967397b6431ec2436442869670468b039ebf9c"; libraryHaskellDepends = [ base deepseq parallel parsec toolshed ]; - homepage = "http://functionalley.eu"; + homepage = "http://functionalley.eu/RegExDot/regExDot.html"; description = "A polymorphic, POSIX, extended regex-engine"; license = "GPL"; }) {}; @@ -148041,6 +148563,24 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "repa_3_4_0_2" = callPackage + ({ mkDerivation, base, bytestring, ghc-prim, QuickCheck + , template-haskell, vector + }: + mkDerivation { + pname = "repa"; + version = "3.4.0.2"; + sha256 = "1c0b48818e415f6002794a5c0e13c63d6a738c4a5ff2bcedfea009521478e53d"; + libraryHaskellDepends = [ + base bytestring ghc-prim QuickCheck template-haskell vector + ]; + jailbreak = true; + homepage = "http://repa.ouroborus.net"; + description = "High performance, regular, shape polymorphic parallel arrays"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "repa-algorithms_3_3_1_2" = callPackage ({ mkDerivation, base, repa, vector }: mkDerivation { @@ -148067,6 +148607,20 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "repa-algorithms_3_4_0_2" = callPackage + ({ mkDerivation, base, repa, vector }: + mkDerivation { + pname = "repa-algorithms"; + version = "3.4.0.2"; + sha256 = "49de64a94ebf28800c408c7e9ba418b97e7663d2c74e4499187a2d90664f8939"; + libraryHaskellDepends = [ base repa vector ]; + jailbreak = true; + homepage = "http://repa.ouroborus.net"; + description = "Algorithms using the Repa array library"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "repa-array" = callPackage ({ mkDerivation, base, bytestring, double-conversion, mtl , primitive, repa-convert, repa-eval, repa-stream, text, vector @@ -148245,6 +148799,24 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "repa-io_3_4_0_2" = callPackage + ({ mkDerivation, base, binary, bmp, bytestring, old-time, repa + , vector + }: + mkDerivation { + pname = "repa-io"; + version = "3.4.0.2"; + sha256 = "bfda3a8b5dc92783e6099e361a0e76b0994b26fc7a8073a22696cb3fe6cb8147"; + libraryHaskellDepends = [ + base binary bmp bytestring old-time repa vector + ]; + jailbreak = true; + homepage = "http://repa.ouroborus.net"; + description = "Read and write Repa arrays in various formats"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "repa-linear-algebra" = callPackage ({ mkDerivation, base, hmatrix, repa, vector }: mkDerivation { @@ -148252,6 +148824,7 @@ self: { version = "0.2.0.0"; sha256 = "587c3e26e0495149087636690f999b03dc9ffe6e6aa12a4376f9293eb25095e5"; libraryHaskellDepends = [ base hmatrix repa vector ]; + jailbreak = true; homepage = "https://github.com/marcinmrotek/repa-linear-algebra"; description = "HMatrix operations for Repa"; license = stdenv.lib.licenses.bsd3; @@ -148658,6 +149231,7 @@ self: { executableHaskellDepends = [ base hmatrix transformers utility-ht ]; + jailbreak = true; homepage = "http://hub.darcs.net/thielema/resistor-cube"; description = "Compute total resistance of a cube of resistors"; license = stdenv.lib.licenses.bsd3; @@ -154163,14 +154737,16 @@ self: { "secp256k1" = callPackage ({ mkDerivation, base, base16-bytestring, bytestring, cryptohash - , entropy, HUnit, mtl, QuickCheck, secp256k1, test-framework - , test-framework-hunit, test-framework-quickcheck2 + , entropy, HUnit, mtl, QuickCheck, secp256k1, string-conversions + , test-framework, test-framework-hunit, test-framework-quickcheck2 }: mkDerivation { pname = "secp256k1"; - version = "0.1.2"; - sha256 = "c9e871d98a6a9e4e7b66b620c3b467fec4584cbc3b821aecbfb0a40b0deac634"; - libraryHaskellDepends = [ base bytestring entropy mtl ]; + version = "0.1.3"; + sha256 = "c6e4a14633d470c54833c9d601bc949b3d10b2d08916e15ba4eae5758dce7c86"; + libraryHaskellDepends = [ + base base16-bytestring bytestring entropy mtl string-conversions + ]; librarySystemDepends = [ secp256k1 ]; testHaskellDepends = [ base base16-bytestring bytestring cryptohash entropy HUnit mtl @@ -156511,10 +157087,8 @@ self: { }: mkDerivation { pname = "settings"; - version = "0.2.0.0"; - sha256 = "2e289056f639205bb57597c1e8ff14d2e25404564091b8517fc3ff9f9d0c2104"; - revision = "1"; - editedCabalFile = "2259919e1141edbc4c231d4c86b5d0890d26fb3cca5b12c783966d064969dfd7"; + version = "0.2.1.0"; + sha256 = "b182e9e6093734311318f87940b9a0c5ee49d41978f82044a5ebbccdfbb2b3a8"; libraryHaskellDepends = [ aeson aeson-pretty base bytestring time-units unordered-containers ]; @@ -157100,7 +157674,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "shake-language-c" = callPackage + "shake-language-c_0_8_3" = callPackage ({ mkDerivation, base, data-default-class, directory, doctest , fclabels, hspec, process, shake, split, unordered-containers }: @@ -157117,9 +157691,10 @@ self: { homepage = "https://github.com/samplecount/shake-language-c"; description = "Utilities for cross-compiling with Shake"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "shake-language-c_0_8_4" = callPackage + "shake-language-c" = callPackage ({ mkDerivation, base, data-default-class, directory, doctest , fclabels, hspec, process, shake, split, unordered-containers }: @@ -157136,7 +157711,6 @@ self: { homepage = "https://github.com/samplecount/shake-language-c"; description = "Utilities for cross-compiling with Shake"; license = stdenv.lib.licenses.asl20; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "shake-minify" = callPackage @@ -157395,6 +157969,33 @@ self: { maintainers = with stdenv.lib.maintainers; [ psibi ]; }) {}; + "shakespeare_2_0_7" = 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.7"; + sha256 = "7a567d6effb68c7b39903fb1fccee54e6a1222a4746b5135da5623c406281668"; + 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; + hydraPlatforms = stdenv.lib.platforms.none; + maintainers = with stdenv.lib.maintainers; [ psibi ]; + }) {}; + "shakespeare-css" = callPackage ({ mkDerivation, base, shakespeare }: mkDerivation { @@ -159251,23 +159852,21 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "singletons_2_0_0_2" = callPackage + "singletons_2_0_1" = callPackage ({ mkDerivation, base, Cabal, containers, directory, filepath, mtl , process, syb, tasty, tasty-golden, template-haskell, th-desugar }: mkDerivation { pname = "singletons"; - version = "2.0.0.2"; - sha256 = "981cb6a02978ca0e7eb62117a1df8ba4db16eef159aebfafe53e396e86e16f3d"; - revision = "1"; - editedCabalFile = "219b117097e85e93c213600da8051784de3090ae7088c2d3d921ffee8373c28b"; + version = "2.0.1"; + sha256 = "fd149d3da367eebe81728a7a61389f18bb18b3cddd611b7aed6c0b265110ba41"; libraryHaskellDepends = [ base containers mtl syb template-haskell th-desugar ]; testHaskellDepends = [ base Cabal directory filepath process tasty tasty-golden ]; - homepage = "http://www.cis.upenn.edu/~eir/packages/singletons"; + homepage = "http://www.github.com/goldfirere/singletons"; description = "A framework for generating singleton types"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -162239,7 +162838,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "socket-io" = callPackage + "socket-io_1_3_3" = callPackage ({ mkDerivation, aeson, attoparsec, base, bytestring, engine-io , mtl, stm, text, transformers, unordered-containers, vector }: @@ -162253,6 +162852,23 @@ self: { ]; homepage = "http://github.com/ocharles/engine.io"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "socket-io" = callPackage + ({ mkDerivation, aeson, attoparsec, base, bytestring, engine-io + , mtl, stm, text, transformers, unordered-containers, vector + }: + mkDerivation { + pname = "socket-io"; + version = "1.3.4"; + sha256 = "58a3dd5b111682bcad608dc7a47c282f3c6d505d23ce5a690df17a4da2cf171f"; + libraryHaskellDepends = [ + aeson attoparsec base bytestring engine-io mtl stm text + transformers unordered-containers vector + ]; + homepage = "http://github.com/ocharles/engine.io"; + license = stdenv.lib.licenses.bsd3; }) {}; "socket-sctp" = callPackage @@ -163644,15 +164260,18 @@ self: { }: mkDerivation { pname = "squeeze"; - version = "1.0.4.7"; - sha256 = "f1961d7922ca1fb8839cc3d5c536d3b4c7e8aa81ddbb187655581e8e97bdb31a"; - isLibrary = false; + version = "1.0.4.8"; + sha256 = "9d67bb75f209427f4866ad9835b67e8057e2275349a1ef8f820ebbdbafcaf190"; + isLibrary = true; isExecutable = true; - executableHaskellDepends = [ - base Cabal directory factory filepath mtl QuickCheck random - toolshed + libraryHaskellDepends = [ + base Cabal directory factory filepath mtl toolshed ]; - homepage = "http://functionalley.eu"; + executableHaskellDepends = [ + base Cabal factory filepath mtl random toolshed + ]; + testHaskellDepends = [ base factory QuickCheck toolshed ]; + homepage = "http://functionalley.eu/Squeeze/squeeze.html"; description = "A file-packing application"; license = "GPL"; }) {}; @@ -164150,7 +164769,7 @@ self: { maintainers = with stdenv.lib.maintainers; [ simons ]; }) {}; - "stack" = callPackage + "stack_0_1_5_0" = callPackage ({ mkDerivation, aeson, async, attoparsec, base, base16-bytestring , base64-bytestring, bifunctors, binary, binary-tagged , blaze-builder, byteable, bytestring, Cabal, conduit @@ -164213,10 +164832,11 @@ self: { homepage = "https://github.com/commercialhaskell/stack"; description = "The Haskell Tool Stack"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; maintainers = with stdenv.lib.maintainers; [ simons ]; }) {}; - "stack_0_1_6_0" = callPackage + "stack" = callPackage ({ mkDerivation, aeson, ansi-terminal, async, attoparsec, base , base16-bytestring, base64-bytestring, bifunctors, binary , binary-tagged, blaze-builder, byteable, bytestring, Cabal @@ -164238,8 +164858,8 @@ self: { pname = "stack"; version = "0.1.6.0"; sha256 = "a47ffc204b9caef8281d1e5daebc21bc9d4d2414ed695dc10d32fcca4d81978d"; - revision = "2"; - editedCabalFile = "7965c68610808ca9ce3e8fe57ca5fd1d3adb6b1536bb807cfaaf6f7e5a4260fd"; + revision = "3"; + editedCabalFile = "5815cd95a1b2e4ee0f80b50dd365a635dfacc77bdacd17b0dad234c9971df49d"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -164271,7 +164891,7 @@ self: { monad-logger optparse-applicative path process QuickCheck resourcet retry temporary text transformers unix-compat ]; - jailbreak = true; + doCheck = false; enableSharedExecutables = false; postInstall = '' exe=$out/bin/stack @@ -164281,7 +164901,6 @@ self: { homepage = "https://github.com/commercialhaskell/stack"; description = "The Haskell Tool Stack"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; maintainers = with stdenv.lib.maintainers; [ simons ]; }) {}; @@ -170395,8 +171014,8 @@ self: { ({ mkDerivation, base, tagged, tasty }: mkDerivation { pname = "tasty-expected-failure"; - version = "0.11.0.1"; - sha256 = "4e706d7f54ed48fd792eaacd1fbfc18d7febdbbb415ce9d1847e9561f76d7890"; + version = "0.11.0.3"; + sha256 = "534b9bcbf945ec280c68c4776563c797ef03c3fdeb2703269d88f2c7fde22225"; libraryHaskellDepends = [ base tagged tasty ]; homepage = "http://github.com/nomeata/tasty-expected-failure"; description = "Mark tasty tests as failure expected"; @@ -170563,10 +171182,9 @@ self: { ({ mkDerivation, base, HUnit, tasty, tasty-hunit }: mkDerivation { pname = "tasty-hunit-adapter"; - version = "1.0"; - sha256 = "cf45708dbfd5f0096db940bab39307a9a37cc8171fa483546dcc4e8ca98e4618"; + version = "1.1"; + sha256 = "6ffb169f629e7c3a275561c227f2f3293ded413495c7621cf438b0676ce53e1b"; libraryHaskellDepends = [ base HUnit tasty tasty-hunit ]; - jailbreak = true; homepage = "https://github.com/jstolarek/tasty-hunit-adapter"; description = "Use existing HUnit tests with tasty"; license = stdenv.lib.licenses.bsd3; @@ -172208,7 +172826,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "texmath" = callPackage + "texmath_0_8_3" = callPackage ({ mkDerivation, base, bytestring, containers, directory, filepath , mtl, network-uri, pandoc-types, parsec, process, split, syb , temporary, text, utf8-string, xml @@ -172230,9 +172848,10 @@ self: { homepage = "http://github.com/jgm/texmath"; description = "Conversion between formats used to represent mathematics"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "texmath_0_8_4" = callPackage + "texmath" = callPackage ({ mkDerivation, base, bytestring, containers, directory, filepath , mtl, network-uri, pandoc-types, parsec, process, split, syb , temporary, text, utf8-string, xml @@ -172254,7 +172873,6 @@ self: { homepage = "http://github.com/jgm/texmath"; description = "Conversion between formats used to represent mathematics"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "texrunner" = callPackage @@ -174573,12 +175191,14 @@ self: { }) {}; "timeless" = callPackage - ({ mkDerivation, base, time, transformers }: + ({ mkDerivation, ansi-terminal, base, linear, time, transformers }: mkDerivation { pname = "timeless"; - version = "0.8.0.2"; - sha256 = "bb32b4ed361bbb17d2d86d19958513a0231d9789c615a52975cedb7efba99ad7"; - libraryHaskellDepends = [ base time transformers ]; + version = "0.8.1.1"; + sha256 = "256c5c10697afffc91d61197bcb8562387916c178cf83dcd6cce8d96a8cb1c1d"; + libraryHaskellDepends = [ + ansi-terminal base linear time transformers + ]; homepage = "https://github.com/carldong/timeless"; description = "An Arrow based Functional Reactive Programming library"; license = stdenv.lib.licenses.bsd3; @@ -175592,21 +176212,19 @@ self: { }) {}; "toolshed" = callPackage - ({ mkDerivation, array, base, Cabal, containers, deepseq, directory + ({ mkDerivation, array, base, containers, deepseq, directory , filepath, QuickCheck, random }: mkDerivation { pname = "toolshed"; - version = "0.15.0.1"; - sha256 = "c0ec7170afefd64c960772f38fa27b13eb8a6cd7d8596ed884074c4b84bd960c"; - isLibrary = true; - isExecutable = true; + version = "0.16.0.0"; + sha256 = "bf19c993d987d9024aced25f3aeab1732ffe935c76daf276e147668f1c8fa244"; libraryHaskellDepends = [ array base containers deepseq directory filepath QuickCheck random ]; - executableHaskellDepends = [ Cabal ]; + testHaskellDepends = [ base containers QuickCheck random ]; homepage = "http://functionalley.eu"; - description = "Utilities used by other packages"; + description = "Ill-defined library"; license = "GPL"; }) {}; @@ -176331,8 +176949,8 @@ self: { ({ mkDerivation, base, containers, mtl, QuickCheck, random }: mkDerivation { pname = "treeviz"; - version = "2.0.2"; - sha256 = "9c54778511c6465bdb493d41737b78ad28ed9001dd881feca6a064574aaa49a4"; + version = "2.0.3"; + sha256 = "dab7dd9935cde4259dab1604b732292a0076e1e8a277476abf822ea2819f26a9"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base containers mtl QuickCheck random ]; @@ -177459,7 +178077,6 @@ self: { text time transformers transformers-base twitter-types twitter-types-lens ]; - doCheck = false; homepage = "https://github.com/himura/twitter-conduit"; description = "Twitter API package with conduit interface and Streaming API support"; license = stdenv.lib.licenses.bsd3; @@ -177569,7 +178186,6 @@ self: { test-framework-hunit test-framework-quickcheck2 test-framework-th-prime text time unordered-containers ]; - doCheck = false; homepage = "https://github.com/himura/twitter-types"; description = "Twitter JSON parser and types"; license = stdenv.lib.licenses.bsd3; @@ -182725,8 +183341,8 @@ self: { ({ mkDerivation, base, contravariant, transformers, vinyl }: mkDerivation { pname = "vinyl-utils"; - version = "0.2.0.0"; - sha256 = "94055c8c4ab39e794c212a474e2c892e3350b9fb39d10192c502a0fccda71779"; + version = "0.2.0.2"; + sha256 = "e38f74e57ef29514c3e655f9ae6415e6005c971a46504c1859b5ba602672297c"; libraryHaskellDepends = [ base contravariant transformers vinyl ]; homepage = "https://github.com/marcinmrotek/vinyl-utils"; description = "Utilities for vinyl"; @@ -184018,7 +184634,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "wai-extra" = callPackage + "wai-extra_3_0_11_1" = callPackage ({ mkDerivation, aeson, ansi-terminal, base, base64-bytestring , blaze-builder, bytestring, case-insensitive, containers, cookie , data-default-class, deepseq, directory, fast-logger, hspec @@ -184045,6 +184661,36 @@ self: { homepage = "http://github.com/yesodweb/wai"; description = "Provides some basic WAI handlers and middleware"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "wai-extra" = callPackage + ({ mkDerivation, aeson, ansi-terminal, base, base64-bytestring + , blaze-builder, bytestring, case-insensitive, containers, cookie + , data-default-class, deepseq, directory, fast-logger, hspec + , http-types, HUnit, iproute, lifted-base, network, old-locale + , resourcet, streaming-commons, stringsearch, text, time + , transformers, unix, unix-compat, vault, void, wai, wai-logger + , word8, zlib + }: + mkDerivation { + pname = "wai-extra"; + version = "3.0.12"; + sha256 = "4b2362b111c7de228b0370fb22d0322becfa3d1a61d077cbfc2158003f8ede64"; + libraryHaskellDepends = [ + aeson ansi-terminal base base64-bytestring blaze-builder bytestring + case-insensitive containers cookie data-default-class deepseq + directory fast-logger http-types iproute lifted-base network + old-locale resourcet streaming-commons stringsearch text time + transformers unix unix-compat vault void wai wai-logger word8 zlib + ]; + testHaskellDepends = [ + base blaze-builder bytestring case-insensitive cookie fast-logger + hspec http-types HUnit resourcet text time transformers wai zlib + ]; + homepage = "http://github.com/yesodweb/wai"; + description = "Provides some basic WAI handlers and middleware"; + license = stdenv.lib.licenses.mit; }) {}; "wai-frontend-monadcgi" = callPackage @@ -184521,13 +185167,12 @@ self: { }: mkDerivation { pname = "wai-middleware-etag"; - version = "0.1.0.0"; - sha256 = "48f2814524758241fe0fe6d5dd7ff2344e2d4dbdce7f2d3257e198def7b79855"; + version = "0.1.1.1"; + sha256 = "6279ff3c0ec0bdc8a37388dbea30a790f82d1e536b40a21fc3856e0a8e237be4"; libraryHaskellDepends = [ base base64-bytestring bytestring cryptohash filepath http-date http-types unix-compat unordered-containers wai ]; - jailbreak = true; homepage = "https://github.com/ameingast/wai-middleware-etag"; description = "WAI ETag middleware for static files"; license = stdenv.lib.licenses.bsd3; @@ -186097,6 +186742,8 @@ self: { pname = "warp-static"; version = "2.0.1.1"; sha256 = "750a2e5cb4adeece260455053c6c2637faf8182f1f7feca5f1cfe25232433fa0"; + revision = "1"; + editedCabalFile = "9084e8207d2178dd585366f7a8310638814409b969752b88878d77807d3f478a"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -186493,8 +187140,8 @@ self: { }: mkDerivation { pname = "wavefront"; - version = "0.4"; - sha256 = "a8da7cc39a38adee0fe230cb1732a525a979dc34f9ecd33600921583e3c04e3a"; + version = "0.4.0.1"; + sha256 = "91e39b706beb176569c157bd25fa56c4de63015a02e86f70ff7c9b7157fbbed2"; libraryHaskellDepends = [ attoparsec base dlist filepath mtl text transformers vector ]; @@ -187121,7 +187768,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "webdriver-angular" = callPackage + "webdriver-angular_0_1_7" = callPackage ({ mkDerivation, aeson, base, hspec, hspec-webdriver , language-javascript, template-haskell, text, transformers , unordered-containers, wai-app-static, warp, webdriver @@ -187138,13 +187785,15 @@ self: { base hspec hspec-webdriver transformers wai-app-static warp webdriver ]; + jailbreak = true; doCheck = false; homepage = "https://bitbucket.org/wuzzeb/webdriver-utils"; description = "Webdriver actions to assist with testing a webpage which uses Angular.Js"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "webdriver-angular_0_1_9" = callPackage + "webdriver-angular" = callPackage ({ mkDerivation, aeson, base, hspec, hspec-webdriver , language-javascript, template-haskell, text, transformers , unordered-containers, wai-app-static, warp, webdriver @@ -187161,10 +187810,10 @@ self: { base hspec hspec-webdriver transformers wai-app-static warp webdriver ]; + doCheck = false; homepage = "https://bitbucket.org/wuzzeb/webdriver-utils"; description = "Webdriver actions to assist with testing a webpage which uses Angular.Js"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "webdriver-snoy" = callPackage From 8e07d5d77c7c9b1b7f66afee460ea696228c8a99 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 16 Oct 2015 15:12:27 +0200 Subject: [PATCH 093/196] haskell: update lists of core and non-core packages for older compilers --- .../haskell-modules/configuration-ghc-7.0.x.nix | 12 ++++++------ .../haskell-modules/configuration-ghc-7.2.x.nix | 9 +++++---- .../haskell-modules/configuration-ghc-7.4.x.nix | 5 ++++- .../haskell-modules/configuration-ghcjs.nix | 8 ++++++++ 4 files changed, 23 insertions(+), 11 deletions(-) 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 9ce0e920042..cc5d03f05f5 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.0.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.0.x.nix @@ -34,14 +34,14 @@ self: super: { time = null; unix = null; - # binary is not a core library for this compiler. + # These packages are core libraries in GHC 7.10.x, but not here. binary = self.binary_0_7_6_1; - - # deepseq is not a core library for this compiler. - deepseq = self.deepseq_1_4_1_2; - - # transformers is not a core library for this compiler. + deepseq = self.deepseq_1_3_0_1; + haskeline = self.haskeline_0_7_2_1; + hoopl = self.hoopl_3_10_2_0; + terminfo = self.terminfo_0_4_0_1; transformers = self.transformers_0_4_3_0; + xhtml = self.xhtml_3000_2_1; # https://github.com/tibbe/hashable/issues/85 hashable = dontCheck super.hashable; 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 ae85c4a009c..b79cdb6da97 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.2.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.2.x.nix @@ -34,11 +34,12 @@ self: super: { time = null; unix = null; - # deepseq is not a core library for this compiler. - deepseq = self.deepseq_1_4_1_2; - - # transformers is not a core library for this compiler. + # These packages are core libraries in GHC 7.10.x, but not here. + deepseq = self.deepseq_1_3_0_1; + haskeline = self.haskeline_0_7_2_1; + terminfo = self.terminfo_0_4_0_1; transformers = self.transformers_0_4_3_0; + xhtml = self.xhtml_3000_2_1; # https://github.com/haskell/cabal/issues/2322 Cabal_1_22_4_0 = super.Cabal_1_22_4_0.override { binary = self.binary_0_7_6_1; process = self.process_1_2_3_0; }; 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 aa27b70a566..693c0b1d522 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix @@ -34,8 +34,11 @@ self: super: { time = null; unix = null; - # transformers is not a core library for this compiler. + # These packages are core libraries in GHC 7.10.x, but not here. + haskeline = self.haskeline_0_7_2_1; + terminfo = self.terminfo_0_4_0_1; transformers = self.transformers_0_4_3_0; + xhtml = self.xhtml_3000_2_1; # https://github.com/haskell/cabal/issues/2322 Cabal_1_22_4_0 = super.Cabal_1_22_4_0.override { binary = dontCheck self.binary_0_7_6_1; }; diff --git a/pkgs/development/haskell-modules/configuration-ghcjs.nix b/pkgs/development/haskell-modules/configuration-ghcjs.nix index 381da0afa3f..f07a065e176 100644 --- a/pkgs/development/haskell-modules/configuration-ghcjs.nix +++ b/pkgs/development/haskell-modules/configuration-ghcjs.nix @@ -55,6 +55,14 @@ self: super: { unordered-containers = null; vector = null; + # These packages are core libraries in GHC 7.10.x, but not here. + bin-package-db = null; + haskeline = self.haskeline_0_7_2_1; + hoopl = self.hoopl_3_10_2_0; + hpc = self.hpc_0_6_0_2; + terminfo = self.terminfo_0_4_0_1; + xhtml = self.xhtml_3000_2_1; + pqueue = overrideCabal super.pqueue (drv: { postPatch = '' sed -i -e '12s|null|Data.PQueue.Internals.null|' Data/PQueue/Internals.hs From 41c733a230514c53f271a2b401256d1e164c76ce Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sat, 17 Oct 2015 21:36:27 +0200 Subject: [PATCH 094/196] haskell-configuration-ghc-7.8.x.nix: remove obsolete overrides These overrides cause an infinite recursion for reasons I don't quite understand and that don't seem worthwhile to attempt to understand. --- pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix | 4 ---- 1 file changed, 4 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix index 4b1d9df24e4..99bac5ae5a0 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix @@ -84,10 +84,6 @@ self: super: { seqid = super.seqid_0_1_0; seqid-streams = super.seqid-streams_0_1_0; - # Need binary >= 0.7.2, but our compiler has only 0.7.1.0. - hosc = super.hosc.overrideScope (self: super: { binary = self.binary_0_7_6_1; }); - tidal-midi = super.tidal-midi.overrideScope (self: super: { binary = self.binary_0_7_6_1; }); - # These packages need mtl 2.2.x directly or indirectly via dependencies. amazonka = markBroken super.amazonka; apiary-purescript = markBroken super.apiary-purescript; From ddd255a40c9a33b5b7173c6d772e04f06f86e990 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sun, 18 Oct 2015 21:22:08 +0200 Subject: [PATCH 095/196] pandoc-citeproc: remove obsolete overrides The spuriously failing test suite is now disabled by cabal2nix. --- pkgs/development/haskell-modules/configuration-common.nix | 5 ----- 1 file changed, 5 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 7b8a5be19d6..38efe7ae1ad 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -433,11 +433,6 @@ self: super: { openpgp = dontCheck super.openpgp; optional = dontCheck super.optional; os-release = dontCheck super.os-release; - pandoc-citeproc = dontCheck super.pandoc-citeproc; - pandoc-citeproc_0_6 = dontCheck super.pandoc-citeproc_0_6; - pandoc-citeproc_0_6_0_1 = dontCheck super.pandoc-citeproc_0_6_0_1; - pandoc-citeproc_0_7_3 = dontCheck super.pandoc-citeproc_0_7_3; - pandoc-citeproc_0_7_3_1 = dontCheck super.pandoc-citeproc_0_7_3; persistent-redis = dontCheck super.persistent-redis; pipes-extra = dontCheck super.pipes-extra; pipes-websockets = dontCheck super.pipes-websockets; From 1145130e9b55667de80b3e34ff1f99a167af0145 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carles=20Pag=C3=A8s?= Date: Sun, 18 Oct 2015 22:17:02 +0200 Subject: [PATCH 096/196] yafc: update to 1.3.6 --- pkgs/applications/networking/yafc/default.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/applications/networking/yafc/default.nix b/pkgs/applications/networking/yafc/default.nix index 2e60b9aa322..f283631cb07 100644 --- a/pkgs/applications/networking/yafc/default.nix +++ b/pkgs/applications/networking/yafc/default.nix @@ -1,13 +1,13 @@ -{stdenv, fetchurl, readline, libssh, intltool, libbsd}: +{stdenv, fetchurl, readline, libssh, intltool, libbsd, pkgconfig}: stdenv.mkDerivation rec { - name = "yafc-1.3.2"; + name = "yafc-1.3.6"; src = fetchurl { - url = "http://www.yafc-ftp.com/upload/${name}.tar.xz"; - sha256 = "0rrhik00xynxg5s3ffqlyynvy8ssv8zfaixkpb77baxa274gnbd7"; + url = "http://www.yafc-ftp.com/downloads/${name}.tar.xz"; + sha256 = "0wvrljihliggysfnzczc0s74i3ab2c1kzjjs99iqk98nxmb2b8v3"; }; - buildInputs = [ readline libssh intltool libbsd ]; + buildInputs = [ readline libssh intltool libbsd pkgconfig ]; meta = { description = "ftp/sftp client with readline, autocompletion and bookmarks"; From 137c248aa272f8a97b33c1d254888783e44740ba Mon Sep 17 00:00:00 2001 From: Kosyrev Serge <_deepfire@feelingofgreen.ru> Date: Thu, 15 Oct 2015 18:58:17 +0300 Subject: [PATCH 097/196] vue: 3.2.2 -> 3.3.0 --- pkgs/applications/misc/vue/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/misc/vue/default.nix b/pkgs/applications/misc/vue/default.nix index c338a101563..b116a176aed 100644 --- a/pkgs/applications/misc/vue/default.nix +++ b/pkgs/applications/misc/vue/default.nix @@ -2,10 +2,10 @@ stdenv.mkDerivation rec { name = "vue-${version}"; - version = "3.2.2"; + version = "3.3.0"; src = fetchurl { - url = "releases.atech.tufts.edu/jenkins/job/VUE/64/deployedArtifacts/download/artifact.2"; - sha256 = "0sb1kgan8fvph2cqfxk3906cwx5wy83zni2vlz4zzi6yg4zvfxld"; + url = "releases.atech.tufts.edu/jenkins/job/VUE/116/deployedArtifacts/download/artifact.1"; + sha256 = "0yfzr80pw632lkayg4qfmwzrqk02y30yz8br7isyhmgkswyp5rnx"; }; phases = "installPhase"; From 8af5e2ef014d9391195faf2f060c2d28ea5d8bd3 Mon Sep 17 00:00:00 2001 From: Anders Papitto Date: Fri, 16 Oct 2015 20:54:15 -0700 Subject: [PATCH 098/196] rtags: init at 9fed420 --- pkgs/development/tools/rtags/default.nix | 37 ++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 8 +++-- pkgs/top-level/emacs-packages.nix | 9 ++++++ 3 files changed, 51 insertions(+), 3 deletions(-) create mode 100644 pkgs/development/tools/rtags/default.nix diff --git a/pkgs/development/tools/rtags/default.nix b/pkgs/development/tools/rtags/default.nix new file mode 100644 index 00000000000..208445c3ec5 --- /dev/null +++ b/pkgs/development/tools/rtags/default.nix @@ -0,0 +1,37 @@ +{ stdenv, fetchgit, cmake, llvm, openssl, clang, writeScript, bash }: + +let llvm-config-wrapper = writeScript "llvm-config" '' + #! ${bash}/bin/bash + if [[ "$1" = "--cxxflags" ]]; then + echo $(${llvm}/bin/llvm-config "$@") -isystem ${clang.cc}/include + else + ${llvm}/bin/llvm-config "$@" + fi + ''; + +in stdenv.mkDerivation rec { + name = "rtags-${version}"; + rev = "9fed420d20935faf55770765591fc2de02eeee28"; + version = "${stdenv.lib.strings.substring 0 7 rev}"; + + buildInputs = [ cmake llvm openssl clang ]; + + preConfigure = '' + export LIBCLANG_LLVM_CONFIG_EXECUTABLE=${llvm-config-wrapper} + ''; + + src = fetchgit { + inherit rev; + fetchSubmodules = true; + url = "https://github.com/andersbakken/rtags.git"; + sha256 = "1sb6wfknhvrgirqp65paz7kihv4zgg8g5f7a7i14i10sysalxbif"; + }; + + meta = { + description = "C/C++ client-server indexer based on clang"; + + homepage = https://github.com/andersbakken/rtags; + + license = stdenv.lib.licenses.gpl3; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 6564a15cad2..c3790e05f72 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -4693,6 +4693,8 @@ let ocaml = ocaml_3_08_0; }; + rtags = callPackage ../development/tools/rtags/default.nix {}; + rustcMaster = callPackage ../development/compilers/rustc/head.nix {}; rustc = callPackage ../development/compilers/rustc {}; @@ -10449,7 +10451,7 @@ let coreclr = callPackage ../development/compilers/coreclr { }; corefonts = callPackage ../data/fonts/corefonts { }; - + culmus = callPackage ../data/fonts/culmus { }; wrapFonts = paths : (callPackage ../data/fonts/fontWrap { inherit paths; }); @@ -11324,6 +11326,7 @@ let external = { inherit (haskellPackages) ghc-mod structured-haskell-mode Agda; inherit (pythonPackages) elpy; + inherit rtags; }; }; @@ -12388,7 +12391,7 @@ let pencil = callPackage ../applications/graphics/pencil { }; - perseus = callPackage ../applications/science/math/perseus {}; + perseus = callPackage ../applications/science/math/perseus {}; petrifoo = callPackage ../applications/audio/petrifoo { inherit (gnome) libgnomecanvas; @@ -15203,4 +15206,3 @@ tweakAlias = _n: alias: with lib; else alias; in lib.mapAttrs tweakAlias aliases // self; in pkgs - diff --git a/pkgs/top-level/emacs-packages.nix b/pkgs/top-level/emacs-packages.nix index d331850b504..12f24f650c8 100644 --- a/pkgs/top-level/emacs-packages.nix +++ b/pkgs/top-level/emacs-packages.nix @@ -694,6 +694,15 @@ let self = _self // overrides; meta = { license = bsd3; }; }; + rtags = melpaBuild rec { + pname = "rtags"; + version = "2.0"; # really, it's some arbitrary git hash + src = external.rtags.src; + propagatedUserEnvPkgs = [ external.rtags ]; + fileSpecs = [ "src/*.el" ]; + inherit (external.rtags) meta; + }; + git-auto-commit-mode = melpaBuild rec { pname = "git-auto-commit-mode"; version = "4.4.0"; From af86a58051d858dc70b52ae551600f90a08d7bc1 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Mon, 19 Oct 2015 00:01:32 +0200 Subject: [PATCH 099/196] libressl: 2.2.3 -> 2.2.4 This release fixes a buffer overrun and a memory leak. See: http://ftp.openbsd.org/pub/OpenBSD/patches/5.8/common/007_obj2txt.patch.sig --- pkgs/development/libraries/libressl/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/libraries/libressl/default.nix b/pkgs/development/libraries/libressl/default.nix index 8d9743a880f..fd18c7f5652 100644 --- a/pkgs/development/libraries/libressl/default.nix +++ b/pkgs/development/libraries/libressl/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "libressl-${version}"; - version = "2.2.3"; + version = "2.2.4"; src = fetchurl { url = "mirror://openbsd/LibreSSL/${name}.tar.gz"; - sha256 = "10nq2rpyzgl7xhdip9mmn7hzb6hcjffbjcb04jchxmlivwdc5k51"; + sha256 = "0zlsxw366n438dc14zqnim6fc5vh1574jj95hv1sym46prcrhh3b"; }; enableParallelBuilding = true; @@ -15,6 +15,6 @@ stdenv.mkDerivation rec { description = "Free TLS/SSL implementation"; homepage = "http://www.libressl.org"; platforms = platforms.all; - maintainers = with maintainers; [ thoughtpolice wkennington ]; + maintainers = with maintainers; [ thoughtpolice wkennington fpletz ]; }; } From cc2f78573e93998cffc31c47cc10e19d501c1b9c Mon Sep 17 00:00:00 2001 From: "William A. Kennington III" Date: Sun, 18 Oct 2015 17:20:37 -0700 Subject: [PATCH 100/196] git: 2.5.3 -> 2.6.2 --- .../version-management/git-and-tools/git/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/version-management/git-and-tools/git/default.nix b/pkgs/applications/version-management/git-and-tools/git/default.nix index 0710e38c941..41776a166d5 100644 --- a/pkgs/applications/version-management/git-and-tools/git/default.nix +++ b/pkgs/applications/version-management/git-and-tools/git/default.nix @@ -9,7 +9,7 @@ }: let - version = "2.5.3"; + version = "2.6.2"; svn = subversionClient.override { perlBindings = true; }; in @@ -18,7 +18,7 @@ stdenv.mkDerivation { src = fetchurl { url = "https://www.kernel.org/pub/software/scm/git/git-${version}.tar.xz"; - sha256 = "06is8pq8gsia3dav8mgl2zlvms2ny4hs1x0w2792ya51azc2jk8j"; + sha256 = "0w56027asrc5s20l5d4rnki7dla66gn84373afqw3mb9pjmkfvk4"; }; patches = [ From 1381d575001dc1ae3d2d7e525067c746ac9f279b Mon Sep 17 00:00:00 2001 From: "William A. Kennington III" Date: Sun, 18 Oct 2015 17:20:50 -0700 Subject: [PATCH 101/196] spice-protocol: 0.12.9 -> 0.12.10 --- pkgs/development/libraries/spice-protocol/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/spice-protocol/default.nix b/pkgs/development/libraries/spice-protocol/default.nix index 3bcd7fd67ef..0f9b1288cc4 100644 --- a/pkgs/development/libraries/spice-protocol/default.nix +++ b/pkgs/development/libraries/spice-protocol/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl }: stdenv.mkDerivation rec { - name = "spice-protocol-0.12.9"; + name = "spice-protocol-0.12.10"; src = fetchurl { url = "http://www.spice-space.org/download/releases/${name}.tar.bz2"; - sha256 = "0xkqycpqpkxjlcg4fk1vyv2vjni60s0fjx5l57918q0mvlsgh319"; + sha256 = "1yrfacqgnabmx2q768mim892ga2wnlp5cavkf51v3idyjmqhv3vq"; }; postInstall = '' From 95557d776ec5fa0fec2409b633261dff13282ac7 Mon Sep 17 00:00:00 2001 From: "William A. Kennington III" Date: Sun, 18 Oct 2015 17:21:13 -0700 Subject: [PATCH 102/196] spice: 0.12.5 -> 0.12.6 --- pkgs/development/libraries/spice/default.nix | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/pkgs/development/libraries/spice/default.nix b/pkgs/development/libraries/spice/default.nix index 2353eec7348..8e1227e46ff 100644 --- a/pkgs/development/libraries/spice/default.nix +++ b/pkgs/development/libraries/spice/default.nix @@ -1,29 +1,30 @@ { stdenv, fetchurl, pkgconfig, pixman, celt, alsaLib, openssl , libXrandr, libXfixes, libXext, libXrender, libXinerama, libjpeg, zlib -, spice_protocol, python, pyparsing, glib }: +, spice_protocol, python, pyparsing, glib, cyrus_sasl, lz4 }: with stdenv.lib; stdenv.mkDerivation rec { - name = "spice-0.12.5"; + name = "spice-0.12.6"; src = fetchurl { url = "http://www.spice-space.org/download/releases/${name}.tar.bz2"; - sha256 = "10gmqaanfg929aamf11n4si4r3d1g7z9qjdclsl9kjv7iw6s42a2"; + sha256 = "1dk9hp78ldqb0a52kdlqq0scnk3drnhj7rsw8r7hmy2v2cqflj7i"; }; buildInputs = [ pixman celt alsaLib openssl libjpeg zlib libXrandr libXfixes libXrender libXext libXinerama - python pyparsing glib ]; + python pyparsing glib cyrus_sasl lz4 ]; nativeBuildInputs = [ pkgconfig spice_protocol ]; NIX_CFLAGS_COMPILE = "-fno-stack-protector"; configureFlags = [ - "--with-sasl=no" + "--with-sasl" "--disable-smartcard" "--enable-client" + "--enable-lz4" ]; postInstall = '' From d03661b606bba4f43fd5df32e583a786886935e5 Mon Sep 17 00:00:00 2001 From: "William A. Kennington III" Date: Sun, 18 Oct 2015 17:21:40 -0700 Subject: [PATCH 103/196] linuxFirmware: 2015-09-07 -> 2015-10-18 --- .../linux/firmware/firmware-linux-nonfree/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/os-specific/linux/firmware/firmware-linux-nonfree/default.nix b/pkgs/os-specific/linux/firmware/firmware-linux-nonfree/default.nix index 9c4e0f3990c..455088d8f5e 100644 --- a/pkgs/os-specific/linux/firmware/firmware-linux-nonfree/default.nix +++ b/pkgs/os-specific/linux/firmware/firmware-linux-nonfree/default.nix @@ -2,7 +2,7 @@ stdenv.mkDerivation rec { name = "firmware-linux-nonfree-${version}"; - version = "2015-09-07"; + version = "2015-10-18"; # This repo is built by merging the latest versions of # http://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/ @@ -14,8 +14,8 @@ stdenv.mkDerivation rec { src = fetchFromGitHub { owner = "wkennington"; repo = "linux-firmware"; - rev = "0c3ac7434235f57967df4046ceafc0e4a08bb139"; - sha256 = "1jhcgf0anjfi2998nzplr9l1q0b1yi306a2w1k2r4civsmfgm08r"; + rev = "f7694d34655a7f688033d0582f306b3f287b785d"; + sha256 = "0pb6pq48hfcny34l3anln9g4dy1f4n8gzmfib9pk4l64648sylnl"; }; preInstall = '' From 480b289f5bcd19782408aad5f781af9b74ee66bb Mon Sep 17 00:00:00 2001 From: "William A. Kennington III" Date: Sun, 18 Oct 2015 17:23:05 -0700 Subject: [PATCH 104/196] mongodb: 3.0.6 -> 3.0.7 Use the vendored wiredtiger as the system one is not compatible --- pkgs/servers/nosql/mongodb/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/servers/nosql/mongodb/default.nix b/pkgs/servers/nosql/mongodb/default.nix index 09465edbd29..60a37456b4b 100644 --- a/pkgs/servers/nosql/mongodb/default.nix +++ b/pkgs/servers/nosql/mongodb/default.nix @@ -4,10 +4,10 @@ with stdenv.lib; -let version = "3.0.6"; +let version = "3.0.7"; system-libraries = [ "pcre" - "wiredtiger" + #"wiredtiger" "boost" "snappy" "zlib" @@ -18,7 +18,7 @@ let version = "3.0.6"; buildInputs = [ sasl boost gperftools pcre snappy zlib libyamlcpp sasl openssl libpcap - ] ++ optional stdenv.is64bit wiredtiger; + ]; # ++ optional stdenv.is64bit wiredtiger; other-args = concatStringsSep " " ([ # these are opt-in, lol @@ -41,7 +41,7 @@ in stdenv.mkDerivation rec { src = fetchurl { url = "http://downloads.mongodb.org/src/mongodb-src-r${version}.tar.gz"; - sha256 = "0bc2khi36ck0y7dhppvjp8wy479hzyw34qs0965qj4gd2va6p7v0"; + sha256 = "1rx7faqsq733vdriavdfmvx75nhjq9nm5bgwd3hw1cxzqgkvl99d"; }; nativeBuildInputs = [ scons ]; From ca58b16d67f79f25d931de38372341726bd46234 Mon Sep 17 00:00:00 2001 From: "William A. Kennington III" Date: Sun, 18 Oct 2015 17:23:31 -0700 Subject: [PATCH 105/196] picocom: 2.0 -> 2.1 --- pkgs/tools/misc/picocom/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/misc/picocom/default.nix b/pkgs/tools/misc/picocom/default.nix index cc5b6a70715..f287e39e7b2 100644 --- a/pkgs/tools/misc/picocom/default.nix +++ b/pkgs/tools/misc/picocom/default.nix @@ -2,13 +2,13 @@ stdenv.mkDerivation rec { name = "picocom-${version}"; - version = "2.0"; + version = "2.1"; src = fetchFromGitHub { owner = "npat-efault"; repo = "picocom"; rev = version; - sha256 = "0s990jiqlbcg3isvhr3bn4sb7b0k6qqbf1jdvs1fyy9h0iiwprjw"; + sha256 = "1ac3xdfiw5bd24lw4l9hxc75rcagw0y182x7svhkqp2gwsvzkbjv"; }; buildInputs = [ makeWrapper ]; From 3d6070f0a7aef517b934e49a03c071ba2d5bde30 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Mon, 19 Oct 2015 03:23:24 +0300 Subject: [PATCH 106/196] grub4dos: init at 0.4.6a --- pkgs/tools/misc/grub4dos/default.nix | 35 ++++++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 4 ++++ 2 files changed, 39 insertions(+) create mode 100644 pkgs/tools/misc/grub4dos/default.nix diff --git a/pkgs/tools/misc/grub4dos/default.nix b/pkgs/tools/misc/grub4dos/default.nix new file mode 100644 index 00000000000..18464574d44 --- /dev/null +++ b/pkgs/tools/misc/grub4dos/default.nix @@ -0,0 +1,35 @@ +{ stdenv, fetchurl, unzip, nasm }: + +let arch = + if stdenv.isi686 then "i386" + else if stdenv.isx86_64 then "x86_64" + else abort "Unknown architecture"; +in stdenv.mkDerivation { + name = "grub4dos-0.4.6a"; + + src = fetchurl { + url = https://github.com/chenall/grub4dos/archive/e855b293432bd4d155e42d48356f9aa1974ec385.zip; + sha256 = "1vihzllsdshd5dyr7i7dp5ragyg77gg8r279pz954p7lkcda4kx7"; + }; + + nativeBuildInputs = [ unzip nasm ]; + + configureFlags = [ "--host=${arch}-pc-linux-gnu" ]; + + postInstall = '' + mv $out/lib/grub/${arch}-pc/* $out/lib/grub + rmdir $out/lib/grub/${arch}-pc + chmod +x $out/lib/grub/bootlace.com + ''; + + dontStrip = true; + dontPatchELF = true; + + meta = with stdenv.lib; { + homepage = http://grub4dos.chenall.net/; + description = "GRUB for DOS is the dos extension of GRUB"; + maintainers = with maintainers; [ abbradar ]; + platforms = platforms.all; + license = licenses.gpl2; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index da538d8d3cd..ebcfb57952d 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1734,6 +1734,10 @@ let zfsSupport = false; }; + grub4dos = callPackage ../tools/misc/grub4dos { + stdenv = stdenv_32bit; + }; + sbsigntool = callPackage ../tools/security/sbsigntool { }; gsmartcontrol = callPackage ../tools/misc/gsmartcontrol { From 1971c350df4b425cb1b6f0d6f001935feab84ad8 Mon Sep 17 00:00:00 2001 From: Mathnerd314 Date: Mon, 5 Oct 2015 12:31:59 -0600 Subject: [PATCH 107/196] Package all of George Douros's fonts, not just Symbola --- pkgs/data/fonts/gdouros/default.nix | 57 +++++++++++++++++++++++++++++ pkgs/data/fonts/symbola/default.nix | 34 ----------------- pkgs/top-level/all-packages.nix | 3 +- 3 files changed, 59 insertions(+), 35 deletions(-) create mode 100644 pkgs/data/fonts/gdouros/default.nix delete mode 100644 pkgs/data/fonts/symbola/default.nix diff --git a/pkgs/data/fonts/gdouros/default.nix b/pkgs/data/fonts/gdouros/default.nix new file mode 100644 index 00000000000..562c74ee2c9 --- /dev/null +++ b/pkgs/data/fonts/gdouros/default.nix @@ -0,0 +1,57 @@ +{stdenv, fetchurl, unzip, lib }: +let + fonts = { + aegean = { version = "8.00"; file = "Aegean.zip"; sha256 = "09pmazcpxhkx3l8h4gxiixihi1c49pli5gvlcm1b6sbf4xvf9kwm"; + description = "Scripts and symbols of the Aegean world"; }; + textfonts = { version = "6.00"; file = "Textfonts.zip"; sha256 = "10m6kpyj8cc0b4qxxi78akiyjxcbhxj2wmbicdcfh008jibbaxsz"; + description = "Fonts based on early Greek editions"; }; + symbola = { version = "8.00"; file = "Symbola.zip"; sha256 = "1lfs2j816332ysvpb5ibj2gwpmyqyispqdl7skkshf2gra18hmhd"; + description = "Basic Latin, Greek, Cyrillic and many Symbol blocks of Unicode"; }; + aegyptus = { version = "6.00"; file = "Aegyptus.zip"; sha256 = "092vci45wp9x0yky6dcfky4bs4avaxn6xpai3bs74gxskd2j9s3q"; + description = "Egyptian Hieroglyphs, Coptic, Meroitic"; }; + akkadian = { version = "7.13"; file = "Akkadian.zip"; sha256 = "1xwlify1jdsjfgbpl48gcdv7m2apa9avsyxy17q2zg6lngx1ic8a"; + description = "Sumero-Akkadian Cuneiform"; }; + anatolian = { version = "5.02"; file = "Anatolian.zip"; sha256 = "0arm58sijzk0bqmfb70k1sjvq79wgw16hx3j2g4l8qz4sv05bp8l"; + description = "Anatolian Hieroglyphs"; }; + maya = { version = "4.14"; file = "Maya.zip"; sha256 = "0l97racgncrhb96mfbsx8dr5n4j289iy0nnwhxf9b21ns58a9x4f"; + description = "Maya Hieroglyphs"; }; + unidings = { version = "8.00"; file = "Unidings.zip"; sha256 = "0r5n5jgxcf71x4zfizf1jk9jffyr6waxym8dlmh82bcpjpkx0pl0"; + description = "Glyphs and Icons for blocks of The Unicode Standard"; }; + musica = { version = "3.12"; file = "Musica.zip"; sha256 = "079vyb0mpxvlcf81d5pqh9dijkcvidfbcyvpbgjpmgzzrrj0q210"; + description = "Musical Notation"; }; + analecta = { version = "5.00"; file = "Analecta.zip"; sha256 = "0rphylnz42fqm1zpx5jx60k294kax3sid8r2hx3cbxfdf8fnpb1f"; + description = "Coptic, Gothic, Deseret"; }; + }; + mkpkg = name_: {version, file, sha256, description}: + stdenv.mkDerivation rec { + name = "${name_}-${version}"; + + src = fetchurl { + url = "http://users.teilar.gr/~g1951d/${file}"; + inherit sha256; + }; + + buildInputs = [ unzip ]; + + sourceRoot = "."; + + installPhase = '' + mkdir -p $out/share/fonts/truetype + cp -v *.ttf $out/share/fonts/truetype/ + + mkdir -p "$out/doc/${name}" + cp -v *.docx *.pdf *.xlsx "$out/doc/${name}/" + ''; + + meta = { + inherit description; + # In lieu of a license: + # Fonts in this site are offered free for any use; + # they may be installed, embedded, opened, edited, modified, regenerated, posted, packaged and redistributed. + license = stdenv.lib.licenses.free; + homepage = http://users.teilar.gr/~g1951d/; + }; + }; + +in +lib.mapAttrs mkpkg fonts diff --git a/pkgs/data/fonts/symbola/default.nix b/pkgs/data/fonts/symbola/default.nix deleted file mode 100644 index 253fd9cd3e9..00000000000 --- a/pkgs/data/fonts/symbola/default.nix +++ /dev/null @@ -1,34 +0,0 @@ -{stdenv, fetchurl, unzip }: - -stdenv.mkDerivation rec { - name = "symbola-8.00"; - - src = fetchurl { - url = "http://users.teilar.gr/~g1951d/Symbola.zip"; - sha256 = "1lfs2j816332ysvpb5ibj2gwpmyqyispqdl7skkshf2gra18hmhd"; - }; - - buildInputs = [ unzip ]; - - phases = [ "installPhase" ]; - - installPhase = '' - unzip ${src} - mkdir -p $out/share/fonts/truetype - cp -v Symbola.ttf $out/share/fonts/truetype/ - cp -v Symbola_hint.ttf $out/share/fonts/truetype/ - - mkdir -p "$out/doc/${name}" - cp -v Symbola.docx "$out/doc/${name}/" - cp -v Symbola.pdf "$out/doc/${name}/" - ''; - - meta = { - description = "Basic Latin, Greek, Cyrillic and many Symbol blocks of Unicode"; - # In lieu of a license: - # Fonts in this site are offered free for any use; - # they may be installed, embedded, opened, edited, modified, regenerated, posted, packaged and redistributed. - license = stdenv.lib.licenses.free; - homepage = http://users.teilar.gr/~g1951d/; - }; -} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index ebcfb57952d..72af6608070 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10632,7 +10632,8 @@ let stix-otf = callPackage ../data/fonts/stix-otf { }; - symbola = callPackage ../data/fonts/symbola { }; + inherit (callPackages ../data/fonts/gdouros { }) + aegean textfonts symbola aegyptus akkadian anatolian maya unidings musica analecta; iana_etc = callPackage ../data/misc/iana-etc { }; From 9cc60e1c27d4f1d1c4411ee86d972c4b5f15ce78 Mon Sep 17 00:00:00 2001 From: Mathnerd314 Date: Sat, 17 Oct 2015 14:54:39 -0600 Subject: [PATCH 108/196] hanazono: init at 20141012 --- pkgs/data/fonts/hanazono/default.nix | 36 ++++++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 38 insertions(+) create mode 100644 pkgs/data/fonts/hanazono/default.nix diff --git a/pkgs/data/fonts/hanazono/default.nix b/pkgs/data/fonts/hanazono/default.nix new file mode 100644 index 00000000000..01be8afd7aa --- /dev/null +++ b/pkgs/data/fonts/hanazono/default.nix @@ -0,0 +1,36 @@ +{ stdenv, fetchurl, unzip }: + +stdenv.mkDerivation rec { + name = "hanazono-${version}"; + version = "20141012"; + + src = fetchurl { + url = "mirror://sourceforgejp/hanazono-font/62072/hanazono-20141012.zip"; + sha256 = "020jhqnzm9jvkmfvvyk1my26ncwxbnb9yc8v7am252jwrifji9q6"; + }; + + buildInputs = [ unzip ]; + + sourceRoot = "."; + + installPhase = '' + mkdir -p $out/share/fonts/hanazono + cp *.ttf $out/share/fonts/hanazono + mkdir -p $out/share/doc/hanazono + cp *.txt $out/share/doc/hanazono + ''; + + meta = with stdenv.lib; { + description = "Free kanji font containing 96,327 characters"; + homepage = http://fonts.jp/hanazono/; + + # Dual-licensed under OFL and the following: + # This font is a free software. + # Unlimited permission is granted to use, copy, and distribute it, with + # or without modification, either commercially and noncommercially. + # THIS FONT IS PROVIDED "AS IS" WITHOUT WARRANTY. + license = [ licenses.ofl licenses.free ]; + maintainers = with maintainers; [ mathnerd314 ]; + platforms = platforms.all; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 72af6608070..047abb16ecf 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10548,6 +10548,8 @@ let hicolor_icon_theme = callPackage ../data/icons/hicolor-icon-theme { }; + hanazono = callPackage ../data/fonts/hanazono { }; + inconsolata = callPackage ../data/fonts/inconsolata {}; inconsolata-lgc = callPackage ../data/fonts/inconsolata/lgc.nix {}; From ce3214a4c9a8ee891458ba4c73df9346a3d93f45 Mon Sep 17 00:00:00 2001 From: Mathnerd314 Date: Sat, 17 Oct 2015 23:05:26 -0600 Subject: [PATCH 109/196] unifont_upper: init at 8.0.01 --- pkgs/data/fonts/unifont_upper/default.nix | 29 +++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 31 insertions(+) create mode 100644 pkgs/data/fonts/unifont_upper/default.nix diff --git a/pkgs/data/fonts/unifont_upper/default.nix b/pkgs/data/fonts/unifont_upper/default.nix new file mode 100644 index 00000000000..7dff5f82a6e --- /dev/null +++ b/pkgs/data/fonts/unifont_upper/default.nix @@ -0,0 +1,29 @@ +{ stdenv, fetchurl }: + +stdenv.mkDerivation rec { + name = "unifont_upper-${version}"; + version = "8.0.01"; + + ttf = fetchurl { + url = "http://unifoundry.com/pub/unifont-8.0.01/font-builds/${name}.ttf"; + sha256 = "0ffqm85bk345pnql1x0rbg0z31472y844xibb27njjg4avb21lga"; + }; + + phases = "installPhase"; + + installPhase = + '' + mkdir -p $out/share/fonts/truetype + cp -v ${ttf} $out/share/fonts/truetype/unifont_upper.ttf + ''; + + meta = with stdenv.lib; { + description = "Unicode font for glyphs above the Unicode Basic Multilingual Plane"; + homepage = http://unifoundry.com/unifont.html; + + # Basically GPL2+ with font exception. + license = http://unifoundry.com/LICENSE.txt; + maintainers = [ maintainers.mathnerd314 ]; + platforms = platforms.all; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 047abb16ecf..13c7a44bfa3 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10691,6 +10691,8 @@ let unifont = callPackage ../data/fonts/unifont { }; + unifont_upper = callPackage ../data/fonts/unifont_upper { }; + vistafonts = callPackage ../data/fonts/vista-fonts { }; wqy_microhei = callPackage ../data/fonts/wqy-microhei { }; From 346dcabe337223128252b273a014cc97fda985e4 Mon Sep 17 00:00:00 2001 From: Mathnerd314 Date: Sun, 18 Oct 2015 09:01:41 -0600 Subject: [PATCH 110/196] lohit-fonts: Update and split into individual font packages --- pkgs/data/fonts/lohit-fonts/default.nix | 76 ++++++++++++++++++------- pkgs/top-level/all-packages.nix | 6 +- 2 files changed, 61 insertions(+), 21 deletions(-) diff --git a/pkgs/data/fonts/lohit-fonts/default.nix b/pkgs/data/fonts/lohit-fonts/default.nix index 707d52c8baa..3642bf2eabc 100644 --- a/pkgs/data/fonts/lohit-fonts/default.nix +++ b/pkgs/data/fonts/lohit-fonts/default.nix @@ -1,22 +1,58 @@ -{ stdenv, fetchurl }: - -stdenv.mkDerivation { - name = "lohit-fonts-20140220"; - src = fetchurl { - url = https://fedorahosted.org/releases/l/o/lohit/lohit-ttf-20140220.tar.gz; - sha256 = "1rmgr445hw1n851ywy28csfvswz1i6hnc8mzp88qw2xk9j4dn32d"; +{ stdenv, fetchurl, lib }: +let + fonts = { + assamese = { version = "2.91.3" ; sha256 = "0kbdvi8f7vbvsain9zmnj9h43a6bmdkhk5c2wzg15100w7wf6lpq"; }; + bengali = { version = "2.91.3" ; sha256 = "1wdd2dkqaflf6nm5yc7llkfxin6g0zb2sbcd5g2xbrl0gwwcmkij"; }; + devanagari = { version = "2.95.2" ; sha256 = "1ss0j0pcfrg1vsypnm0042y4bn7b84mi6lbfsvr6rs89lb5swvn2"; }; + gujarati = { version = "2.92.2-and-4.2.2" ; sha256 = "1i27yjhn3x31a89x1hjs6rskdwp2kh0hibq1xiz3rgqil2m0jar6"; }; + gurmukhi = { version = "2.91.0" ; sha256 = "0z8a30mnyhlfvqhnggfk0369hqg779ihqyhcmpxj0sf9dmb1i0mj"; }; # renamed from Punjabi + kannada = { version = "2.5.3" ; sha256 = "1x9fb5z1bwmfi0y1fdnzizzjxhbxp272wxznx36063kjf25bb9pi"; }; + malayalam = { version = "2.92.0" ; sha256 = "1syv1irxh5xl0z0d5kwankhlmi7s2dg4wpp58nq0mkd3rhm5q8qw"; }; + marathi = { version = "2.94.0" ; sha256 = "0y9sca6gbfbafv52v0n2r1xfs8rg6zmqs4vp9sjfc1c6yqhzagl4"; }; + nepali = { version = "2.94.0" ; sha256 = "0c56141rpxc30581i3gisg8kfaadxhqjhgshni6g7a7rn6l4dx17"; }; + odia = { version = "2.91.0" ; sha256 = "15iz9kdf9k5m8wcn2iqlqjm758ac3hvnk93va6kac06frxnhw9lp"; }; # renamed from Oriya + tamil-classical = { version = "2.5.3" ; sha256 = "0ci4gk8qhhysjza69nncgmqmal8s4n8829icamvlzbmjdd4s2pij"; }; + tamil = { version = "2.91.1" ; sha256 = "1ir6kjl48apwk41xbpj0x458k108s7i61yzpkfhqcy1fkcr7cngj"; }; + telugu = { version = "2.5.4" ; sha256 = "06gdba7690y20l7nsi8fnnimim5hlq7hik0mpk2fzw4w39hjybk9"; }; }; - - installPhase = '' - mkdir -p $out/share/fonts/truetype - cp *.ttf $out/share/fonts/truetype - ''; - - meta = with stdenv.lib; { - homepage = https://fedorahosted.org/lohit/; - description = "Fonts for 21 Indian languages"; - license = licenses.ofl; - maintainers = [ maintainers.ttuegel ]; - platforms = platforms.all; + gplfonts = { + # GPL fonts removed from later releases + kashmiri = { version = "2.4.3" ; sha256 = "0ax8xzv4pz17jnsjdklawncsm2qn7176wbxykswygpzdd5lr0gg9"; }; + konkani = { version = "2.4.3" ; sha256 = "03zc27z26a60aaggrqx4d6l0jgggciq8p83v6vgg0k6l3apvcp45"; }; + maithili = { version = "2.4.3" ; sha256 = "0aqwnhq1namvvb77f2vssahixqf4xay7ja4q8qc312wxkajdqh4a"; }; + sindhi = { version = "2.4.3" ; sha256 = "00imfbn01yc2g5zdyydks9w3ndkawr66l9qk2idlvw3yz3sw2kf1"; }; }; -} + mkpkg = license: name: {version, sha256}: + stdenv.mkDerivation { + name = "lohit-${name}-${version}"; + + src = fetchurl { + url = "https://fedorahosted.org/releases/l/o/lohit/lohit-${name}-ttf-${version}.tar.gz"; + inherit sha256; + }; + + installPhase = '' + mkdir -p $out/share/fonts/truetype + cp -v *.ttf $out/share/fonts/truetype/ + + mkdir -p $out/etc/fonts/conf.d + cp -v *.conf $out/etc/fonts/conf.d + + mkdir -p "$out/share/doc/lohit-${name}" + cp -v ChangeLog* COPYRIGHT* "$out/share/doc/lohit-${name}/" + ''; + + meta = { + inherit license; + homepage = https://fedorahosted.org/lohit/; + maintainers = [ lib.maintainers.mathnerd314 lib.maintainers.ttuegel ]; + # Set a non-zero priority to allow easy overriding of the + # fontconfig configuration files. + priority = 5; + }; + }; + +in +# Technically, GPLv2 with usage exceptions +lib.mapAttrs (mkpkg lib.licenses.gpl2) gplfonts // +lib.mapAttrs (mkpkg lib.licenses.ofl) fonts diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 13c7a44bfa3..aa575fdd6e5 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10577,7 +10577,11 @@ let lobster-two = callPackage ../data/fonts/lobster-two {}; - lohit-fonts = callPackage ../data/fonts/lohit-fonts { }; + # lohit-fonts.assamese lohit-fonts.bengali lohit-fonts.devanagari lohit-fonts.gujarati lohit-fonts.gurmukhi + # lohit-fonts.kannada lohit-fonts.malayalam lohit-fonts.marathi lohit-fonts.nepali lohit-fonts.odia + # lohit-fonts.tamil-classical lohit-fonts.tamil lohit-fonts.telugu + # lohit-fonts.kashmiri lohit-fonts.konkani lohit-fonts.maithili lohit-fonts.sindhi + lohit-fonts = recurseIntoAttrs ( callPackages ../data/fonts/lohit-fonts { } ); manpages = callPackage ../data/documentation/man-pages { }; From 952f7fdb677445652e9ecfeed73c9700089b9789 Mon Sep 17 00:00:00 2001 From: Mathnerd314 Date: Sun, 18 Oct 2015 10:48:15 -0600 Subject: [PATCH 111/196] oldsindhi: init at 0.1 --- pkgs/data/fonts/oldsindhi/default.nix | 30 +++++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 32 insertions(+) create mode 100644 pkgs/data/fonts/oldsindhi/default.nix diff --git a/pkgs/data/fonts/oldsindhi/default.nix b/pkgs/data/fonts/oldsindhi/default.nix new file mode 100644 index 00000000000..411af37932a --- /dev/null +++ b/pkgs/data/fonts/oldsindhi/default.nix @@ -0,0 +1,30 @@ +{ stdenv, fetchurl, p7zip }: + +stdenv.mkDerivation rec { + name = "oldsindhi-${version}"; + version = "0.1"; + + src = fetchurl { + url = "https://github.com/MihailJP/oldsindhi/releases/download/0.1/OldSindhi-0.1.7z"; + sha256 = "1sbmxyxi81k88hkfw7gnnpgd5vy2vyj5y5428cd6nz4zlaclgq8z"; + }; + + buildInputs = [ p7zip ]; + + unpackCmd = "7z x $curSrc"; + + installPhase = '' + mkdir -p $out/share/fonts/truetype + mkdir -p $out/share/doc/${name} + cp -v *.ttf $out/share/fonts/truetype/ + cp -v README *.txt $out/share/doc/${name} + ''; + + meta = with stdenv.lib; { + homepage = https://github.com/MihailJP/oldsindhi; + description = "Free Sindhi Khudabadi font"; + maintainers = with maintainers; [ mathnerd314 ]; + license = licenses.bsd2; + platforms = platforms.all; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index aa575fdd6e5..31c75633994 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10608,6 +10608,8 @@ let oldstandard = callPackage ../data/fonts/oldstandard { }; + oldsindhi = callPackage ../data/fonts/oldsindhi { }; + open-dyslexic = callPackage ../data/fonts/open-dyslexic { }; opensans-ttf = callPackage ../data/fonts/opensans-ttf { }; From dcd2c88847cc5e9d136a47452f79a5a3d0ebf4e5 Mon Sep 17 00:00:00 2001 From: Mathnerd314 Date: Sun, 18 Oct 2015 12:01:48 -0600 Subject: [PATCH 112/196] sampradaya: init at 2015-05-26 --- pkgs/data/fonts/sampradaya/default.nix | 20 ++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 22 insertions(+) create mode 100644 pkgs/data/fonts/sampradaya/default.nix diff --git a/pkgs/data/fonts/sampradaya/default.nix b/pkgs/data/fonts/sampradaya/default.nix new file mode 100644 index 00000000000..57639d8e6ab --- /dev/null +++ b/pkgs/data/fonts/sampradaya/default.nix @@ -0,0 +1,20 @@ +{ lib, runCommand, fetchurl }: + +runCommand "sampradaya-2015-05-26" { + src = fetchurl { + url = "https://bitbucket.org/OorNaattaan/sampradaya/raw/afa9f7c6ab17e14bd7dd74d0acaec2f75454dfda/Sampradaya.ttf"; + sha256 = "0110k1yh5kz3f04wp72bfz59pxjc7p6jv7m5p0rqn1kqbf7g3pck"; + }; + + meta = with lib; { + homepage = https://bitbucket.org/OorNaattaan/sampradaya/; + description = "Unicode-compliant Grantha font"; + maintainers = with maintainers; [ mathnerd314 ]; + license = licenses.ofl; # See font metadata + platforms = platforms.all; + }; +} +'' + mkdir -p $out/share/fonts/truetype + cp $src $out/share/fonts/truetype/Sampradaya.ttf +'' diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 31c75633994..e66ae9e59b0 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10632,6 +10632,8 @@ let perl = perl516; # syntax error at troffprepro line 49, near "do subst(" }; + sampradaya = callPackage ../data/fonts/sampradaya { }; + shared_mime_info = callPackage ../data/misc/shared-mime-info { }; shared_desktop_ontologies = callPackage ../data/misc/shared-desktop-ontologies { }; From f15c5a66e70c2823ff2038da397b83818d27f7c4 Mon Sep 17 00:00:00 2001 From: Mathnerd314 Date: Sun, 18 Oct 2015 13:06:04 -0600 Subject: [PATCH 113/196] marathi-cursive: init at 1.2 --- pkgs/data/fonts/marathi-cursive/default.nix | 30 +++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 32 insertions(+) create mode 100644 pkgs/data/fonts/marathi-cursive/default.nix diff --git a/pkgs/data/fonts/marathi-cursive/default.nix b/pkgs/data/fonts/marathi-cursive/default.nix new file mode 100644 index 00000000000..e3f47cb8b0d --- /dev/null +++ b/pkgs/data/fonts/marathi-cursive/default.nix @@ -0,0 +1,30 @@ +{ stdenv, fetchurl, p7zip }: + +stdenv.mkDerivation rec { + name = "marathi-cursive-${version}"; + version = "1.2"; + + src = fetchurl { + url = "https://github.com/MihailJP/MarathiCursive/releases/download/${version}/MarathiCursive-${version}.7z"; + sha256 = "0zhqkkfkz5mhfz8xv305s16h80p9v1iva829fznxd2c44ngyplmc"; + }; + + buildInputs = [ p7zip ]; + + unpackCmd = "7z x $curSrc"; + + installPhase = '' + mkdir -p $out/share/fonts/marathi-cursive + cp -v *.otf *.ttf $out/share/fonts/marathi-cursive + mkdir -p $out/share/doc/${name} + cp -v README *.txt $out/share/doc/${name} + ''; + + meta = with stdenv.lib; { + homepage = https://github.com/MihailJP/marathi-cursive; + description = "Modi script font with Graphite and OpenType support"; + maintainers = with maintainers; [ mathnerd314 ]; + license = licenses.mit; # It's the M+ license, M+ is MIT(-ish) + platforms = platforms.all; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index e66ae9e59b0..8af7fdd5a20 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10583,6 +10583,8 @@ let # lohit-fonts.kashmiri lohit-fonts.konkani lohit-fonts.maithili lohit-fonts.sindhi lohit-fonts = recurseIntoAttrs ( callPackages ../data/fonts/lohit-fonts { } ); + marathi-cursive = callPackage ../data/fonts/marathi-cursive { }; + manpages = callPackage ../data/documentation/man-pages { }; meslo-lg = callPackage ../data/fonts/meslo-lg {}; From 1219fcf89ca7081f36070a103212f57c08124771 Mon Sep 17 00:00:00 2001 From: Mathnerd314 Date: Sun, 18 Oct 2015 13:35:09 -0600 Subject: [PATCH 114/196] tai-ahom: init at 2015-07-06 --- pkgs/data/fonts/tai-languages/default.nix | 25 +++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 27 insertions(+) create mode 100644 pkgs/data/fonts/tai-languages/default.nix diff --git a/pkgs/data/fonts/tai-languages/default.nix b/pkgs/data/fonts/tai-languages/default.nix new file mode 100644 index 00000000000..0b9a63f2cb3 --- /dev/null +++ b/pkgs/data/fonts/tai-languages/default.nix @@ -0,0 +1,25 @@ +{ lib, runCommand, fetchurl }: + +{ +tai-ahom = runCommand "tai-ahom-2015-07-06" { + src = fetchurl { + url = "https://github.com/enabling-languages/tai-languages/blob/b57a3ea4589af69bb8e87c6c4bb7cd367b52f0b7/ahom/.fonts/ttf/.original/AhomUnicode_FromMartin.ttf?raw=true"; + sha256 = "0zpjsylm29qc3jdv5kv0689pcirai46j7xjp5dppi0fmzxaxqnsk"; + }; + + meta = with lib; { + homepage = https://github.com/enabling-languages/tai-languages; + description = "Unicode-compliant Tai Ahom font"; + maintainers = with maintainers; [ mathnerd314 ]; + license = licenses.ofl; # See font metadata + platforms = platforms.all; + }; +} +'' + mkdir -p $out/share/fonts/truetype + cp $src $out/share/fonts/truetype/AhomUnicode.ttf +''; + +# TODO: package others (Khamti Shan, Tai Aiton, Tai Phake, and/or Assam Tai) + +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 8af7fdd5a20..328cf3adf00 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10677,6 +10677,8 @@ let source-han-sans-simplified-chinese = sourceHanSansPackages.simplified-chinese; source-han-sans-traditional-chinese = sourceHanSansPackages.traditional-chinese; + inherit (callPackages ../data/fonts/tai-languages { }) tai-ahom; + tango-icon-theme = callPackage ../data/icons/tango-icon-theme { }; themes = name: callPackage (../data/misc/themes + ("/" + name + ".nix")) {}; From a3d693f22bb97da541edd1865365b0cf500745cd Mon Sep 17 00:00:00 2001 From: Mathnerd314 Date: Sun, 18 Oct 2015 14:09:15 -0600 Subject: [PATCH 115/196] mro-unicode: init at 2013-05-25 --- pkgs/data/fonts/mro-unicode/default.nix | 20 ++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 22 insertions(+) create mode 100644 pkgs/data/fonts/mro-unicode/default.nix diff --git a/pkgs/data/fonts/mro-unicode/default.nix b/pkgs/data/fonts/mro-unicode/default.nix new file mode 100644 index 00000000000..493a26e5556 --- /dev/null +++ b/pkgs/data/fonts/mro-unicode/default.nix @@ -0,0 +1,20 @@ +{ lib, runCommand, fetchurl }: + +runCommand "mro-unicode-2013-05-25" { + src = fetchurl { + url = "https://github.com/phjamr/MroUnicode/raw/master/MroUnicode-Regular.ttf"; + sha256 = "1za74ych0sh97ks6qp9iqq9jankgnkrq65s350wsbianwi72di45"; + }; + + meta = with lib; { + homepage = https://github.com/phjamr/MroUnicode; + description = "Unicode-compliant Mro font"; + maintainers = with maintainers; [ mathnerd314 ]; + license = licenses.ofl; + platforms = platforms.all; + }; +} +'' + mkdir -p $out/share/fonts/truetype + cp $src $out/share/fonts/truetype/MroUnicode-Regular.ttf +'' diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 328cf3adf00..f7d194682c0 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10599,6 +10599,8 @@ let mplus-outline-fonts = callPackage ../data/fonts/mplus-outline-fonts { }; + mro-unicode = callPackage ../data/fonts/mro-unicode { }; + nafees = callPackage ../data/fonts/nafees { }; inherit (callPackages ../data/fonts/noto-fonts {}) From 1d24547aac177cd95f03254f94ca51f4c4b312c8 Mon Sep 17 00:00:00 2001 From: Mathnerd314 Date: Sun, 18 Oct 2015 15:21:39 -0600 Subject: [PATCH 116/196] signwriting: init at 1.1.4 --- pkgs/data/fonts/signwriting/default.nix | 28 +++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 30 insertions(+) create mode 100644 pkgs/data/fonts/signwriting/default.nix diff --git a/pkgs/data/fonts/signwriting/default.nix b/pkgs/data/fonts/signwriting/default.nix new file mode 100644 index 00000000000..147f4edc519 --- /dev/null +++ b/pkgs/data/fonts/signwriting/default.nix @@ -0,0 +1,28 @@ +{ lib, runCommand, fetchurl }: + +runCommand "signwriting-1.1.4" { + src1 = fetchurl { + url = "https://github.com/Slevinski/signwriting_2010_fonts/raw/61c8e7123a1168657b5d34d85266a637f67b9d2b/fonts/SignWriting%202010.ttf"; + name = "SignWriting_2010.ttf"; + sha256 = "1abjzykbjx2hal8mrxp51rvblv3q84akyn9qhjfaj20rwphkf5zj"; + }; + + src2 = fetchurl { + url = "https://github.com/Slevinski/signwriting_2010_fonts/raw/61c8e7123a1168657b5d34d85266a637f67b9d2b/fonts/SignWriting%202010%20Filling.ttf"; + name = "SignWriting_2010_Filling.ttf"; + sha256 = "0am5wbf7jdy9szxkbsc5f3959cxvbj7mr0hy1ziqmkz02c6xjw2m"; + }; + + meta = with lib; { + homepage = https://github.com/Slevinski/signwriting_2010_fonts; + description = "Typeface for written sign languages"; + maintainers = with maintainers; [ mathnerd314 ]; + license = licenses.ofl; + platforms = platforms.all; + }; +} +'' + mkdir -p $out/share/fonts/truetype + cp $src1 $out/share/fonts/truetype/SignWriting_2010.ttf + cp $src2 $out/share/fonts/truetype/SignWriting_2010_Filling.ttf +'' diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index f7d194682c0..64591429fe0 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10642,6 +10642,8 @@ let shared_desktop_ontologies = callPackage ../data/misc/shared-desktop-ontologies { }; + signwriting = callPackage ../data/fonts/signwriting { }; + stdmanpages = callPackage ../data/documentation/std-man-pages { }; stix-otf = callPackage ../data/fonts/stix-otf { }; From 33a32e47e87d80e13fd1ce979c33412f19d2b13a Mon Sep 17 00:00:00 2001 From: Mathnerd314 Date: Sun, 18 Oct 2015 20:41:20 -0600 Subject: [PATCH 117/196] akkadian: fix hash --- pkgs/data/fonts/gdouros/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/data/fonts/gdouros/default.nix b/pkgs/data/fonts/gdouros/default.nix index 562c74ee2c9..b297a020aae 100644 --- a/pkgs/data/fonts/gdouros/default.nix +++ b/pkgs/data/fonts/gdouros/default.nix @@ -9,7 +9,7 @@ let description = "Basic Latin, Greek, Cyrillic and many Symbol blocks of Unicode"; }; aegyptus = { version = "6.00"; file = "Aegyptus.zip"; sha256 = "092vci45wp9x0yky6dcfky4bs4avaxn6xpai3bs74gxskd2j9s3q"; description = "Egyptian Hieroglyphs, Coptic, Meroitic"; }; - akkadian = { version = "7.13"; file = "Akkadian.zip"; sha256 = "1xwlify1jdsjfgbpl48gcdv7m2apa9avsyxy17q2zg6lngx1ic8a"; + akkadian = { version = "7.13"; file = "Akkadian.zip"; sha256 = "1jd2fb6jnwpdwgkidsi2pnw0nk2cpya8k85299w591sqslfkxyij"; description = "Sumero-Akkadian Cuneiform"; }; anatolian = { version = "5.02"; file = "Anatolian.zip"; sha256 = "0arm58sijzk0bqmfb70k1sjvq79wgw16hx3j2g4l8qz4sv05bp8l"; description = "Anatolian Hieroglyphs"; }; From e0240a4b56e53eeda7b90bbbf052bd5f37a555b3 Mon Sep 17 00:00:00 2001 From: Mathnerd314 Date: Sun, 18 Oct 2015 20:47:37 -0600 Subject: [PATCH 118/196] unidings: fix hash --- pkgs/data/fonts/gdouros/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/data/fonts/gdouros/default.nix b/pkgs/data/fonts/gdouros/default.nix index b297a020aae..8ad6068a185 100644 --- a/pkgs/data/fonts/gdouros/default.nix +++ b/pkgs/data/fonts/gdouros/default.nix @@ -15,7 +15,7 @@ let description = "Anatolian Hieroglyphs"; }; maya = { version = "4.14"; file = "Maya.zip"; sha256 = "0l97racgncrhb96mfbsx8dr5n4j289iy0nnwhxf9b21ns58a9x4f"; description = "Maya Hieroglyphs"; }; - unidings = { version = "8.00"; file = "Unidings.zip"; sha256 = "0r5n5jgxcf71x4zfizf1jk9jffyr6waxym8dlmh82bcpjpkx0pl0"; + unidings = { version = "8.00"; file = "Unidings.zip"; sha256 = "1i0z3mhgj4680188lqpmk7rx3yiz4l7yybb4wq6zk35j75l28irm"; description = "Glyphs and Icons for blocks of The Unicode Standard"; }; musica = { version = "3.12"; file = "Musica.zip"; sha256 = "079vyb0mpxvlcf81d5pqh9dijkcvidfbcyvpbgjpmgzzrrj0q210"; description = "Musical Notation"; }; From 678c81b74df7e531e591c007d2d672e7f9f8c1f2 Mon Sep 17 00:00:00 2001 From: Robert Irelan Date: Sat, 17 Oct 2015 23:20:37 -0700 Subject: [PATCH 119/196] xorg.xf86-video-ast: 0.98.0 -> 1.1.5 (close #10451) Fix failure of 0.98.0 to compile with NixOS 15.09 (due to referencing a symbol `IOADDRESS` that has been removed from X.org drivers). --- pkgs/servers/x11/xorg/default.nix | 6 +++--- pkgs/servers/x11/xorg/tarballs-7.7.list | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/servers/x11/xorg/default.nix b/pkgs/servers/x11/xorg/default.nix index 778fe03a0c2..3a6bb552bbe 100644 --- a/pkgs/servers/x11/xorg/default.nix +++ b/pkgs/servers/x11/xorg/default.nix @@ -1518,11 +1518,11 @@ let }) // {inherit fontsproto libpciaccess xextproto xorgserver xproto ;}; xf86videoast = (mkDerivation "xf86videoast" { - name = "xf86-video-ast-0.98.0"; + name = "xf86-video-ast-1.1.5"; builder = ./builder.sh; src = fetchurl { - url = mirror://xorg/individual/driver/xf86-video-ast-0.98.0.tar.bz2; - sha256 = "188nv73w0p5xhfxz2dffli44yzyn1qhhq3qkwc8wva9dhg25n8lh"; + url = mirror://xorg/individual/driver/xf86-video-ast-1.1.5.tar.bz2; + sha256 = "1pm2cy81ma7ldsw0yfk28b33h9z2hcj5rccrxhfxfgvxsiavrnqy"; }; buildInputs = [pkgconfig fontsproto libpciaccess randrproto renderproto videoproto xextproto xorgserver xproto ]; }) // {inherit fontsproto libpciaccess randrproto renderproto videoproto xextproto xorgserver xproto ;}; diff --git a/pkgs/servers/x11/xorg/tarballs-7.7.list b/pkgs/servers/x11/xorg/tarballs-7.7.list index 67e125528c9..ef3414bd800 100644 --- a/pkgs/servers/x11/xorg/tarballs-7.7.list +++ b/pkgs/servers/x11/xorg/tarballs-7.7.list @@ -127,7 +127,7 @@ mirror://xorg/individual/driver/xf86-input-synaptics-1.8.2.tar.bz2 mirror://xorg/individual/driver/xf86-input-vmmouse-13.1.0.tar.bz2 mirror://xorg/individual/driver/xf86-input-void-1.4.1.tar.bz2 mirror://xorg/individual/driver/xf86-video-ark-0.7.5.tar.bz2 -mirror://xorg/individual/driver/xf86-video-ast-0.98.0.tar.bz2 +mirror://xorg/individual/driver/xf86-video-ast-1.1.5.tar.bz2 mirror://xorg/individual/driver/xf86-video-ati-7.5.0.tar.bz2 mirror://xorg/individual/driver/glamor-egl-0.6.0.tar.bz2 mirror://xorg/individual/driver/xf86-video-nouveau-1.0.11.tar.bz2 From 15f27723b3296a970e59d362cccc142791685c36 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Mon, 19 Oct 2015 09:20:13 +0200 Subject: [PATCH 120/196] xorg.xf86-input-libinput: update 0.12.0 -> 0.14.0 --- pkgs/servers/x11/xorg/default.nix | 6 +++--- pkgs/servers/x11/xorg/tarballs-7.7.list | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/servers/x11/xorg/default.nix b/pkgs/servers/x11/xorg/default.nix index 3a6bb552bbe..3c0e9195b74 100644 --- a/pkgs/servers/x11/xorg/default.nix +++ b/pkgs/servers/x11/xorg/default.nix @@ -1448,11 +1448,11 @@ let }) // {inherit inputproto xorgserver xproto ;}; xf86inputlibinput = (mkDerivation "xf86inputlibinput" { - name = "xf86-input-libinput-0.12.0"; + name = "xf86-input-libinput-0.14.0"; builder = ./builder.sh; src = fetchurl { - url = mirror://xorg/individual/driver/xf86-input-libinput-0.12.0.tar.bz2; - sha256 = "1mi6m1a32xc43na46amfqz0025952whiy3w4wz0wx0d34jf933yv"; + url = mirror://xorg/individual/driver/xf86-input-libinput-0.14.0.tar.bz2; + sha256 = "0r92fkpbnydhjgni35zqpkl8fm225rivn8qqkw6ymranlnc5gl78"; }; buildInputs = [pkgconfig inputproto xorgserver xproto ]; }) // {inherit inputproto xorgserver xproto ;}; diff --git a/pkgs/servers/x11/xorg/tarballs-7.7.list b/pkgs/servers/x11/xorg/tarballs-7.7.list index ef3414bd800..caa92fd72ff 100644 --- a/pkgs/servers/x11/xorg/tarballs-7.7.list +++ b/pkgs/servers/x11/xorg/tarballs-7.7.list @@ -121,7 +121,7 @@ mirror://xorg/X11R7.7/src/everything/xf86driproto-2.1.1.tar.bz2 mirror://xorg/individual/driver/xf86-input-evdev-2.9.2.tar.bz2 mirror://xorg/individual/driver/xf86-input-joystick-1.6.2.tar.bz2 mirror://xorg/individual/driver/xf86-input-keyboard-1.8.1.tar.bz2 -mirror://xorg/individual/driver/xf86-input-libinput-0.12.0.tar.bz2 +mirror://xorg/individual/driver/xf86-input-libinput-0.14.0.tar.bz2 mirror://xorg/individual/driver/xf86-input-mouse-1.9.1.tar.bz2 mirror://xorg/individual/driver/xf86-input-synaptics-1.8.2.tar.bz2 mirror://xorg/individual/driver/xf86-input-vmmouse-13.1.0.tar.bz2 From 801a843bdbca09b045583466bae882e5fdd27014 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Mon, 19 Oct 2015 09:35:07 +0200 Subject: [PATCH 121/196] xorg.xorg-server: use the generated expression ... to avoid future surprises. Also add libunwind to deps. I don't know why libxshmfence is no longer detected. --- pkgs/servers/x11/xorg/default.nix | 4 ++-- pkgs/servers/x11/xorg/overrides.nix | 2 +- pkgs/top-level/all-packages.nix | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/servers/x11/xorg/default.nix b/pkgs/servers/x11/xorg/default.nix index 3c0e9195b74..4e27504f0d2 100644 --- a/pkgs/servers/x11/xorg/default.nix +++ b/pkgs/servers/x11/xorg/default.nix @@ -2084,8 +2084,8 @@ let url = mirror://xorg/individual/xserver/xorg-server-1.17.2.tar.bz2; sha256 = "14vr4mm0x94a9bd3sfx9mdh8qhvk48zcml3i8q1wbwi84xhj04gn"; }; - buildInputs = [pkgconfig dri2proto dri3proto renderproto libdrm openssl libX11 libXau libXaw libxcb xcbutil xcbutilwm xcbutilimage xcbutilkeysyms libXdmcp libXfixes libxkbfile libXmu libXpm libXrender libXres libxshmfence libXt xcbutilrenderutil]; - }) // {inherit dri2proto dri3proto renderproto libdrm openssl libX11 libXau libXaw libxcb xcbutil xcbutilwm xcbutilimage xcbutilkeysyms libXdmcp libXfixes libxkbfile libXmu libXpm libXrender libXres libxshmfence libXt xcbutilrenderutil;}; + buildInputs = [pkgconfig dri2proto dri3proto renderproto libdrm openssl libX11 libXau libXaw libxcb xcbutil xcbutilwm xcbutilimage xcbutilkeysyms xcbutilrenderutil libXdmcp libXfixes libxkbfile libXmu libXpm libXrender libXres libXt ]; + }) // {inherit dri2proto dri3proto renderproto libdrm openssl libX11 libXau libXaw libxcb xcbutil xcbutilwm xcbutilimage xcbutilkeysyms xcbutilrenderutil libXdmcp libXfixes libxkbfile libXmu libXpm libXrender libXres libXt ;}; xorgsgmldoctools = (mkDerivation "xorgsgmldoctools" { name = "xorg-sgml-doctools-1.11"; diff --git a/pkgs/servers/x11/xorg/overrides.nix b/pkgs/servers/x11/xorg/overrides.nix index a7e5b43689a..2a93dde1304 100644 --- a/pkgs/servers/x11/xorg/overrides.nix +++ b/pkgs/servers/x11/xorg/overrides.nix @@ -281,7 +281,7 @@ in compositeproto scrnsaverproto resourceproto xf86dgaproto dmxproto /*libdmx not used*/ xf86vidmodeproto - recordproto libXext pixman libXfont + recordproto libXext pixman libXfont libxshmfence args.libunwind damageproto xcmiscproto bigreqsproto inputproto xextproto randrproto renderproto presentproto dri2proto dri3proto kbproto xineramaproto resourceproto scrnsaverproto videoproto diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index ebcfb57952d..e2b6d85abfa 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -9392,7 +9392,7 @@ let xorg = recurseIntoAttrs (lib.callPackagesWith pkgs ../servers/x11/xorg/default.nix { inherit clangStdenv fetchurl fetchgit fetchpatch stdenv pkgconfig intltool freetype fontconfig - libxslt expat libpng zlib perl mesa_drivers spice_protocol + libxslt expat libpng zlib perl mesa_drivers spice_protocol libunwind dbus libuuid openssl gperf m4 libevdev tradcpp libinput mcpp makeWrapper autoreconfHook autoconf automake libtool xmlto asciidoc flex bison python mtdev pixman; inherit (darwin) apple_sdk; From ff9467365987b0e6e4c7e073eb905075630aa9a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Mon, 19 Oct 2015 09:39:32 +0200 Subject: [PATCH 122/196] xorg.xf86-video-sis: minor update 0.10.7 -> 0.10.8 --- pkgs/servers/x11/xorg/default.nix | 6 +++--- pkgs/servers/x11/xorg/tarballs-7.7.list | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/servers/x11/xorg/default.nix b/pkgs/servers/x11/xorg/default.nix index 4e27504f0d2..51349262c4e 100644 --- a/pkgs/servers/x11/xorg/default.nix +++ b/pkgs/servers/x11/xorg/default.nix @@ -1748,11 +1748,11 @@ let }) // {inherit fontsproto libpciaccess videoproto xextproto xorgserver xproto ;}; xf86videosis = (mkDerivation "xf86videosis" { - name = "xf86-video-sis-0.10.7"; + name = "xf86-video-sis-0.10.8"; builder = ./builder.sh; src = fetchurl { - url = mirror://xorg/individual/driver/xf86-video-sis-0.10.7.tar.bz2; - sha256 = "1l0w84x39gq4y9j81dny9r6rma1xkqvxpsavpkd8h7h8panbcbmy"; + url = mirror://xorg/individual/driver/xf86-video-sis-0.10.8.tar.bz2; + sha256 = "1znkqwdyd6am23xbsfjzamq125j5rrylg5mzqky4scv9gxbz5wy8"; }; buildInputs = [pkgconfig fontsproto libdrm libpciaccess randrproto renderproto videoproto xextproto xf86dgaproto xf86driproto xineramaproto xorgserver xproto ]; }) // {inherit fontsproto libdrm libpciaccess randrproto renderproto videoproto xextproto xf86dgaproto xf86driproto xineramaproto xorgserver xproto ;}; diff --git a/pkgs/servers/x11/xorg/tarballs-7.7.list b/pkgs/servers/x11/xorg/tarballs-7.7.list index caa92fd72ff..2b00b26c032 100644 --- a/pkgs/servers/x11/xorg/tarballs-7.7.list +++ b/pkgs/servers/x11/xorg/tarballs-7.7.list @@ -151,7 +151,7 @@ mirror://xorg/individual/driver/xf86-video-openchrome-0.3.3.tar.bz2 mirror://xorg/individual/driver/xf86-video-r128-6.10.0.tar.bz2 mirror://xorg/individual/driver/xf86-video-savage-2.3.8.tar.bz2 mirror://xorg/individual/driver/xf86-video-siliconmotion-1.7.8.tar.bz2 -mirror://xorg/individual/driver/xf86-video-sis-0.10.7.tar.bz2 +mirror://xorg/individual/driver/xf86-video-sis-0.10.8.tar.bz2 mirror://xorg/individual/driver/xf86-video-suncg6-1.1.2.tar.bz2 mirror://xorg/individual/driver/xf86-video-sunffb-1.2.2.tar.bz2 mirror://xorg/individual/driver/xf86-video-tdfx-1.4.6.tar.bz2 From b6059b2c6a4fbecbdadbe67aa4ac424e112ba4f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Mon, 19 Oct 2015 10:06:48 +0200 Subject: [PATCH 123/196] xorg: add three missing video drivers - chips, s3virge, xgi Only building was tested. --- pkgs/servers/x11/xorg/default.nix | 30 +++++++++++++++++++++++++ pkgs/servers/x11/xorg/tarballs-7.7.list | 3 +++ 2 files changed, 33 insertions(+) diff --git a/pkgs/servers/x11/xorg/default.nix b/pkgs/servers/x11/xorg/default.nix index 51349262c4e..d834482b683 100644 --- a/pkgs/servers/x11/xorg/default.nix +++ b/pkgs/servers/x11/xorg/default.nix @@ -1537,6 +1537,16 @@ let buildInputs = [pkgconfig fontsproto glamoregl libdrm udev libpciaccess randrproto renderproto videoproto xextproto xf86driproto xorgserver xproto ]; }) // {inherit fontsproto glamoregl libdrm udev libpciaccess randrproto renderproto videoproto xextproto xf86driproto xorgserver xproto ;}; + xf86videochips = (mkDerivation "xf86videochips" { + name = "xf86-video-chips-1.2.6"; + builder = ./builder.sh; + src = fetchurl { + url = mirror://xorg/individual/driver/xf86-video-chips-1.2.6.tar.bz2; + sha256 = "073bcdsvvsg19mb963sa5v7x2zs19y0q6javmgpiwfaqkz7zbblr"; + }; + buildInputs = [pkgconfig fontsproto libpciaccess randrproto renderproto videoproto xextproto xorgserver xproto ]; + }) // {inherit fontsproto libpciaccess randrproto renderproto videoproto xextproto xorgserver xproto ;}; + xf86videocirrus = (mkDerivation "xf86videocirrus" { name = "xf86-video-cirrus-1.5.3"; builder = ./builder.sh; @@ -1727,6 +1737,16 @@ let buildInputs = [pkgconfig fontsproto libdrm libpciaccess randrproto renderproto videoproto xextproto xf86driproto xf86miscproto xorgserver xproto ]; }) // {inherit fontsproto libdrm libpciaccess randrproto renderproto videoproto xextproto xf86driproto xf86miscproto xorgserver xproto ;}; + xf86videos3virge = (mkDerivation "xf86videos3virge" { + name = "xf86-video-s3virge-1.10.7"; + builder = ./builder.sh; + src = fetchurl { + url = mirror://xorg/individual/driver/xf86-video-s3virge-1.10.7.tar.bz2; + sha256 = "1nm4cngjbw226q63rdacw6nx5lgxv7l7rsa8vhpr0gs80pg6igjx"; + }; + buildInputs = [pkgconfig fontsproto libpciaccess randrproto renderproto videoproto xextproto xorgserver xproto ]; + }) // {inherit fontsproto libpciaccess randrproto renderproto videoproto xextproto xorgserver xproto ;}; + xf86videosavage = (mkDerivation "xf86videosavage" { name = "xf86-video-savage-2.3.8"; builder = ./builder.sh; @@ -1857,6 +1877,16 @@ let buildInputs = [pkgconfig xorgserver xproto ]; }) // {inherit xorgserver xproto ;}; + xf86videoxgi = (mkDerivation "xf86videoxgi" { + name = "xf86-video-xgi-1.6.1"; + builder = ./builder.sh; + src = fetchurl { + url = mirror://xorg/individual/driver/xf86-video-xgi-1.6.1.tar.bz2; + sha256 = "10xd2vah0pnpw5spn40n4p95mpmgvdkly4i1cz51imnlfsw7g8si"; + }; + buildInputs = [pkgconfig fontsproto glproto libdrm libpciaccess randrproto renderproto videoproto xextproto xf86driproto xineramaproto xorgserver xproto ]; + }) // {inherit fontsproto glproto libdrm libpciaccess randrproto renderproto videoproto xextproto xf86driproto xineramaproto xorgserver xproto ;}; + xf86vidmodeproto = (mkDerivation "xf86vidmodeproto" { name = "xf86vidmodeproto-2.3.1"; builder = ./builder.sh; diff --git a/pkgs/servers/x11/xorg/tarballs-7.7.list b/pkgs/servers/x11/xorg/tarballs-7.7.list index 2b00b26c032..7292c671144 100644 --- a/pkgs/servers/x11/xorg/tarballs-7.7.list +++ b/pkgs/servers/x11/xorg/tarballs-7.7.list @@ -131,6 +131,7 @@ mirror://xorg/individual/driver/xf86-video-ast-1.1.5.tar.bz2 mirror://xorg/individual/driver/xf86-video-ati-7.5.0.tar.bz2 mirror://xorg/individual/driver/glamor-egl-0.6.0.tar.bz2 mirror://xorg/individual/driver/xf86-video-nouveau-1.0.11.tar.bz2 +mirror://xorg/individual/driver/xf86-video-chips-1.2.6.tar.bz2 mirror://xorg/individual/driver/xf86-video-cirrus-1.5.3.tar.bz2 mirror://xorg/individual/driver/xf86-video-dummy-0.3.7.tar.bz2 mirror://xorg/individual/driver/xf86-video-fbdev-0.4.4.tar.bz2 @@ -149,6 +150,7 @@ mirror://xorg/X11R7.7/src/everything/xf86-video-newport-0.2.4.tar.bz2 mirror://xorg/individual/driver/xf86-video-nv-2.1.20.tar.bz2 mirror://xorg/individual/driver/xf86-video-openchrome-0.3.3.tar.bz2 mirror://xorg/individual/driver/xf86-video-r128-6.10.0.tar.bz2 +mirror://xorg/individual/driver/xf86-video-s3virge-1.10.7.tar.bz2 mirror://xorg/individual/driver/xf86-video-savage-2.3.8.tar.bz2 mirror://xorg/individual/driver/xf86-video-siliconmotion-1.7.8.tar.bz2 mirror://xorg/individual/driver/xf86-video-sis-0.10.8.tar.bz2 @@ -163,6 +165,7 @@ mirror://xorg/individual/driver/xf86-video-vmware-13.1.0.tar.bz2 mirror://xorg/individual/driver/xf86-video-voodoo-1.2.5.tar.bz2 mirror://xorg/X11R7.7/src/everything/xf86-video-wsfb-0.4.0.tar.bz2 mirror://xorg/X11R7.7/src/everything/xf86vidmodeproto-2.3.1.tar.bz2 +mirror://xorg/individual/driver/xf86-video-xgi-1.6.1.tar.bz2 mirror://xorg/individual/app/xgamma-1.0.6.tar.bz2 mirror://xorg/individual/app/xgc-1.0.5.tar.bz2 mirror://xorg/individual/app/xhost-1.0.7.tar.bz2 From 2755d2b241077f5a3f68db128c699d00c91d8452 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Mon, 19 Oct 2015 10:08:16 +0200 Subject: [PATCH 124/196] xorg: adjust generator to work with other archive types In the end I didn't utilize it, but it shouldn't hurt. --- pkgs/servers/x11/xorg/generate-expr-from-tarballs.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/x11/xorg/generate-expr-from-tarballs.pl b/pkgs/servers/x11/xorg/generate-expr-from-tarballs.pl index 1e0ce6d6167..6665a3bc00a 100755 --- a/pkgs/servers/x11/xorg/generate-expr-from-tarballs.pl +++ b/pkgs/servers/x11/xorg/generate-expr-from-tarballs.pl @@ -61,7 +61,7 @@ while (<>) { #next unless $pkg eq "xcbutil"; } - $tarball =~ /\/([^\/]*)\.tar\.bz2$/; + $tarball =~ /\/([^\/]*)\.tar\.(bz2|gz|xz)$/; my $pkgName = $1; print " $pkg $pkgName\n"; @@ -82,7 +82,7 @@ while (<>) { print "\nunpacking $path\n"; system "rm -rf '$tmpDir'"; mkdir $tmpDir, 0700; - system "cd '$tmpDir' && tar xfj '$path'"; + system "cd '$tmpDir' && tar xf '$path'"; die "cannot unpack `$path'" if $? != 0; print "\n"; From b2dfeb3e9a1e16e5e5084d4f92c5e16cee78abdd Mon Sep 17 00:00:00 2001 From: Lancelot SIX Date: Mon, 19 Oct 2015 09:29:15 +0000 Subject: [PATCH 125/196] gnuchess: 6.2.1 -> 6.2.2 See http://lists.gnu.org/archive/html/info-gnu/2015-10/msg00005.html --- pkgs/games/gnuchess/default.nix | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/pkgs/games/gnuchess/default.nix b/pkgs/games/gnuchess/default.nix index 99ca90f5e2f..b3b56c03fa3 100644 --- a/pkgs/games/gnuchess/default.nix +++ b/pkgs/games/gnuchess/default.nix @@ -3,11 +3,10 @@ let s = # Generated upstream information rec { baseName="gnuchess"; - version="6.2.1"; + version="6.2.2"; name="${baseName}-${version}"; - hash="01pdmsxvgzi4fmvsclvy123z5js2aa81fjx12z5pni1ramrapjhp"; - url="http://ftp.gnu.org/gnu/chess/gnuchess-6.2.1.tar.gz"; - sha256="01pdmsxvgzi4fmvsclvy123z5js2aa81fjx12z5pni1ramrapjhp"; + url="mirror://gnu/chess/${name}.tar.gz"; + sha256="1a41ag03q66pwy3pjrmbxxjpzi9fcaiiaiywd7m9v25mxqac2xkp"; }; buildInputs = [ flex From 4f3a99d21d5617dc0b028d0ad4f248305208d032 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Mon, 19 Oct 2015 13:29:34 +0300 Subject: [PATCH 126/196] pam_pgsql: init at 0.7.3.2 --- pkgs/os-specific/linux/pam_pgsql/default.nix | 24 ++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 26 insertions(+) create mode 100644 pkgs/os-specific/linux/pam_pgsql/default.nix diff --git a/pkgs/os-specific/linux/pam_pgsql/default.nix b/pkgs/os-specific/linux/pam_pgsql/default.nix new file mode 100644 index 00000000000..8e34028e078 --- /dev/null +++ b/pkgs/os-specific/linux/pam_pgsql/default.nix @@ -0,0 +1,24 @@ +{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, postgresql, libgcrypt, pam }: + +stdenv.mkDerivation rec { + version = "0.7.3.2"; + name = "pam_pgsql-${version}"; + + src = fetchFromGitHub { + owner = "pam-pgsql"; + repo = "pam-pgsql"; + rev = "release-${version}"; + sha256 = "1a68krq5m07zspdxwl1wmkr5j98zr9bdg4776kvplrsdcg97h4jk"; + }; + + nativeBuildInputs = [ autoreconfHook pkgconfig ]; + buildInputs = [ libgcrypt pam postgresql ]; + + meta = with stdenv.lib; { + description = "Support to authenticate against PostgreSQL for PAM-enabled appliations"; + homepage = https://github.com/pam-pgsql/pam-pgsql; + license = licenses.gpl2Plus; + platforms = platforms.linux; + maintainers = with maintainers; [ abbradar ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index e2b6d85abfa..1773bd88d7e 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10120,6 +10120,8 @@ let pam_mount = callPackage ../os-specific/linux/pam_mount { }; + pam_pgsql = callPackage ../os-specific/linux/pam_pgsql { }; + pam_ssh_agent_auth = callPackage ../os-specific/linux/pam_ssh_agent_auth { }; pam_u2f = callPackage ../os-specific/linux/pam_u2f { }; From 15c964bf2e85492291e873526d1ba2926be5b358 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Mon, 19 Oct 2015 02:21:20 +0200 Subject: [PATCH 127/196] netsniff-ng 0.5.9-{106-g895377c -> 110-gfc4646b} --- pkgs/tools/networking/netsniff-ng/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/networking/netsniff-ng/default.nix b/pkgs/tools/networking/netsniff-ng/default.nix index 27175c9ed23..a798cac2e2e 100644 --- a/pkgs/tools/networking/netsniff-ng/default.nix +++ b/pkgs/tools/networking/netsniff-ng/default.nix @@ -2,7 +2,7 @@ , libnetfilter_conntrack, libnl, libpcap, libsodium, liburcu, ncurses, perl , pkgconfig, zlib }: -let version = "0.5.9-106-g895377c"; in +let version = "0.5.9-110-gfc4646b"; in stdenv.mkDerivation { name = "netsniff-ng-${version}"; @@ -10,8 +10,8 @@ stdenv.mkDerivation { src = fetchFromGitHub rec { repo = "netsniff-ng"; owner = repo; - rev = "895377c6e96ec8ac853568eb275043741a7621cd"; - sha256 = "092jzakldpqram26dccd5k5hv4jc396c3l7iaf9r3139dx83plag"; + rev = "fc4646bc31e37c3e48d772fe11035f82277ece24"; + sha256 = "0f56fw3rf9s9hknmlavs0ihcvgjzr7criwgaw3j077g8wgnmzsxg"; }; buildInputs = [ bison flex geoip geolite-legacy libcli libnet libnl From e07faf00f0f17b6f6d05c543a5aa3d9fc0f3eb3a Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Mon, 19 Oct 2015 03:05:25 +0200 Subject: [PATCH 128/196] cassandra 2.1.10 -> 2.1.11 --- pkgs/servers/nosql/cassandra/2.1.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/nosql/cassandra/2.1.nix b/pkgs/servers/nosql/cassandra/2.1.nix index fe580189583..8a2100cdac6 100644 --- a/pkgs/servers/nosql/cassandra/2.1.nix +++ b/pkgs/servers/nosql/cassandra/2.1.nix @@ -11,8 +11,8 @@ let - version = "2.1.10"; - sha256 = "0cpb16206dkpiza8cp0adsv87sw0crglm9b4dbz2cka1mmqvs28h"; + version = "2.1.11"; + sha256 = "1jiikznjhyyh23xw02amzccr15c8wmz94yxah9qxagbfg9wn7j2j"; in From a6626bef1aea76f05ac3cec1d4966f4a26de9ed1 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Mon, 19 Oct 2015 19:03:04 +0200 Subject: [PATCH 129/196] geolite-legacy 2015-10-13 -> 2015-10-19 --- pkgs/data/misc/geolite-legacy/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/data/misc/geolite-legacy/default.nix b/pkgs/data/misc/geolite-legacy/default.nix index fa704aef097..391cbc01c87 100644 --- a/pkgs/data/misc/geolite-legacy/default.nix +++ b/pkgs/data/misc/geolite-legacy/default.nix @@ -8,7 +8,7 @@ let # Annoyingly, these files are updated without a change in URL. This means that # builds will start failing every month or so, until the hashes are updated. - version = "2015-10-13"; + version = "2015-10-19"; in stdenv.mkDerivation { name = "geolite-legacy-${version}"; @@ -27,10 +27,10 @@ stdenv.mkDerivation { "0jdgfcy90mk7q25rhb8ymnddkskmp2cmyzmbjr3ij0zvbbpzxl4i"; srcGeoIPASNum = fetchDB "asnum/GeoIPASNum.dat.gz" "GeoIPASNum.dat.gz" - "0j73lw2i6nnx1mgp1hspfa95zca5h0hqj12g16rln7pss868wnwi"; + "1qz3hw4n3rs1c94iixshp0sq2rppk8aklp3al9r136kjp4cswbzc"; srcGeoIPASNumv6 = fetchDB "asnum/GeoIPASNumv6.dat.gz" "GeoIPASNumv6.dat.gz" - "1id4rkxp5pppr274y276w2zmx44dn0h44d4ax780g8cbhlc9n2br"; + "1rmagwjnwsz75nscy7zsha6v4gd3lpqk3p8jy448d4g6l3w3ww1s"; meta = with stdenv.lib; { inherit version; From de9e05153d2c64886246b140e68de8b70b5b7b10 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hajo=20M=C3=B6ller?= Date: Mon, 19 Oct 2015 19:05:23 +0200 Subject: [PATCH 130/196] service.asterisk: fix dir creation --- nixos/modules/services/networking/asterisk.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nixos/modules/services/networking/asterisk.nix b/nixos/modules/services/networking/asterisk.nix index b079cb22730..13617a1b6c5 100644 --- a/nixos/modules/services/networking/asterisk.nix +++ b/nixos/modules/services/networking/asterisk.nix @@ -201,6 +201,7 @@ in for d in '${varlibdir}' '${spooldir}' '${logdir}'; do # TODO: Make exceptions for /var directories that likely should be updated if [ ! -e "$d" ]; then + mkdir -p "$d" cp --recursive ${pkgs.asterisk}/"$d" "$d" chown --recursive ${asteriskUser} "$d" find "$d" -type d | xargs chmod 0755 From 0baef5b8064809737ee1fd19a428eff5965fa2f0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hajo=20M=C3=B6ller?= Date: Mon, 19 Oct 2015 19:05:41 +0200 Subject: [PATCH 131/196] asterisk: 13.3.2 -> 13.6.0 --- pkgs/servers/asterisk/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/asterisk/default.nix b/pkgs/servers/asterisk/default.nix index c37292d385f..d9bb0fd70eb 100644 --- a/pkgs/servers/asterisk/default.nix +++ b/pkgs/servers/asterisk/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "asterisk-${version}"; - version = "13.3.2"; + version = "13.6.0"; src = fetchurl { url = "http://downloads.asterisk.org/pub/telephony/asterisk/asterisk-${version}.tar.gz"; - sha256 = "19dafvy6ch4v8949bjim64fff456k78156m30dy2yvhm94m5k1zz"; + sha256 = "0nh0fnqx84as92kk9d73s0386cndd17l06y1c72jl2bdjhyba0ca"; }; # Note that these sounds are included with the release tarball. They are From 484b4250ae3aa2a51e21123ef1b5f9fc3f673f0d Mon Sep 17 00:00:00 2001 From: Jude Taylor Date: Mon, 19 Oct 2015 10:12:01 -0700 Subject: [PATCH 132/196] disable gdk-pixbuf test build on darwin --- pkgs/development/libraries/gdk-pixbuf/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/libraries/gdk-pixbuf/default.nix b/pkgs/development/libraries/gdk-pixbuf/default.nix index 754fddd101a..ef0baeabeed 100644 --- a/pkgs/development/libraries/gdk-pixbuf/default.nix +++ b/pkgs/development/libraries/gdk-pixbuf/default.nix @@ -22,6 +22,11 @@ stdenv.mkDerivation rec { propagatedBuildInputs = [ glib libtiff libjpeg libpng jasper ]; + # on darwin, tests don't link + preBuild = stdenv.lib.optionalString (stdenv.isDarwin && !doCheck) '' + substituteInPlace Makefile --replace "docs tests" "docs" + ''; + configureFlags = "--with-libjasper --with-x11" + stdenv.lib.optionalString (gobjectIntrospection != null) " --enable-introspection=yes" ; From aedd0386ccee2c4079997321a5a2d5e4b330e827 Mon Sep 17 00:00:00 2001 From: Robert Helgesson Date: Mon, 19 Oct 2015 19:54:07 +0200 Subject: [PATCH 133/196] perl-TextCSVEncoded: init at 0.24 --- pkgs/top-level/perl-packages.nix | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index c3865223554..4bf1efef244 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -11427,6 +11427,20 @@ let self = _self // overrides; _self = with self; { }; }; + TextCSVEncoded = buildPerlPackage rec { + name = "Text-CSV-Encoded-0.24"; + src = fetchurl { + url = "mirror://cpan/authors/id/Z/ZA/ZARQUON/${name}.tar.gz"; + sha256 = "ce8f307dabdcb623cfc385c175152b0f465096d449b9c828efbe6611efcab0d5"; + }; + propagatedBuildInputs = [ TextCSV ]; + meta = { + description = "Encoding aware Text::CSV"; + license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; + maintainers = [ maintainers.rycee ]; + }; + }; + TextCSV_XS = buildPerlPackage { name = "Text-CSV_XS-1.19.tgz"; src = fetchurl { From a60b53088d3f4304b66b38f67410b412cb5b3c4e Mon Sep 17 00:00:00 2001 From: Perry Barnoy Date: Mon, 19 Oct 2015 13:55:46 -0400 Subject: [PATCH 134/196] Added the xfce4-whiskermenu-plugin --- pkgs/desktops/xfce/default.nix | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/pkgs/desktops/xfce/default.nix b/pkgs/desktops/xfce/default.nix index 5fdab2ab81e..2f563dbbf5c 100644 --- a/pkgs/desktops/xfce/default.nix +++ b/pkgs/desktops/xfce/default.nix @@ -68,24 +68,24 @@ xfce_self = rec { # the lines are very long but it seems better than the even-od #### PANEL PLUGINS from "mirror://xfce/src/panel-plugins/${p_name}/${ver_maj}/${name}.tar.{bz2,gz}" - xfce4_battery_plugin = callPackage ./panel-plugins/xfce4-battery-plugin.nix { }; - xfce4_clipman_plugin = callPackage ./panel-plugins/xfce4-clipman-plugin.nix { }; - xfce4_cpufreq_plugin = callPackage ./panel-plugins/xfce4-cpufreq-plugin.nix { }; - xfce4_cpugraph_plugin = callPackage ./panel-plugins/xfce4-cpugraph-plugin.nix { }; - xfce4_datetime_plugin = callPackage ./panel-plugins/xfce4-datetime-plugin.nix { }; - xfce4_dict_plugin = callPackage ./panel-plugins/xfce4-dict-plugin.nix { }; - xfce4_embed_plugin = callPackage ./panel-plugins/xfce4-embed-plugin.nix { }; - xfce4_eyes_plugin = callPackage ./panel-plugins/xfce4-eyes-plugin.nix { }; - xfce4_fsguard_plugin = callPackage ./panel-plugins/xfce4-fsguard-plugin.nix { }; - xfce4_genmon_plugin = callPackage ./panel-plugins/xfce4-genmon-plugin.nix { }; - - xfce4_netload_plugin = callPackage ./panel-plugins/xfce4-netload-plugin.nix { }; - xfce4_notes_plugin = callPackage ./panel-plugins/xfce4-notes-plugin.nix { }; - xfce4_systemload_plugin = callPackage ./panel-plugins/xfce4-systemload-plugin.nix { }; - xfce4_verve_plugin = callPackage ./panel-plugins/xfce4-verve-plugin.nix { }; - xfce4_xkb_plugin = callPackage ./panel-plugins/xfce4-xkb-plugin.nix { }; + xfce4_battery_plugin = callPackage ./panel-plugins/xfce4-battery-plugin.nix { }; + xfce4_clipman_plugin = callPackage ./panel-plugins/xfce4-clipman-plugin.nix { }; + xfce4_cpufreq_plugin = callPackage ./panel-plugins/xfce4-cpufreq-plugin.nix { }; + xfce4_cpugraph_plugin = callPackage ./panel-plugins/xfce4-cpugraph-plugin.nix { }; + xfce4_datetime_plugin = callPackage ./panel-plugins/xfce4-datetime-plugin.nix { }; + xfce4_dict_plugin = callPackage ./panel-plugins/xfce4-dict-plugin.nix { }; + xfce4_embed_plugin = callPackage ./panel-plugins/xfce4-embed-plugin.nix { }; + xfce4_eyes_plugin = callPackage ./panel-plugins/xfce4-eyes-plugin.nix { }; + xfce4_fsguard_plugin = callPackage ./panel-plugins/xfce4-fsguard-plugin.nix { }; + xfce4_genmon_plugin = callPackage ./panel-plugins/xfce4-genmon-plugin.nix { }; + xfce4_netload_plugin = callPackage ./panel-plugins/xfce4-netload-plugin.nix { }; + xfce4_notes_plugin = callPackage ./panel-plugins/xfce4-notes-plugin.nix { }; + xfce4_systemload_plugin = callPackage ./panel-plugins/xfce4-systemload-plugin.nix { }; + xfce4_verve_plugin = callPackage ./panel-plugins/xfce4-verve-plugin.nix { }; + xfce4_xkb_plugin = callPackage ./panel-plugins/xfce4-xkb-plugin.nix { }; + xfce4_whiskermenu_plugin = callPackage ./panel-plugins/xfce4-whiskermenu-plugin.nix { }; }; # xfce_self From 3d1797160fa67aa9ecbb9f0cb0c3ee5c96f7ac0d Mon Sep 17 00:00:00 2001 From: Perry Barnoy Date: Mon, 19 Oct 2015 13:58:13 -0400 Subject: [PATCH 135/196] Created the xfce4-whiskermenu-plugin expression. --- .../xfce4-whiskermenu-plugin.nix | 29 +++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 pkgs/desktops/xfce/panel-plugins/xfce4-whiskermenu-plugin.nix diff --git a/pkgs/desktops/xfce/panel-plugins/xfce4-whiskermenu-plugin.nix b/pkgs/desktops/xfce/panel-plugins/xfce4-whiskermenu-plugin.nix new file mode 100644 index 00000000000..420eb128a42 --- /dev/null +++ b/pkgs/desktops/xfce/panel-plugins/xfce4-whiskermenu-plugin.nix @@ -0,0 +1,29 @@ +{ stdenv, fetchFromGitHub, cmake, pkgconfig, intltool, libxfce4util, libxfcegui4 +, xfce4panel, gtk, exo, garcon }: + +with stdenv.lib; +stdenv.mkDerivation rec { + p_name = "xfce4-whiskermenu-plugin"; + ver_maj = "1.5"; + ver_min = "1"; + rev = "18c31a357c102ab38e98ac24c154f9e6187b3ef8"; + + name = "${p_name}-${ver_maj}.${ver_min}"; + + src = fetchFromGitHub { + owner = "gottcode"; + repo = "xfce4-whiskermenu-plugin"; + inherit rev; + sha256 = "442e887877ffc347378c23ded2466ebbfc7aacb6b91fc395b12071320616eb76"; + }; + + buildInputs = [ cmake pkgconfig intltool libxfce4util libxfcegui4 xfce4panel + gtk exo garcon ]; + + meta = { + homepage = "http://goodies.xfce.org/projects/panel-plugins/${p_name}"; + description = "Whisker Menu is an alternate application launcher for Xfce."; + platforms = platforms.linux; + maintainers = [ maintainers.pjbarnoy ]; + }; +} From abb7dad93ad3a2e2531cc6466b629d5e1cfb6cec Mon Sep 17 00:00:00 2001 From: Oliver Dunkl Date: Mon, 19 Oct 2015 16:43:35 +0200 Subject: [PATCH 136/196] python-packages: pafy 0.3.74 -> 0.4.1 --- pkgs/top-level/python-packages.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index c42b1e57f98..b081958b51f 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -18553,11 +18553,11 @@ let pafy = buildPythonPackage rec { name = "pafy-${version}"; - version = "0.3.74"; + version = "0.4.1"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/p/pafy/${name}.tar.gz"; - md5 = "fbf0e7f85914eaf35f87837232eec09c"; + sha256 = "1zdlwwrwh04vszwgmhkmaah1ix24d2zicpv3zi7s8whh06g7pkkl"; }; propagatedBuildInputs = with self; [ youtube-dl ]; From c4442e4210aa1ec50f65e0bc6e11021d0cb92f07 Mon Sep 17 00:00:00 2001 From: Tim Williams Date: Mon, 19 Oct 2015 20:16:57 +0100 Subject: [PATCH 137/196] mendeley: 1.13.1 -> 1.15 --- pkgs/applications/office/mendeley/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/office/mendeley/default.nix b/pkgs/applications/office/mendeley/default.nix index ea6d565a10b..2f3e42d5774 100644 --- a/pkgs/applications/office/mendeley/default.nix +++ b/pkgs/applications/office/mendeley/default.nix @@ -12,14 +12,14 @@ let then "i386" else "amd64"; - shortVersion = "1.13.1-stable"; + shortVersion = "1.15-stable"; version = "${shortVersion}_${arch}"; url = "http://desktop-download.mendeley.com/download/apt/pool/main/m/mendeleydesktop/mendeleydesktop_${version}.deb"; sha256 = if stdenv.system == arch32 - then "21491da1608daf58da23e7e5eb7619b494b10192acc0f81575daff2a38720f50" - else "8db101b26dd2978e991421260a2e55d849014f64005930b2528080bbbaa78600"; + then "16274a1ad981f8abd6facae88e8412eaf5c8b9b238ff4e07fa7c7b5f498c3cc7" + else "a455f0cf898f1df66dd5a38c656718a9f8b0f6e80ee7205b37635a8261f9d3cf"; deps = [ gcc.cc From 98152180cfeb77d976bc4122c402286f31c9082a Mon Sep 17 00:00:00 2001 From: Guillaume Maudoux Date: Mon, 19 Oct 2015 21:32:43 +0200 Subject: [PATCH 138/196] python-docker-py: fix dependency: requests -> requests2 --- pkgs/top-level/python-packages.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index c42b1e57f98..d2dec410bf0 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -3122,7 +3122,7 @@ let md5 = "07a5f41fd3f8cc72d05deed628700e99"; }; - propagatedBuildInputs = with self; [ six requests websocket_client ]; + propagatedBuildInputs = with self; [ six requests2 websocket_client ]; # Version conflict doCheck = false; @@ -7226,7 +7226,7 @@ let disabled = isPy3k; propagatedBuildInputs = with self; [ - requests2 # Needs to be first, no idea why... + requests2 cgroup-utils docker-custom docutils lti mock pygments pymongo pyyaml rpyc sh simpleldap sphinx_rtd_theme tidylib websocket_client watchdog webpy-custom From fdc3f13f2e75f70593798cc3aa4230f0b86773d2 Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Mon, 19 Oct 2015 15:18:55 -0700 Subject: [PATCH 139/196] obs-studio: 0.11.1 -> 0.12.0 Also enable PulseAudio support if unspecified. --- pkgs/applications/video/obs-studio/default.nix | 4 ++-- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/video/obs-studio/default.nix b/pkgs/applications/video/obs-studio/default.nix index b231aad07cc..79661ca1f30 100644 --- a/pkgs/applications/video/obs-studio/default.nix +++ b/pkgs/applications/video/obs-studio/default.nix @@ -17,11 +17,11 @@ let optional = stdenv.lib.optional; in stdenv.mkDerivation rec { name = "obs-studio-${version}"; - version = "0.11.1"; + version = "0.12.0"; src = fetchurl { url = "https://github.com/jp9000/obs-studio/archive/${version}.tar.gz"; - sha256 = "12g1y6y8ixvgvwk75x7qgq0j06d5khd0w3if6kahswlc58q65fm8"; + sha256 = "0nkfzy9wzsy7y0r02vc0648gx2aa6f7ibahrv89hxqr4x6x8d7di"; }; buildInputs = [ cmake diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 634ec4fdbd1..e216cc7339e 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -12388,7 +12388,7 @@ let }; obs-studio = callPackage ../applications/video/obs-studio { - pulseaudioSupport = config.pulseaudio or false; + pulseaudioSupport = config.pulseaudio or true; }; ocrad = callPackage ../applications/graphics/ocrad { }; From f77bf46c1e705934a00c52d90cc62a76fbb1f6b5 Mon Sep 17 00:00:00 2001 From: Jude Taylor Date: Mon, 19 Oct 2015 16:14:30 -0700 Subject: [PATCH 140/196] go-1.5: fix build on darwin, set to default version for all platforms --- pkgs/development/compilers/go/1.4.nix | 2 ++ pkgs/development/compilers/go/1.5.nix | 16 +++++++++++++--- pkgs/development/compilers/go/strip.patch | 12 ++++++++++++ pkgs/top-level/all-packages.nix | 6 ++---- 4 files changed, 29 insertions(+), 7 deletions(-) create mode 100644 pkgs/development/compilers/go/strip.patch diff --git a/pkgs/development/compilers/go/1.4.nix b/pkgs/development/compilers/go/1.4.nix index 413320d2d45..408759013e8 100644 --- a/pkgs/development/compilers/go/1.4.nix +++ b/pkgs/development/compilers/go/1.4.nix @@ -72,6 +72,8 @@ stdenv.mkDerivation rec { sed -i '/TestResolveTCPAddr/areturn' src/net/tcp_test.go sed -i '/TestResolveUDPAddr/areturn' src/net/udp_test.go + sed -i '/TestCgoExternalThreadSIGPROF/areturn' src/runtime/crash_cgo_test.go + touch $TMPDIR/group $TMPDIR/hosts $TMPDIR/passwd ''; diff --git a/pkgs/development/compilers/go/1.5.nix b/pkgs/development/compilers/go/1.5.nix index 3858d2566f4..ccbb50f42d1 100644 --- a/pkgs/development/compilers/go/1.5.nix +++ b/pkgs/development/compilers/go/1.5.nix @@ -1,7 +1,7 @@ { stdenv, lib, fetchurl, tzdata, iana_etc, go_1_4, runCommand , perl, which, pkgconfig, patch , pcre -, Security }: +, Security, Foundation }: let goBootstrap = runCommand "go-bootstrap" {} '' @@ -25,7 +25,9 @@ stdenv.mkDerivation rec { # perl is used for testing go vet nativeBuildInputs = [ perl which pkgconfig patch ]; buildInputs = [ pcre ]; - propagatedBuildInputs = lib.optional stdenv.isDarwin Security; + propagatedBuildInputs = lib.optionals stdenv.isDarwin [ + Security Foundation + ]; # I'm not sure what go wants from its 'src', but the go installation manual # describes an installation keeping the src. @@ -67,18 +69,26 @@ stdenv.mkDerivation rec { '' + lib.optionalString stdenv.isLinux '' sed -i 's,/usr/share/zoneinfo/,${tzdata}/share/zoneinfo/,' src/time/zoneinfo_unix.go '' + lib.optionalString stdenv.isDarwin '' + substituteInPlace src/race.bash --replace \ + "sysctl machdep.cpu.extfeatures | grep -qv EM64T" true + sed -i 's,strings.Contains(.*sysctl.*,true {,' src/cmd/dist/util.go sed -i 's,"/etc","'"$TMPDIR"'",' src/os/os_test.go sed -i 's,/_go_os_test,'"$TMPDIR"'/_go_os_test,' src/os/path_test.go sed -i '/TestRead0/areturn' src/os/os_test.go sed -i '/TestSystemRoots/areturn' src/crypto/x509/root_darwin_test.go + sed -i '/TestDisasmExtld/areturn' src/cmd/objdump/objdump_test.go + touch $TMPDIR/group $TMPDIR/hosts $TMPDIR/passwd ''; patches = [ ./cacert-1.5.patch ./remove-tools-1.5.patch - ]; + ] + # -ldflags=-s is required to compile on Darwin, see + # https://github.com/golang/go/issues/11994 + ++ stdenv.lib.optional stdenv.isDarwin ./strip.patch; GOOS = if stdenv.isDarwin then "darwin" else "linux"; GOARCH = if stdenv.isDarwin then "amd64" diff --git a/pkgs/development/compilers/go/strip.patch b/pkgs/development/compilers/go/strip.patch new file mode 100644 index 00000000000..7b036802d51 --- /dev/null +++ b/pkgs/development/compilers/go/strip.patch @@ -0,0 +1,12 @@ +diff --git a/src/cmd/go/build.go b/src/cmd/go/build.go +index 0b14725..a7608ce 100644 +--- a/src/cmd/go/build.go ++++ b/src/cmd/go/build.go +@@ -2310,6 +2310,7 @@ func (gcToolchain) ld(b *builder, root *action, out string, allactions []*action + } + } + var ldflags []string ++ ldflags = append(ldflags, "-s") + if buildContext.InstallSuffix != "" { + ldflags = append(ldflags, "-installsuffix", buildContext.InstallSuffix) + } diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 634ec4fdbd1..f268a8e59df 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -4053,12 +4053,10 @@ let }; go_1_5 = callPackage ../development/compilers/go/1.5.nix { - inherit (darwin.apple_sdk.frameworks) Security; + inherit (darwin.apple_sdk.frameworks) Security Foundation; }; - go = if stdenv.isDarwin - then go_1_4 # missing DWARF files during go-1.5 build - else go_1_5; + go = go_1_5; go-repo-root = goPackages.go-repo-root.bin // { outputs = [ "bin" ]; }; From 97ebba6f1a7151a7a5b7b020e2d5f83f6fce0d93 Mon Sep 17 00:00:00 2001 From: Jude Taylor Date: Mon, 19 Oct 2015 16:46:23 -0700 Subject: [PATCH 141/196] add vim-vanilla changes to vim_configurable --- pkgs/applications/editors/vim/configurable.nix | 16 ++++++++++++++-- pkgs/top-level/all-packages.nix | 3 +++ 2 files changed, 17 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/editors/vim/configurable.nix b/pkgs/applications/editors/vim/configurable.nix index fd4f13ab650..3d6c9ffa859 100644 --- a/pkgs/applications/editors/vim/configurable.nix +++ b/pkgs/applications/editors/vim/configurable.nix @@ -3,7 +3,12 @@ args@{pkgs, source ? "default", fetchurl, fetchhg, stdenv, ncurses, pkgconfig, gettext , composableDerivation, lib, config, glib, gtk, python, perl, tcl, ruby , libX11, libXext, libSM, libXpm, libXt, libXaw, libXau, libXmu -, libICE, ... }: with args; +, libICE + +# apple frameworks +, CoreServices, CoreData, Cocoa, Foundation, libobjc, cf-private + +, ... }: with args; let inherit (args.composableDerivation) composableDerivation edf; @@ -88,7 +93,14 @@ composableDerivation { ''; }; } - // edf { name = "darwin"; } #Disable Darwin (Mac OS X) support. + // edf { + name = "darwin"; + enable = { + nativeBuildInputs = [ CoreServices CoreData Cocoa Foundation libobjc cf-private ]; + NIX_LDFLAGS = stdenv.lib.optional stdenv.isDarwin + "/System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation"; + }; + } #Disable Darwin (Mac OS X) support. // edf { name = "xsmp"; } #Disable XSMP session management // edf { name = "xsmp_interact"; } #Disable XSMP interaction // edf { name = "mzscheme"; feat = "mzschemeinterp";} #Include MzScheme interpreter. diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index f268a8e59df..3bc1100639e 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -13091,6 +13091,9 @@ let vimHugeX = vim_configurable; vim_configurable = vimUtils.makeCustomizable (callPackage ../applications/editors/vim/configurable.nix { + inherit (darwin.apple_sdk.frameworks) CoreServices Cocoa Foundation CoreData; + inherit (darwin) libobjc cf-private; + features = "huge"; # one of tiny, small, normal, big or huge lua = pkgs.lua5_1; gui = config.vim.gui or "auto"; From 68087185e36ea4d3b1bf2cb7ccdaebb7d72d31d1 Mon Sep 17 00:00:00 2001 From: Jude Taylor Date: Mon, 19 Oct 2015 18:40:55 -0700 Subject: [PATCH 142/196] rethinkdb: build on darwin --- pkgs/development/libraries/protobuf/generic.nix | 3 +++ pkgs/servers/nosql/rethinkdb/default.nix | 15 ++++++++++++--- pkgs/top-level/all-packages.nix | 4 +++- 3 files changed, 18 insertions(+), 4 deletions(-) diff --git a/pkgs/development/libraries/protobuf/generic.nix b/pkgs/development/libraries/protobuf/generic.nix index 692891bd5bf..fc41187a931 100644 --- a/pkgs/development/libraries/protobuf/generic.nix +++ b/pkgs/development/libraries/protobuf/generic.nix @@ -12,6 +12,9 @@ stdenv.mkDerivation rec { rm -rf gtest cp -r ${gtest.source} gtest chmod -R a+w gtest + '' + stdenv.lib.optionalString stdenv.isDarwin '' + substituteInPlace src/google/protobuf/testing/googletest.cc \ + --replace 'tmpnam(b)' '"'$TMPDIR'/foo"' ''; buildInputs = [ autoreconfHook zlib ]; diff --git a/pkgs/servers/nosql/rethinkdb/default.nix b/pkgs/servers/nosql/rethinkdb/default.nix index 55f77ce0b5d..57b0e0abb76 100644 --- a/pkgs/servers/nosql/rethinkdb/default.nix +++ b/pkgs/servers/nosql/rethinkdb/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, which, m4, python -, protobuf, boost, zlib, curl, openssl, icu, jemalloc +, protobuf, boost, zlib, curl, openssl, icu, jemalloc, libtool }: stdenv.mkDerivation rec { @@ -11,17 +11,26 @@ stdenv.mkDerivation rec { sha256 = "03w9fq3wcvwy04b3x6zb3hvwar7b9jfbpq77rmxdlgh5w64vvgwd"; }; + postPatch = stdenv.lib.optionalString stdenv.isDarwin '' + sed -i 's/raise.*No Xcode or CLT version detected.*/version = "7.0.0"/' external/v8_3.30.33.16/build/gyp/pylib/gyp/xcode_emulation.py + + # very meta + substituteInPlace mk/support/pkg/re2.sh --replace "-i '''" "-i" + ''; + preConfigure = '' export ALLOW_WARNINGS=1 patchShebangs . ''; - configureFlags = [ + configureFlags = stdenv.lib.optionals (!stdenv.isDarwin) [ "--with-jemalloc" "--lib-path=${jemalloc}/lib" ]; - buildInputs = [ protobuf boost zlib curl openssl icu jemalloc ]; + buildInputs = [ protobuf boost zlib curl openssl icu ] + ++ stdenv.lib.optional (!stdenv.isDarwin) jemalloc + ++ stdenv.lib.optional stdenv.isDarwin libtool; nativeBuildInputs = [ which m4 python ]; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 3bc1100639e..bfec472fca8 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -9272,7 +9272,9 @@ let restund = callPackage ../servers/restund {}; - rethinkdb = callPackage ../servers/nosql/rethinkdb { }; + rethinkdb = callPackage ../servers/nosql/rethinkdb { + libtool = darwin.cctools; + }; rippled = callPackage ../servers/rippled { boost = boost159; From db7fc89547c39470d65f57548914e642a9c575fb Mon Sep 17 00:00:00 2001 From: "Desmond O. Chang" Date: Tue, 20 Oct 2015 10:13:33 +0800 Subject: [PATCH 143/196] yank: init at 0.4.1 --- pkgs/tools/misc/yank/default.nix | 35 ++++++++++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 37 insertions(+) create mode 100644 pkgs/tools/misc/yank/default.nix diff --git a/pkgs/tools/misc/yank/default.nix b/pkgs/tools/misc/yank/default.nix new file mode 100644 index 00000000000..049fc1b5f3f --- /dev/null +++ b/pkgs/tools/misc/yank/default.nix @@ -0,0 +1,35 @@ +{ stdenv, fetchFromGitHub }: + +stdenv.mkDerivation rec { + + name = "yank-${meta.version}"; + + src = fetchFromGitHub { + owner = "mptre"; + repo = "yank"; + rev = "v${meta.version}"; + sha256 = "066nsm8b5785r2zaajihf8g6x9hc4n8kpk3j2n1slp5alnhx93mx"; + inherit name; + }; + + installPhase = '' + PREFIX=$out make install + ''; + + meta = with stdenv.lib; { + homepage = "https://github.com/mptre/yank"; + description = "Yank terminal output to clipboard"; + longDescription = '' + Read input from stdin and display a selection interface that allows a + field to be selected and copied to the clipboard. Fields are determined + by splitting the input on a delimiter sequence, optionally specified + using the -d option. New line, carriage return and tab characters are + always treated as delimiters. + ''; + downloadPage = "https://github.com/mptre/yank/releases"; + license = licenses.mit; + version = "0.4.1"; + maintainers = [ maintainers.dochang ]; + }; + +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index bfec472fca8..2c4a70bc2b6 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -3590,6 +3590,8 @@ let xwinmosaic = callPackage ../tools/X11/xwinmosaic {}; + yank = callPackage ../tools/misc/yank { }; + # To expose more packages for Yi, override the extraPackages arg. yi = callPackage ../applications/editors/yi/wrapper.nix { }; From 1df3f3b73aff75e01b555d23463cd73467693827 Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Tue, 20 Oct 2015 07:13:18 +0200 Subject: [PATCH 144/196] swiften: fix build --- pkgs/development/libraries/swiften/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/libraries/swiften/default.nix b/pkgs/development/libraries/swiften/default.nix index 3978461d0ca..64ea6fa0e74 100644 --- a/pkgs/development/libraries/swiften/default.nix +++ b/pkgs/development/libraries/swiften/default.nix @@ -12,6 +12,7 @@ stdenv.mkDerivation rec { }; buildPhase = '' + patchShebangs ./scons ./scons openssl=${openssl} \ boost_includedir=${boost.dev}/include \ boost_libdir=${boost.lib}/lib \ From f729d79fec14064cac6851d0fdbf4fbb5941e4d0 Mon Sep 17 00:00:00 2001 From: Lancelot SIX Date: Tue, 20 Oct 2015 07:38:25 +0000 Subject: [PATCH 145/196] pkgs.units: 2.11 -> 2.12 See http://lists.gnu.org/archive/html/info-gnu/2015-10/msg00006.html --- pkgs/tools/misc/units/default.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/pkgs/tools/misc/units/default.nix b/pkgs/tools/misc/units/default.nix index 85d3049b270..6a7c3b130bd 100644 --- a/pkgs/tools/misc/units/default.nix +++ b/pkgs/tools/misc/units/default.nix @@ -1,10 +1,11 @@ {stdenv, fetchurl}: -stdenv.mkDerivation { - name = "units-2.11"; +stdenv.mkDerivation rec { + name = "units-${version}"; + version = "2.12"; src = fetchurl { - url = mirror://gnu/units/units-2.11.tar.gz; - sha256 = "1gjs3wc212aaiq4r76hx9nl1h3fa39n0ljwl9420d6ixl3rdmdjk"; + url = "mirror://gnu/units/${name}.tar.gz"; + sha256 = "1jxvjknz2jhq773jrwx9gc1df3gfy73yqmkjkygqxzpi318yls3q"; }; meta = { From 0732a39deeaaf30c569e6f400576ed57161ec2a9 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Tue, 6 Oct 2015 17:24:46 +0200 Subject: [PATCH 146/196] pythonPackages numpy: 1.9.2 -> 1.10.1 --- pkgs/top-level/python-packages.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 293a655eb9a..f589844f56d 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -9458,11 +9458,12 @@ let pkgName = "numpy"; }; in buildPythonPackage ( rec { - name = "numpy-1.9.2"; + name = "numpy-${version}"; + version = "1.10.1"; src = pkgs.fetchurl { url = "mirror://sourceforge/numpy/${name}.tar.gz"; - sha256 = "0apgmsk9jlaphb2dp1zaxqzdxkf69h1y3iw2d1pcnkj31cmmypij"; + sha256 = "8b9f453f29ce96a14e625100d3dcf8926301d36c5f622623bf8820e748510858"; }; disabled = isPyPy || isPy35; # WIP From 31f0478c46b507d9afd173c162d789c6171c209d Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Tue, 6 Oct 2015 17:26:24 +0200 Subject: [PATCH 147/196] pythonPackages numpy: enable for Python 3.5 Since 1.9.3 numpy works with Python 3.5. Packages depending on Numpy still might cause problems with Python 3.5. --- pkgs/top-level/python-packages.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index f589844f56d..c61f049c0d2 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -9466,7 +9466,7 @@ let sha256 = "8b9f453f29ce96a14e625100d3dcf8926301d36c5f622623bf8820e748510858"; }; - disabled = isPyPy || isPy35; # WIP + disabled = isPyPy; # WIP preConfigure = '' sed -i 's/-faltivec//' numpy/distutils/system_info.py From d1975ca95f63d62e05a3ab3dee6e63edf433756c Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Mon, 19 Oct 2015 13:50:54 +0200 Subject: [PATCH 148/196] python nibabel: remove failing test 1.10.1 --- pkgs/top-level/python-packages.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index c61f049c0d2..dc7e53836d9 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -9143,8 +9143,13 @@ let # Test does not work on Py3k because it calls 'python'. # https://github.com/nipy/nibabel/issues/341 + + # Test fails with numpy 1.10.1: ERROR: nibabel.tests.test_proxy_api.TestPARRECAPI.test_proxy_slicing + # See https://github.com/nipy/nibabel/pull/358 + # and https://github.com/numpy/numpy/issues/6491 preCheck = '' rm nisext/tests/test_testers.py + rm nibabel/tests/test_proxy_api.py ''; meta = { From 321a6b224842e700512985ba4471a332a58af7d6 Mon Sep 17 00:00:00 2001 From: Rickard Nilsson Date: Tue, 20 Oct 2015 12:15:00 +0200 Subject: [PATCH 149/196] google-cloud-sdk: 0.9.74 -> 0.9.82 --- pkgs/tools/admin/google-cloud-sdk/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/admin/google-cloud-sdk/default.nix b/pkgs/tools/admin/google-cloud-sdk/default.nix index c5fbf621e2d..75860bc27d3 100644 --- a/pkgs/tools/admin/google-cloud-sdk/default.nix +++ b/pkgs/tools/admin/google-cloud-sdk/default.nix @@ -1,12 +1,12 @@ {stdenv, fetchurl, python27, python27Packages, makeWrapper}: stdenv.mkDerivation rec { - version = "0.9.74"; + version = "0.9.82"; name = "google-cloud-sdk-${version}"; src = fetchurl { - url = "https://dl.google.com/dl/cloudsdk/release/packages/google-cloud-sdk-coretools-linux-static-20150817103450.tar.gz"; - sha256 = "0qdry40xk23c6dvr6qzqn23bg8yfflm1m00gw1mqnpr4m1425vfg"; + url = "https://dl.google.com/dl/cloudsdk/release/packages/google-cloud-sdk-coretools-linux-static-20151008123015.tar.gz"; + sha256 = "11gnhgjj4y4dzi3wfdpnz918m7xraz1k3ady1d6y446hmc5q2512"; }; buildInputs = [python27 makeWrapper]; From d6a6f9db95a78fa8291bb78fe521c829c5c86349 Mon Sep 17 00:00:00 2001 From: Jude Taylor Date: Tue, 20 Oct 2015 03:57:09 -0700 Subject: [PATCH 150/196] fix reference to glibtoolize in tmate --- pkgs/tools/misc/tmate/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/tools/misc/tmate/default.nix b/pkgs/tools/misc/tmate/default.nix index 5fbb3943115..881c9f1c54f 100644 --- a/pkgs/tools/misc/tmate/default.nix +++ b/pkgs/tools/misc/tmate/default.nix @@ -17,6 +17,10 @@ stdenv.mkDerivation rec { preConfigure = "./autogen.sh"; + postPatch = stdenv.lib.optionalString stdenv.isDarwin '' + substituteInPlace msgpack/bootstrap --replace glibtoolize libtoolize + ''; + meta = { homepage = http://tmate.io/; description = "Instant Terminal Sharing"; From c0a963e3cc6bd9c049f6db198a6acf92ee795e4e Mon Sep 17 00:00:00 2001 From: Brandon Dimcheff Date: Mon, 19 Oct 2015 21:07:21 -0400 Subject: [PATCH 151/196] cups-filters: make shell string longer (close #10493) The cstring for the shell path is too short for nixos in cups-filters, causing it to be truncated. This was previously fixed in #5428, but regressed. This is a permanent solution accepted even upstream https://bugs.linuxfoundation.org/show_bug.cgi?id=1325 http://bzr.linuxfoundation.org/loggerhead/openprinting/cups-filters/revision/7401 --- pkgs/misc/cups/filters.nix | 13 ++++++++----- pkgs/misc/cups/longer-shell-path.patch | 13 +++++++++++++ 2 files changed, 21 insertions(+), 5 deletions(-) create mode 100644 pkgs/misc/cups/longer-shell-path.patch diff --git a/pkgs/misc/cups/filters.nix b/pkgs/misc/cups/filters.nix index a860273e9eb..b4b3a5a0624 100644 --- a/pkgs/misc/cups/filters.nix +++ b/pkgs/misc/cups/filters.nix @@ -10,11 +10,14 @@ stdenv.mkDerivation rec { sha256 = "07wwlqcykfjfqcwj1bxk60ggahyaw7wcx32n5s104d1qkhham01i"; }; - patches = [(fetchpatch { # drop on update - name = "poppler-0.34.patch"; - url = "https://bugs.linuxfoundation.org/attachment.cgi?id=493"; - sha256 = "18za83q0b0n4hpvvw76jsv0hm89zmijvps2z5kg1srickqlxj891"; - })]; + patches = [ + ./longer-shell-path.patch + (fetchpatch { # drop on update + name = "poppler-0.34.patch"; + url = "https://bugs.linuxfoundation.org/attachment.cgi?id=493"; + sha256 = "18za83q0b0n4hpvvw76jsv0hm89zmijvps2z5kg1srickqlxj891"; + }) + ]; buildInputs = [ pkgconfig cups poppler poppler_utils fontconfig libjpeg libpng perl diff --git a/pkgs/misc/cups/longer-shell-path.patch b/pkgs/misc/cups/longer-shell-path.patch new file mode 100644 index 00000000000..397cc681732 --- /dev/null +++ b/pkgs/misc/cups/longer-shell-path.patch @@ -0,0 +1,13 @@ +diff --git a/filter/foomatic-rip/foomaticrip.c b/filter/foomatic-rip/foomaticrip.c +index 90a851c..689a2bd 100644 +--- a/filter/foomatic-rip/foomaticrip.c ++++ b/filter/foomatic-rip/foomaticrip.c +@@ -174,7 +174,7 @@ char cupsfilterpath[PATH_MAX] = "/usr/local/lib/cups/filter:" + "/opt/cups/filter:" + "/usr/lib/cups/filter"; + +-char modern_shell[64] = SHELL; ++char modern_shell[] = SHELL; + + void config_set_option(const char *key, const char *value) + { From eae00fe68769672d1a861ef4a9dd4963e7d77fff Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Tue, 20 Oct 2015 17:08:44 +0300 Subject: [PATCH 152/196] steam-runtime: build using new Runtime build system --- pkgs/games/steam/build-runtime.py | 106 + .../{build-runtime.sh => build-wrapped.sh} | 0 pkgs/games/steam/runtime-generated.nix | 3483 +++++++++++++++++ pkgs/games/steam/runtime-wrapped.nix | 2 +- pkgs/games/steam/runtime.nix | 25 +- pkgs/games/steam/update-runtime.py | 138 + 6 files changed, 3739 insertions(+), 15 deletions(-) create mode 100644 pkgs/games/steam/build-runtime.py rename pkgs/games/steam/{build-runtime.sh => build-wrapped.sh} (100%) create mode 100644 pkgs/games/steam/runtime-generated.nix create mode 100755 pkgs/games/steam/update-runtime.py diff --git a/pkgs/games/steam/build-runtime.py b/pkgs/games/steam/build-runtime.py new file mode 100644 index 00000000000..3f23d53b984 --- /dev/null +++ b/pkgs/games/steam/build-runtime.py @@ -0,0 +1,106 @@ +#!/usr/bin/env python2 +# +# Script to build and install packages into the Steam runtime +# Patched version of https://github.com/ValveSoftware/steam-runtime/blob/master/build-runtime.py + +import os +import re +import sys +import subprocess +import argparse +import json + +# The top level directory +top = sys.path[0] + +def parse_args(): + parser = argparse.ArgumentParser() + parser.add_argument("-r", "--runtime", help="specify runtime path", default=os.path.join(top,"runtime")) + parser.add_argument("-i", "--input", help="packages JSON", required=True) + return parser.parse_args() + + +def install_deb (basename, deb, md5, dest_dir): + installtag_dir=os.path.join(dest_dir, "installed") + if not os.access(installtag_dir, os.W_OK): + os.makedirs(installtag_dir) + + # + # Write the tag file and checksum to the 'installed' subdirectory + # + with open(os.path.join(installtag_dir,basename),"w") as f: + subprocess.check_call(['dpkg-deb', '-c', deb], stdout=f) + with open(os.path.join(installtag_dir,basename+".md5"),"w") as f: + f.write("%s %s.deb\n" % (md5, basename)) + + # + # Unpack the package into the dest_dir + # + os.chdir(top) + subprocess.check_call(['dpkg-deb', '-x', deb, dest_dir]) + + +# +# Walks through the files in the runtime directory and converts any absolute symlinks +# to their relative equivalent +# +def fix_symlinks (): + for dir, subdirs, files in os.walk(args.runtime): + for name in files: + filepath=os.path.join(dir,name) + if os.path.islink(filepath): + target = os.readlink(filepath) + if os.path.isabs(target): + # + # compute the target of the symlink based on the 'root' of the architecture's runtime + # + target2 = os.path.join(args.runtime,target[1:]) + + # + # Set the new relative target path + # + os.unlink(filepath) + os.symlink(os.path.relpath(target2,dir), filepath) + +# +# Creates the usr/lib/debug/.build-id/xx/xxxxxxxxx.debug symlink tree for all the debug +# symbols +# +def fix_debuglinks (): + for dir, subdirs, files in os.walk(os.path.join(args.runtime,"usr/lib/debug")): + if ".build-id" in subdirs: + subdirs.remove(".build-id") # don't recurse into .build-id directory we are creating + + for file in files: + + # + # scrape the output of readelf to find the buildid for this binary + # + p = subprocess.Popen(["readelf", '-n', os.path.join(dir,file)], stdout=subprocess.PIPE) + for line in iter(p.stdout.readline, ""): + m = re.search('Build ID: (\w{2})(\w+)',line) + if m: + linkdir = os.path.join(args.runtime,"usr/lib/debug/.build-id",m.group(1)) + if not os.access(linkdir, os.W_OK): + os.makedirs(linkdir) + link = os.path.join(linkdir,m.group(2)) + print "SYMLINKING symbol file %s to %s" % (link, os.path.relpath(os.path.join(dir,file),linkdir)) + if os.path.lexists(link): + os.unlink(link) + os.symlink(os.path.relpath(os.path.join(dir,file), linkdir),link) + + +args = parse_args() + + +print ("Creating Steam Runtime in %s" % args.runtime) + +with open(args.input) as pkgfile: + pkgs = json.load(pkgfile) + for pkg in pkgs: + install_deb(pkg["name"], pkg["source"], pkg["md5"], args.runtime) + +fix_debuglinks() +fix_symlinks() + +# vi: set noexpandtab: diff --git a/pkgs/games/steam/build-runtime.sh b/pkgs/games/steam/build-wrapped.sh similarity index 100% rename from pkgs/games/steam/build-runtime.sh rename to pkgs/games/steam/build-wrapped.sh diff --git a/pkgs/games/steam/runtime-generated.nix b/pkgs/games/steam/runtime-generated.nix new file mode 100644 index 00000000000..624f41749aa --- /dev/null +++ b/pkgs/games/steam/runtime-generated.nix @@ -0,0 +1,3483 @@ +# This file is autogenerated! Do not edit it yourself, use update-runtime.py for regeneration. +{ fetchurl }: + +{ + amd64 = [ + rec { + name = "dconf-gsettings-backend_0.12.0-0ubuntu1.1+srt4_amd64"; + md5 = "cbbb1118a27ed0dfb126a109d1d265b3"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/d/d-conf/dconf-gsettings-backend_0.12.0-0ubuntu1.1+srt4_amd64.deb"; + inherit md5; + name = "dconf-gsettings-backend.deb"; + }; + } + rec { + name = "freeglut3_2.6.0-1ubuntu3+srt4_amd64"; + md5 = "c54e97c2023e1d1d5df16eb2c426c0be"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/f/freeglut/freeglut3_2.6.0-1ubuntu3+srt4_amd64.deb"; + inherit md5; + name = "freeglut3.deb"; + }; + } + rec { + name = "gcc-4.6-base_4.6.3-1ubuntu5+srt4_amd64"; + md5 = "1c719a43eb7fa0745eabcea972b0c473"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/g/gcc-4.6/gcc-4.6-base_4.6.3-1ubuntu5+srt4_amd64.deb"; + inherit md5; + name = "gcc-4.6-base.deb"; + }; + } + rec { + name = "gtk2-engines_2.20.2-1ubuntu1+srt4_amd64"; + md5 = "3870b0a51a7614f28bc40e3e58d39a9c"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/g/gtk2-engines/gtk2-engines_2.20.2-1ubuntu1+srt4_amd64.deb"; + inherit md5; + name = "gtk2-engines.deb"; + }; + } + rec { + name = "gtk2-engines-murrine_0.98.2-0ubuntu1+srt4_amd64"; + md5 = "607f89071971116adf22fe989408a395"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/g/gtk2-engines-murrine/gtk2-engines-murrine_0.98.2-0ubuntu1+srt4_amd64.deb"; + inherit md5; + name = "gtk2-engines-murrine.deb"; + }; + } + rec { + name = "gtk2-engines-pixbuf_2.24.10-0ubuntu6+steamrt1+srt4_amd64"; + md5 = "ea6e6b0f99808a2cc8135036824bcfca"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/g/gtk+2.0/gtk2-engines-pixbuf_2.24.10-0ubuntu6+steamrt1+srt4_amd64.deb"; + inherit md5; + name = "gtk2-engines-pixbuf.deb"; + }; + } + rec { + name = "libacl1_2.2.51-5ubuntu1+srt6_amd64"; + md5 = "5a11378ebba911b6e139c1dc3fee7990"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/a/acl/libacl1_2.2.51-5ubuntu1+srt6_amd64.deb"; + inherit md5; + name = "libacl1.deb"; + }; + } + rec { + name = "libappindicator1_0.4.92-0ubuntu1+steamrt1+srt5_amd64"; + md5 = "2ab7433f1e12be2d35c3916e2530b969"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/liba/libappindicator/libappindicator1_0.4.92-0ubuntu1+steamrt1+srt5_amd64.deb"; + inherit md5; + name = "libappindicator1.deb"; + }; + } + rec { + name = "libasn1-8-heimdal_1.6~git20120311.dfsg.1-2+srt4_amd64"; + md5 = "aaf2e682393b856d25619d05c44c2108"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/h/heimdal/libasn1-8-heimdal_1.6~git20120311.dfsg.1-2+srt4_amd64.deb"; + inherit md5; + name = "libasn1-8-heimdal.deb"; + }; + } + rec { + name = "libasound2_1.0.25-1ubuntu10.1+steamrt1+srt4_amd64"; + md5 = "11add9186e7d6a171a95fea6b0d15a01"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/a/alsa-lib/libasound2_1.0.25-1ubuntu10.1+steamrt1+srt4_amd64.deb"; + inherit md5; + name = "libasound2.deb"; + }; + } + rec { + name = "libasound2-plugins_1.0.25-1ubuntu1+srt4_amd64"; + md5 = "d4c4fad47ef8f25a8f521f4af9b7fa59"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/a/alsa-plugins/libasound2-plugins_1.0.25-1ubuntu1+srt4_amd64.deb"; + inherit md5; + name = "libasound2-plugins.deb"; + }; + } + rec { + name = "libasyncns0_0.8-4+srt4_amd64"; + md5 = "f318986e6b639fd680117e27e60ab497"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/liba/libasyncns/libasyncns0_0.8-4+srt4_amd64.deb"; + inherit md5; + name = "libasyncns0.deb"; + }; + } + rec { + name = "libatk1.0-0_2.4.0-0ubuntu1+srt4_amd64"; + md5 = "36b951c9e4bb13126bd12f4a895c77ce"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/a/atk1.0/libatk1.0-0_2.4.0-0ubuntu1+srt4_amd64.deb"; + inherit md5; + name = "libatk1.0-0.deb"; + }; + } + rec { + name = "libattr1_2.4.46-5ubuntu1+srt4_amd64"; + md5 = "4bfcd91866196506d53c114d81b5bf90"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/a/attr/libattr1_2.4.46-5ubuntu1+srt4_amd64.deb"; + inherit md5; + name = "libattr1.deb"; + }; + } + rec { + name = "libavahi-client3_0.6.30-5ubuntu2+srt4_amd64"; + md5 = "e2f370e89883d69abdf4cae6151bb22d"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/a/avahi/libavahi-client3_0.6.30-5ubuntu2+srt4_amd64.deb"; + inherit md5; + name = "libavahi-client3.deb"; + }; + } + rec { + name = "libavahi-common3_0.6.30-5ubuntu2+srt4_amd64"; + md5 = "154923fce5cea989b98ca1c11fe35196"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/a/avahi/libavahi-common3_0.6.30-5ubuntu2+srt4_amd64.deb"; + inherit md5; + name = "libavahi-common3.deb"; + }; + } + rec { + name = "libavcodec53_0.8.13-0ubuntu0.12.04.1+steamrt1+srt1_amd64"; + md5 = "6d9d47d9695b5ece354c5a6cbcde905d"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/liba/libav/libavcodec53_0.8.13-0ubuntu0.12.04.1+steamrt1+srt1_amd64.deb"; + inherit md5; + name = "libavcodec53.deb"; + }; + } + rec { + name = "libavfilter2_0.8.13-0ubuntu0.12.04.1+steamrt1+srt1_amd64"; + md5 = "f5d71b18f095842d8f881e3362d031ac"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/liba/libav/libavfilter2_0.8.13-0ubuntu0.12.04.1+steamrt1+srt1_amd64.deb"; + inherit md5; + name = "libavfilter2.deb"; + }; + } + rec { + name = "libavformat53_0.8.13-0ubuntu0.12.04.1+steamrt1+srt1_amd64"; + md5 = "88181968144020fb0fbf90ae740456d8"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/liba/libav/libavformat53_0.8.13-0ubuntu0.12.04.1+steamrt1+srt1_amd64.deb"; + inherit md5; + name = "libavformat53.deb"; + }; + } + rec { + name = "libavutil51_0.8.13-0ubuntu0.12.04.1+steamrt1+srt1_amd64"; + md5 = "790046586a22c706ab561ad5f3c94ac6"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/liba/libav/libavutil51_0.8.13-0ubuntu0.12.04.1+steamrt1+srt1_amd64.deb"; + inherit md5; + name = "libavutil51.deb"; + }; + } + rec { + name = "libbz2-1.0_1.0.6-1+srt4_amd64"; + md5 = "9e9dc9f5739feb34dbabc4e471317a5a"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/b/bzip2/libbz2-1.0_1.0.6-1+srt4_amd64.deb"; + inherit md5; + name = "libbz2-1.0.deb"; + }; + } + rec { + name = "libcairo2_1.10.2-6.1ubuntu3+srt4_amd64"; + md5 = "a474e80d3f221776d59084f2ac60ef00"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/c/cairo/libcairo2_1.10.2-6.1ubuntu3+srt4_amd64.deb"; + inherit md5; + name = "libcairo2.deb"; + }; + } + rec { + name = "libcanberra-gtk-module_0.28-3ubuntu3+steamrt1+srt4_amd64"; + md5 = "18a66b67dce65dad49c374965e0921f0"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libc/libcanberra/libcanberra-gtk-module_0.28-3ubuntu3+steamrt1+srt4_amd64.deb"; + inherit md5; + name = "libcanberra-gtk-module.deb"; + }; + } + rec { + name = "libcanberra-gtk0_0.28-3ubuntu3+steamrt1+srt4_amd64"; + md5 = "2b756be54454a87929c5d3a724297496"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libc/libcanberra/libcanberra-gtk0_0.28-3ubuntu3+steamrt1+srt4_amd64.deb"; + inherit md5; + name = "libcanberra-gtk0.deb"; + }; + } + rec { + name = "libcanberra0_0.28-3ubuntu3+steamrt1+srt4_amd64"; + md5 = "bc12bbc912b3d71dc8c6340e9f43136c"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libc/libcanberra/libcanberra0_0.28-3ubuntu3+steamrt1+srt4_amd64.deb"; + inherit md5; + name = "libcanberra0.deb"; + }; + } + rec { + name = "libcap2_2.22-1ubuntu3+srt4_amd64"; + md5 = "d8264c1c6f71865f4357d7f59062098f"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libc/libcap2/libcap2_2.22-1ubuntu3+srt4_amd64.deb"; + inherit md5; + name = "libcap2.deb"; + }; + } + rec { + name = "libcg_3.0.0016-0ubuntu1+srt4_amd64"; + md5 = "c0c923294f11ba74f0ef566e1effb4e6"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/n/nvidia-cg-toolkit/libcg_3.0.0016-0ubuntu1+srt4_amd64.deb"; + inherit md5; + name = "libcg.deb"; + }; + } + rec { + name = "libcomerr2_1.42-1ubuntu2+srt4_amd64"; + md5 = "fc890b8ce50abe33c1c60ec45ca1d203"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/e/e2fsprogs/libcomerr2_1.42-1ubuntu2+srt4_amd64.deb"; + inherit md5; + name = "libcomerr2.deb"; + }; + } + rec { + name = "libcups2_1.5.3-0ubuntu8.2+steamrt1+srt3_amd64"; + md5 = "bf3f1fd3fb7376ac8a4de5837d0b24a3"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/c/cups/libcups2_1.5.3-0ubuntu8.2+steamrt1+srt3_amd64.deb"; + inherit md5; + name = "libcups2.deb"; + }; + } + rec { + name = "libcurl3_7.22.0-3ubuntu4.8+steamrt2+srt5_amd64"; + md5 = "12acf5241daf7ff86e9dc23c64a2f71b"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/c/curl/libcurl3_7.22.0-3ubuntu4.8+steamrt2+srt5_amd64.deb"; + inherit md5; + name = "libcurl3.deb"; + }; + } + rec { + name = "libcurl3-gnutls_7.22.0-3ubuntu4.8+steamrt2+srt5_amd64"; + md5 = "0fddfa641103922bdc38ec71c61ba681"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/c/curl/libcurl3-gnutls_7.22.0-3ubuntu4.8+steamrt2+srt5_amd64.deb"; + inherit md5; + name = "libcurl3-gnutls.deb"; + }; + } + rec { + name = "libdbus-1-3_1.4.18-1ubuntu1.6+srt1_amd64"; + md5 = "31ff871795887c7595908ebef7151186"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/d/dbus/libdbus-1-3_1.4.18-1ubuntu1.6+srt1_amd64.deb"; + inherit md5; + name = "libdbus-1-3.deb"; + }; + } + rec { + name = "libdbus-glib-1-2_0.98-1ubuntu1.1+srt4_amd64"; + md5 = "28cf6b803847aa977ce557f479f52846"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/d/dbus-glib/libdbus-glib-1-2_0.98-1ubuntu1.1+srt4_amd64.deb"; + inherit md5; + name = "libdbus-glib-1-2.deb"; + }; + } + rec { + name = "libdbusmenu-glib4_0.6.2-0ubuntu0.1+srt4_amd64"; + md5 = "85833a32196fb585db2bbb65fdd28c1d"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libd/libdbusmenu/libdbusmenu-glib4_0.6.2-0ubuntu0.1+srt4_amd64.deb"; + inherit md5; + name = "libdbusmenu-glib4.deb"; + }; + } + rec { + name = "libdbusmenu-gtk4_0.6.2-0ubuntu0.1+srt4_amd64"; + md5 = "ee79e60c712f7139a305d929c51974e1"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libd/libdbusmenu/libdbusmenu-gtk4_0.6.2-0ubuntu0.1+srt4_amd64.deb"; + inherit md5; + name = "libdbusmenu-gtk4.deb"; + }; + } + rec { + name = "libexif12_0.6.20-2ubuntu0.1+srt4_amd64"; + md5 = "6234ec87a59fb9a534e53efb3978347a"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libe/libexif/libexif12_0.6.20-2ubuntu0.1+srt4_amd64.deb"; + inherit md5; + name = "libexif12.deb"; + }; + } + rec { + name = "libexpat1_2.0.1-7.2ubuntu1.1+srt4_amd64"; + md5 = "18307a925d2ce2d432699073fe679b09"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/e/expat/libexpat1_2.0.1-7.2ubuntu1.1+srt4_amd64.deb"; + inherit md5; + name = "libexpat1.deb"; + }; + } + rec { + name = "libffi6_3.0.11~rc1-5+srt4_amd64"; + md5 = "522cb933493dd7ad25b35381325579aa"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libf/libffi/libffi6_3.0.11~rc1-5+srt4_amd64.deb"; + inherit md5; + name = "libffi6.deb"; + }; + } + rec { + name = "libflac8_1.2.1-6+srt4_amd64"; + md5 = "87dcbc179e3d5ba43629b3d3045d9253"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/f/flac/libflac8_1.2.1-6+srt4_amd64.deb"; + inherit md5; + name = "libflac8.deb"; + }; + } + rec { + name = "libfltk1.1_1.1.10-10+srt4_amd64"; + md5 = "4d89126341f2e70a7a248e20dc024240"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/f/fltk1.1/libfltk1.1_1.1.10-10+srt4_amd64.deb"; + inherit md5; + name = "libfltk1.1.deb"; + }; + } + rec { + name = "libfontconfig1_2.8.0-3ubuntu9.1+srt4_amd64"; + md5 = "d90eb7f1c85b5c1c256e87ae0f840986"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/f/fontconfig/libfontconfig1_2.8.0-3ubuntu9.1+srt4_amd64.deb"; + inherit md5; + name = "libfontconfig1.deb"; + }; + } + rec { + name = "libfreetype6_2.4.8-1ubuntu2.2+srt1_amd64"; + md5 = "635e6ee1b6dbb9f609f3b7d738b88d83"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/f/freetype/libfreetype6_2.4.8-1ubuntu2.2+srt1_amd64.deb"; + inherit md5; + name = "libfreetype6.deb"; + }; + } + rec { + name = "libgcc1_4.8.1-2ubuntu1~12.04+steamrt2+srt1_amd64"; + md5 = "a16aa8ab25b2d926085b686bdccfd31d"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/g/gcc-4.8/libgcc1_4.8.1-2ubuntu1~12.04+steamrt2+srt1_amd64.deb"; + inherit md5; + name = "libgcc1.deb"; + }; + } + rec { + name = "libgconf-2-4_3.2.5-0ubuntu2+srt4_amd64"; + md5 = "54e9d0b216e195c52491aa6714262abc"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/g/gconf/libgconf-2-4_3.2.5-0ubuntu2+srt4_amd64.deb"; + inherit md5; + name = "libgconf-2-4.deb"; + }; + } + rec { + name = "libgcrypt11_1.5.0-3ubuntu0.3+srt1_amd64"; + md5 = "869c080b36c95e90484987fc3a46d17b"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libg/libgcrypt11/libgcrypt11_1.5.0-3ubuntu0.3+srt1_amd64.deb"; + inherit md5; + name = "libgcrypt11.deb"; + }; + } + rec { + name = "libgdk-pixbuf2.0-0_2.26.1-1+steamrt3+srt4_amd64"; + md5 = "6becfe1861ebea500d23273acece2eb7"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/g/gdk-pixbuf/libgdk-pixbuf2.0-0_2.26.1-1+steamrt3+srt4_amd64.deb"; + inherit md5; + name = "libgdk-pixbuf2.0-0.deb"; + }; + } + rec { + name = "libglew1.10_1.10.0-3+srt4_amd64"; + md5 = "f61ea5e775178ce123d40198c1157b9f"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/g/glew/libglew1.10_1.10.0-3+srt4_amd64.deb"; + inherit md5; + name = "libglew1.10.deb"; + }; + } + rec { + name = "libglew1.6_1.6.0-4+srt4_amd64"; + md5 = "bdff67db0a4d67674896f13bbc6effd3"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/g/glew/libglew1.6_1.6.0-4+srt4_amd64.deb"; + inherit md5; + name = "libglew1.6.deb"; + }; + } + rec { + name = "libglib2.0-0_2.32.3-0ubuntu1+steamrt2+srt4_amd64"; + md5 = "a1a4af8a6ecf974bfdac345319a2e953"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/g/glib2.0/libglib2.0-0_2.32.3-0ubuntu1+steamrt2+srt4_amd64.deb"; + inherit md5; + name = "libglib2.0-0.deb"; + }; + } + rec { + name = "libglu1-mesa_8.0.4-0ubuntu0.7+srt4_amd64"; + md5 = "170edcba12461120395cfae26db8ef39"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/m/mesa/libglu1-mesa_8.0.4-0ubuntu0.7+srt4_amd64.deb"; + inherit md5; + name = "libglu1-mesa.deb"; + }; + } + rec { + name = "libgmp10_5.0.2+dfsg-2ubuntu1+srt4_amd64"; + md5 = "ddae75bcd90b6e11cde2071ccb05799d"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/g/gmp/libgmp10_5.0.2+dfsg-2ubuntu1+srt4_amd64.deb"; + inherit md5; + name = "libgmp10.deb"; + }; + } + rec { + name = "libgnutls26_2.12.14-5ubuntu3.9+srt1_amd64"; + md5 = "110f432d9438cf534f1a2cb3e0269900"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/g/gnutls26/libgnutls26_2.12.14-5ubuntu3.9+srt1_amd64.deb"; + inherit md5; + name = "libgnutls26.deb"; + }; + } + rec { + name = "libgomp1_4.8.1-2ubuntu1~12.04+steamrt2+srt1_amd64"; + md5 = "0a2b96a562ddf2e2e8018ee42fc44697"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/g/gcc-4.8/libgomp1_4.8.1-2ubuntu1~12.04+steamrt2+srt1_amd64.deb"; + inherit md5; + name = "libgomp1.deb"; + }; + } + rec { + name = "libgpg-error0_1.10-2ubuntu1+srt4_amd64"; + md5 = "2732fe5e798a8355f1f42ce803144b5e"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libg/libgpg-error/libgpg-error0_1.10-2ubuntu1+srt4_amd64.deb"; + inherit md5; + name = "libgpg-error0.deb"; + }; + } + rec { + name = "libgssapi-krb5-2_1.10+dfsg~beta1-2ubuntu0.6+srt1_amd64"; + md5 = "29fa7b271e5177464705bba4042c800a"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/k/krb5/libgssapi-krb5-2_1.10+dfsg~beta1-2ubuntu0.6+srt1_amd64.deb"; + inherit md5; + name = "libgssapi-krb5-2.deb"; + }; + } + rec { + name = "libgssapi3-heimdal_1.6~git20120311.dfsg.1-2+srt4_amd64"; + md5 = "aec9eef24bdbf46a564a8c3a2e5e9996"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/h/heimdal/libgssapi3-heimdal_1.6~git20120311.dfsg.1-2+srt4_amd64.deb"; + inherit md5; + name = "libgssapi3-heimdal.deb"; + }; + } + rec { + name = "libgstreamer-plugins-base0.10-0_0.10.36-1ubuntu0.1+srt4_amd64"; + md5 = "d7d638c9706de787b067b90538f5d161"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/g/gst-plugins-base0.10/libgstreamer-plugins-base0.10-0_0.10.36-1ubuntu0.1+srt4_amd64.deb"; + inherit md5; + name = "libgstreamer-plugins-base0.10-0.deb"; + }; + } + rec { + name = "libgstreamer0.10-0_0.10.36-1ubuntu1+srt4_amd64"; + md5 = "5b1d88d1613f8a15dbcf4721006a928e"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/g/gstreamer0.10/libgstreamer0.10-0_0.10.36-1ubuntu1+srt4_amd64.deb"; + inherit md5; + name = "libgstreamer0.10-0.deb"; + }; + } + rec { + name = "libgtk2.0-0_2.24.10-0ubuntu6+steamrt1+srt4_amd64"; + md5 = "3967c473e9250f043ce694f0f0881b95"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/g/gtk+2.0/libgtk2.0-0_2.24.10-0ubuntu6+steamrt1+srt4_amd64.deb"; + inherit md5; + name = "libgtk2.0-0.deb"; + }; + } + rec { + name = "libgtk2.0-common_2.24.10-0ubuntu6+steamrt1+srt4_all"; + md5 = "5a2f731bdac2bd089780af2f63635f7b"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/g/gtk+2.0/libgtk2.0-common_2.24.10-0ubuntu6+steamrt1+srt4_all.deb"; + inherit md5; + name = "libgtk2.0-common.deb"; + }; + } + rec { + name = "libgudev-1.0-0_175-0ubuntu9.2+srt4_amd64"; + md5 = "042f301b15c2213e918332b827ed876e"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/u/udev/libgudev-1.0-0_175-0ubuntu9.2+srt4_amd64.deb"; + inherit md5; + name = "libgudev-1.0-0.deb"; + }; + } + rec { + name = "libhcrypto4-heimdal_1.6~git20120311.dfsg.1-2+srt4_amd64"; + md5 = "c714f66ed7629e5ea8da89b301314dbf"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/h/heimdal/libhcrypto4-heimdal_1.6~git20120311.dfsg.1-2+srt4_amd64.deb"; + inherit md5; + name = "libhcrypto4-heimdal.deb"; + }; + } + rec { + name = "libheimbase1-heimdal_1.6~git20120311.dfsg.1-2+srt4_amd64"; + md5 = "adc4837d7e7a8bb59d1eff8dc009a787"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/h/heimdal/libheimbase1-heimdal_1.6~git20120311.dfsg.1-2+srt4_amd64.deb"; + inherit md5; + name = "libheimbase1-heimdal.deb"; + }; + } + rec { + name = "libheimntlm0-heimdal_1.6~git20120311.dfsg.1-2+srt4_amd64"; + md5 = "c9832147e9399447d25db46b932009d5"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/h/heimdal/libheimntlm0-heimdal_1.6~git20120311.dfsg.1-2+srt4_amd64.deb"; + inherit md5; + name = "libheimntlm0-heimdal.deb"; + }; + } + rec { + name = "libhx509-5-heimdal_1.6~git20120311.dfsg.1-2+srt4_amd64"; + md5 = "ec9e8fc0b860a9e67a75965a684a1b10"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/h/heimdal/libhx509-5-heimdal_1.6~git20120311.dfsg.1-2+srt4_amd64.deb"; + inherit md5; + name = "libhx509-5-heimdal.deb"; + }; + } + rec { + name = "libice6_1.0.7-2build1+srt4_amd64"; + md5 = "165e91c5ea7d2268e54c4483d6bfee21"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libi/libice/libice6_1.0.7-2build1+srt4_amd64.deb"; + inherit md5; + name = "libice6.deb"; + }; + } + rec { + name = "libidn11_1.23-2+steamrt1+srt4_amd64"; + md5 = "6039786cec09e8196f0344a0eaba4b35"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libi/libidn/libidn11_1.23-2+steamrt1+srt4_amd64.deb"; + inherit md5; + name = "libidn11.deb"; + }; + } + rec { + name = "libindicator7_0.5.0-0ubuntu1+srt4_amd64"; + md5 = "e50b84332411dfe83f3cdb280a340659"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libi/libindicator/libindicator7_0.5.0-0ubuntu1+srt4_amd64.deb"; + inherit md5; + name = "libindicator7.deb"; + }; + } + rec { + name = "libjack-jackd2-0_1.9.8~dfsg.1-1ubuntu2+srt3_amd64"; + md5 = "9e2fbb98f0a36c193b7de2e0aedf504c"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/j/jackd2/libjack-jackd2-0_1.9.8~dfsg.1-1ubuntu2+srt3_amd64.deb"; + inherit md5; + name = "libjack-jackd2-0.deb"; + }; + } + rec { + name = "libjpeg-turbo8_1.1.90+svn733-0ubuntu4.3+srt4_amd64"; + md5 = "214eaa463aeef6e881231c3bd902fb97"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libj/libjpeg-turbo/libjpeg-turbo8_1.1.90+svn733-0ubuntu4.3+srt4_amd64.deb"; + inherit md5; + name = "libjpeg-turbo8.deb"; + }; + } + rec { + name = "libjpeg62_6b1-2ubuntu1.1+srt4_amd64"; + md5 = "fc7df95d832fea01fa6ec6134518f785"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libj/libjpeg6b/libjpeg62_6b1-2ubuntu1.1+srt4_amd64.deb"; + inherit md5; + name = "libjpeg62.deb"; + }; + } + rec { + name = "libjson0_0.9-1ubuntu1.1+srt2_amd64"; + md5 = "9181b67bd4b26368f29922a872998ad6"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/j/json-c/libjson0_0.9-1ubuntu1.1+srt2_amd64.deb"; + inherit md5; + name = "libjson0.deb"; + }; + } + rec { + name = "libk5crypto3_1.10+dfsg~beta1-2ubuntu0.6+srt1_amd64"; + md5 = "d82d1f7b8a31f69ccebdd1f4e28f7763"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/k/krb5/libk5crypto3_1.10+dfsg~beta1-2ubuntu0.6+srt1_amd64.deb"; + inherit md5; + name = "libk5crypto3.deb"; + }; + } + rec { + name = "libkeyutils1_1.5.2-2+srt4_amd64"; + md5 = "cc6a001e351c3e4e0ece1f59c92fe9a9"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/k/keyutils/libkeyutils1_1.5.2-2+srt4_amd64.deb"; + inherit md5; + name = "libkeyutils1.deb"; + }; + } + rec { + name = "libkrb5-26-heimdal_1.6~git20120311.dfsg.1-2+srt4_amd64"; + md5 = "6de94826e9407f5ebf3880ba4306e287"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/h/heimdal/libkrb5-26-heimdal_1.6~git20120311.dfsg.1-2+srt4_amd64.deb"; + inherit md5; + name = "libkrb5-26-heimdal.deb"; + }; + } + rec { + name = "libkrb5-3_1.10+dfsg~beta1-2ubuntu0.6+srt1_amd64"; + md5 = "3e8acba6db5d5e1f36f4b2792f726b63"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/k/krb5/libkrb5-3_1.10+dfsg~beta1-2ubuntu0.6+srt1_amd64.deb"; + inherit md5; + name = "libkrb5-3.deb"; + }; + } + rec { + name = "libkrb5support0_1.10+dfsg~beta1-2ubuntu0.6+srt1_amd64"; + md5 = "8198e8fc9f96d9310d41a5b2f3d70870"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/k/krb5/libkrb5support0_1.10+dfsg~beta1-2ubuntu0.6+srt1_amd64.deb"; + inherit md5; + name = "libkrb5support0.deb"; + }; + } + rec { + name = "liblcms2-2_2.2+git20110628-2ubuntu3.1+srt4_amd64"; + md5 = "6aa3befa823b58e2ef17137c6ce4ed26"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/l/lcms2/liblcms2-2_2.2+git20110628-2ubuntu3.1+srt4_amd64.deb"; + inherit md5; + name = "liblcms2-2.deb"; + }; + } + rec { + name = "libldap-2.4-2_2.4.28-1.1ubuntu4.2+steamrt1+srt4_amd64"; + md5 = "736acf677d1bc728947297ae33d8d53c"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/o/openldap/libldap-2.4-2_2.4.28-1.1ubuntu4.2+steamrt1+srt4_amd64.deb"; + inherit md5; + name = "libldap-2.4-2.deb"; + }; + } + rec { + name = "libltdl7_2.4.2-1ubuntu1+srt4_amd64"; + md5 = "eeb2a0afa5eb25eb240a7a5aac1fc6eb"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libt/libtool/libltdl7_2.4.2-1ubuntu1+srt4_amd64.deb"; + inherit md5; + name = "libltdl7.deb"; + }; + } + rec { + name = "libmikmod2_3.1.12-2+srt4_amd64"; + md5 = "aaf3c4e2d1c733dc9847d1b4b160faba"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libm/libmikmod/libmikmod2_3.1.12-2+srt4_amd64.deb"; + inherit md5; + name = "libmikmod2.deb"; + }; + } + rec { + name = "libncurses5_5.9-4+srt4_amd64"; + md5 = "a1e80e9cb80e7de986ce7730ae0e27d9"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/n/ncurses/libncurses5_5.9-4+srt4_amd64.deb"; + inherit md5; + name = "libncurses5.deb"; + }; + } + rec { + name = "libncursesw5_5.9-4+srt4_amd64"; + md5 = "69f8d641d346520d794ed925961df35c"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/n/ncurses/libncursesw5_5.9-4+srt4_amd64.deb"; + inherit md5; + name = "libncursesw5.deb"; + }; + } + rec { + name = "libnm-glib4_0.9.4.0-0ubuntu4.2+steamrt1+srt4_amd64"; + md5 = "f227e6607d7b84cbe99e3eaf7fa726c8"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/n/network-manager/libnm-glib4_0.9.4.0-0ubuntu4.2+steamrt1+srt4_amd64.deb"; + inherit md5; + name = "libnm-glib4.deb"; + }; + } + rec { + name = "libnm-util2_0.9.4.0-0ubuntu4.2+steamrt1+srt4_amd64"; + md5 = "da911ace3dc8956ae2d776a9de38491c"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/n/network-manager/libnm-util2_0.9.4.0-0ubuntu4.2+steamrt1+srt4_amd64.deb"; + inherit md5; + name = "libnm-util2.deb"; + }; + } + rec { + name = "libnotify4_0.7.5-1+srt4_amd64"; + md5 = "d75b12a9714d3e5bf5513e43cfecb9e1"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libn/libnotify/libnotify4_0.7.5-1+srt4_amd64.deb"; + inherit md5; + name = "libnotify4.deb"; + }; + } + rec { + name = "libnspr4_4.10.7-0ubuntu0.12.04.1+srt1_amd64"; + md5 = "81f950d909bd07f87fd03828bc1b0b76"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/n/nspr/libnspr4_4.10.7-0ubuntu0.12.04.1+srt1_amd64.deb"; + inherit md5; + name = "libnspr4.deb"; + }; + } + rec { + name = "libnss3_3.17.1-0ubuntu0.12.04.1+srt1_amd64"; + md5 = "d2583ca89a2aa19abfd497be664b2fcd"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/n/nss/libnss3_3.17.1-0ubuntu0.12.04.1+srt1_amd64.deb"; + inherit md5; + name = "libnss3.deb"; + }; + } + rec { + name = "libogg0_1.2.2~dfsg-1ubuntu1+srt4_amd64"; + md5 = "bf9932f2354ee1026d636d3cb7026b05"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libo/libogg/libogg0_1.2.2~dfsg-1ubuntu1+srt4_amd64.deb"; + inherit md5; + name = "libogg0.deb"; + }; + } + rec { + name = "libopenal1_1.13-4ubuntu3+steamrt1+srt4_amd64"; + md5 = "286033d0e031389e350644f2979f7b62"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/o/openal-soft/libopenal1_1.13-4ubuntu3+steamrt1+srt4_amd64.deb"; + inherit md5; + name = "libopenal1.deb"; + }; + } + rec { + name = "liborc-0.4-0_0.4.16-1ubuntu2+srt4_amd64"; + md5 = "838a5f35acfc6e454954ed9ae776ef7d"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/o/orc/liborc-0.4-0_0.4.16-1ubuntu2+srt4_amd64.deb"; + inherit md5; + name = "liborc-0.4-0.deb"; + }; + } + rec { + name = "libp11-kit0_0.12-2ubuntu1+srt4_amd64"; + md5 = "5834045994d6e316a68568a01257bed9"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/p/p11-kit/libp11-kit0_0.12-2ubuntu1+srt4_amd64.deb"; + inherit md5; + name = "libp11-kit0.deb"; + }; + } + rec { + name = "libpango1.0-0_1.30.0-0ubuntu3.1+steamrt1+srt4_amd64"; + md5 = "6f81b9ab5fa21dd99eae337be3ed546e"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/p/pango1.0/libpango1.0-0_1.30.0-0ubuntu3.1+steamrt1+srt4_amd64.deb"; + inherit md5; + name = "libpango1.0-0.deb"; + }; + } + rec { + name = "libpci3_3.1.8-2ubuntu5+srt4_amd64"; + md5 = "6ebc019119624fb5f776d9829ee49478"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/p/pciutils/libpci3_3.1.8-2ubuntu5+srt4_amd64.deb"; + inherit md5; + name = "libpci3.deb"; + }; + } + rec { + name = "libpcre3_8.12-4+srt4_amd64"; + md5 = "134666c4e50fb2422a12018f061dc2ce"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/p/pcre3/libpcre3_8.12-4+srt4_amd64.deb"; + inherit md5; + name = "libpcre3.deb"; + }; + } + rec { + name = "libpcrecpp0_8.12-4+srt4_amd64"; + md5 = "f4beb4a2b0d24d1bf3a75f5794580d9a"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/p/pcre3/libpcrecpp0_8.12-4+srt4_amd64.deb"; + inherit md5; + name = "libpcrecpp0.deb"; + }; + } + rec { + name = "libpixman-1-0_0.30.2-1ubuntu0.0.0.0.1+srt4_amd64"; + md5 = "f3f0e80ce2a6be9e830862184223b3ff"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/p/pixman/libpixman-1-0_0.30.2-1ubuntu0.0.0.0.1+srt4_amd64.deb"; + inherit md5; + name = "libpixman-1-0.deb"; + }; + } + rec { + name = "libpng12-0_1.2.46-3ubuntu4+srt4_amd64"; + md5 = "2365d5fa1080d019aed6810031301476"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libp/libpng/libpng12-0_1.2.46-3ubuntu4+srt4_amd64.deb"; + inherit md5; + name = "libpng12-0.deb"; + }; + } + rec { + name = "libpulse0_1.1-0ubuntu15.2+steamrt1+srt4_amd64"; + md5 = "e5314b3129eda4940896d1cad7701a22"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/p/pulseaudio/libpulse0_1.1-0ubuntu15.2+steamrt1+srt4_amd64.deb"; + inherit md5; + name = "libpulse0.deb"; + }; + } + rec { + name = "libroken18-heimdal_1.6~git20120311.dfsg.1-2+srt4_amd64"; + md5 = "3cdc654725b6fd08c96eee54041b2ce3"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/h/heimdal/libroken18-heimdal_1.6~git20120311.dfsg.1-2+srt4_amd64.deb"; + inherit md5; + name = "libroken18-heimdal.deb"; + }; + } + rec { + name = "librtmp0_2.4~20110711.gitc28f1bab-1+srt4_amd64"; + md5 = "d5ad690e85842798c27c8afb8c0c9d53"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/r/rtmpdump/librtmp0_2.4~20110711.gitc28f1bab-1+srt4_amd64.deb"; + inherit md5; + name = "librtmp0.deb"; + }; + } + rec { + name = "libsamplerate0_0.1.8-4+srt4_amd64"; + md5 = "1680e147372fd0500aa6a27a9a557662"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libs/libsamplerate/libsamplerate0_0.1.8-4+srt4_amd64.deb"; + inherit md5; + name = "libsamplerate0.deb"; + }; + } + rec { + name = "libsasl2-2_2.1.25.dfsg1-3ubuntu0.1+srt4_amd64"; + md5 = "d51e140f457c694957bc476128dfa965"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/c/cyrus-sasl2/libsasl2-2_2.1.25.dfsg1-3ubuntu0.1+srt4_amd64.deb"; + inherit md5; + name = "libsasl2-2.deb"; + }; + } + rec { + name = "libsdl-image1.2_1.2.10-3+srt4_amd64"; + md5 = "965cbe12d8b1b31eae47d0eb9651c72c"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/s/sdl-image1.2/libsdl-image1.2_1.2.10-3+srt4_amd64.deb"; + inherit md5; + name = "libsdl-image1.2.deb"; + }; + } + rec { + name = "libsdl-mixer1.2_1.2.11-7+steamrt1+srt4_amd64"; + md5 = "b60fff841525e6097f0bd3f9e224e8a1"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/s/sdl-mixer1.2/libsdl-mixer1.2_1.2.11-7+steamrt1+srt4_amd64.deb"; + inherit md5; + name = "libsdl-mixer1.2.deb"; + }; + } + rec { + name = "libsdl-ttf2.0-0_2.0.9-1.1ubuntu1+srt4_amd64"; + md5 = "30bd93bf4d524594021b8b3f9b35eb2c"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/s/sdl-ttf2.0/libsdl-ttf2.0-0_2.0.9-1.1ubuntu1+srt4_amd64.deb"; + inherit md5; + name = "libsdl-ttf2.0-0.deb"; + }; + } + rec { + name = "libsdl1.2debian_1.2.15-5+steamrt1+srt4_amd64"; + md5 = "ea14d71381e1d55c59b5790f37531900"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libs/libsdl1.2/libsdl1.2debian_1.2.15-5+steamrt1+srt4_amd64.deb"; + inherit md5; + name = "libsdl1.2debian.deb"; + }; + } + rec { + name = "libsdl2_2.0.3+steamrt1+srt4_amd64"; + md5 = "cf7de8c8621e0aabdee673ee7bbac873"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libs/libsdl2/libsdl2_2.0.3+steamrt1+srt4_amd64.deb"; + inherit md5; + name = "libsdl2.deb"; + }; + } + rec { + name = "libsdl2-image_2.0.0+steamrt1+srt4_amd64"; + md5 = "0ae2b72c2271d9ec01be98c0cec205f9"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libs/libsdl2-image/libsdl2-image_2.0.0+steamrt1+srt4_amd64.deb"; + inherit md5; + name = "libsdl2-image.deb"; + }; + } + rec { + name = "libsdl2-mixer_2.0.0+steamrt1+srt4_amd64"; + md5 = "18f22f3f91e55cb361f7ab75ae1bc9ac"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libs/libsdl2-mixer/libsdl2-mixer_2.0.0+steamrt1+srt4_amd64.deb"; + inherit md5; + name = "libsdl2-mixer.deb"; + }; + } + rec { + name = "libsdl2-net_2.0.0+srt4_amd64"; + md5 = "012b3825100003918c26f9e66bdea246"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libs/libsdl2-net/libsdl2-net_2.0.0+srt4_amd64.deb"; + inherit md5; + name = "libsdl2-net.deb"; + }; + } + rec { + name = "libsdl2-ttf_2.0.12+srt4_amd64"; + md5 = "703513c348e3456f6035ddcd41bc5785"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libs/libsdl2-ttf/libsdl2-ttf_2.0.12+srt4_amd64.deb"; + inherit md5; + name = "libsdl2-ttf.deb"; + }; + } + rec { + name = "libselinux1_2.1.0-4.1ubuntu1+srt4_amd64"; + md5 = "cb3455f005e98fd8eb7aa5d4a72e7458"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libs/libselinux/libselinux1_2.1.0-4.1ubuntu1+srt4_amd64.deb"; + inherit md5; + name = "libselinux1.deb"; + }; + } + rec { + name = "libsm6_1.2.0-2build1+srt4_amd64"; + md5 = "7682f5ffd1f30dc5818b3759be85e21a"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libs/libsm/libsm6_1.2.0-2build1+srt4_amd64.deb"; + inherit md5; + name = "libsm6.deb"; + }; + } + rec { + name = "libsndfile1_1.0.25-4+srt4_amd64"; + md5 = "e7a184667cc034127615e7bc15bc050b"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libs/libsndfile/libsndfile1_1.0.25-4+srt4_amd64.deb"; + inherit md5; + name = "libsndfile1.deb"; + }; + } + rec { + name = "libspeex1_1.2~rc1-3ubuntu2+srt4_amd64"; + md5 = "95acf2dbab5d8c6d7c0cd4b809025b87"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/s/speex/libspeex1_1.2~rc1-3ubuntu2+srt4_amd64.deb"; + inherit md5; + name = "libspeex1.deb"; + }; + } + rec { + name = "libspeexdsp1_1.2~rc1-3ubuntu2+srt4_amd64"; + md5 = "38f8216be0d2b2dfd2850d87c7e306df"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/s/speex/libspeexdsp1_1.2~rc1-3ubuntu2+srt4_amd64.deb"; + inherit md5; + name = "libspeexdsp1.deb"; + }; + } + rec { + name = "libsqlite3-0_3.7.9-2ubuntu1.1+srt4_amd64"; + md5 = "777bba933183fe2e1ec7cddf7d311609"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/s/sqlite3/libsqlite3-0_3.7.9-2ubuntu1.1+srt4_amd64.deb"; + inherit md5; + name = "libsqlite3-0.deb"; + }; + } + rec { + name = "libssl1.0.0_1.0.1-4ubuntu5.21+srt1_amd64"; + md5 = "0f740796454b18233ab65134c8250889"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/o/openssl/libssl1.0.0_1.0.1-4ubuntu5.21+srt1_amd64.deb"; + inherit md5; + name = "libssl1.0.0.deb"; + }; + } + rec { + name = "libstdc++6_4.8.1-2ubuntu1~12.04+steamrt2+srt1_amd64"; + md5 = "c5d4ad341622e56660a5202500af4930"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/g/gcc-4.8/libstdc++6_4.8.1-2ubuntu1~12.04+steamrt2+srt1_amd64.deb"; + inherit md5; + name = "libstdc++6.deb"; + }; + } + rec { + name = "libstdc++6-4.6-pic_4.6.3-1ubuntu5+srt4_amd64"; + md5 = "0776afbc253637cb3491d08d65601a7e"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/g/gcc-4.6/libstdc++6-4.6-pic_4.6.3-1ubuntu5+srt4_amd64.deb"; + inherit md5; + name = "libstdc++6-4.6-pic.deb"; + }; + } + rec { + name = "libswscale2_0.8.13-0ubuntu0.12.04.1+steamrt1+srt1_amd64"; + md5 = "0aac40ddee7040acf921dbacc2776bea"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/liba/libav/libswscale2_0.8.13-0ubuntu0.12.04.1+steamrt1+srt1_amd64.deb"; + inherit md5; + name = "libswscale2.deb"; + }; + } + rec { + name = "libtasn1-3_2.10-1ubuntu1.2+srt1_amd64"; + md5 = "cd6947eb0f8a2fbb31ac5483d7aad25a"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libt/libtasn1-3/libtasn1-3_2.10-1ubuntu1.2+srt1_amd64.deb"; + inherit md5; + name = "libtasn1-3.deb"; + }; + } + rec { + name = "libtbb2_4.0+r233-1+srt4_amd64"; + md5 = "ccd7521c751d0e3596ef200a3363df4b"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/t/tbb/libtbb2_4.0+r233-1+srt4_amd64.deb"; + inherit md5; + name = "libtbb2.deb"; + }; + } + rec { + name = "libtdb1_1.2.9-4+srt4_amd64"; + md5 = "56b46df3ed2af08c54838cbe67c0b937"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/t/tdb/libtdb1_1.2.9-4+srt4_amd64.deb"; + inherit md5; + name = "libtdb1.deb"; + }; + } + rec { + name = "libtheora0_1.1.1+dfsg.1-3ubuntu2+srt4_amd64"; + md5 = "c1381636444b1d35be7898611fbc4150"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libt/libtheora/libtheora0_1.1.1+dfsg.1-3ubuntu2+srt4_amd64.deb"; + inherit md5; + name = "libtheora0.deb"; + }; + } + rec { + name = "libtiff4_3.9.5-2ubuntu1.6+srt3_amd64"; + md5 = "f6f1ba2a0a76245cc05217e6c8385fcc"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/t/tiff/libtiff4_3.9.5-2ubuntu1.6+srt3_amd64.deb"; + inherit md5; + name = "libtiff4.deb"; + }; + } + rec { + name = "libtinfo5_5.9-4+srt4_amd64"; + md5 = "708d85139b45dc5e93a3ca00990204ab"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/n/ncurses/libtinfo5_5.9-4+srt4_amd64.deb"; + inherit md5; + name = "libtinfo5.deb"; + }; + } + rec { + name = "libudev0_175-0ubuntu9.2+srt4_amd64"; + md5 = "89d4fbfa14053514448ecaff1d8cb2c4"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/u/udev/libudev0_175-0ubuntu9.2+srt4_amd64.deb"; + inherit md5; + name = "libudev0.deb"; + }; + } + rec { + name = "libusb-1.0-0_1.0.19-1+srt1_amd64"; + md5 = "3d2612fa64d30aa01a477e02886f9ea1"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libu/libusb-1.0/libusb-1.0-0_1.0.19-1+srt1_amd64.deb"; + inherit md5; + name = "libusb-1.0-0.deb"; + }; + } + rec { + name = "libuuid1_2.20.1-1ubuntu3+srt4_amd64"; + md5 = "0d0a1e7e54df9e10e758ee90e96a8f55"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/u/util-linux/libuuid1_2.20.1-1ubuntu3+srt4_amd64.deb"; + inherit md5; + name = "libuuid1.deb"; + }; + } + rec { + name = "libva-glx1_1.3.1-3+steamrt4+srt1_amd64"; + md5 = "21794fa4d2936f13999455ea16575df4"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libv/libva/libva-glx1_1.3.1-3+steamrt4+srt1_amd64.deb"; + inherit md5; + name = "libva-glx1.deb"; + }; + } + rec { + name = "libva-x11-1_1.3.1-3+steamrt4+srt1_amd64"; + md5 = "ebf9276cc75fddbc81958aa8e7a2f285"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libv/libva/libva-x11-1_1.3.1-3+steamrt4+srt1_amd64.deb"; + inherit md5; + name = "libva-x11-1.deb"; + }; + } + rec { + name = "libva1_1.3.1-3+steamrt4+srt1_amd64"; + md5 = "6d8d1a89d63c536e4ba77cffb9af7df9"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libv/libva/libva1_1.3.1-3+steamrt4+srt1_amd64.deb"; + inherit md5; + name = "libva1.deb"; + }; + } + rec { + name = "libvdpau1_0.4.1-3ubuntu1.1+srt4_amd64"; + md5 = "ad17ca0b0794852836c8166b530b520d"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libv/libvdpau/libvdpau1_0.4.1-3ubuntu1.1+srt4_amd64.deb"; + inherit md5; + name = "libvdpau1.deb"; + }; + } + rec { + name = "libvorbis0a_1.3.2-1ubuntu3+srt4_amd64"; + md5 = "6acf08e8df17c93563dae9a381cc26ac"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libv/libvorbis/libvorbis0a_1.3.2-1ubuntu3+srt4_amd64.deb"; + inherit md5; + name = "libvorbis0a.deb"; + }; + } + rec { + name = "libvorbisenc2_1.3.2-1ubuntu3+srt4_amd64"; + md5 = "b6a1ab86060a3c4e1963d513ae68376b"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libv/libvorbis/libvorbisenc2_1.3.2-1ubuntu3+srt4_amd64.deb"; + inherit md5; + name = "libvorbisenc2.deb"; + }; + } + rec { + name = "libvorbisfile3_1.3.2-1ubuntu3+srt4_amd64"; + md5 = "56218bd8b7278303574f6f4bc23fac1a"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libv/libvorbis/libvorbisfile3_1.3.2-1ubuntu3+srt4_amd64.deb"; + inherit md5; + name = "libvorbisfile3.deb"; + }; + } + rec { + name = "libvpx1_1.0.0-1+srt4_amd64"; + md5 = "7ecb41c7e23f1caa6764abed122a2f6b"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libv/libvpx/libvpx1_1.0.0-1+srt4_amd64.deb"; + inherit md5; + name = "libvpx1.deb"; + }; + } + rec { + name = "libwind0-heimdal_1.6~git20120311.dfsg.1-2+srt4_amd64"; + md5 = "a1e5b4a8f8200feef82dab976f1b4e5d"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/h/heimdal/libwind0-heimdal_1.6~git20120311.dfsg.1-2+srt4_amd64.deb"; + inherit md5; + name = "libwind0-heimdal.deb"; + }; + } + rec { + name = "libwrap0_7.6.q-21+srt4_amd64"; + md5 = "52c3a2c8395cbba79e65c3d60a82e1fd"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/t/tcp-wrappers/libwrap0_7.6.q-21+srt4_amd64.deb"; + inherit md5; + name = "libwrap0.deb"; + }; + } + rec { + name = "libx11-6_1.4.99.1-0ubuntu2.2+steamrt1+srt4_amd64"; + md5 = "d1dd7819a0bcd2915c6df05f34bd2932"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libx11/libx11-6_1.4.99.1-0ubuntu2.2+steamrt1+srt4_amd64.deb"; + inherit md5; + name = "libx11-6.deb"; + }; + } + rec { + name = "libx11-data_1.4.99.1-0ubuntu2.2+steamrt1+srt4_all"; + md5 = "e9c006f3f06178fd1a47f4fdffcc9da3"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libx11/libx11-data_1.4.99.1-0ubuntu2.2+steamrt1+srt4_all.deb"; + inherit md5; + name = "libx11-data.deb"; + }; + } + rec { + name = "libx11-xcb1_1.4.99.1-0ubuntu2.2+steamrt1+srt4_amd64"; + md5 = "59f62a1b493eeaa0438d4b5e002fe269"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libx11/libx11-xcb1_1.4.99.1-0ubuntu2.2+steamrt1+srt4_amd64.deb"; + inherit md5; + name = "libx11-xcb1.deb"; + }; + } + rec { + name = "libxau6_1.0.6-4+srt4_amd64"; + md5 = "a1de8ce9992f09ca56f20ab8327c34a2"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxau/libxau6_1.0.6-4+srt4_amd64.deb"; + inherit md5; + name = "libxau6.deb"; + }; + } + rec { + name = "libxaw7_1.0.9-3ubuntu1+srt4_amd64"; + md5 = "57942d64120a191d0a1ca3bcb1fb2b8f"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxaw/libxaw7_1.0.9-3ubuntu1+srt4_amd64.deb"; + inherit md5; + name = "libxaw7.deb"; + }; + } + rec { + name = "libxcb-composite0_1.10-2ubuntu1+srt4_amd64"; + md5 = "ec25a999e0cd681955ef2f9b06161dfe"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxcb/libxcb-composite0_1.10-2ubuntu1+srt4_amd64.deb"; + inherit md5; + name = "libxcb-composite0.deb"; + }; + } + rec { + name = "libxcb-damage0_1.10-2ubuntu1+srt4_amd64"; + md5 = "a34a6950609570a554e574b086b73c7f"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxcb/libxcb-damage0_1.10-2ubuntu1+srt4_amd64.deb"; + inherit md5; + name = "libxcb-damage0.deb"; + }; + } + rec { + name = "libxcb-doc_1.10-2ubuntu1+srt4_all"; + md5 = "d4fd2c66b60ff1db1c87e6884d5ae093"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxcb/libxcb-doc_1.10-2ubuntu1+srt4_all.deb"; + inherit md5; + name = "libxcb-doc.deb"; + }; + } + rec { + name = "libxcb-dpms0_1.10-2ubuntu1+srt4_amd64"; + md5 = "ba4c437f0ab6f71284dca7d61b0e6df0"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxcb/libxcb-dpms0_1.10-2ubuntu1+srt4_amd64.deb"; + inherit md5; + name = "libxcb-dpms0.deb"; + }; + } + rec { + name = "libxcb-dri2-0_1.10-2ubuntu1+srt4_amd64"; + md5 = "ea4e1ff16a644f136ae45c7e2b9849c8"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxcb/libxcb-dri2-0_1.10-2ubuntu1+srt4_amd64.deb"; + inherit md5; + name = "libxcb-dri2-0.deb"; + }; + } + rec { + name = "libxcb-dri3-0_1.10-2ubuntu1+srt4_amd64"; + md5 = "386ba46c8f015d642d9351d690f0a822"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxcb/libxcb-dri3-0_1.10-2ubuntu1+srt4_amd64.deb"; + inherit md5; + name = "libxcb-dri3-0.deb"; + }; + } + rec { + name = "libxcb-glx0_1.10-2ubuntu1+srt4_amd64"; + md5 = "e2eeda427ea95e90068f4434a926fd25"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxcb/libxcb-glx0_1.10-2ubuntu1+srt4_amd64.deb"; + inherit md5; + name = "libxcb-glx0.deb"; + }; + } + rec { + name = "libxcb-present0_1.10-2ubuntu1+srt4_amd64"; + md5 = "0519bd96e7af25f6acf1a6cd63536d38"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxcb/libxcb-present0_1.10-2ubuntu1+srt4_amd64.deb"; + inherit md5; + name = "libxcb-present0.deb"; + }; + } + rec { + name = "libxcb-randr0_1.10-2ubuntu1+srt4_amd64"; + md5 = "bc24264b0ca68cc209e66f1620aeb232"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxcb/libxcb-randr0_1.10-2ubuntu1+srt4_amd64.deb"; + inherit md5; + name = "libxcb-randr0.deb"; + }; + } + rec { + name = "libxcb-record0_1.10-2ubuntu1+srt4_amd64"; + md5 = "2ee93429107681f1afddcd932b55710b"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxcb/libxcb-record0_1.10-2ubuntu1+srt4_amd64.deb"; + inherit md5; + name = "libxcb-record0.deb"; + }; + } + rec { + name = "libxcb-render0_1.10-2ubuntu1+srt4_amd64"; + md5 = "ec46d80b43969cffd7aebbef27359897"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxcb/libxcb-render0_1.10-2ubuntu1+srt4_amd64.deb"; + inherit md5; + name = "libxcb-render0.deb"; + }; + } + rec { + name = "libxcb-res0_1.10-2ubuntu1+srt4_amd64"; + md5 = "74a13db70ec5ab4a0be7ea5afababa8b"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxcb/libxcb-res0_1.10-2ubuntu1+srt4_amd64.deb"; + inherit md5; + name = "libxcb-res0.deb"; + }; + } + rec { + name = "libxcb-screensaver0_1.10-2ubuntu1+srt4_amd64"; + md5 = "e20c88e8b39404b5e60841ea24860c48"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxcb/libxcb-screensaver0_1.10-2ubuntu1+srt4_amd64.deb"; + inherit md5; + name = "libxcb-screensaver0.deb"; + }; + } + rec { + name = "libxcb-shape0_1.10-2ubuntu1+srt4_amd64"; + md5 = "64773ffa7219574d1356fa2b621d5f4f"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxcb/libxcb-shape0_1.10-2ubuntu1+srt4_amd64.deb"; + inherit md5; + name = "libxcb-shape0.deb"; + }; + } + rec { + name = "libxcb-shm0_1.10-2ubuntu1+srt4_amd64"; + md5 = "d263f46ada805900e88deb8bd6e7016e"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxcb/libxcb-shm0_1.10-2ubuntu1+srt4_amd64.deb"; + inherit md5; + name = "libxcb-shm0.deb"; + }; + } + rec { + name = "libxcb-sync1_1.10-2ubuntu1+srt4_amd64"; + md5 = "df0ce39512e455f442268bf9f9c0c52e"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxcb/libxcb-sync1_1.10-2ubuntu1+srt4_amd64.deb"; + inherit md5; + name = "libxcb-sync1.deb"; + }; + } + rec { + name = "libxcb-xevie0_1.10-2ubuntu1+srt4_amd64"; + md5 = "dfd64e3afb9c3eb4c2938bbf8288323a"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxcb/libxcb-xevie0_1.10-2ubuntu1+srt4_amd64.deb"; + inherit md5; + name = "libxcb-xevie0.deb"; + }; + } + rec { + name = "libxcb-xf86dri0_1.10-2ubuntu1+srt4_amd64"; + md5 = "09107ec941a6361acb73922f49905edf"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxcb/libxcb-xf86dri0_1.10-2ubuntu1+srt4_amd64.deb"; + inherit md5; + name = "libxcb-xf86dri0.deb"; + }; + } + rec { + name = "libxcb-xfixes0_1.10-2ubuntu1+srt4_amd64"; + md5 = "cf8ee2c9b5459dd229f2967ab28b7bba"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxcb/libxcb-xfixes0_1.10-2ubuntu1+srt4_amd64.deb"; + inherit md5; + name = "libxcb-xfixes0.deb"; + }; + } + rec { + name = "libxcb-xinerama0_1.10-2ubuntu1+srt4_amd64"; + md5 = "c418c00f009cdb7e4ed25a0fc4059a1e"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxcb/libxcb-xinerama0_1.10-2ubuntu1+srt4_amd64.deb"; + inherit md5; + name = "libxcb-xinerama0.deb"; + }; + } + rec { + name = "libxcb-xkb1_1.10-2ubuntu1+srt4_amd64"; + md5 = "c06f25c1c69e78e0f0fe39f0e20ca796"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxcb/libxcb-xkb1_1.10-2ubuntu1+srt4_amd64.deb"; + inherit md5; + name = "libxcb-xkb1.deb"; + }; + } + rec { + name = "libxcb-xprint0_1.10-2ubuntu1+srt4_amd64"; + md5 = "760966200beff9f7c9ff0f4af224e65a"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxcb/libxcb-xprint0_1.10-2ubuntu1+srt4_amd64.deb"; + inherit md5; + name = "libxcb-xprint0.deb"; + }; + } + rec { + name = "libxcb-xtest0_1.10-2ubuntu1+srt4_amd64"; + md5 = "e2f30b8aaf1cdc0bf7d234db9bbbf50e"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxcb/libxcb-xtest0_1.10-2ubuntu1+srt4_amd64.deb"; + inherit md5; + name = "libxcb-xtest0.deb"; + }; + } + rec { + name = "libxcb-xv0_1.10-2ubuntu1+srt4_amd64"; + md5 = "d16c7873af0ffc0b370332ce1d562755"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxcb/libxcb-xv0_1.10-2ubuntu1+srt4_amd64.deb"; + inherit md5; + name = "libxcb-xv0.deb"; + }; + } + rec { + name = "libxcb-xvmc0_1.10-2ubuntu1+srt4_amd64"; + md5 = "ea26ad6eef4b71fff944008f542eed5d"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxcb/libxcb-xvmc0_1.10-2ubuntu1+srt4_amd64.deb"; + inherit md5; + name = "libxcb-xvmc0.deb"; + }; + } + rec { + name = "libxcb1_1.10-2ubuntu1+srt4_amd64"; + md5 = "93dbb1e6d32178cc1a2e994b6d87d8d3"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxcb/libxcb1_1.10-2ubuntu1+srt4_amd64.deb"; + inherit md5; + name = "libxcb1.deb"; + }; + } + rec { + name = "libxcomposite1_0.4.3-2build1+srt4_amd64"; + md5 = "e817d11de4660b9fd4a66db90cdc2588"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxcomposite/libxcomposite1_0.4.3-2build1+srt4_amd64.deb"; + inherit md5; + name = "libxcomposite1.deb"; + }; + } + rec { + name = "libxcursor1_1.1.12-1ubuntu0.1+srt4_amd64"; + md5 = "7055ec097c7ed9cc6497f111311b4f75"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxcursor/libxcursor1_1.1.12-1ubuntu0.1+srt4_amd64.deb"; + inherit md5; + name = "libxcursor1.deb"; + }; + } + rec { + name = "libxdamage1_1.1.3-2build1+srt4_amd64"; + md5 = "2b3f144fdbd30408c25379a7409ba045"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxdamage/libxdamage1_1.1.3-2build1+srt4_amd64.deb"; + inherit md5; + name = "libxdamage1.deb"; + }; + } + rec { + name = "libxdmcp6_1.1.0-4+srt4_amd64"; + md5 = "201844de38f2d957a5ced6a28d2c80cb"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxdmcp/libxdmcp6_1.1.0-4+srt4_amd64.deb"; + inherit md5; + name = "libxdmcp6.deb"; + }; + } + rec { + name = "libxext6_1.3.0-3ubuntu0.1+steamrt1+srt1_amd64"; + md5 = "6b395ceb55a4454c5fe2f4cfe45d2a3d"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxext/libxext6_1.3.0-3ubuntu0.1+steamrt1+srt1_amd64.deb"; + inherit md5; + name = "libxext6.deb"; + }; + } + rec { + name = "libxfixes3_5.0-4ubuntu4.3+srt1_amd64"; + md5 = "462d20f1f3e38c92f22434fe75c4f932"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxfixes/libxfixes3_5.0-4ubuntu4.3+srt1_amd64.deb"; + inherit md5; + name = "libxfixes3.deb"; + }; + } + rec { + name = "libxft2_2.2.0-3ubuntu2+srt4_amd64"; + md5 = "de249fadd51c61b98bada7eb7cff8d29"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/x/xft/libxft2_2.2.0-3ubuntu2+srt4_amd64.deb"; + inherit md5; + name = "libxft2.deb"; + }; + } + rec { + name = "libxi6_1.7.1.901-1ubuntu1~precise2+srt1_amd64"; + md5 = "c4aa3fcef9981735073c73d822ac52cb"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxi/libxi6_1.7.1.901-1ubuntu1~precise2+srt1_amd64.deb"; + inherit md5; + name = "libxi6.deb"; + }; + } + rec { + name = "libxinerama1_1.1.1-3ubuntu0.1+srt4_amd64"; + md5 = "44dc2b8d96d4d3db048e358174500584"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxinerama/libxinerama1_1.1.1-3ubuntu0.1+srt4_amd64.deb"; + inherit md5; + name = "libxinerama1.deb"; + }; + } + rec { + name = "libxml2_2.7.8.dfsg-5.1ubuntu4.11+srt1_amd64"; + md5 = "65ae8b0560c18f4618bd0c9414e881fa"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxml2/libxml2_2.7.8.dfsg-5.1ubuntu4.11+srt1_amd64.deb"; + inherit md5; + name = "libxml2.deb"; + }; + } + rec { + name = "libxmu6_1.1.0-3+srt4_amd64"; + md5 = "8f6657584a244c039bcfa24ad8934e75"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxmu/libxmu6_1.1.0-3+srt4_amd64.deb"; + inherit md5; + name = "libxmu6.deb"; + }; + } + rec { + name = "libxpm4_3.5.9-4+srt4_amd64"; + md5 = "807b3e86250c3640175da4980db87ab5"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxpm/libxpm4_3.5.9-4+srt4_amd64.deb"; + inherit md5; + name = "libxpm4.deb"; + }; + } + rec { + name = "libxrandr2_1.3.2-2ubuntu0.2+srt4_amd64"; + md5 = "7fde5d0b6ffa9f94f0300edc4de04ad6"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxrandr/libxrandr2_1.3.2-2ubuntu0.2+srt4_amd64.deb"; + inherit md5; + name = "libxrandr2.deb"; + }; + } + rec { + name = "libxrender1_0.9.6-2ubuntu0.1+srt4_amd64"; + md5 = "a01473ee15ce4a8bb1a1ac2fc8e81bda"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxrender/libxrender1_0.9.6-2ubuntu0.1+srt4_amd64.deb"; + inherit md5; + name = "libxrender1.deb"; + }; + } + rec { + name = "libxss1_1.2.1-2+srt4_amd64"; + md5 = "3d034c5c118d8794e2b76207c52a198e"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxss/libxss1_1.2.1-2+srt4_amd64.deb"; + inherit md5; + name = "libxss1.deb"; + }; + } + rec { + name = "libxt6_1.1.1-2ubuntu0.1+srt4_amd64"; + md5 = "e4d13d933531f436c56e3245c94be638"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxt/libxt6_1.1.1-2ubuntu0.1+srt4_amd64.deb"; + inherit md5; + name = "libxt6.deb"; + }; + } + rec { + name = "libxtst6_1.2.0-4ubuntu0.1+srt4_amd64"; + md5 = "75a55367e5185eac420f89807e39faa2"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxtst/libxtst6_1.2.0-4ubuntu0.1+srt4_amd64.deb"; + inherit md5; + name = "libxtst6.deb"; + }; + } + rec { + name = "libxxf86vm1_1.1.1-2ubuntu0.1+srt4_amd64"; + md5 = "e8e91fa6a42cfce330883dc1286f3d78"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxxf86vm/libxxf86vm1_1.1.1-2ubuntu0.1+srt4_amd64.deb"; + inherit md5; + name = "libxxf86vm1.deb"; + }; + } + rec { + name = "nvidia-cg-toolkit_3.0.0016-0ubuntu1+srt4_amd64"; + md5 = "d9d307b821b71b3cdd91cb8d2137c527"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/n/nvidia-cg-toolkit/nvidia-cg-toolkit_3.0.0016-0ubuntu1+srt4_amd64.deb"; + inherit md5; + name = "nvidia-cg-toolkit.deb"; + }; + } + rec { + name = "zenity_3.4.0-0ubuntu4+steamrt2+srt4_amd64"; + md5 = "44a2bda05acf6d10aaad2216a69507db"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/z/zenity/zenity_3.4.0-0ubuntu4+steamrt2+srt4_amd64.deb"; + inherit md5; + name = "zenity.deb"; + }; + } + rec { + name = "zlib1g_1.2.3.4.dfsg-3ubuntu4+srt4_amd64"; + md5 = "3370614dc8c2667679aefb4c1e4c07af"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/z/zlib/zlib1g_1.2.3.4.dfsg-3ubuntu4+srt4_amd64.deb"; + inherit md5; + name = "zlib1g.deb"; + }; + } + ]; + i386 = [ + rec { + name = "dconf-gsettings-backend_0.12.0-0ubuntu1.1+srt4_i386"; + md5 = "2ec67bae5e0c088d1ac13ba4eee194bf"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/d/d-conf/dconf-gsettings-backend_0.12.0-0ubuntu1.1+srt4_i386.deb"; + inherit md5; + name = "dconf-gsettings-backend.deb"; + }; + } + rec { + name = "freeglut3_2.6.0-1ubuntu3+srt4_i386"; + md5 = "8fc95adac306cc313523179824b43835"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/f/freeglut/freeglut3_2.6.0-1ubuntu3+srt4_i386.deb"; + inherit md5; + name = "freeglut3.deb"; + }; + } + rec { + name = "gcc-4.6-base_4.6.3-1ubuntu5+srt4_i386"; + md5 = "499ec92726b0ce7115697d2553d0176d"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/g/gcc-4.6/gcc-4.6-base_4.6.3-1ubuntu5+srt4_i386.deb"; + inherit md5; + name = "gcc-4.6-base.deb"; + }; + } + rec { + name = "gtk2-engines_2.20.2-1ubuntu1+srt4_i386"; + md5 = "2c7feb2392d943f07c985d8cf83ed067"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/g/gtk2-engines/gtk2-engines_2.20.2-1ubuntu1+srt4_i386.deb"; + inherit md5; + name = "gtk2-engines.deb"; + }; + } + rec { + name = "gtk2-engines-murrine_0.98.2-0ubuntu1+srt4_i386"; + md5 = "73bc5a4840f1ab72d715964721e97f75"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/g/gtk2-engines-murrine/gtk2-engines-murrine_0.98.2-0ubuntu1+srt4_i386.deb"; + inherit md5; + name = "gtk2-engines-murrine.deb"; + }; + } + rec { + name = "gtk2-engines-pixbuf_2.24.10-0ubuntu6+steamrt1+srt4_i386"; + md5 = "cf294afff2a4d5893e48beb4d308f7b8"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/g/gtk+2.0/gtk2-engines-pixbuf_2.24.10-0ubuntu6+steamrt1+srt4_i386.deb"; + inherit md5; + name = "gtk2-engines-pixbuf.deb"; + }; + } + rec { + name = "libacl1_2.2.51-5ubuntu1+srt6_i386"; + md5 = "b335451ab178fabccf1ea5d3fc3bf17e"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/a/acl/libacl1_2.2.51-5ubuntu1+srt6_i386.deb"; + inherit md5; + name = "libacl1.deb"; + }; + } + rec { + name = "libappindicator1_0.4.92-0ubuntu1+steamrt1+srt5_i386"; + md5 = "e1998f1e6dfd34d993ae2cb1a2621c05"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/liba/libappindicator/libappindicator1_0.4.92-0ubuntu1+steamrt1+srt5_i386.deb"; + inherit md5; + name = "libappindicator1.deb"; + }; + } + rec { + name = "libasn1-8-heimdal_1.6~git20120311.dfsg.1-2+srt4_i386"; + md5 = "49228f60eedb525d344a8f756ac18df0"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/h/heimdal/libasn1-8-heimdal_1.6~git20120311.dfsg.1-2+srt4_i386.deb"; + inherit md5; + name = "libasn1-8-heimdal.deb"; + }; + } + rec { + name = "libasound2_1.0.25-1ubuntu10.1+steamrt1+srt4_i386"; + md5 = "306ee9c004c5677442661dfdc1617911"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/a/alsa-lib/libasound2_1.0.25-1ubuntu10.1+steamrt1+srt4_i386.deb"; + inherit md5; + name = "libasound2.deb"; + }; + } + rec { + name = "libasound2-plugins_1.0.25-1ubuntu1+srt4_i386"; + md5 = "8afcb694c51af22d48366d8d0ee11738"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/a/alsa-plugins/libasound2-plugins_1.0.25-1ubuntu1+srt4_i386.deb"; + inherit md5; + name = "libasound2-plugins.deb"; + }; + } + rec { + name = "libasyncns0_0.8-4+srt4_i386"; + md5 = "59ed0cdc4eb0cae2355c368dbdd5103b"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/liba/libasyncns/libasyncns0_0.8-4+srt4_i386.deb"; + inherit md5; + name = "libasyncns0.deb"; + }; + } + rec { + name = "libatk1.0-0_2.4.0-0ubuntu1+srt4_i386"; + md5 = "7fbe2a86e8e8a547626b9dc42edd6c83"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/a/atk1.0/libatk1.0-0_2.4.0-0ubuntu1+srt4_i386.deb"; + inherit md5; + name = "libatk1.0-0.deb"; + }; + } + rec { + name = "libattr1_2.4.46-5ubuntu1+srt4_i386"; + md5 = "cd9827abda30e1bf97c78a7d3dffc150"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/a/attr/libattr1_2.4.46-5ubuntu1+srt4_i386.deb"; + inherit md5; + name = "libattr1.deb"; + }; + } + rec { + name = "libavahi-client3_0.6.30-5ubuntu2+srt4_i386"; + md5 = "b62360b70b965c13c86536fbcd5c3dd2"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/a/avahi/libavahi-client3_0.6.30-5ubuntu2+srt4_i386.deb"; + inherit md5; + name = "libavahi-client3.deb"; + }; + } + rec { + name = "libavahi-common3_0.6.30-5ubuntu2+srt4_i386"; + md5 = "ef91c00328996a43243b7de90f60d145"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/a/avahi/libavahi-common3_0.6.30-5ubuntu2+srt4_i386.deb"; + inherit md5; + name = "libavahi-common3.deb"; + }; + } + rec { + name = "libavcodec53_0.8.13-0ubuntu0.12.04.1+steamrt1+srt1_i386"; + md5 = "4787c81afc9a17c9b9f7700249d42e9d"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/liba/libav/libavcodec53_0.8.13-0ubuntu0.12.04.1+steamrt1+srt1_i386.deb"; + inherit md5; + name = "libavcodec53.deb"; + }; + } + rec { + name = "libavfilter2_0.8.13-0ubuntu0.12.04.1+steamrt1+srt1_i386"; + md5 = "396ec91c52c5f3bd22d53c6f9ec58836"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/liba/libav/libavfilter2_0.8.13-0ubuntu0.12.04.1+steamrt1+srt1_i386.deb"; + inherit md5; + name = "libavfilter2.deb"; + }; + } + rec { + name = "libavformat53_0.8.13-0ubuntu0.12.04.1+steamrt1+srt1_i386"; + md5 = "a0b3c36045eaa4b93ec0c8db5999e95c"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/liba/libav/libavformat53_0.8.13-0ubuntu0.12.04.1+steamrt1+srt1_i386.deb"; + inherit md5; + name = "libavformat53.deb"; + }; + } + rec { + name = "libavutil51_0.8.13-0ubuntu0.12.04.1+steamrt1+srt1_i386"; + md5 = "21589331257b33edf01f06f2cea89494"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/liba/libav/libavutil51_0.8.13-0ubuntu0.12.04.1+steamrt1+srt1_i386.deb"; + inherit md5; + name = "libavutil51.deb"; + }; + } + rec { + name = "libbz2-1.0_1.0.6-1+srt4_i386"; + md5 = "6af7e943feae8691d7331c8e616ea402"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/b/bzip2/libbz2-1.0_1.0.6-1+srt4_i386.deb"; + inherit md5; + name = "libbz2-1.0.deb"; + }; + } + rec { + name = "libcairo2_1.10.2-6.1ubuntu3+srt4_i386"; + md5 = "33c0e1be296288e7681d88d5775cd3c1"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/c/cairo/libcairo2_1.10.2-6.1ubuntu3+srt4_i386.deb"; + inherit md5; + name = "libcairo2.deb"; + }; + } + rec { + name = "libcanberra-gtk-module_0.28-3ubuntu3+steamrt1+srt4_i386"; + md5 = "53b3f4d615e0571aefec5ba4990c246d"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libc/libcanberra/libcanberra-gtk-module_0.28-3ubuntu3+steamrt1+srt4_i386.deb"; + inherit md5; + name = "libcanberra-gtk-module.deb"; + }; + } + rec { + name = "libcanberra-gtk0_0.28-3ubuntu3+steamrt1+srt4_i386"; + md5 = "af77180b67e083ca1c7c16f125d773d8"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libc/libcanberra/libcanberra-gtk0_0.28-3ubuntu3+steamrt1+srt4_i386.deb"; + inherit md5; + name = "libcanberra-gtk0.deb"; + }; + } + rec { + name = "libcanberra0_0.28-3ubuntu3+steamrt1+srt4_i386"; + md5 = "ffca46ec6dc8f075f3bd224ae0e4e535"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libc/libcanberra/libcanberra0_0.28-3ubuntu3+steamrt1+srt4_i386.deb"; + inherit md5; + name = "libcanberra0.deb"; + }; + } + rec { + name = "libcap2_2.22-1ubuntu3+srt4_i386"; + md5 = "21af02a5fe56b6ec332eb0c6f1e1d187"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libc/libcap2/libcap2_2.22-1ubuntu3+srt4_i386.deb"; + inherit md5; + name = "libcap2.deb"; + }; + } + rec { + name = "libcg_3.0.0016-0ubuntu1+srt4_i386"; + md5 = "5d8b9bd239ea094bc25041c7437a60d7"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/n/nvidia-cg-toolkit/libcg_3.0.0016-0ubuntu1+srt4_i386.deb"; + inherit md5; + name = "libcg.deb"; + }; + } + rec { + name = "libcomerr2_1.42-1ubuntu2+srt4_i386"; + md5 = "165e9ea1f09704a353220b9ff6cf2f1b"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/e/e2fsprogs/libcomerr2_1.42-1ubuntu2+srt4_i386.deb"; + inherit md5; + name = "libcomerr2.deb"; + }; + } + rec { + name = "libcups2_1.5.3-0ubuntu8.2+steamrt1+srt3_i386"; + md5 = "134c7e63ef61bb469ebc61c26309e42e"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/c/cups/libcups2_1.5.3-0ubuntu8.2+steamrt1+srt3_i386.deb"; + inherit md5; + name = "libcups2.deb"; + }; + } + rec { + name = "libcurl3_7.22.0-3ubuntu4.8+steamrt2+srt5_i386"; + md5 = "b2dc62a422bf1ebc4014073664d38b3b"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/c/curl/libcurl3_7.22.0-3ubuntu4.8+steamrt2+srt5_i386.deb"; + inherit md5; + name = "libcurl3.deb"; + }; + } + rec { + name = "libcurl3-gnutls_7.22.0-3ubuntu4.8+steamrt2+srt5_i386"; + md5 = "f95df746d4c7319e4cb83f082d39ab38"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/c/curl/libcurl3-gnutls_7.22.0-3ubuntu4.8+steamrt2+srt5_i386.deb"; + inherit md5; + name = "libcurl3-gnutls.deb"; + }; + } + rec { + name = "libdbus-1-3_1.4.18-1ubuntu1.6+srt1_i386"; + md5 = "01a50cab2a169d9b0eff71b5cee000ad"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/d/dbus/libdbus-1-3_1.4.18-1ubuntu1.6+srt1_i386.deb"; + inherit md5; + name = "libdbus-1-3.deb"; + }; + } + rec { + name = "libdbus-glib-1-2_0.98-1ubuntu1.1+srt4_i386"; + md5 = "4082582c368e35112478847ca5afad30"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/d/dbus-glib/libdbus-glib-1-2_0.98-1ubuntu1.1+srt4_i386.deb"; + inherit md5; + name = "libdbus-glib-1-2.deb"; + }; + } + rec { + name = "libdbusmenu-glib4_0.6.2-0ubuntu0.1+srt4_i386"; + md5 = "593ce60da5a985932e8a43802e662237"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libd/libdbusmenu/libdbusmenu-glib4_0.6.2-0ubuntu0.1+srt4_i386.deb"; + inherit md5; + name = "libdbusmenu-glib4.deb"; + }; + } + rec { + name = "libdbusmenu-gtk4_0.6.2-0ubuntu0.1+srt4_i386"; + md5 = "1982414c7f72db3106ab8446596cdbb9"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libd/libdbusmenu/libdbusmenu-gtk4_0.6.2-0ubuntu0.1+srt4_i386.deb"; + inherit md5; + name = "libdbusmenu-gtk4.deb"; + }; + } + rec { + name = "libexif12_0.6.20-2ubuntu0.1+srt4_i386"; + md5 = "eb203ec5c79ed77e053efaa1bc8d65d4"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libe/libexif/libexif12_0.6.20-2ubuntu0.1+srt4_i386.deb"; + inherit md5; + name = "libexif12.deb"; + }; + } + rec { + name = "libexpat1_2.0.1-7.2ubuntu1.1+srt4_i386"; + md5 = "4478766ffb8f96db66de0b0f2ccfb290"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/e/expat/libexpat1_2.0.1-7.2ubuntu1.1+srt4_i386.deb"; + inherit md5; + name = "libexpat1.deb"; + }; + } + rec { + name = "libffi6_3.0.11~rc1-5+srt4_i386"; + md5 = "4a07d2ad9dc8e67ad6edaccad85170ae"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libf/libffi/libffi6_3.0.11~rc1-5+srt4_i386.deb"; + inherit md5; + name = "libffi6.deb"; + }; + } + rec { + name = "libflac8_1.2.1-6+srt4_i386"; + md5 = "543202e74de54764bd9ca25548d4bd86"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/f/flac/libflac8_1.2.1-6+srt4_i386.deb"; + inherit md5; + name = "libflac8.deb"; + }; + } + rec { + name = "libfltk1.1_1.1.10-10+srt4_i386"; + md5 = "8be404e25f342918fb99b40320f8bc4c"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/f/fltk1.1/libfltk1.1_1.1.10-10+srt4_i386.deb"; + inherit md5; + name = "libfltk1.1.deb"; + }; + } + rec { + name = "libfontconfig1_2.8.0-3ubuntu9.1+srt4_i386"; + md5 = "57d781f78fc1c75d947208e09a58a39b"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/f/fontconfig/libfontconfig1_2.8.0-3ubuntu9.1+srt4_i386.deb"; + inherit md5; + name = "libfontconfig1.deb"; + }; + } + rec { + name = "libfreetype6_2.4.8-1ubuntu2.2+srt1_i386"; + md5 = "257bf20101de39017f83e9934cea06e4"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/f/freetype/libfreetype6_2.4.8-1ubuntu2.2+srt1_i386.deb"; + inherit md5; + name = "libfreetype6.deb"; + }; + } + rec { + name = "libgcc1_4.8.1-2ubuntu1~12.04+steamrt2+srt1_i386"; + md5 = "61f4822f145d812c453b2fc5d71f5eae"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/g/gcc-4.8/libgcc1_4.8.1-2ubuntu1~12.04+steamrt2+srt1_i386.deb"; + inherit md5; + name = "libgcc1.deb"; + }; + } + rec { + name = "libgconf-2-4_3.2.5-0ubuntu2+srt4_i386"; + md5 = "1c0863073b6fdbdbe5ff911ed3cc781d"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/g/gconf/libgconf-2-4_3.2.5-0ubuntu2+srt4_i386.deb"; + inherit md5; + name = "libgconf-2-4.deb"; + }; + } + rec { + name = "libgcrypt11_1.5.0-3ubuntu0.3+srt1_i386"; + md5 = "a857ecbbc060af329d774fefe41b4d5d"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libg/libgcrypt11/libgcrypt11_1.5.0-3ubuntu0.3+srt1_i386.deb"; + inherit md5; + name = "libgcrypt11.deb"; + }; + } + rec { + name = "libgdk-pixbuf2.0-0_2.26.1-1+steamrt3+srt4_i386"; + md5 = "9108b1542d78b682f141c3b488f33821"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/g/gdk-pixbuf/libgdk-pixbuf2.0-0_2.26.1-1+steamrt3+srt4_i386.deb"; + inherit md5; + name = "libgdk-pixbuf2.0-0.deb"; + }; + } + rec { + name = "libglew1.10_1.10.0-3+srt4_i386"; + md5 = "cbd2c842295be412d25bf35ad4329c7a"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/g/glew/libglew1.10_1.10.0-3+srt4_i386.deb"; + inherit md5; + name = "libglew1.10.deb"; + }; + } + rec { + name = "libglew1.6_1.6.0-4+srt4_i386"; + md5 = "36344ae65699fdfac8d169c54f45dabf"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/g/glew/libglew1.6_1.6.0-4+srt4_i386.deb"; + inherit md5; + name = "libglew1.6.deb"; + }; + } + rec { + name = "libglib2.0-0_2.32.3-0ubuntu1+steamrt2+srt4_i386"; + md5 = "2bb8b70952f8f6d724700e72db8bbef8"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/g/glib2.0/libglib2.0-0_2.32.3-0ubuntu1+steamrt2+srt4_i386.deb"; + inherit md5; + name = "libglib2.0-0.deb"; + }; + } + rec { + name = "libglu1-mesa_8.0.4-0ubuntu0.7+srt4_i386"; + md5 = "bbdb5055ac6164380a6c344bdca59a74"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/m/mesa/libglu1-mesa_8.0.4-0ubuntu0.7+srt4_i386.deb"; + inherit md5; + name = "libglu1-mesa.deb"; + }; + } + rec { + name = "libgmp10_5.0.2+dfsg-2ubuntu1+srt4_i386"; + md5 = "669fcbbac0ba7510cb5df1ed7a4b58a8"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/g/gmp/libgmp10_5.0.2+dfsg-2ubuntu1+srt4_i386.deb"; + inherit md5; + name = "libgmp10.deb"; + }; + } + rec { + name = "libgnutls26_2.12.14-5ubuntu3.9+srt1_i386"; + md5 = "51da86a2dd3205580f9cbc43cabf921f"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/g/gnutls26/libgnutls26_2.12.14-5ubuntu3.9+srt1_i386.deb"; + inherit md5; + name = "libgnutls26.deb"; + }; + } + rec { + name = "libgomp1_4.8.1-2ubuntu1~12.04+steamrt2+srt1_i386"; + md5 = "d52479b3e735785256c8b6ba2a278ed3"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/g/gcc-4.8/libgomp1_4.8.1-2ubuntu1~12.04+steamrt2+srt1_i386.deb"; + inherit md5; + name = "libgomp1.deb"; + }; + } + rec { + name = "libgpg-error0_1.10-2ubuntu1+srt4_i386"; + md5 = "8cda79074a80e9c079251962c86cc5cf"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libg/libgpg-error/libgpg-error0_1.10-2ubuntu1+srt4_i386.deb"; + inherit md5; + name = "libgpg-error0.deb"; + }; + } + rec { + name = "libgssapi-krb5-2_1.10+dfsg~beta1-2ubuntu0.6+srt1_i386"; + md5 = "8fc7da47074cdac1c721b280db75b571"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/k/krb5/libgssapi-krb5-2_1.10+dfsg~beta1-2ubuntu0.6+srt1_i386.deb"; + inherit md5; + name = "libgssapi-krb5-2.deb"; + }; + } + rec { + name = "libgssapi3-heimdal_1.6~git20120311.dfsg.1-2+srt4_i386"; + md5 = "1160d5fb86160631a7e699d66f1d6805"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/h/heimdal/libgssapi3-heimdal_1.6~git20120311.dfsg.1-2+srt4_i386.deb"; + inherit md5; + name = "libgssapi3-heimdal.deb"; + }; + } + rec { + name = "libgstreamer-plugins-base0.10-0_0.10.36-1ubuntu0.1+srt4_i386"; + md5 = "b3e0cb34c2b21fb68fe4fbde8ae640a7"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/g/gst-plugins-base0.10/libgstreamer-plugins-base0.10-0_0.10.36-1ubuntu0.1+srt4_i386.deb"; + inherit md5; + name = "libgstreamer-plugins-base0.10-0.deb"; + }; + } + rec { + name = "libgstreamer0.10-0_0.10.36-1ubuntu1+srt4_i386"; + md5 = "633c94c28db5caa2001fce91ca6a726f"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/g/gstreamer0.10/libgstreamer0.10-0_0.10.36-1ubuntu1+srt4_i386.deb"; + inherit md5; + name = "libgstreamer0.10-0.deb"; + }; + } + rec { + name = "libgtk2.0-0_2.24.10-0ubuntu6+steamrt1+srt4_i386"; + md5 = "a903c62e138ca58cc32aa7412ec4a3ec"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/g/gtk+2.0/libgtk2.0-0_2.24.10-0ubuntu6+steamrt1+srt4_i386.deb"; + inherit md5; + name = "libgtk2.0-0.deb"; + }; + } + rec { + name = "libgtk2.0-common_2.24.10-0ubuntu6+steamrt1+srt4_all"; + md5 = "5a2f731bdac2bd089780af2f63635f7b"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/g/gtk+2.0/libgtk2.0-common_2.24.10-0ubuntu6+steamrt1+srt4_all.deb"; + inherit md5; + name = "libgtk2.0-common.deb"; + }; + } + rec { + name = "libgudev-1.0-0_175-0ubuntu9.2+srt4_i386"; + md5 = "a120c25c89a1136ef0daa25644387d26"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/u/udev/libgudev-1.0-0_175-0ubuntu9.2+srt4_i386.deb"; + inherit md5; + name = "libgudev-1.0-0.deb"; + }; + } + rec { + name = "libhcrypto4-heimdal_1.6~git20120311.dfsg.1-2+srt4_i386"; + md5 = "14714cd92839ae0a1716929840bd340f"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/h/heimdal/libhcrypto4-heimdal_1.6~git20120311.dfsg.1-2+srt4_i386.deb"; + inherit md5; + name = "libhcrypto4-heimdal.deb"; + }; + } + rec { + name = "libheimbase1-heimdal_1.6~git20120311.dfsg.1-2+srt4_i386"; + md5 = "9be4a5f3f6735aa3b9153c8cb5ba4ff9"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/h/heimdal/libheimbase1-heimdal_1.6~git20120311.dfsg.1-2+srt4_i386.deb"; + inherit md5; + name = "libheimbase1-heimdal.deb"; + }; + } + rec { + name = "libheimntlm0-heimdal_1.6~git20120311.dfsg.1-2+srt4_i386"; + md5 = "363aac3460da3724144165325f29f52a"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/h/heimdal/libheimntlm0-heimdal_1.6~git20120311.dfsg.1-2+srt4_i386.deb"; + inherit md5; + name = "libheimntlm0-heimdal.deb"; + }; + } + rec { + name = "libhx509-5-heimdal_1.6~git20120311.dfsg.1-2+srt4_i386"; + md5 = "5591041cf73d1593730ff40428b407dc"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/h/heimdal/libhx509-5-heimdal_1.6~git20120311.dfsg.1-2+srt4_i386.deb"; + inherit md5; + name = "libhx509-5-heimdal.deb"; + }; + } + rec { + name = "libice6_1.0.7-2build1+srt4_i386"; + md5 = "ed56f05e4b1fcf06189374a60aa740eb"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libi/libice/libice6_1.0.7-2build1+srt4_i386.deb"; + inherit md5; + name = "libice6.deb"; + }; + } + rec { + name = "libidn11_1.23-2+steamrt1+srt4_i386"; + md5 = "79c6f01961c13e74d48978fe94aecce3"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libi/libidn/libidn11_1.23-2+steamrt1+srt4_i386.deb"; + inherit md5; + name = "libidn11.deb"; + }; + } + rec { + name = "libindicator7_0.5.0-0ubuntu1+srt4_i386"; + md5 = "a365d22a80311e9875bde88c9b7b5146"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libi/libindicator/libindicator7_0.5.0-0ubuntu1+srt4_i386.deb"; + inherit md5; + name = "libindicator7.deb"; + }; + } + rec { + name = "libjack-jackd2-0_1.9.8~dfsg.1-1ubuntu2+srt3_i386"; + md5 = "c0e59176b50a2da0ec61d48902014ce5"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/j/jackd2/libjack-jackd2-0_1.9.8~dfsg.1-1ubuntu2+srt3_i386.deb"; + inherit md5; + name = "libjack-jackd2-0.deb"; + }; + } + rec { + name = "libjpeg-turbo8_1.1.90+svn733-0ubuntu4.3+srt4_i386"; + md5 = "83c82f7924110b659b8786b54ca6fb27"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libj/libjpeg-turbo/libjpeg-turbo8_1.1.90+svn733-0ubuntu4.3+srt4_i386.deb"; + inherit md5; + name = "libjpeg-turbo8.deb"; + }; + } + rec { + name = "libjpeg62_6b1-2ubuntu1.1+srt4_i386"; + md5 = "5084441d1da0b2d77de32cfadc21ee5f"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libj/libjpeg6b/libjpeg62_6b1-2ubuntu1.1+srt4_i386.deb"; + inherit md5; + name = "libjpeg62.deb"; + }; + } + rec { + name = "libjson0_0.9-1ubuntu1.1+srt2_i386"; + md5 = "358ed87729682d1d5a44b04a99f9cca8"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/j/json-c/libjson0_0.9-1ubuntu1.1+srt2_i386.deb"; + inherit md5; + name = "libjson0.deb"; + }; + } + rec { + name = "libk5crypto3_1.10+dfsg~beta1-2ubuntu0.6+srt1_i386"; + md5 = "9d903a775501687794f3579a439f62b0"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/k/krb5/libk5crypto3_1.10+dfsg~beta1-2ubuntu0.6+srt1_i386.deb"; + inherit md5; + name = "libk5crypto3.deb"; + }; + } + rec { + name = "libkeyutils1_1.5.2-2+srt4_i386"; + md5 = "77b6a1fdfe5d2976650e882df68f1bb7"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/k/keyutils/libkeyutils1_1.5.2-2+srt4_i386.deb"; + inherit md5; + name = "libkeyutils1.deb"; + }; + } + rec { + name = "libkrb5-26-heimdal_1.6~git20120311.dfsg.1-2+srt4_i386"; + md5 = "94eb595546d5b421504c6df661d29975"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/h/heimdal/libkrb5-26-heimdal_1.6~git20120311.dfsg.1-2+srt4_i386.deb"; + inherit md5; + name = "libkrb5-26-heimdal.deb"; + }; + } + rec { + name = "libkrb5-3_1.10+dfsg~beta1-2ubuntu0.6+srt1_i386"; + md5 = "b68e1bfee0598418a0a6b4280302f5f6"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/k/krb5/libkrb5-3_1.10+dfsg~beta1-2ubuntu0.6+srt1_i386.deb"; + inherit md5; + name = "libkrb5-3.deb"; + }; + } + rec { + name = "libkrb5support0_1.10+dfsg~beta1-2ubuntu0.6+srt1_i386"; + md5 = "b6a905144b615ef32e1a1ca67a10379e"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/k/krb5/libkrb5support0_1.10+dfsg~beta1-2ubuntu0.6+srt1_i386.deb"; + inherit md5; + name = "libkrb5support0.deb"; + }; + } + rec { + name = "liblcms2-2_2.2+git20110628-2ubuntu3.1+srt4_i386"; + md5 = "aea8d6beda7f992becfdbb3880b5b3c6"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/l/lcms2/liblcms2-2_2.2+git20110628-2ubuntu3.1+srt4_i386.deb"; + inherit md5; + name = "liblcms2-2.deb"; + }; + } + rec { + name = "libldap-2.4-2_2.4.28-1.1ubuntu4.2+steamrt1+srt4_i386"; + md5 = "770471a9c33a9b708427dfa5d8b944b4"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/o/openldap/libldap-2.4-2_2.4.28-1.1ubuntu4.2+steamrt1+srt4_i386.deb"; + inherit md5; + name = "libldap-2.4-2.deb"; + }; + } + rec { + name = "libltdl7_2.4.2-1ubuntu1+srt4_i386"; + md5 = "ab9d4dabd065bcc31430d839a04a5844"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libt/libtool/libltdl7_2.4.2-1ubuntu1+srt4_i386.deb"; + inherit md5; + name = "libltdl7.deb"; + }; + } + rec { + name = "libmikmod2_3.1.12-2+srt4_i386"; + md5 = "fb5286eb01a90318bb95bdd671c6c512"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libm/libmikmod/libmikmod2_3.1.12-2+srt4_i386.deb"; + inherit md5; + name = "libmikmod2.deb"; + }; + } + rec { + name = "libncurses5_5.9-4+srt4_i386"; + md5 = "f3343e67c571b9f279ca0f9ce27f8981"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/n/ncurses/libncurses5_5.9-4+srt4_i386.deb"; + inherit md5; + name = "libncurses5.deb"; + }; + } + rec { + name = "libncursesw5_5.9-4+srt4_i386"; + md5 = "aa693feffb52a101beda0d578de71db3"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/n/ncurses/libncursesw5_5.9-4+srt4_i386.deb"; + inherit md5; + name = "libncursesw5.deb"; + }; + } + rec { + name = "libnm-glib4_0.9.4.0-0ubuntu4.2+steamrt1+srt4_i386"; + md5 = "361fba889b4a4fb66c7fc59f7e837f6e"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/n/network-manager/libnm-glib4_0.9.4.0-0ubuntu4.2+steamrt1+srt4_i386.deb"; + inherit md5; + name = "libnm-glib4.deb"; + }; + } + rec { + name = "libnm-util2_0.9.4.0-0ubuntu4.2+steamrt1+srt4_i386"; + md5 = "39d620f28e9ecee9dc25e7ac4e679a81"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/n/network-manager/libnm-util2_0.9.4.0-0ubuntu4.2+steamrt1+srt4_i386.deb"; + inherit md5; + name = "libnm-util2.deb"; + }; + } + rec { + name = "libnotify4_0.7.5-1+srt4_i386"; + md5 = "a4207e3d76879a94430cb641fe2001be"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libn/libnotify/libnotify4_0.7.5-1+srt4_i386.deb"; + inherit md5; + name = "libnotify4.deb"; + }; + } + rec { + name = "libnspr4_4.10.7-0ubuntu0.12.04.1+srt1_i386"; + md5 = "78d9dc08637bd09f425821c8d35f3b03"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/n/nspr/libnspr4_4.10.7-0ubuntu0.12.04.1+srt1_i386.deb"; + inherit md5; + name = "libnspr4.deb"; + }; + } + rec { + name = "libnss3_3.17.1-0ubuntu0.12.04.1+srt1_i386"; + md5 = "9be8a7f5cc84852f14af1fc7e9c44f56"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/n/nss/libnss3_3.17.1-0ubuntu0.12.04.1+srt1_i386.deb"; + inherit md5; + name = "libnss3.deb"; + }; + } + rec { + name = "libogg0_1.2.2~dfsg-1ubuntu1+srt4_i386"; + md5 = "bc3afb09d1ea93764c808c7a268c1cd2"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libo/libogg/libogg0_1.2.2~dfsg-1ubuntu1+srt4_i386.deb"; + inherit md5; + name = "libogg0.deb"; + }; + } + rec { + name = "libopenal1_1.13-4ubuntu3+steamrt1+srt4_i386"; + md5 = "2548d953611d999a85463581df4efac5"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/o/openal-soft/libopenal1_1.13-4ubuntu3+steamrt1+srt4_i386.deb"; + inherit md5; + name = "libopenal1.deb"; + }; + } + rec { + name = "liborc-0.4-0_0.4.16-1ubuntu2+srt4_i386"; + md5 = "d2cd63e1f984b45561128d7d4d67bd06"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/o/orc/liborc-0.4-0_0.4.16-1ubuntu2+srt4_i386.deb"; + inherit md5; + name = "liborc-0.4-0.deb"; + }; + } + rec { + name = "libp11-kit0_0.12-2ubuntu1+srt4_i386"; + md5 = "e5dacb77c07e97db660bc5312387a9d6"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/p/p11-kit/libp11-kit0_0.12-2ubuntu1+srt4_i386.deb"; + inherit md5; + name = "libp11-kit0.deb"; + }; + } + rec { + name = "libpango1.0-0_1.30.0-0ubuntu3.1+steamrt1+srt4_i386"; + md5 = "dbc50fdd82e6df45bb9bb8ce18f1fe2c"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/p/pango1.0/libpango1.0-0_1.30.0-0ubuntu3.1+steamrt1+srt4_i386.deb"; + inherit md5; + name = "libpango1.0-0.deb"; + }; + } + rec { + name = "libpci3_3.1.8-2ubuntu5+srt4_i386"; + md5 = "cdf2a41b3ba93c2061f196920420b99d"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/p/pciutils/libpci3_3.1.8-2ubuntu5+srt4_i386.deb"; + inherit md5; + name = "libpci3.deb"; + }; + } + rec { + name = "libpcre3_8.12-4+srt4_i386"; + md5 = "d4134108e9b21b6e623eafeaaa84e37f"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/p/pcre3/libpcre3_8.12-4+srt4_i386.deb"; + inherit md5; + name = "libpcre3.deb"; + }; + } + rec { + name = "libpcrecpp0_8.12-4+srt4_i386"; + md5 = "e1bd40c3840669cbfb0b12e6dd07629d"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/p/pcre3/libpcrecpp0_8.12-4+srt4_i386.deb"; + inherit md5; + name = "libpcrecpp0.deb"; + }; + } + rec { + name = "libpixman-1-0_0.30.2-1ubuntu0.0.0.0.1+srt4_i386"; + md5 = "cbad5a39d1cb49085cd4b50a2e1d96a6"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/p/pixman/libpixman-1-0_0.30.2-1ubuntu0.0.0.0.1+srt4_i386.deb"; + inherit md5; + name = "libpixman-1-0.deb"; + }; + } + rec { + name = "libpng12-0_1.2.46-3ubuntu4+srt4_i386"; + md5 = "23f4f520f160d48dc127ce8ad88900c3"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libp/libpng/libpng12-0_1.2.46-3ubuntu4+srt4_i386.deb"; + inherit md5; + name = "libpng12-0.deb"; + }; + } + rec { + name = "libpulse0_1.1-0ubuntu15.2+steamrt1+srt4_i386"; + md5 = "4591d057af7dc6709d1960c5ce590560"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/p/pulseaudio/libpulse0_1.1-0ubuntu15.2+steamrt1+srt4_i386.deb"; + inherit md5; + name = "libpulse0.deb"; + }; + } + rec { + name = "libroken18-heimdal_1.6~git20120311.dfsg.1-2+srt4_i386"; + md5 = "cc8d8e5b7a4e002de9e86633b2c53804"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/h/heimdal/libroken18-heimdal_1.6~git20120311.dfsg.1-2+srt4_i386.deb"; + inherit md5; + name = "libroken18-heimdal.deb"; + }; + } + rec { + name = "librtmp0_2.4~20110711.gitc28f1bab-1+srt4_i386"; + md5 = "3ccb52ce883b4c1885857c80cbd11e56"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/r/rtmpdump/librtmp0_2.4~20110711.gitc28f1bab-1+srt4_i386.deb"; + inherit md5; + name = "librtmp0.deb"; + }; + } + rec { + name = "libsamplerate0_0.1.8-4+srt4_i386"; + md5 = "e218128429da602e392c047940b62a23"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libs/libsamplerate/libsamplerate0_0.1.8-4+srt4_i386.deb"; + inherit md5; + name = "libsamplerate0.deb"; + }; + } + rec { + name = "libsasl2-2_2.1.25.dfsg1-3ubuntu0.1+srt4_i386"; + md5 = "963632ad4d1477ef230dc4c68dc7ffa2"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/c/cyrus-sasl2/libsasl2-2_2.1.25.dfsg1-3ubuntu0.1+srt4_i386.deb"; + inherit md5; + name = "libsasl2-2.deb"; + }; + } + rec { + name = "libsdl-image1.2_1.2.10-3+srt4_i386"; + md5 = "1adfd99b505fe3ff6fd08a2919277780"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/s/sdl-image1.2/libsdl-image1.2_1.2.10-3+srt4_i386.deb"; + inherit md5; + name = "libsdl-image1.2.deb"; + }; + } + rec { + name = "libsdl-mixer1.2_1.2.11-7+steamrt1+srt4_i386"; + md5 = "8687aaa0fb6981d674ade4062884ff52"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/s/sdl-mixer1.2/libsdl-mixer1.2_1.2.11-7+steamrt1+srt4_i386.deb"; + inherit md5; + name = "libsdl-mixer1.2.deb"; + }; + } + rec { + name = "libsdl-ttf2.0-0_2.0.9-1.1ubuntu1+srt4_i386"; + md5 = "887ac0bbaa344b203d9effdd32dd072a"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/s/sdl-ttf2.0/libsdl-ttf2.0-0_2.0.9-1.1ubuntu1+srt4_i386.deb"; + inherit md5; + name = "libsdl-ttf2.0-0.deb"; + }; + } + rec { + name = "libsdl1.2debian_1.2.15-5+steamrt1+srt4_i386"; + md5 = "7b4319a41a9dcb24aab37be255579ce7"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libs/libsdl1.2/libsdl1.2debian_1.2.15-5+steamrt1+srt4_i386.deb"; + inherit md5; + name = "libsdl1.2debian.deb"; + }; + } + rec { + name = "libsdl2_2.0.3+steamrt1+srt4_i386"; + md5 = "f34b318dc7daf934125d09cceeafe10c"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libs/libsdl2/libsdl2_2.0.3+steamrt1+srt4_i386.deb"; + inherit md5; + name = "libsdl2.deb"; + }; + } + rec { + name = "libsdl2-image_2.0.0+steamrt1+srt4_i386"; + md5 = "715fde2a619afc4335720d0aba7895b2"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libs/libsdl2-image/libsdl2-image_2.0.0+steamrt1+srt4_i386.deb"; + inherit md5; + name = "libsdl2-image.deb"; + }; + } + rec { + name = "libsdl2-mixer_2.0.0+steamrt1+srt4_i386"; + md5 = "7795a5fb826960a5078a2d73f3ee2113"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libs/libsdl2-mixer/libsdl2-mixer_2.0.0+steamrt1+srt4_i386.deb"; + inherit md5; + name = "libsdl2-mixer.deb"; + }; + } + rec { + name = "libsdl2-net_2.0.0+srt4_i386"; + md5 = "d10bb11e6231b93d06e5f3254c0de8fd"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libs/libsdl2-net/libsdl2-net_2.0.0+srt4_i386.deb"; + inherit md5; + name = "libsdl2-net.deb"; + }; + } + rec { + name = "libsdl2-ttf_2.0.12+srt4_i386"; + md5 = "26ba9191716e3f7f3971fd68e7e8d4c1"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libs/libsdl2-ttf/libsdl2-ttf_2.0.12+srt4_i386.deb"; + inherit md5; + name = "libsdl2-ttf.deb"; + }; + } + rec { + name = "libselinux1_2.1.0-4.1ubuntu1+srt4_i386"; + md5 = "f96dd8143f7f3bb2600d761f5fb6e854"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libs/libselinux/libselinux1_2.1.0-4.1ubuntu1+srt4_i386.deb"; + inherit md5; + name = "libselinux1.deb"; + }; + } + rec { + name = "libsm6_1.2.0-2build1+srt4_i386"; + md5 = "fcdebe0131ecd0b0777e52b06ad99055"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libs/libsm/libsm6_1.2.0-2build1+srt4_i386.deb"; + inherit md5; + name = "libsm6.deb"; + }; + } + rec { + name = "libsndfile1_1.0.25-4+srt4_i386"; + md5 = "0a2518a2d66430e20d660883c71b84a2"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libs/libsndfile/libsndfile1_1.0.25-4+srt4_i386.deb"; + inherit md5; + name = "libsndfile1.deb"; + }; + } + rec { + name = "libspeex1_1.2~rc1-3ubuntu2+srt4_i386"; + md5 = "f34f05ac30f3c11bde9b20cdc219c676"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/s/speex/libspeex1_1.2~rc1-3ubuntu2+srt4_i386.deb"; + inherit md5; + name = "libspeex1.deb"; + }; + } + rec { + name = "libspeexdsp1_1.2~rc1-3ubuntu2+srt4_i386"; + md5 = "239a3b273c387ca41ecff1e371b90d41"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/s/speex/libspeexdsp1_1.2~rc1-3ubuntu2+srt4_i386.deb"; + inherit md5; + name = "libspeexdsp1.deb"; + }; + } + rec { + name = "libsqlite3-0_3.7.9-2ubuntu1.1+srt4_i386"; + md5 = "466f9b4663bdf71a2cb36437e8f70fca"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/s/sqlite3/libsqlite3-0_3.7.9-2ubuntu1.1+srt4_i386.deb"; + inherit md5; + name = "libsqlite3-0.deb"; + }; + } + rec { + name = "libssl1.0.0_1.0.1-4ubuntu5.21+srt1_i386"; + md5 = "c530243255161578fbddfa9f7200d30c"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/o/openssl/libssl1.0.0_1.0.1-4ubuntu5.21+srt1_i386.deb"; + inherit md5; + name = "libssl1.0.0.deb"; + }; + } + rec { + name = "libstdc++6_4.8.1-2ubuntu1~12.04+steamrt2+srt1_i386"; + md5 = "76c7adc814605b316426ef1d9ffab195"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/g/gcc-4.8/libstdc++6_4.8.1-2ubuntu1~12.04+steamrt2+srt1_i386.deb"; + inherit md5; + name = "libstdc++6.deb"; + }; + } + rec { + name = "libstdc++6-4.6-pic_4.6.3-1ubuntu5+srt4_i386"; + md5 = "2a5142925aeb5054395edd56112e83a9"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/g/gcc-4.6/libstdc++6-4.6-pic_4.6.3-1ubuntu5+srt4_i386.deb"; + inherit md5; + name = "libstdc++6-4.6-pic.deb"; + }; + } + rec { + name = "libswscale2_0.8.13-0ubuntu0.12.04.1+steamrt1+srt1_i386"; + md5 = "facd5280993d266f3f1f1809138e6cd2"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/liba/libav/libswscale2_0.8.13-0ubuntu0.12.04.1+steamrt1+srt1_i386.deb"; + inherit md5; + name = "libswscale2.deb"; + }; + } + rec { + name = "libtasn1-3_2.10-1ubuntu1.2+srt1_i386"; + md5 = "55364b5ab0d027f6ffaf89444f5c0ad9"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libt/libtasn1-3/libtasn1-3_2.10-1ubuntu1.2+srt1_i386.deb"; + inherit md5; + name = "libtasn1-3.deb"; + }; + } + rec { + name = "libtbb2_4.0+r233-1+srt4_i386"; + md5 = "99dd92dba5e3f93e0e349ee9f3ebe22a"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/t/tbb/libtbb2_4.0+r233-1+srt4_i386.deb"; + inherit md5; + name = "libtbb2.deb"; + }; + } + rec { + name = "libtdb1_1.2.9-4+srt4_i386"; + md5 = "8d165fc985106bb4b3df301bda4a8c22"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/t/tdb/libtdb1_1.2.9-4+srt4_i386.deb"; + inherit md5; + name = "libtdb1.deb"; + }; + } + rec { + name = "libtheora0_1.1.1+dfsg.1-3ubuntu2+srt4_i386"; + md5 = "966fee9cbc71519350a2730e34a1d8e6"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libt/libtheora/libtheora0_1.1.1+dfsg.1-3ubuntu2+srt4_i386.deb"; + inherit md5; + name = "libtheora0.deb"; + }; + } + rec { + name = "libtiff4_3.9.5-2ubuntu1.6+srt3_i386"; + md5 = "50f018955b48c06df3b00a45c1999c63"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/t/tiff/libtiff4_3.9.5-2ubuntu1.6+srt3_i386.deb"; + inherit md5; + name = "libtiff4.deb"; + }; + } + rec { + name = "libtinfo5_5.9-4+srt4_i386"; + md5 = "9c5ab1104d91b8bd6cd2fd21c06eb9ee"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/n/ncurses/libtinfo5_5.9-4+srt4_i386.deb"; + inherit md5; + name = "libtinfo5.deb"; + }; + } + rec { + name = "libudev0_175-0ubuntu9.2+srt4_i386"; + md5 = "f2dfa9304cacc609abce0c85f984b48f"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/u/udev/libudev0_175-0ubuntu9.2+srt4_i386.deb"; + inherit md5; + name = "libudev0.deb"; + }; + } + rec { + name = "libusb-1.0-0_1.0.19-1+srt1_i386"; + md5 = "f4328e5fa069f3b43d301992719b2d8e"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libu/libusb-1.0/libusb-1.0-0_1.0.19-1+srt1_i386.deb"; + inherit md5; + name = "libusb-1.0-0.deb"; + }; + } + rec { + name = "libuuid1_2.20.1-1ubuntu3+srt4_i386"; + md5 = "d5ef9ef9c92b5b7edfd2bac2853d00ad"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/u/util-linux/libuuid1_2.20.1-1ubuntu3+srt4_i386.deb"; + inherit md5; + name = "libuuid1.deb"; + }; + } + rec { + name = "libva-glx1_1.3.1-3+steamrt4+srt1_i386"; + md5 = "6ef48bb25671111d17d696ff4db2c684"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libv/libva/libva-glx1_1.3.1-3+steamrt4+srt1_i386.deb"; + inherit md5; + name = "libva-glx1.deb"; + }; + } + rec { + name = "libva-x11-1_1.3.1-3+steamrt4+srt1_i386"; + md5 = "90e2e7271ca563cd66993ea4652018c3"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libv/libva/libva-x11-1_1.3.1-3+steamrt4+srt1_i386.deb"; + inherit md5; + name = "libva-x11-1.deb"; + }; + } + rec { + name = "libva1_1.3.1-3+steamrt4+srt1_i386"; + md5 = "dfc1877ecc94d01b4cdae6b527bee3a9"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libv/libva/libva1_1.3.1-3+steamrt4+srt1_i386.deb"; + inherit md5; + name = "libva1.deb"; + }; + } + rec { + name = "libvdpau1_0.4.1-3ubuntu1.1+srt4_i386"; + md5 = "b627e61dac887be2c3697d3945b4eee6"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libv/libvdpau/libvdpau1_0.4.1-3ubuntu1.1+srt4_i386.deb"; + inherit md5; + name = "libvdpau1.deb"; + }; + } + rec { + name = "libvorbis0a_1.3.2-1ubuntu3+srt4_i386"; + md5 = "03077bd7302ea56045c0548c6b2cb983"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libv/libvorbis/libvorbis0a_1.3.2-1ubuntu3+srt4_i386.deb"; + inherit md5; + name = "libvorbis0a.deb"; + }; + } + rec { + name = "libvorbisenc2_1.3.2-1ubuntu3+srt4_i386"; + md5 = "6efe364cedbc437ddb1446cb846ad532"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libv/libvorbis/libvorbisenc2_1.3.2-1ubuntu3+srt4_i386.deb"; + inherit md5; + name = "libvorbisenc2.deb"; + }; + } + rec { + name = "libvorbisfile3_1.3.2-1ubuntu3+srt4_i386"; + md5 = "7521e4dcb5378621ee56ea860f0f00ca"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libv/libvorbis/libvorbisfile3_1.3.2-1ubuntu3+srt4_i386.deb"; + inherit md5; + name = "libvorbisfile3.deb"; + }; + } + rec { + name = "libvpx1_1.0.0-1+srt4_i386"; + md5 = "97cc2ca1fd5a0e8134d33884fbd8decd"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libv/libvpx/libvpx1_1.0.0-1+srt4_i386.deb"; + inherit md5; + name = "libvpx1.deb"; + }; + } + rec { + name = "libwind0-heimdal_1.6~git20120311.dfsg.1-2+srt4_i386"; + md5 = "6265aab9d541aea8aad3496ebcc5908e"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/h/heimdal/libwind0-heimdal_1.6~git20120311.dfsg.1-2+srt4_i386.deb"; + inherit md5; + name = "libwind0-heimdal.deb"; + }; + } + rec { + name = "libwrap0_7.6.q-21+srt4_i386"; + md5 = "a0ac6fa38ef4664b1dc1e3255788852c"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/t/tcp-wrappers/libwrap0_7.6.q-21+srt4_i386.deb"; + inherit md5; + name = "libwrap0.deb"; + }; + } + rec { + name = "libx11-6_1.4.99.1-0ubuntu2.2+steamrt1+srt4_i386"; + md5 = "ecf312639e19cab505e978dcb75eea4d"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libx11/libx11-6_1.4.99.1-0ubuntu2.2+steamrt1+srt4_i386.deb"; + inherit md5; + name = "libx11-6.deb"; + }; + } + rec { + name = "libx11-data_1.4.99.1-0ubuntu2.2+steamrt1+srt4_all"; + md5 = "e9c006f3f06178fd1a47f4fdffcc9da3"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libx11/libx11-data_1.4.99.1-0ubuntu2.2+steamrt1+srt4_all.deb"; + inherit md5; + name = "libx11-data.deb"; + }; + } + rec { + name = "libx11-xcb1_1.4.99.1-0ubuntu2.2+steamrt1+srt4_i386"; + md5 = "8ce612a1d9c5b392d7d77c9a49eda59d"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libx11/libx11-xcb1_1.4.99.1-0ubuntu2.2+steamrt1+srt4_i386.deb"; + inherit md5; + name = "libx11-xcb1.deb"; + }; + } + rec { + name = "libxau6_1.0.6-4+srt4_i386"; + md5 = "9274a9813575848a1646d67b44e10bac"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxau/libxau6_1.0.6-4+srt4_i386.deb"; + inherit md5; + name = "libxau6.deb"; + }; + } + rec { + name = "libxaw7_1.0.9-3ubuntu1+srt4_i386"; + md5 = "70fa4b78b06a4d4b194cfb6baf1cdef1"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxaw/libxaw7_1.0.9-3ubuntu1+srt4_i386.deb"; + inherit md5; + name = "libxaw7.deb"; + }; + } + rec { + name = "libxcb-composite0_1.10-2ubuntu1+srt4_i386"; + md5 = "a72a94bc35581c25ef827023f643489d"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxcb/libxcb-composite0_1.10-2ubuntu1+srt4_i386.deb"; + inherit md5; + name = "libxcb-composite0.deb"; + }; + } + rec { + name = "libxcb-damage0_1.10-2ubuntu1+srt4_i386"; + md5 = "50f4656bbcb193c3a3047c45db06a4f7"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxcb/libxcb-damage0_1.10-2ubuntu1+srt4_i386.deb"; + inherit md5; + name = "libxcb-damage0.deb"; + }; + } + rec { + name = "libxcb-doc_1.10-2ubuntu1+srt4_all"; + md5 = "d4fd2c66b60ff1db1c87e6884d5ae093"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxcb/libxcb-doc_1.10-2ubuntu1+srt4_all.deb"; + inherit md5; + name = "libxcb-doc.deb"; + }; + } + rec { + name = "libxcb-dpms0_1.10-2ubuntu1+srt4_i386"; + md5 = "f805af07ee88d28de1fd06209aa42fc8"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxcb/libxcb-dpms0_1.10-2ubuntu1+srt4_i386.deb"; + inherit md5; + name = "libxcb-dpms0.deb"; + }; + } + rec { + name = "libxcb-dri2-0_1.10-2ubuntu1+srt4_i386"; + md5 = "85812dd4c61ff7d99060c495f4d17669"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxcb/libxcb-dri2-0_1.10-2ubuntu1+srt4_i386.deb"; + inherit md5; + name = "libxcb-dri2-0.deb"; + }; + } + rec { + name = "libxcb-dri3-0_1.10-2ubuntu1+srt4_i386"; + md5 = "70e2618de627e6e8308e4afda77b0966"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxcb/libxcb-dri3-0_1.10-2ubuntu1+srt4_i386.deb"; + inherit md5; + name = "libxcb-dri3-0.deb"; + }; + } + rec { + name = "libxcb-glx0_1.10-2ubuntu1+srt4_i386"; + md5 = "850f3cb9ed1d79a9bdec55960a74611c"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxcb/libxcb-glx0_1.10-2ubuntu1+srt4_i386.deb"; + inherit md5; + name = "libxcb-glx0.deb"; + }; + } + rec { + name = "libxcb-present0_1.10-2ubuntu1+srt4_i386"; + md5 = "e86ec58c992441124622921b38685d01"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxcb/libxcb-present0_1.10-2ubuntu1+srt4_i386.deb"; + inherit md5; + name = "libxcb-present0.deb"; + }; + } + rec { + name = "libxcb-randr0_1.10-2ubuntu1+srt4_i386"; + md5 = "4acaa6b473aba1684731f529506e2ff8"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxcb/libxcb-randr0_1.10-2ubuntu1+srt4_i386.deb"; + inherit md5; + name = "libxcb-randr0.deb"; + }; + } + rec { + name = "libxcb-record0_1.10-2ubuntu1+srt4_i386"; + md5 = "1e28443a65256cd013b2dc0c937badcd"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxcb/libxcb-record0_1.10-2ubuntu1+srt4_i386.deb"; + inherit md5; + name = "libxcb-record0.deb"; + }; + } + rec { + name = "libxcb-render0_1.10-2ubuntu1+srt4_i386"; + md5 = "b6362e8ca7da70c873c08e9849ac79ca"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxcb/libxcb-render0_1.10-2ubuntu1+srt4_i386.deb"; + inherit md5; + name = "libxcb-render0.deb"; + }; + } + rec { + name = "libxcb-res0_1.10-2ubuntu1+srt4_i386"; + md5 = "1bd0d0e0f5134651c350ba4955463b02"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxcb/libxcb-res0_1.10-2ubuntu1+srt4_i386.deb"; + inherit md5; + name = "libxcb-res0.deb"; + }; + } + rec { + name = "libxcb-screensaver0_1.10-2ubuntu1+srt4_i386"; + md5 = "8b51441ce72d20a788a8e12149ea2cf8"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxcb/libxcb-screensaver0_1.10-2ubuntu1+srt4_i386.deb"; + inherit md5; + name = "libxcb-screensaver0.deb"; + }; + } + rec { + name = "libxcb-shape0_1.10-2ubuntu1+srt4_i386"; + md5 = "470deea0b247279c51c2c76265263980"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxcb/libxcb-shape0_1.10-2ubuntu1+srt4_i386.deb"; + inherit md5; + name = "libxcb-shape0.deb"; + }; + } + rec { + name = "libxcb-shm0_1.10-2ubuntu1+srt4_i386"; + md5 = "abb2fe37023253653d404dd6116829a0"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxcb/libxcb-shm0_1.10-2ubuntu1+srt4_i386.deb"; + inherit md5; + name = "libxcb-shm0.deb"; + }; + } + rec { + name = "libxcb-sync1_1.10-2ubuntu1+srt4_i386"; + md5 = "3bf95ebc0bd67e4200f754b7282c4608"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxcb/libxcb-sync1_1.10-2ubuntu1+srt4_i386.deb"; + inherit md5; + name = "libxcb-sync1.deb"; + }; + } + rec { + name = "libxcb-xevie0_1.10-2ubuntu1+srt4_i386"; + md5 = "e0a5eda95251b20499a85f4bcec888a5"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxcb/libxcb-xevie0_1.10-2ubuntu1+srt4_i386.deb"; + inherit md5; + name = "libxcb-xevie0.deb"; + }; + } + rec { + name = "libxcb-xf86dri0_1.10-2ubuntu1+srt4_i386"; + md5 = "1b227b824b6270407594b25b2dc12769"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxcb/libxcb-xf86dri0_1.10-2ubuntu1+srt4_i386.deb"; + inherit md5; + name = "libxcb-xf86dri0.deb"; + }; + } + rec { + name = "libxcb-xfixes0_1.10-2ubuntu1+srt4_i386"; + md5 = "c0170a7d5ae40f1c0a4b4680991bc4ff"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxcb/libxcb-xfixes0_1.10-2ubuntu1+srt4_i386.deb"; + inherit md5; + name = "libxcb-xfixes0.deb"; + }; + } + rec { + name = "libxcb-xinerama0_1.10-2ubuntu1+srt4_i386"; + md5 = "4de2e06a592ac634b109affebc31fb07"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxcb/libxcb-xinerama0_1.10-2ubuntu1+srt4_i386.deb"; + inherit md5; + name = "libxcb-xinerama0.deb"; + }; + } + rec { + name = "libxcb-xkb1_1.10-2ubuntu1+srt4_i386"; + md5 = "2e154033ce7657e58f3a8e18d35ff5e3"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxcb/libxcb-xkb1_1.10-2ubuntu1+srt4_i386.deb"; + inherit md5; + name = "libxcb-xkb1.deb"; + }; + } + rec { + name = "libxcb-xprint0_1.10-2ubuntu1+srt4_i386"; + md5 = "ca610d0695befd4442145e037f6a6f94"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxcb/libxcb-xprint0_1.10-2ubuntu1+srt4_i386.deb"; + inherit md5; + name = "libxcb-xprint0.deb"; + }; + } + rec { + name = "libxcb-xtest0_1.10-2ubuntu1+srt4_i386"; + md5 = "813f01d8e7012bd8f58df239c2df47b0"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxcb/libxcb-xtest0_1.10-2ubuntu1+srt4_i386.deb"; + inherit md5; + name = "libxcb-xtest0.deb"; + }; + } + rec { + name = "libxcb-xv0_1.10-2ubuntu1+srt4_i386"; + md5 = "1ccea01cd8c2549e5cb5b13b90d986d6"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxcb/libxcb-xv0_1.10-2ubuntu1+srt4_i386.deb"; + inherit md5; + name = "libxcb-xv0.deb"; + }; + } + rec { + name = "libxcb-xvmc0_1.10-2ubuntu1+srt4_i386"; + md5 = "4cbe887cb4ed19e79970ea076cc171c8"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxcb/libxcb-xvmc0_1.10-2ubuntu1+srt4_i386.deb"; + inherit md5; + name = "libxcb-xvmc0.deb"; + }; + } + rec { + name = "libxcb1_1.10-2ubuntu1+srt4_i386"; + md5 = "5fcdea3958e6f0d60b841ecec606c3c0"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxcb/libxcb1_1.10-2ubuntu1+srt4_i386.deb"; + inherit md5; + name = "libxcb1.deb"; + }; + } + rec { + name = "libxcomposite1_0.4.3-2build1+srt4_i386"; + md5 = "dce0aac7322e5d9e7d74ca464c5db1f5"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxcomposite/libxcomposite1_0.4.3-2build1+srt4_i386.deb"; + inherit md5; + name = "libxcomposite1.deb"; + }; + } + rec { + name = "libxcursor1_1.1.12-1ubuntu0.1+srt4_i386"; + md5 = "97a5238d1048e8b005d535b14720039e"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxcursor/libxcursor1_1.1.12-1ubuntu0.1+srt4_i386.deb"; + inherit md5; + name = "libxcursor1.deb"; + }; + } + rec { + name = "libxdamage1_1.1.3-2build1+srt4_i386"; + md5 = "3d1d3d865c89c97e5cf980df806966ec"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxdamage/libxdamage1_1.1.3-2build1+srt4_i386.deb"; + inherit md5; + name = "libxdamage1.deb"; + }; + } + rec { + name = "libxdmcp6_1.1.0-4+srt4_i386"; + md5 = "eeefcc12cc694b069acec7937e4a6650"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxdmcp/libxdmcp6_1.1.0-4+srt4_i386.deb"; + inherit md5; + name = "libxdmcp6.deb"; + }; + } + rec { + name = "libxext6_1.3.0-3ubuntu0.1+steamrt1+srt1_i386"; + md5 = "a68ef50ca2623f2779b5d6668f545c75"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxext/libxext6_1.3.0-3ubuntu0.1+steamrt1+srt1_i386.deb"; + inherit md5; + name = "libxext6.deb"; + }; + } + rec { + name = "libxfixes3_5.0-4ubuntu4.3+srt1_i386"; + md5 = "263f3532430749f671a83ba3ca48b072"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxfixes/libxfixes3_5.0-4ubuntu4.3+srt1_i386.deb"; + inherit md5; + name = "libxfixes3.deb"; + }; + } + rec { + name = "libxft2_2.2.0-3ubuntu2+srt4_i386"; + md5 = "44bf95c720b8634f0ea8419fa939f71e"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/x/xft/libxft2_2.2.0-3ubuntu2+srt4_i386.deb"; + inherit md5; + name = "libxft2.deb"; + }; + } + rec { + name = "libxi6_1.7.1.901-1ubuntu1~precise2+srt1_i386"; + md5 = "f9e20e913df71ed877cd5ec6bd7e823d"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxi/libxi6_1.7.1.901-1ubuntu1~precise2+srt1_i386.deb"; + inherit md5; + name = "libxi6.deb"; + }; + } + rec { + name = "libxinerama1_1.1.1-3ubuntu0.1+srt4_i386"; + md5 = "eb23a3d322ff57ff5cad1ae062201b89"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxinerama/libxinerama1_1.1.1-3ubuntu0.1+srt4_i386.deb"; + inherit md5; + name = "libxinerama1.deb"; + }; + } + rec { + name = "libxml2_2.7.8.dfsg-5.1ubuntu4.11+srt1_i386"; + md5 = "c6a64d2f5324a6af10fb70988649a3bb"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxml2/libxml2_2.7.8.dfsg-5.1ubuntu4.11+srt1_i386.deb"; + inherit md5; + name = "libxml2.deb"; + }; + } + rec { + name = "libxmu6_1.1.0-3+srt4_i386"; + md5 = "8e7fae57eec7ef0eae90c7573bde46a9"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxmu/libxmu6_1.1.0-3+srt4_i386.deb"; + inherit md5; + name = "libxmu6.deb"; + }; + } + rec { + name = "libxpm4_3.5.9-4+srt4_i386"; + md5 = "dc095202dcca66b471d2619af7164135"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxpm/libxpm4_3.5.9-4+srt4_i386.deb"; + inherit md5; + name = "libxpm4.deb"; + }; + } + rec { + name = "libxrandr2_1.3.2-2ubuntu0.2+srt4_i386"; + md5 = "44eee22d721a1f41c569400fed1810ca"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxrandr/libxrandr2_1.3.2-2ubuntu0.2+srt4_i386.deb"; + inherit md5; + name = "libxrandr2.deb"; + }; + } + rec { + name = "libxrender1_0.9.6-2ubuntu0.1+srt4_i386"; + md5 = "a7a6e50fde5d43c42a9e8f1202f043e5"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxrender/libxrender1_0.9.6-2ubuntu0.1+srt4_i386.deb"; + inherit md5; + name = "libxrender1.deb"; + }; + } + rec { + name = "libxss1_1.2.1-2+srt4_i386"; + md5 = "83aeab12e6c75d38be99d9df3ad1b632"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxss/libxss1_1.2.1-2+srt4_i386.deb"; + inherit md5; + name = "libxss1.deb"; + }; + } + rec { + name = "libxt6_1.1.1-2ubuntu0.1+srt4_i386"; + md5 = "a15335885d70016c10c88b20e65ac677"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxt/libxt6_1.1.1-2ubuntu0.1+srt4_i386.deb"; + inherit md5; + name = "libxt6.deb"; + }; + } + rec { + name = "libxtst6_1.2.0-4ubuntu0.1+srt4_i386"; + md5 = "60cf7b25685a4bce2bbf031778831468"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxtst/libxtst6_1.2.0-4ubuntu0.1+srt4_i386.deb"; + inherit md5; + name = "libxtst6.deb"; + }; + } + rec { + name = "libxxf86vm1_1.1.1-2ubuntu0.1+srt4_i386"; + md5 = "7b97be0b67b400eba70eec57f50a92ac"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxxf86vm/libxxf86vm1_1.1.1-2ubuntu0.1+srt4_i386.deb"; + inherit md5; + name = "libxxf86vm1.deb"; + }; + } + rec { + name = "nvidia-cg-toolkit_3.0.0016-0ubuntu1+srt4_i386"; + md5 = "65ed88dfc8eaa02cd5373308826f540b"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/n/nvidia-cg-toolkit/nvidia-cg-toolkit_3.0.0016-0ubuntu1+srt4_i386.deb"; + inherit md5; + name = "nvidia-cg-toolkit.deb"; + }; + } + rec { + name = "zenity_3.4.0-0ubuntu4+steamrt2+srt4_i386"; + md5 = "58ba7752e14f61f59698ce4aba860cd8"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/z/zenity/zenity_3.4.0-0ubuntu4+steamrt2+srt4_i386.deb"; + inherit md5; + name = "zenity.deb"; + }; + } + rec { + name = "zlib1g_1.2.3.4.dfsg-3ubuntu4+srt4_i386"; + md5 = "c2c51ba06c022ea81a6af843f27b34b0"; + source = fetchurl { + url = "http://repo.steampowered.com/steamrt/pool/main/z/zlib/zlib1g_1.2.3.4.dfsg-3ubuntu4+srt4_i386.deb"; + inherit md5; + name = "zlib1g.deb"; + }; + } + ]; +} diff --git a/pkgs/games/steam/runtime-wrapped.nix b/pkgs/games/steam/runtime-wrapped.nix index 238626c4ab4..56422deb1db 100644 --- a/pkgs/games/steam/runtime-wrapped.nix +++ b/pkgs/games/steam/runtime-wrapped.nix @@ -98,7 +98,7 @@ in stdenv.mkDerivation rec { nativeBuildInputs = [ perl ]; - builder = ./build-runtime.sh; + builder = ./build-wrapped.sh; installPhase = '' buildDir "${toString steam-runtime.libs}" "$allPkgs" diff --git a/pkgs/games/steam/runtime.nix b/pkgs/games/steam/runtime.nix index 7e3e03b04e1..c4ca98f0268 100644 --- a/pkgs/games/steam/runtime.nix +++ b/pkgs/games/steam/runtime.nix @@ -1,23 +1,21 @@ -{ stdenv, fetchurl }: +{ stdenv, fetchurl, writeText, python2, dpkg, binutils }: let arch = if stdenv.system == "x86_64-linux" then "amd64" else if stdenv.system == "i686-linux" then "i386" else abort "Unsupported platform"; -in stdenv.mkDerivation rec { - name = "steam-runtime-${version}"; - version = "2014-04-15"; + input = builtins.getAttr arch (import ./runtime-generated.nix { inherit fetchurl; }); - phases = [ "unpackPhase" "installPhase" ]; + inputFile = writeText "steam-runtime.json" (builtins.toJSON input); - src = fetchurl { - url = "http://media.steampowered.com/client/runtime/steam-runtime-release_${version}.tar.xz"; - sha256 = "0i6xp81rjbfn4664h4mmvw0xjwlwvdp6k7cc53jfjadcblw5cf99"; - }; +in stdenv.mkDerivation { + name = "steam-runtime-20151020"; - installPhase = '' + nativeBuildInputs = [ python2 dpkg binutils ]; + + buildCommand = '' mkdir -p $out - mv ${arch}/* $out/ + python2 ${./build-runtime.py} -i ${inputFile} -r $out ''; passthru = rec { @@ -34,8 +32,7 @@ in stdenv.mkDerivation rec { meta = with stdenv.lib; { description = "The official runtime used by Steam"; homepage = https://github.com/ValveSoftware/steam-runtime; - license = licenses.mit; - maintainers = with maintainers; [ hrdinka ]; - hydraPlatforms = []; + license = licenses.unfreeRedistributable; # Includes NVIDIA CG toolkit + maintainers = with maintainers; [ hrdinka abbradar ]; }; } diff --git a/pkgs/games/steam/update-runtime.py b/pkgs/games/steam/update-runtime.py new file mode 100755 index 00000000000..32442970849 --- /dev/null +++ b/pkgs/games/steam/update-runtime.py @@ -0,0 +1,138 @@ +#!/usr/bin/env python2 +# +# Script to build a Nix script to actually build a Steam runtime. +# Patched version of https://github.com/ValveSoftware/steam-runtime/blob/master/build-runtime.py + +import os +import re +import sys +import urllib +import gzip +import cStringIO +import subprocess +from debian import deb822 +import argparse + +destdir="newpkg" +arches=["amd64", "i386"] + +REPO="http://repo.steampowered.com/steamrt" +DIST="scout" +COMPONENT="main" + +out = open("runtime-generated.nix", "w"); +out.write("# This file is autogenerated! Do not edit it yourself, use update-runtime.py for regeneration.\n") +out.write("{ fetchurl }:\n") +out.write("\n") +out.write("{\n") + +def parse_args(): + parser = argparse.ArgumentParser() + parser.add_argument("-b", "--beta", help="build beta runtime", action="store_true") + parser.add_argument("-d", "--debug", help="build debug runtime", action="store_true") + parser.add_argument("--symbols", help="include debugging symbols", action="store_true") + parser.add_argument("--repo", help="source repository", default=REPO) + return parser.parse_args() + +def download_file(file_base, file_name, file_url): + file_shortname = file_base + ".deb" + md5 = subprocess.check_output(["nix-prefetch-url", "--type", "md5", "--name", file_shortname, file_url]) + out.write(" rec {\n") + out.write(" name = \"%s\";\n" % file_name) + out.write(" md5 = \"%s\";\n" % md5.strip()) + out.write(" source = fetchurl {\n") + out.write(" url = \"%s\";\n" % file_url) + out.write(" inherit md5;\n") + out.write(" name = \"%s\";\n" % file_shortname) + out.write(" };\n") + out.write(" }\n") + + +def install_binaries (arch, binarylist): + installset = binarylist.copy() + + # + # Load the Packages file so we can find the location of each binary package + # + packages_url = "%s/dists/%s/%s/binary-%s/Packages" % (REPO, DIST, COMPONENT, arch) + print("Downloading %s binaries from %s" % (arch, packages_url)) + for stanza in deb822.Packages.iter_paragraphs(urllib.urlopen(packages_url)): + p = stanza['Package'] + if p in installset: + print("DOWNLOADING BINARY: %s" % p) + + # + # Download the package and install it + # + file_url="%s/%s" % (REPO,stanza['Filename']) + download_file(p, os.path.splitext(os.path.basename(stanza['Filename']))[0], file_url) + installset.remove(p) + + for p in installset: + # + # There was a binary package in the list to be installed that is not in the repo + # + e = "ERROR: Package %s not found in Packages file %s\n" % (p, packages_url) + sys.stderr.write(e) + + + +def install_symbols (arch, binarylist): + # + # Load the Packages file to find the location of each symbol package + # + packages_url = "%s/dists/%s/%s/debug/binary-%s/Packages" % (REPO, DIST, COMPONENT, arch) + print("Downloading %s symbols from %s" % (arch, packages_url)) + for stanza in deb822.Packages.iter_paragraphs(urllib.urlopen(packages_url)): + p = stanza['Package'] + m = re.match('([\w\-\.]+)\-dbgsym', p) + if m and m.group(1) in binarylist: + print("DOWNLOADING SYMBOLS: %s" % p) + # + # Download the package and install it + # + file_url="%s/%s" % (REPO,stanza['Filename']) + download_file(p, os.path.splitext(os.path.basename(stanza['Filename']))[0], file_url) + + + +args = parse_args() + +REPO=args.repo + +if args.beta: + DIST="steam_beta" + +if args.debug: + COMPONENT = "debug" + +# Process packages.txt to get the list of source and binary packages +source_pkgs = set() +binary_pkgs = set() + +print ("Creating runtime-generated.nix") + +pkgs_list = urllib.urlopen("https://raw.githubusercontent.com/ValveSoftware/steam-runtime/master/packages.txt").readlines() +for line in pkgs_list: + if line[0] != '#': + toks = line.split() + if len(toks) > 1: + source_pkgs.add(toks[0]) + binary_pkgs.update(toks[1:]) + +# remove development packages for end-user runtime +if not args.debug: + binary_pkgs -= {x for x in binary_pkgs if re.search('-dbg$|-dev$|-multidev$',x)} + +for arch in arches: + out.write(" %s = [\n" % arch) + install_binaries(arch, binary_pkgs) + + if args.symbols: + install_symbols(arch, binary_pkgs) + + out.write(" ];\n"); + +out.write("}\n") + +# vi: set noexpandtab: From fb0bb02af4ee88faa5ee1ae7c141885de4a7badb Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Thu, 6 Aug 2015 22:38:43 +0200 Subject: [PATCH 153/196] python-packages scipy: 0.15.1 -> 0.16.0 --- pkgs/top-level/python-packages.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index dc7e53836d9..73c6d0ec658 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -13409,11 +13409,12 @@ let pkgName = "numpy"; }; in buildPythonPackage rec { - name = "scipy-0.15.1"; + name = "scipy-${version}"; + version = "0.16.0"; src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/s/scipy/${name}.tar.gz"; - sha256 = "16i5iksaas3m0hgbxrxpgsyri4a9ncbwbiazlhx5d6lynz1wn4m2"; + sha256 = "92592f40097098f3fdbe7f5855d535b29bb16719c2bb59c728bce5e7a28790e0"; }; buildInputs = [ pkgs.gfortran self.nose ]; From 9ada7aa2a8ccc8cd6b3d247a5038d311264852e0 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sat, 15 Aug 2015 11:26:36 +0200 Subject: [PATCH 154/196] python packages scikit-learn: 0.16.1 -> 0.17b1 Some tests in scikit-learn 0.16.1 fail with the new scipy 0.16 package. This is known upstream and should be fixed in the next release. https://github.com/scikit-learn/scikit-learn/issues/5045 This commit disables the tests until the next scikit-learn release. --- pkgs/top-level/python-packages.nix | 17 +++-------------- 1 file changed, 3 insertions(+), 14 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 73c6d0ec658..27b302d7ba2 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -13437,27 +13437,16 @@ let scikitlearn = buildPythonPackage rec { name = "scikit-learn-${version}"; - version = "0.16.1"; + version = "0.17b1"; src = pkgs.fetchurl { url = "https://github.com/scikit-learn/scikit-learn/archive/${version}.tar.gz"; - sha256 = "140skabifgc7lvvj873pnzlwx0ni6q8qkrsyad2ccjb3h8rxzkih"; + sha256 = "b5965c888ae44fe3f5a1b15297e5d8e254a41d1848df99e00efc2fc643e6e8f2"; }; buildInputs = with self; [ nose pillow pkgs.gfortran pkgs.glibcLocales ]; propagatedBuildInputs = with self; [ numpy scipy pkgs.openblas ]; - patches = [ - (pkgs.fetchurl { - url = "https://patch-diff.githubusercontent.com/raw/scikit-learn/scikit-learn/pull/5197.patch"; - sha256 = "1b261wcvim6s0sqmd20jylwz09g5bh3xzhagjlslmv4q50qxpvkg"; - }) - ]; - - postPatch = optionalString stdenv.isi686 '' - sed -i -e "s|test_standard_scaler_numerical_stability|_skip_test_standard_scaler_numerical_stability|g" sklearn/preprocessing/tests/test_data.py - ''; - buildPhase = '' ${self.python.executable} setup.py build_ext -i --fcompiler='gnu95' ''; @@ -13471,7 +13460,7 @@ let homepage = http://scikit-learn.org; license = licenses.bsd3; maintainers = with maintainers; [ fridh ]; - }; + }; }; scripttest = buildPythonPackage rec { From fc801238efceb79b988e664d269452ee673d325e Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Tue, 20 Oct 2015 18:06:43 +0200 Subject: [PATCH 155/196] python pyflakes: 0.9.2 -> 1.0.0 --- pkgs/top-level/python-packages.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 27b302d7ba2..ae062699d86 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -11421,11 +11421,12 @@ let }; pyflakes = buildPythonPackage rec { - name = "pyflakes-0.9.2"; + name = "pyflakes-${version}"; + version = "1.0.0"; src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/p/pyflakes/${name}.tar.gz"; - sha256 = "0pvawddspdq0y22dbraq5gld9qr6rwa7zhmpfhl2b7v9rqiiqs82"; + sha256 = "f39e33a4c03beead8774f005bd3ecf0c3f2f264fa0201de965fce0aff1d34263"; }; buildInputs = with self; [ unittest2 ]; From 536949ae3279f6279b3b417dd6ed685994313ce7 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Tue, 20 Oct 2015 18:40:56 +0200 Subject: [PATCH 156/196] python pyflakes_0_8: init at 0.8.1 --- pkgs/top-level/python-packages.nix | 25 ++++++++++++++++++++++++- 1 file changed, 24 insertions(+), 1 deletion(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index ae062699d86..6ecbef69ab1 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -6090,7 +6090,7 @@ let }; buildInputs = with self; [ nose mock ]; - propagatedBuildInputs = with self; [ pyflakes pep8 mccabe ]; + propagatedBuildInputs = with self; [ pyflakes_0_8 pep8 mccabe ]; # 3 failing tests #doCheck = false; @@ -11441,6 +11441,29 @@ let }; }; + pyflakes_0_8 = buildPythonPackage rec { + # Pyflakes 0.8 is needed for flake8, which is needed for OpenStack Nova + # https://github.com/NixOS/nixpkgs/pull/10399 + name = "pyflakes-${version}"; + version = "0.8.1"; + + src = pkgs.fetchurl { + url = "http://pypi.python.org/packages/source/p/pyflakes/${name}.tar.gz"; + sha256 = "0sbpq6pqm1i9wqi41mlfrsc5rk92jv4mskvlyxmnhlbdnc80ma1z"; + }; + + buildInputs = with self; [ unittest2 ]; + + doCheck = !isPyPy; + + disabled = isPy35; # Not supported + + meta = { + homepage = https://launchpad.net/pyflakes; + description = "A simple program which checks Python source files for errors"; + license = licenses.mit; + }; + }; pygeoip = pythonPackages.buildPythonPackage rec { name = "pygeoip-0.3.2"; From a7f478a3685248ff4238991c8fededa63227d6af Mon Sep 17 00:00:00 2001 From: Jude Taylor Date: Tue, 20 Oct 2015 15:53:21 -0700 Subject: [PATCH 157/196] darwin: add needed inputs to python-3.4 --- pkgs/development/interpreters/python/3.4/default.nix | 8 ++++++++ pkgs/top-level/all-packages.nix | 1 + 2 files changed, 9 insertions(+) diff --git a/pkgs/development/interpreters/python/3.4/default.nix b/pkgs/development/interpreters/python/3.4/default.nix index 10bb8b3215d..570c7cc35d1 100644 --- a/pkgs/development/interpreters/python/3.4/default.nix +++ b/pkgs/development/interpreters/python/3.4/default.nix @@ -12,6 +12,8 @@ , zlib , callPackage , self + +, CF, configd }: assert readline != null -> ncurses != null; @@ -33,6 +35,8 @@ stdenv.mkDerivation { pythonVersion = majorVersion; inherit majorVersion version; + buildInputs = stdenv.lib.optionals stdenv.isDarwin [ CF configd ]; + src = fetchurl { url = "http://www.python.org/ftp/python/${version}/Python-${fullVersion}.tar.xz"; sha256 = "1f4nm4z08sy0kqwisvv95l02crv6dyysdmx44p1mz3bn6csrdcxm"; @@ -40,6 +44,10 @@ stdenv.mkDerivation { NIX_LDFLAGS = stdenv.lib.optionalString stdenv.isLinux "-lgcc_s"; + prePatch = stdenv.lib.optionalString stdenv.isDarwin '' + substituteInPlace configure --replace '`/usr/bin/arch`' '"i386"' + ''; + preConfigure = '' for i in /usr /sw /opt /pkg; do # improve purity substituteInPlace ./setup.py --replace $i /no-such-path diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index fc78dac5ee7..4cd7a30d030 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -5075,6 +5075,7 @@ let self = python33; }; python34 = hiPrio (callPackage ../development/interpreters/python/3.4 { + inherit (darwin) CF configd; self = python34; }); python35 = hiPrio (callPackage ../development/interpreters/python/3.5 { From d63f0d3a6bda0976da98b4b9278b82b362424838 Mon Sep 17 00:00:00 2001 From: Jude Taylor Date: Tue, 20 Oct 2015 15:53:31 -0700 Subject: [PATCH 158/196] hplip: fix evaluation --- pkgs/misc/drivers/hplip/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/misc/drivers/hplip/default.nix b/pkgs/misc/drivers/hplip/default.nix index 28ae8b25ca7..e381ea6b3e3 100644 --- a/pkgs/misc/drivers/hplip/default.nix +++ b/pkgs/misc/drivers/hplip/default.nix @@ -35,6 +35,8 @@ let "arm7l-linux" = "arm32"; }."${stdenv.system}" or (abort "Unsupported platform ${stdenv.system}"); + platforms = [ "i686-linux" "x86_64-linux" "armv6l-linux" "armv7l-linux" ]; + in stdenv.mkDerivation { @@ -99,7 +101,7 @@ stdenv.mkDerivation { enableParallelBuilding = true; postInstall = - (stdenv.lib.optionalString withPlugin + (stdenv.lib.optionalString (withPlugin && builtins.elem stdenv.system platforms) (let hplip_arch = if stdenv.system == "i686-linux" then "x86_32" else if stdenv.system == "x86_64-linux" then "x86_64" From 283c83785fa6d28937fdb8f7119ec63a5e3dbbd5 Mon Sep 17 00:00:00 2001 From: Jude Taylor Date: Tue, 20 Oct 2015 16:24:41 -0700 Subject: [PATCH 159/196] bluejeans: fix evaluation on non-linux --- .../networking/browsers/mozilla-plugins/bluejeans/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/networking/browsers/mozilla-plugins/bluejeans/default.nix b/pkgs/applications/networking/browsers/mozilla-plugins/bluejeans/default.nix index 4b05dcd2675..5b3ceeae70a 100644 --- a/pkgs/applications/networking/browsers/mozilla-plugins/bluejeans/default.nix +++ b/pkgs/applications/networking/browsers/mozilla-plugins/bluejeans/default.nix @@ -10,7 +10,7 @@ let [gtk glib stdenv.cc.cc]; rpathPlugin = makeLibraryPath - [ stdenv.cc.cc gtk glib xorg.libX11 gdk_pixbuf libXext libXfixes libXrender libXrandr libuuid libXcomposite libpulseaudio ]; + ([ stdenv.cc.cc gtk glib xorg.libX11 gdk_pixbuf libXext libXfixes libXrender libXrandr libXcomposite libpulseaudio ] ++ optional (libuuid != null) libuuid); in From df22cfdb41acfd7c6af820539d864cc5f284753f Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Wed, 21 Oct 2015 01:43:30 +0200 Subject: [PATCH 160/196] gptfdisk 1.0.0 -> 1.0.1 Changes: http://www.rodsbooks.com/gdisk/revisions.html --- pkgs/tools/system/gptfdisk/default.nix | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/pkgs/tools/system/gptfdisk/default.nix b/pkgs/tools/system/gptfdisk/default.nix index 6551f27e772..00cb6f8dd0c 100644 --- a/pkgs/tools/system/gptfdisk/default.nix +++ b/pkgs/tools/system/gptfdisk/default.nix @@ -1,11 +1,14 @@ { fetchurl, stdenv, libuuid, popt, icu, ncurses }: +let version = "1.0.1"; in stdenv.mkDerivation rec { - name = "gptfdisk-1.0.0"; + name = "gptfdisk-${version}"; src = fetchurl { + # http://www.rodsbooks.com/gdisk/${name}.tar.gz also works, but the home + # page clearly implies a preference for using SourceForge's bandwidth: url = "mirror://sourceforge/gptfdisk/${name}.tar.gz"; - sha256 = "0v0xl0mzwabdf9yisgsvkhpyi48kbik35c6df42gr6d78dkrarjv"; + sha256 = "1izazbyv5n2d81qdym77i8mg9m870hiydmq4d0s51npx5vp8lk46"; }; buildInputs = [ libuuid popt icu ncurses ]; @@ -20,13 +23,12 @@ stdenv.mkDerivation rec { done ''; - meta = { - description = "A set of text-mode partitioning tools for Globally Unique Identifier (GUID) Partition Table (GPT) disks"; - - license = stdenv.lib.licenses.gpl2; - + meta = with stdenv.lib; { + inherit version; + description = "Set of text-mode partitioning tools for Globally Unique Identifier (GUID) Partition Table (GPT) disks"; + license = licenses.gpl2; homepage = http://www.rodsbooks.com/gdisk/; - - platforms = stdenv.lib.platforms.linux; + maintainers = with maintainers; [ nckx ]; + platforms = platforms.linux; }; } From f5c0d29c58997fba1b7af00d8fdb04d796c87dab Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Wed, 21 Oct 2015 04:38:13 +0200 Subject: [PATCH 161/196] goffice: 0.10.22 -> 0.10.24 --- pkgs/development/libraries/goffice/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/goffice/default.nix b/pkgs/development/libraries/goffice/default.nix index 517836f4d63..3aa9c678060 100644 --- a/pkgs/development/libraries/goffice/default.nix +++ b/pkgs/development/libraries/goffice/default.nix @@ -2,11 +2,11 @@ , libgsf, libxml2, libxslt, cairo, pango, librsvg, libspectre }: stdenv.mkDerivation rec { - name = "goffice-0.10.22"; + name = "goffice-0.10.24"; src = fetchurl { url = "mirror://gnome/sources/goffice/0.10/${name}.tar.xz"; - sha256 = "0206a87a323b52a874dc54491374245f9e1c5f62e93a2ce4a02fb444a26b0e28"; + sha256 = "cda70eab0b0b0e29c3bea09849bcfca0c2ccc20038ee69e7e14cde664484af5a"; }; nativeBuildInputs = [ pkgconfig intltool ]; From 0bbf978a72cdbb4636664cdb08acf360734d8903 Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Tue, 20 Oct 2015 20:07:35 -0700 Subject: [PATCH 162/196] libsoundio: 1.0.2 -> 1.0.3 --- pkgs/development/libraries/libsoundio/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/libsoundio/default.nix b/pkgs/development/libraries/libsoundio/default.nix index 48400ae6e1b..9f9f89ec812 100644 --- a/pkgs/development/libraries/libsoundio/default.nix +++ b/pkgs/development/libraries/libsoundio/default.nix @@ -1,14 +1,14 @@ { stdenv, fetchFromGitHub, cmake, alsaLib, libjack2-git, libpulseaudio }: stdenv.mkDerivation rec { - version = "1.0.2"; + version = "1.0.3"; name = "libsoundio-${version}"; src = fetchFromGitHub { owner = "andrewrk"; repo = "libsoundio"; rev = "${version}"; - sha256 = "0zq8sy8m9zp2ji7qiwn932ivl5mw30kn97nip84ki8vc0lm7f8hx"; + sha256 = "0xnv0rsan57i07ky823jczylbcpbzjk6j06fw9x0md65arcgcqfy"; }; buildInputs = [ cmake alsaLib libjack2-git libpulseaudio ]; From f608644c23cfcfecbcd98ea20f07164d2ce4b762 Mon Sep 17 00:00:00 2001 From: "William A. Kennington III" Date: Tue, 20 Oct 2015 23:04:08 -0700 Subject: [PATCH 163/196] tmux: 2.0 -> 2.1 --- pkgs/tools/misc/tmux/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/misc/tmux/default.nix b/pkgs/tools/misc/tmux/default.nix index 6cc54536eb1..aab229c0ad2 100644 --- a/pkgs/tools/misc/tmux/default.nix +++ b/pkgs/tools/misc/tmux/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "tmux-${version}"; - version = "2.0"; + version = "2.1"; src = fetchurl { url = "https://github.com/tmux/tmux/releases/download/${version}/${name}.tar.gz"; - sha256 = "0qnkda8kb747vmbldjpb23ksv9pq3s65xhh1ja5rdsmh8r24npvr"; + sha256 = "0xk1mylsb08sf0w597mdgj9s6hxxjvjvjd6bngpjvvxwyixlwmii"; }; nativeBuildInputs = [ pkgconfig ]; From d495ac2957ea63dfc4dd8d5e14753ee1d9ffbebd Mon Sep 17 00:00:00 2001 From: Simon Vandel Sillesen Date: Wed, 21 Oct 2015 09:01:42 +0200 Subject: [PATCH 164/196] tvheadend: 4.0.4 -> 4.0.6 Added a comment about network download, and cleaned it up a little --- pkgs/servers/tvheadend/default.nix | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/pkgs/servers/tvheadend/default.nix b/pkgs/servers/tvheadend/default.nix index c7b4e515317..79bade94569 100644 --- a/pkgs/servers/tvheadend/default.nix +++ b/pkgs/servers/tvheadend/default.nix @@ -1,19 +1,25 @@ {avahi, dbus, fetchurl, git, gzip, libav, libiconv, openssl, pkgconfig, python , stdenv, which, zlib}: -let version = "4.0.4"; - pkgName = "tvheadend"; in +with stdenv.lib; + +let version = "4.0.6"; + pkgName = "tvheadend"; + +in stdenv.mkDerivation rec { name = "${pkgName}-${version}"; src = fetchurl { url = "https://github.com/tvheadend/tvheadend/archive/v${version}.tar.gz"; - sha256 = "acc5c852bccb32d6a281f523e78a1cceb4d41987fe015aba3f66e1898b02c168"; + sha256 = "05jidg7jma3mban40iy1bg3sirw6crscxkd8b70if4kjlf86i31l"; }; enableParallelBuilding = true; + # disable dvbscan, as having it enabled causes a network download which + # cannot happen during build. configureFlags = [ "--disable-dvbscan" ]; buildInputs = [ avahi dbus git gzip libav libiconv openssl pkgconfig python @@ -28,8 +34,8 @@ stdenv.mkDerivation rec { supporting DVB-S, DVB-S2, DVB-C, DVB-T, ATSC, IPTV, SAT>IP and HDHomeRun as input sources. Tvheadend offers the HTTP (VLC, MPlayer), HTSP (Kodi, Movian) and SAT>IP streaming.''; homepage = "https://tvheadend.org"; - license = stdenv.lib.licenses.gpl3; - platforms = stdenv.lib.platforms.unix; - maintainers = [ stdenv.lib.maintainers.simonvandel ]; + license = licenses.gpl3; + platforms = platforms.unix; + maintainers = [ maintainers.simonvandel ]; }; } From 5cbc177dfbab2b9348e7485d3ceaf0ed5ac4a5bf Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Tue, 20 Oct 2015 15:40:16 +0300 Subject: [PATCH 165/196] fakeroot: 1.18.4 -> 1.20.2 --- pkgs/tools/system/fakeroot/default.nix | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/pkgs/tools/system/fakeroot/default.nix b/pkgs/tools/system/fakeroot/default.nix index 9764ae6ce0e..7995a656c1e 100644 --- a/pkgs/tools/system/fakeroot/default.nix +++ b/pkgs/tools/system/fakeroot/default.nix @@ -1,14 +1,15 @@ -{stdenv, fetchurl, utillinux}: +{ stdenv, fetchurl, utillinux, libcap }: stdenv.mkDerivation rec { - name = "fakeroot-1.18.4"; + version = "1.20.2"; + name = "fakeroot-${version}"; src = fetchurl { - url = https://launchpad.net/ubuntu/+archive/primary/+files/fakeroot_1.18.4.orig.tar.bz2; - sha256 = "18mydrz49n7ic7147pikkpdb96x00s9wisdk6hrc75ll7vx9wd8a"; + url = "http://http.debian.net/debian/pool/main/f/fakeroot/fakeroot_${version}.orig.tar.bz2"; + sha256 = "0313xb2j6a4wihrw9gfd4rnyqw7zzv6wf3rfh2gglgnv356ic2kw"; }; - buildInputs = [ utillinux /* provides getopt */ ]; + buildInputs = [ utillinux /* provides getopt */ libcap ]; postUnpack = '' for prog in getopt; do From c6c1d3f77793fb897f97682988c2e9469f230511 Mon Sep 17 00:00:00 2001 From: Brian McKenna Date: Wed, 21 Oct 2015 21:31:39 +1100 Subject: [PATCH 166/196] pijul: init at 0.1 --- .../version-management/pijul/default.nix | 27 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 4 +++ 2 files changed, 31 insertions(+) create mode 100644 pkgs/applications/version-management/pijul/default.nix diff --git a/pkgs/applications/version-management/pijul/default.nix b/pkgs/applications/version-management/pijul/default.nix new file mode 100644 index 00000000000..f00e22bb385 --- /dev/null +++ b/pkgs/applications/version-management/pijul/default.nix @@ -0,0 +1,27 @@ +{ stdenv, fetchdarcs, ocaml, findlib, cryptokit, yojson, lmdb, zlib }: + +stdenv.mkDerivation rec { + name = "pijul-${version}"; + version = "0.1"; + + src = fetchdarcs { + url = "http://pijul.org/"; + rev = version; + sha256 = "0r189xx900w4smq6nyy1wnrjf9sgqrqw5as0l7k6gq0ra36szzff"; + }; + + buildInputs = [ ocaml findlib cryptokit yojson lmdb zlib ]; + + installPhase = '' + mkdir -p $out/bin + cp pijul $out/bin/ + ''; + + meta = with stdenv.lib; { + homepage = https://pijul.org/; + description = "Fast DVCS based on a categorical theory of patches"; + license = licenses.gpl3; + platforms = stdenv.lib.platforms.unix; + maintainers = with maintainers; [ puffnfresh ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 4cd7a30d030..1ba07ba0c8e 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -12298,6 +12298,10 @@ let pig = callPackage ../applications/networking/cluster/pig { }; + pijul = callPackage ../applications/version-management/pijul { + inherit (ocamlPackages) findlib cryptokit yojson; + }; + playonlinux = callPackage ../applications/misc/playonlinux { }; shotcut = callPackage ../applications/video/shotcut { mlt = mlt-qt5; }; From c67e8c16e3b84dbb289b7258a96535fd82e3eba2 Mon Sep 17 00:00:00 2001 From: wedens Date: Wed, 21 Oct 2015 16:45:58 +0600 Subject: [PATCH 167/196] fzf: 0.10.4 -> 0.10.8 --- pkgs/top-level/go-packages.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index 28b8360262a..d9a35988979 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -607,10 +607,10 @@ let }; fzf = buildFromGitHub { - rev = "0.10.4"; + rev = "0.10.8"; owner = "junegunn"; repo = "fzf"; - sha256 = "06wda8pm1invnj4sfwcicw9qim3jdf9s1fcrai7xqz7wgy74qv1f"; + sha256 = "0dkf2qb9k7x97lph6y45hmqqig4jkcg176c6jkf2r5866dydq549"; buildInputs = [ crypto ginkgo gomega junegunn.go-runewidth go-shellwords pkgs.ncurses text From db0589b9fc36ad4961a7aca2af5bb5a284b9ffca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Forsman?= Date: Wed, 21 Oct 2015 14:27:57 +0200 Subject: [PATCH 168/196] librecad2: 2.0.7 -> 2.0.8 --- pkgs/applications/misc/librecad/2.0.nix | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/pkgs/applications/misc/librecad/2.0.nix b/pkgs/applications/misc/librecad/2.0.nix index b8419d32fed..135291a1490 100644 --- a/pkgs/applications/misc/librecad/2.0.nix +++ b/pkgs/applications/misc/librecad/2.0.nix @@ -1,12 +1,13 @@ { stdenv, fetchurl, qt4, muparser, which, boost, pkgconfig }: -stdenv.mkDerivation { - name = "librecad-2.0.7"; +stdenv.mkDerivation rec { + version = "2.0.8"; + name = "librecad-${version}"; src = fetchurl { - url = https://github.com/LibreCAD/LibreCAD/tarball/2.0.7; - name = "librecad-2.0.7.tar.gz"; - sha256 = "0r6d7fk9jl8368rbxzk9rwv0mciw28hlv77z29jf36amc42n6z4d"; + url = "https://github.com/LibreCAD/LibreCAD/tarball/${version}"; + name = name + ".tar.gz"; + sha256 = "110vn1rvzidg8k6ifz1zws2wsn4cd05xl5ha0hbff2ln7izy84zc"; }; patchPhase = '' From da38314be64fe75979964ed245f7d598c517de93 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Wed, 21 Oct 2015 15:57:58 +0300 Subject: [PATCH 169/196] buildFHSEnv: create /etc/profile with writeText This should avoid accidential expansion of variables, i.e. in "export PATH=/some/path:$PATH" $PATH would have been expanded in the environment builder! --- pkgs/build-support/build-fhs-chrootenv/env.nix | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/pkgs/build-support/build-fhs-chrootenv/env.nix b/pkgs/build-support/build-fhs-chrootenv/env.nix index 3acb0c8e6b7..a245778bf38 100644 --- a/pkgs/build-support/build-fhs-chrootenv/env.nix +++ b/pkgs/build-support/build-fhs-chrootenv/env.nix @@ -52,6 +52,14 @@ let gnutar gzip bzip2 xz glibcLocales ]; + etcProfile = nixpkgs.writeText "profile" '' + export PS1='${name}-chrootenv:\u@\h:\w\$ ' + export LOCALE_ARCHIVE='/usr/lib${if isMultiBuild then "64" else ""}/locale/locale-archive' + export LD_LIBRARY_PATH=/run/opengl-driver/lib:/run/opengl-driver-32/lib:/lib:/lib64 + export PATH='/usr/bin:/usr/sbin' + ${profile} + ''; + # Compose /etc for the chroot environment etcPkg = nixpkgs.stdenv.mkDerivation { name = "${name}-chrootenv-etc"; @@ -60,13 +68,7 @@ let cd $out/etc # environment variables - cat >> profile < Date: Wed, 21 Oct 2015 15:12:58 +0200 Subject: [PATCH 170/196] Drop unnecessary __impureHostDeps is a builtin derivation so it shouldn't need any host dependencies. --- pkgs/stdenv/pure-darwin/default.nix | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/pkgs/stdenv/pure-darwin/default.nix b/pkgs/stdenv/pure-darwin/default.nix index c043da8a8a7..e4bae33ce55 100644 --- a/pkgs/stdenv/pure-darwin/default.nix +++ b/pkgs/stdenv/pure-darwin/default.nix @@ -18,13 +18,11 @@ let "/usr/lib/system" ]; - fetch = { file, sha256 }: derivation ((import { + fetch = { file, sha256 }: import { url = "https://dl.dropboxusercontent.com/u/2857322/${file}"; inherit sha256 system; executable = true; - }).drvAttrs // { - __impureHostDeps = libSystemClosure; - }); + }; bootstrapFiles = { sh = fetch { file = "sh"; sha256 = "1qakpg37vl61jnkplz13m3g1csqr85cg8ybp6jwiv6apmg26isnm"; }; From 3bf3d1975922b8956565e10ccc5f4caea0fdbcf6 Mon Sep 17 00:00:00 2001 From: aszlig Date: Wed, 21 Oct 2015 16:43:34 +0200 Subject: [PATCH 171/196] nixpart0: Don't search for libudev using SO major. The SO major is going to change in the upcoming update of the Hetzner rescue system, which will cause NixOps to break because it's statically using the SO major 0 while the new rescue system will have the major number 1. I'm still keeping the udevSoMajor attribute to retain backwards- compatibility with older NixOps versions. Signed-off-by: aszlig --- pkgs/tools/filesystems/nixpart/0.4/blivet.nix | 13 ++----- .../filesystems/nixpart/0.4/blivet.patch | 39 +++++++++++++++++++ .../tools/filesystems/nixpart/0.4/default.nix | 6 ++- 3 files changed, 47 insertions(+), 11 deletions(-) create mode 100644 pkgs/tools/filesystems/nixpart/0.4/blivet.patch diff --git a/pkgs/tools/filesystems/nixpart/0.4/blivet.nix b/pkgs/tools/filesystems/nixpart/0.4/blivet.nix index fd7d59774b2..d4129f4d390 100644 --- a/pkgs/tools/filesystems/nixpart/0.4/blivet.nix +++ b/pkgs/tools/filesystems/nixpart/0.4/blivet.nix @@ -1,8 +1,6 @@ { stdenv, fetchurl, buildPythonPackage, pykickstart, pyparted, pyblock , libselinux, cryptsetup, multipath_tools, lsof, utillinux , useNixUdev ? true, udev ? null -# This is only used when useNixUdev is false -, udevSoMajor ? 1 }: assert useNixUdev -> udev != null; @@ -17,6 +15,8 @@ buildPythonPackage rec { sha256 = "1k3mws2q0ryb7422mml6idmaasz2i2v6ngyvg6d976dx090qnmci"; }; + patches = [ ./blivet.patch ]; + postPatch = '' sed -i -e 's|"multipath"|"${multipath_tools}/sbin/multipath"|' \ blivet/devicelibs/mpath.py blivet/devices.py @@ -27,16 +27,11 @@ buildPythonPackage rec { sed -i -e 's|"lsof"|"${lsof}/bin/lsof"|' blivet/formats/fs.py sed -i -r -e 's|"(u?mount)"|"${utillinux}/bin/\1"|' blivet/util.py sed -i '/pvscan/s/, *"--cache"//' blivet/devicelibs/lvm.py - '' + (if useNixUdev then '' + '' + stdenv.lib.optionalString useNixUdev '' sed -i -e '/find_library/,/find_library/ { c libudev = "${udev}/lib/libudev.so.1" }' blivet/pyudev.py - '' else '' - sed -i \ - -e '/^somajor *=/s/=.*/= ${toString udevSoMajor}/p' \ - -e 's|common =.*|& + ["/lib/x86_64-linux-gnu", "/lib/i686-linux-gnu"]|' \ - blivet/pyudev.py - ''); + ''; propagatedBuildInputs = [ pykickstart pyparted pyblock libselinux cryptsetup diff --git a/pkgs/tools/filesystems/nixpart/0.4/blivet.patch b/pkgs/tools/filesystems/nixpart/0.4/blivet.patch new file mode 100644 index 00000000000..1758d18442d --- /dev/null +++ b/pkgs/tools/filesystems/nixpart/0.4/blivet.patch @@ -0,0 +1,39 @@ +diff --git a/blivet/pyudev.py b/blivet/pyudev.py +index 705b93d..7268d71 100644 +--- a/blivet/pyudev.py ++++ b/blivet/pyudev.py +@@ -7,9 +7,9 @@ from ctypes import * + + + # XXX this one may need some tweaking... +-def find_library(name, somajor=0): ++def find_library(name): + env = os.environ.get("LD_LIBRARY_PATH") +- common = ["/lib64", "/lib"] ++ common = ["/lib64", "/lib", "/lib/x86_64-linux-gnu", "/lib/i686-linux-gnu"] + + if env: + libdirs = env.split(":") + common +@@ -19,7 +19,7 @@ def find_library(name, somajor=0): + libdirs = filter(os.path.isdir, libdirs) + + for dir in libdirs: +- files = fnmatch.filter(os.listdir(dir), "lib%s.so.%d" % (name, somajor)) ++ files = fnmatch.filter(os.listdir(dir), "lib%s.so.*" % name) + files = [os.path.join(dir, file) for file in files] + + if files: +@@ -32,11 +32,10 @@ def find_library(name, somajor=0): + + # find the udev library + name = "udev" +-somajor = 1 +-libudev = find_library(name=name, somajor=somajor) ++libudev = find_library(name) + + if not libudev or not os.path.exists(libudev): +- raise ImportError, "No library named %s.%d" % (name, somajor) ++ raise ImportError, "No library named lib%s.so" % name + + # load the udev library + libudev = CDLL(libudev) diff --git a/pkgs/tools/filesystems/nixpart/0.4/default.nix b/pkgs/tools/filesystems/nixpart/0.4/default.nix index 9ea2f9bfdc7..01a3caafc5d 100644 --- a/pkgs/tools/filesystems/nixpart/0.4/default.nix +++ b/pkgs/tools/filesystems/nixpart/0.4/default.nix @@ -1,6 +1,8 @@ { stdenv, fetchurl, python, buildPythonPackage # Propagated to blivet -, useNixUdev ? true, udevSoMajor ? null +, useNixUdev ? true +# No longer needed, but kept for backwards-compatibility with older NixOps. +, udevSoMajor ? null # Propagated dependencies , pkgs, urlgrabber }: @@ -9,7 +11,7 @@ let blivet = import ./blivet.nix { inherit stdenv fetchurl buildPythonPackage; inherit pykickstart pyparted pyblock cryptsetup multipath_tools; - inherit useNixUdev udevSoMajor; + inherit useNixUdev; inherit (pkgs) lsof utillinux udev; libselinux = pkgs.libselinux.override { enablePython = true; }; }; From f15420b0fe28e35a18aab348bbccdecef19e58c8 Mon Sep 17 00:00:00 2001 From: aszlig Date: Wed, 21 Oct 2015 16:57:19 +0200 Subject: [PATCH 172/196] thttpd: Fix SHA256 of the upstream tarball. It's a bit unfortunate to see this, but while looking online to download the old version of the file I found that MacPorts and FreeBSD had the same issue: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=199562 I've checked the diff as well and found no big functional changes, except a function rename, copyright updates and changed syslog priorities: https://bz-attachments.freebsd.org/attachment.cgi?id=155775 Signed-off-by: aszlig --- pkgs/servers/http/thttpd/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/servers/http/thttpd/default.nix b/pkgs/servers/http/thttpd/default.nix index 53a7f916c9a..706911aeef1 100644 --- a/pkgs/servers/http/thttpd/default.nix +++ b/pkgs/servers/http/thttpd/default.nix @@ -6,7 +6,7 @@ stdenv.mkDerivation rec { src = fetchurl { url = "http://acme.com/software/thttpd/${name}.tar.gz"; - sha256 = "1dybhpyfrly0m285cdn9jah397bqzylrwzi26gin2h451z3gdcqm"; + sha256 = "1idlpnwrd5fpmnfh477h1lzanavx8jxir2d8adax46zy472dg4s6"; }; prePatch = '' From 754b772484793f0c0ad1d7ef39577a6075eb3e03 Mon Sep 17 00:00:00 2001 From: Igor Sharonov Date: Wed, 21 Oct 2015 18:51:54 +0300 Subject: [PATCH 173/196] pythonPackages.colour: init at 0.1.2 --- pkgs/top-level/python-packages.nix | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 2ea48f7f54e..275fa749729 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -1141,6 +1141,25 @@ let propagatedBuildInputs = with self; [ iowait psutil pyzmq tornado mock ]; }; + colour = buildPythonPackage rec { + name = "${pname}-${version}"; + pname = "colour"; + version = "0.1.2"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/c/${pname}/${name}.tar.gz"; + sha256 = "0w1j43l76zw10dvs2kk7jz7kqj2ss7gfgfdxyls27pckwin89gxb"; + }; + + buildInputs = with self; [ d2to1 ]; + + meta = { + description = "Converts and manipulates common color representation (RGB, HSV, web, ...)"; + homepage = https://github.com/vaab/colour; + license = licenses.bsd2; + }; + }; + cornice = buildPythonPackage rec { name = "cornice-${version}"; version = "0.17.0"; From 9c2d733426058ed933ad6c869054fc8c2dc891e3 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Wed, 21 Oct 2015 20:53:18 +0300 Subject: [PATCH 174/196] Revert "rxvt_unicode: add patch to fix Shift+PgUp/PgDown bug" This reverts commit 5877d74f03f8164af91850d439d7cc584c006d6e. Closes #10513. --- pkgs/applications/misc/rxvt_unicode/default.nix | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/pkgs/applications/misc/rxvt_unicode/default.nix b/pkgs/applications/misc/rxvt_unicode/default.nix index 325a42b70b1..c1d74c247ce 100644 --- a/pkgs/applications/misc/rxvt_unicode/default.nix +++ b/pkgs/applications/misc/rxvt_unicode/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, fetchpatch, perlSupport, libX11, libXt, libXft, ncurses, perl, +{ stdenv, fetchurl, perlSupport, libX11, libXt, libXft, ncurses, perl, fontconfig, freetype, pkgconfig, libXrender, gdkPixbufSupport, gdk_pixbuf, unicode3Support }: @@ -28,10 +28,6 @@ stdenv.mkDerivation (rec { patches = [ ./rxvt-unicode-9.06-font-width.patch ./rxvt-unicode-256-color-resources.patch - (fetchpatch { - url = "https://raw.githubusercontent.com/mina86/urxvt-tabbedex/ad4f54c8b8d3a01fc17975fd3fd14aa674c07d2b/rxvt-unicode-scroll-bug-fix.patch"; - sha256 = "1ild0r6y7jb800yiss5pgd4k60s7l9njv3nn3x280yvg1lx6ihpg"; - }) ] ++ stdenv.lib.optional stdenv.isDarwin ./rxvt-unicode-makefile-phony.patch; From 6610f4b67916de4aa997c9a5b76ce8a724f256c1 Mon Sep 17 00:00:00 2001 From: Igor Sharonov Date: Wed, 21 Oct 2015 22:41:03 +0300 Subject: [PATCH 175/196] pythonPackages.basiciw: init at 0.2.2 --- pkgs/top-level/python-packages.nix | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 2ea48f7f54e..8d019d380e3 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -910,6 +910,28 @@ let }; }; + basiciw = buildPythonPackage rec { + name = "${pname}-${version}"; + version = "0.2.2"; + pname = "basiciw"; + disabled = isPy26 || isPy27; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/b/${pname}/${name}.tar.gz"; + sha256 = "1ajmflvvlkflrcmqmkrx0zaira84z8kv4ssb2jprfwvjh8vfkysb"; + }; + + buildInputs = [ pkgs.gcc ]; + propagatedBuildInputs = [ pkgs.wirelesstools ]; + + meta = { + description = "Get info about wireless interfaces using libiw"; + homepage = http://github.com/enkore/basiciw; + platforms = platforms.linux; + license = licenses.gpl2; + }; + }; + batinfo = buildPythonPackage rec { version = "0.2"; name = "batinfo-${version}"; From 6f156db45bf00766408c3631bedd447b7eabcdf1 Mon Sep 17 00:00:00 2001 From: Arseniy Seroka Date: Wed, 21 Oct 2015 22:42:37 +0300 Subject: [PATCH 176/196] slim theme Nixos: 1.0 -> 2.0 --- pkgs/applications/display-managers/slim/themes.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/display-managers/slim/themes.nix b/pkgs/applications/display-managers/slim/themes.nix index 0c69f101885..b1be24f3e1d 100644 --- a/pkgs/applications/display-managers/slim/themes.nix +++ b/pkgs/applications/display-managers/slim/themes.nix @@ -176,8 +176,8 @@ in { nixosSlim = buildTheme { fullName = "nixos-slim"; src = fetchurl { - url = "https://github.com/jagajaga/nixos-slim-theme/archive/1.1.tar.gz"; - sha256 = "66c3020a6716130a20c3898567339b990fbd7888a3b7bbcb688f6544d1c05c31"; + url = "https://github.com/jagajaga/nixos-slim-theme/archive/2.0.tar.gz"; + sha256 = "0lldizhigx7bjhxkipii87y432hlf5wdvamnfxrryf9z7zkfypc8"; }; }; } From ad49db64da904bf408a9f5b54764c8649f54629a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Forsman?= Date: Wed, 21 Oct 2015 21:34:12 +0200 Subject: [PATCH 177/196] build-fhs-chrootenv: add /etc/mtab -> /proc/mounts symlink Needed to be able to run some programs (e.g. tune2fs) in the chroot. AFAIK, /etc/mtab is deprecated, but programs still use it. --- pkgs/build-support/build-fhs-chrootenv/env.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/build-support/build-fhs-chrootenv/env.nix b/pkgs/build-support/build-fhs-chrootenv/env.nix index a245778bf38..4c307a77d12 100644 --- a/pkgs/build-support/build-fhs-chrootenv/env.nix +++ b/pkgs/build-support/build-fhs-chrootenv/env.nix @@ -98,6 +98,9 @@ let # symlink SSL certs mkdir -p ssl ln -s /host-etc/ssl/certs ssl/certs + + # symlink /etc/mtab -> /proc/mounts (compat for old userspace progs) + ln -s /proc/mounts mtab ''; }; From 35fcef10f54531fccfc9321ea818f30c296ae8be Mon Sep 17 00:00:00 2001 From: Bart Brouns Date: Wed, 21 Oct 2015 22:15:05 +0200 Subject: [PATCH 178/196] zam-plugins: update 3.5->3.6 --- pkgs/applications/audio/zam-plugins/default.nix | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/pkgs/applications/audio/zam-plugins/default.nix b/pkgs/applications/audio/zam-plugins/default.nix index 1ac7921119a..7492e8e0a37 100644 --- a/pkgs/applications/audio/zam-plugins/default.nix +++ b/pkgs/applications/audio/zam-plugins/default.nix @@ -1,18 +1,21 @@ -{ stdenv, fetchurl, boost, libX11, mesa, liblo, libjack2, ladspaH, lv2, pkgconfig, rubberband, libsndfile }: +{ stdenv, fetchgit , boost, libX11, mesa, liblo, libjack2, ladspaH, lv2, pkgconfig, rubberband, libsndfile }: stdenv.mkDerivation rec { name = "zam-plugins-${version}"; - version = "3.5"; + version = "3.6"; - src = fetchurl { - url = "https://github.com/zamaudio/zam-plugins/archive/${version}.tar.gz"; - sha256 = "0icdrs4vaaj8gqi76jkkx5yk9h3agipa11cyb5h52y814q6mx6vm"; + src = fetchgit { + url = "https://github.com/zamaudio/zam-plugins.git"; + deepClone = true; + rev = "91fe56931a3e57b80f18c740d2dde6b44f962aee"; + sha256 = "17slpywjs04xbcylyqjg6kqbpqwqbigf843y437yfvj1ar6ir1jp"; }; buildInputs = [ boost libX11 mesa liblo libjack2 ladspaH lv2 pkgconfig rubberband libsndfile ]; patchPhase = '' - patchShebangs ./libs/generate-ttl.sh + patchShebangs ./dpf/utils/generate-ttl.sh + substituteInPlace Makefile --replace "ZaMaximX2" "ZaMaximX2 ZamPiano ZamChild670" ''; makeFlags = [ From d663cc5e173606d7d631c0504ab78ce7a68e1a1e Mon Sep 17 00:00:00 2001 From: Damien Cassou Date: Wed, 21 Oct 2015 22:31:09 +0200 Subject: [PATCH 179/196] gplaycli: init at 0.1.2 Also add ndg-httpsclient 0.4.0 which is a dependency of gplaycli. --- pkgs/top-level/python-packages.nix | 49 ++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 2ea48f7f54e..200a26f6b64 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -3811,6 +3811,34 @@ let propagatedBuildInputs = with self; [ gdata ]; }; + gplaycli = buildPythonPackage rec { + version = "0.1.2"; + name = "gplaycli-${version}"; + + src = pkgs.fetchFromGitHub { + owner = "matlink"; + repo = "gplaycli"; + rev = "${version}"; + sha256 = "0yc09inzs3aggj0gw4irlhlzw5q562fsp0sks352y6z0vx31hcp3"; + }; + + disabled = ! isPy27; + + propagatedBuildInputs = with self; [ pkgs.libffi pyasn1 clint ndg-httpsclient protobuf requests args ]; + + preBuild = '' + substituteInPlace setup.py --replace "/etc" "$out/etc" + substituteInPlace gplaycli/gplaycli.py --replace "/etc" "$out/etc" + ''; + + meta = { + homepage = https://github.com/matlink/gplaycli; + description = "Google Play Downloader via Command line"; + license = licenses.agl3Plus; + maintainers = with maintainers; [ DamienCassou ]; + }; + }; + gst-python = callPackage ../development/libraries/gstreamer/python { gst-plugins-base = pkgs.gst_all_1.gst-plugins-base; }; @@ -4297,6 +4325,27 @@ let }; }; + ndg-httpsclient = buildPythonPackage rec { + version = "0.4.0"; + name = "ndg-httpsclient-${version}"; + + propagatedBuildInputs = with self; [ pyopenssl ]; + + src = pkgs.fetchFromGitHub { + owner = "cedadev"; + repo = "ndg_httpsclient"; + rev = "v${version}"; + sha256 = "1prv4j3wcy9kl5ndd5by543xp4cji9k35qncsl995w6sway34s1a"; + }; + + meta = { + homepage = https://github.com/cedadev/ndg_httpsclient/; + description = "Provide enhanced HTTPS support for httplib and urllib2 using PyOpenSSL"; + license = licenses.bsd; + maintainers = with maintainers; [ DamienCassou ]; + }; + }; + netcdf4 = buildPythonPackage rec { name = "netCDF4-${version}"; version = "1.1.8"; From e4927ee346817a52fea3a21f79b3788847b0ac08 Mon Sep 17 00:00:00 2001 From: Kamil Chmielewski Date: Thu, 22 Oct 2015 00:34:07 +0200 Subject: [PATCH 180/196] qtile: 0.10.1 -> 0.10.2 --- pkgs/applications/window-managers/qtile/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/window-managers/qtile/default.nix b/pkgs/applications/window-managers/qtile/default.nix index 236baa131c9..743530e3998 100644 --- a/pkgs/applications/window-managers/qtile/default.nix +++ b/pkgs/applications/window-managers/qtile/default.nix @@ -2,13 +2,13 @@ buildPythonPackage rec { name = "qtile-${version}"; - version = "0.10.1"; + version = "0.10.2"; src = fetchFromGitHub { owner = "qtile"; repo = "qtile"; rev = "v${version}"; - sha256 = "1g02lvk2cqy6w6y6nw6dnsmy4i9k4fyawyibpkf0a7a1nfrd6a99"; + sha256 = "0dhdwjr4pdlzli68fa8glrnsjzxp6agdab9cnmpsqlwiwh97x9a6"; }; patches = [ ./restart_executable.patch ]; From 71effd873ac9737f1c645e4b0feee553aae4c96f Mon Sep 17 00:00:00 2001 From: "William A. Kennington III" Date: Wed, 21 Oct 2015 21:48:57 -0700 Subject: [PATCH 181/196] gnutls: 3.4.5 -> 3.4.6 --- pkgs/development/libraries/gnutls/3.4.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/gnutls/3.4.nix b/pkgs/development/libraries/gnutls/3.4.nix index acd164de024..6d196978cdf 100644 --- a/pkgs/development/libraries/gnutls/3.4.nix +++ b/pkgs/development/libraries/gnutls/3.4.nix @@ -1,11 +1,11 @@ { callPackage, fetchurl, autoreconfHook, ... } @ args: callPackage ./generic.nix (args // rec { - version = "3.4.5"; + version = "3.4.6"; src = fetchurl { url = "ftp://ftp.gnutls.org/gcrypt/gnutls/v3.4/gnutls-${version}.tar.xz"; - sha256 = "1bks1zpmhmnkz2v32dd9b44pz6x0a5w4yi9zzwsd0a078vhbi25g"; + sha256 = "1v109px1sy1s731fnawzdsvggdswmr7ha9q5lid4v8pzgznmkdgy"; }; # This fixes some broken parallel dependencies From 491764afc09a7128368daeb61f711166e9db1376 Mon Sep 17 00:00:00 2001 From: "William A. Kennington III" Date: Wed, 21 Oct 2015 21:49:10 -0700 Subject: [PATCH 182/196] samba: 4.3.0 -> 4.3.1 --- pkgs/servers/samba/4.x.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/samba/4.x.nix b/pkgs/servers/samba/4.x.nix index 2e8f8a67fd4..8fcc1a4a973 100644 --- a/pkgs/servers/samba/4.x.nix +++ b/pkgs/servers/samba/4.x.nix @@ -19,11 +19,11 @@ with lib; stdenv.mkDerivation rec { - name = "samba-4.3.0"; + name = "samba-4.3.1"; src = fetchurl { url = "mirror://samba/pub/samba/stable/${name}.tar.gz"; - sha256 = "0qyvmjl8p8fnyhibwivhxxkm67nxxaj4lp35jni9l7gcknrbdnyq"; + sha256 = "10ic9pxsk3ml5ycmi0bql8wraxhbr2l4fhzd0qwmiqmrjl6sh24r"; }; patches = From caafa68a7e7d12e415eb07a285773bff7e3fd9c6 Mon Sep 17 00:00:00 2001 From: Asko Soukka Date: Wed, 21 Oct 2015 22:24:40 +0300 Subject: [PATCH 183/196] darwin: python35: add needed inputs --- pkgs/development/interpreters/python/3.5/default.nix | 8 ++++++++ pkgs/top-level/all-packages.nix | 1 + 2 files changed, 9 insertions(+) diff --git a/pkgs/development/interpreters/python/3.5/default.nix b/pkgs/development/interpreters/python/3.5/default.nix index d689fdeee4c..2d85a52a2e9 100644 --- a/pkgs/development/interpreters/python/3.5/default.nix +++ b/pkgs/development/interpreters/python/3.5/default.nix @@ -12,6 +12,8 @@ , zlib , callPackage , self + +, CF, configd }: assert readline != null -> ncurses != null; @@ -33,6 +35,8 @@ stdenv.mkDerivation { pythonVersion = majorVersion; inherit majorVersion version; + buildInputs = stdenv.lib.optionals stdenv.isDarwin [ CF configd ]; + src = fetchurl { url = "http://www.python.org/ftp/python/${version}/Python-${fullVersion}.tar.xz"; sha256 = "14dywb94mci0kqbsji9riyyq8kx0h9ljdjjgxnkfrvm56hbammyn"; @@ -40,6 +44,10 @@ stdenv.mkDerivation { NIX_LDFLAGS = stdenv.lib.optionalString stdenv.isLinux "-lgcc_s"; + prePatch = stdenv.lib.optionalString stdenv.isDarwin '' + substituteInPlace configure --replace '`/usr/bin/arch`' '"i386"' + ''; + preConfigure = '' for i in /usr /sw /opt /pkg; do # improve purity substituteInPlace ./setup.py --replace $i /no-such-path diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index f55b0a536d6..e9768fe4eb8 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -5081,6 +5081,7 @@ let self = python34; }); python35 = hiPrio (callPackage ../development/interpreters/python/3.5 { + inherit (darwin) CF configd; self = python35; }); pypy = callPackage ../development/interpreters/pypy { From 9882e09471396c463037d8fba849f87ac9c5a075 Mon Sep 17 00:00:00 2001 From: "William A. Kennington III" Date: Wed, 21 Oct 2015 22:12:36 -0700 Subject: [PATCH 184/196] ceph: 0.94.3.2 -> 0.94.4 --- pkgs/tools/filesystems/ceph/0.94.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/filesystems/ceph/0.94.nix b/pkgs/tools/filesystems/ceph/0.94.nix index f35df749f38..301ff940d0c 100644 --- a/pkgs/tools/filesystems/ceph/0.94.nix +++ b/pkgs/tools/filesystems/ceph/0.94.nix @@ -1,12 +1,12 @@ { callPackage, fetchgit, ... } @ args: callPackage ./generic.nix (args // rec { - version = "0.94.3.2"; + version = "0.94.4"; src = fetchgit { url = "https://github.com/ceph/ceph.git"; rev = "refs/tags/v${version}"; - sha256 = "112yprdy39cmhfgh6pfx34rlw9sp83fgzqixvgpq34akpykhad8c"; + sha256 = "0jp3c805bix88z3103kbrxv2yndpjcz3j5rp669f7qq46074zw6g"; }; patches = [ ./fix-pgrefdebugging.patch ]; From 93a06285df75826aa0e29d37389306cefbd06839 Mon Sep 17 00:00:00 2001 From: Damien Cassou Date: Thu, 22 Oct 2015 10:16:24 +0200 Subject: [PATCH 185/196] gplaycli: fix license --- pkgs/top-level/python-packages.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 200a26f6b64..6a6b2ac2154 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -3834,7 +3834,7 @@ let meta = { homepage = https://github.com/matlink/gplaycli; description = "Google Play Downloader via Command line"; - license = licenses.agl3Plus; + license = licenses.agpl3Plus; maintainers = with maintainers; [ DamienCassou ]; }; }; From 3ca9ad0b253da772ed4a482e87b8d03e6a6a2dbe Mon Sep 17 00:00:00 2001 From: Damien Cassou Date: Thu, 22 Oct 2015 11:58:54 +0200 Subject: [PATCH 186/196] ndg-httpsclient: fix license Fix issue #10530 --- pkgs/top-level/python-packages.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 200a26f6b64..30e4184369b 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -4341,7 +4341,7 @@ let meta = { homepage = https://github.com/cedadev/ndg_httpsclient/; description = "Provide enhanced HTTPS support for httplib and urllib2 using PyOpenSSL"; - license = licenses.bsd; + license = licenses.bsd2; maintainers = with maintainers; [ DamienCassou ]; }; }; From 7a9982d4651c0ef7251128e8bbd8f99fa4b70e2e Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Wed, 14 Oct 2015 18:15:11 +0300 Subject: [PATCH 187/196] nixos/bash: use simple prompt for dumb terminals --- nixos/modules/programs/bash/bash.nix | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/nixos/modules/programs/bash/bash.nix b/nixos/modules/programs/bash/bash.nix index c5c0f9d0121..75efd5e2903 100644 --- a/nixos/modules/programs/bash/bash.nix +++ b/nixos/modules/programs/bash/bash.nix @@ -90,12 +90,14 @@ in promptInit = mkOption { default = '' - # Provide a nice prompt. - PROMPT_COLOR="1;31m" - let $UID && PROMPT_COLOR="1;32m" - PS1="\n\[\033[$PROMPT_COLOR\][\u@\h:\w]\\$\[\033[0m\] " - if test "$TERM" = "xterm"; then - PS1="\[\033]2;\h:\u:\w\007\]$PS1" + if test "$TERM" != "dumb"; then + # Provide a nice prompt. + PROMPT_COLOR="1;31m" + let $UID && PROMPT_COLOR="1;32m" + PS1="\n\[\033[$PROMPT_COLOR\][\u@\h:\w]\\$\[\033[0m\] " + if test "$TERM" = "xterm"; then + PS1="\[\033]2;\h:\u:\w\007\]$PS1" + fi fi ''; description = '' From d4bebcbd1201dc6ebd615fb1beea8ddbe7f2e0f9 Mon Sep 17 00:00:00 2001 From: Rickard Nilsson Date: Thu, 22 Oct 2015 13:07:45 +0200 Subject: [PATCH 188/196] collectd: 5.4.2 -> 5.5.0 --- pkgs/tools/system/collectd/default.nix | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/pkgs/tools/system/collectd/default.nix b/pkgs/tools/system/collectd/default.nix index 80d9d2d98ef..d1214d3c163 100644 --- a/pkgs/tools/system/collectd/default.nix +++ b/pkgs/tools/system/collectd/default.nix @@ -3,6 +3,7 @@ , pkgconfig ? null # most of the extra deps need pkgconfig to be found , curl ? null , iptables ? null +, jdk ? null , libcredis ? null , libdbi ? null , libgcrypt ? null @@ -14,34 +15,39 @@ , libsigrok ? null , libvirt ? null , libxml2 ? null +, libtool ? null , lm_sensors ? null , lvm2 ? null , mysql ? null , postgresql ? null , protobufc ? null +, python ? null , rabbitmq-c ? null +, riemann ? null , rrdtool ? null , varnish ? null , yajl ? null }: stdenv.mkDerivation rec { - name = "collectd-5.4.2"; + name = "collectd-5.5.0"; src = fetchurl { url = "http://collectd.org/files/${name}.tar.bz2"; - sha256 = "14z3qkqbmfjvqvcb2v17480f7c8j7wa49myk0zlxpd9qq40fk2cp"; + sha256 = "847684cf5c10de1dc34145078af3fcf6e0d168ba98c14f1343b1062a4b569e88"; }; buildInputs = [ pkgconfig curl iptables libcredis libdbi libgcrypt libmemcached cyrus_sasl libmodbus libnotify gdk_pixbuf liboping libpcap libsigrok libvirt lm_sensors libxml2 lvm2 mysql.lib postgresql protobufc rabbitmq-c rrdtool - varnish yajl + varnish yajl jdk libtool python ]; # for some reason libsigrok isn't auto-detected - configureFlags = stdenv.lib.optional (libsigrok != null) "--with-libsigrok"; + configureFlags = + stdenv.lib.optional (libsigrok != null) "--with-libsigrok" ++ + stdenv.lib.optional (python != null) "--with-python=${python}/bin/python"; NIX_CFLAGS_COMPILE = "-Wno-error=cpp"; From 763ad3372a9719f1187d800edbbb21a82180b143 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Thu, 22 Oct 2015 14:02:44 +0300 Subject: [PATCH 189/196] nixos/parsoid: use nodejs 0.10 --- nixos/modules/services/misc/parsoid.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/misc/parsoid.nix b/nixos/modules/services/misc/parsoid.nix index 0844190a549..ea97d6e30e8 100644 --- a/nixos/modules/services/misc/parsoid.nix +++ b/nixos/modules/services/misc/parsoid.nix @@ -91,7 +91,7 @@ in wantedBy = [ "multi-user.target" ]; after = [ "network.target" ]; serviceConfig = { - ExecStart = "${pkgs.nodePackages.parsoid}/lib/node_modules/parsoid/api/server.js -c ${confFile} -n ${toString cfg.workers}"; + ExecStart = "${pkgs.nodePackages_0_10.parsoid}/lib/node_modules/parsoid/api/server.js -c ${confFile} -n ${toString cfg.workers}"; }; }; From 38ff29b856b0fab610e3184c55d9127aec53243e Mon Sep 17 00:00:00 2001 From: desiderius Date: Thu, 22 Oct 2015 14:24:50 +0200 Subject: [PATCH 190/196] pythonPackages.pypdf2: init at 1.25.1 From the PyPDF2 FAQ: "PyPDF2 is a fork from the no-longer-maintained pyPdf approved by the latter's founder." --- pkgs/top-level/python-packages.nix | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index e33f93ecf4a..88fcf264e39 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -12255,6 +12255,25 @@ let }; }; + pypdf2 = buildPythonPackage rec { + name = "PyPDF2-${version}"; + version = "1.25.1"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/P/PyPDF2/${name}.tar.gz"; + sha256 = "1sw225j9fgsvg1zm7lrij96fihfmq8pc1vg611dc55491zvj9ls3"; + }; + + buildInputs = with self; [ ]; + + meta = { + description = "A Pure-Python library built as a PDF toolkit"; + homepage = "http://mstamy2.github.com/PyPDF2/"; + license = licenses.bsd3; + maintainers = with maintainers; [ desiderius ]; + }; + }; + pyopengl = buildPythonPackage rec { name = "pyopengl-${version}"; version = "3.0.2"; From 657b1ccc479ff2fb98aa1b9182d50e4eb3f49b2e Mon Sep 17 00:00:00 2001 From: Jude Taylor Date: Thu, 22 Oct 2015 09:46:54 -0700 Subject: [PATCH 191/196] darwin: repair QuartzCore paths --- pkgs/os-specific/darwin/apple-sdk/default.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pkgs/os-specific/darwin/apple-sdk/default.nix b/pkgs/os-specific/darwin/apple-sdk/default.nix index ff2d8b590b2..11b9b4a83a3 100644 --- a/pkgs/os-specific/darwin/apple-sdk/default.nix +++ b/pkgs/os-specific/darwin/apple-sdk/default.nix @@ -157,6 +157,13 @@ in rec { f="$out/Library/Frameworks/QuartzCore.framework/Headers/CoreImage.h" substituteInPlace "$f" \ --replace "QuartzCore/../Frameworks/CoreImage.framework/Headers" "CoreImage" + + # CoreImage.framework's location varies by OSX version + for linkedFile in "$out/Library/Frameworks/QuartzCore.framework/Frameworks/CoreImage.framework"/*; do + link=$(readlink "$linkedFile" | sed 's,//,/A/,') + rm "$linkedFile" + ln -s "$link" "$linkedFile" + done ''; }); }; From 2b71fdbbc36e560b73da5a6a6c10505f82decc80 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Thu, 22 Oct 2015 20:11:30 +0200 Subject: [PATCH 192/196] blas: fix by updating, fixes #10420, close #10545 The new URL also looks more stable. --- pkgs/development/libraries/science/math/blas/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/libraries/science/math/blas/default.nix b/pkgs/development/libraries/science/math/blas/default.nix index fa8412ccb6d..07b1e8877fb 100644 --- a/pkgs/development/libraries/science/math/blas/default.nix +++ b/pkgs/development/libraries/science/math/blas/default.nix @@ -1,10 +1,10 @@ { stdenv, fetchurl, gfortran }: -stdenv.mkDerivation { - name = "blas-20110419"; +stdenv.mkDerivation rec { + name = "blas-3.5.0"; src = fetchurl { - url = "http://www.netlib.org/blas/blas.tgz"; - sha256 = "1d931d91byv2svydpj2ipjh1f2sm1h9ns8ik2w5fwaa8qinxz1za"; + url = "http://www.netlib.org/blas/${name}.tgz"; + sha256 = "096a3apnh899abjymjjg8m34hncagkzp9qxw08cms98g71fpfzgg"; }; buildInputs = [gfortran]; From 0c481966b6dfb8f6cc6d19155e12d3837f033bec Mon Sep 17 00:00:00 2001 From: Bob van der Linden Date: Thu, 22 Oct 2015 20:38:53 +0200 Subject: [PATCH 193/196] oraclejdk: added architecture attribute This attribute is needed by some other packages. The lack of this attribute makes nox-review fail on a system where jdk = oraclejdk7; --- pkgs/development/compilers/oraclejdk/jdk-linux-base.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/compilers/oraclejdk/jdk-linux-base.nix b/pkgs/development/compilers/oraclejdk/jdk-linux-base.nix index 5d294d5c43d..5ac7c417ba2 100644 --- a/pkgs/development/compilers/oraclejdk/jdk-linux-base.nix +++ b/pkgs/development/compilers/oraclejdk/jdk-linux-base.nix @@ -182,6 +182,8 @@ let result = stdenv.mkDerivation rec { passthru.home = result; + passthru.architecture = architecture; + meta = with stdenv.lib; { license = licenses.unfree; platforms = [ "i686-linux" "x86_64-linux" ]; # some inherit jre.meta.platforms From edd64c1d99d056e2c4ca1e86bf89457cb2a24e5d Mon Sep 17 00:00:00 2001 From: Bob van der Linden Date: Mon, 21 Sep 2015 15:55:17 +0200 Subject: [PATCH 194/196] lsyncd: init at 2.1.5 --- .../sync/lsyncd/configure-a2x-fix.patch | 18 +++++++++ .../networking/sync/lsyncd/default.nix | 40 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 4 ++ 3 files changed, 62 insertions(+) create mode 100644 pkgs/applications/networking/sync/lsyncd/configure-a2x-fix.patch create mode 100644 pkgs/applications/networking/sync/lsyncd/default.nix diff --git a/pkgs/applications/networking/sync/lsyncd/configure-a2x-fix.patch b/pkgs/applications/networking/sync/lsyncd/configure-a2x-fix.patch new file mode 100644 index 00000000000..73b47994691 --- /dev/null +++ b/pkgs/applications/networking/sync/lsyncd/configure-a2x-fix.patch @@ -0,0 +1,18 @@ +diff -aur lsyncd-release-2.1.5.orig/configure.ac lsyncd-release-2.1.5/configure.ac +--- lsyncd-release-2.1.5.orig/configure.ac 2013-06-07 18:24:02.000000000 +0600 ++++ lsyncd-release-2.1.5/configure.ac 2014-03-04 13:24:15.390350812 +0600 +@@ -15,10 +15,10 @@ + AC_PROG_INSTALL + AC_PROG_MAKE_SET + +-#AC_PATH_PROG([A2X], [a2x], [no]) +-#if test x${A2X} = xno ; then +-# AC_MSG_ERROR([Program 'a2x' (package asciidoc) is required]) +-#fi ++AC_PATH_PROG([A2X], [a2x], [no]) ++if test x${A2X} = xno ; then ++ AC_MSG_ERROR([Program 'a2x' (package asciidoc) is required]) ++fi + + ### + # Checks for Lua \ No newline at end of file diff --git a/pkgs/applications/networking/sync/lsyncd/default.nix b/pkgs/applications/networking/sync/lsyncd/default.nix new file mode 100644 index 00000000000..775da905ea9 --- /dev/null +++ b/pkgs/applications/networking/sync/lsyncd/default.nix @@ -0,0 +1,40 @@ +{ stdenv, fetchFromGitHub, automake, autoconf, lua, pkgconfig, rsync, + asciidoc, libxml2, docbook_xml_dtd_45, docbook_xml_xslt, libxslt }: + +stdenv.mkDerivation rec { + name = "lsyncd-${version}"; + version = "2.1.5"; + + src = fetchFromGitHub { + owner = "axkibe"; + repo = "lsyncd"; + rev = "release-${version}"; + sha256 = "0jvr2rv34jyjrv7188vdv1z8vgvm4wydqwsp9x5ksfzh9drbq5gn"; + }; + + patches = [ ./configure-a2x-fix.patch ]; + + preConfigurePhase = '' + substituteInPlace default-rsync.lua \ + --replace "binary = '/usr/bin/rsync'," "binary = '${rsync}/bin/rsync'," + ''; + + configurePhase = '' + ./autogen.sh --prefix=$out + ./configure --prefix=$out + ''; + + buildInputs = [ + rsync + automake autoconf lua pkgconfig + asciidoc libxml2 docbook_xml_dtd_45 docbook_xml_xslt libxslt + ]; + + meta = with stdenv.lib; { + homepage = https://github.com/axkibe/lsyncd; + description = "A utility that synchronizes local directories with remote targets"; + license = licenses.gpl2; + platforms = platforms.unix; + maintainers = with maintainers; [ bobvanderlinden ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index e9768fe4eb8..d90add78a5e 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -2003,6 +2003,10 @@ let lsdvd = callPackage ../tools/cd-dvd/lsdvd {}; + lsyncd = callPackage ../applications/networking/sync/lsyncd { + lua = lua5_2_compat; + }; + kippo = callPackage ../servers/kippo { }; klavaro = callPackage ../games/klavaro {}; From 8f663ee0fb48ec0d0a5c80f2d5e1387d58c11f44 Mon Sep 17 00:00:00 2001 From: Jude Taylor Date: Thu, 22 Oct 2015 13:46:18 -0700 Subject: [PATCH 195/196] neovim: don't link with libutil on Darwin --- pkgs/applications/editors/neovim/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/applications/editors/neovim/default.nix b/pkgs/applications/editors/neovim/default.nix index be0a00482f3..2e0e3a1743c 100644 --- a/pkgs/applications/editors/neovim/default.nix +++ b/pkgs/applications/editors/neovim/default.nix @@ -93,6 +93,7 @@ let preConfigure = stdenv.lib.optionalString stdenv.isDarwin '' export DYLD_LIBRARY_PATH=${jemalloc}/lib + substituteInPlace src/nvim/CMakeLists.txt --replace " util" "" ''; postInstall = stdenv.lib.optionalString stdenv.isDarwin '' From bac94c5101f325ebfe6f737be7fd6614f9c7360d Mon Sep 17 00:00:00 2001 From: Jude Taylor Date: Thu, 22 Oct 2015 13:46:41 -0700 Subject: [PATCH 196/196] lua-bitop: update MACOSX_DEPLOYMENT_TARGET --- pkgs/top-level/lua-packages.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/top-level/lua-packages.nix b/pkgs/top-level/lua-packages.nix index e4267fb4f31..e58df1f42c3 100644 --- a/pkgs/top-level/lua-packages.nix +++ b/pkgs/top-level/lua-packages.nix @@ -36,6 +36,10 @@ let buildFlags = stdenv.lib.optionalString stdenv.isDarwin "macosx"; + postPatch = stdenv.lib.optionalString stdenv.isDarwin '' + substituteInPlace Makefile --replace 10.4 10.5 + ''; + preBuild = '' makeFlagsArray=( ${stdenv.lib.optionalString stdenv.cc.isClang "CC=$CC"}