From df3d54e3bbf3320e9903d3b2e683e004fe94fdd1 Mon Sep 17 00:00:00 2001 From: Jude Taylor Date: Fri, 2 Oct 2015 12:26:33 -0700 Subject: [PATCH 001/148] switch stdenvs --- pkgs/stdenv/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/stdenv/default.nix b/pkgs/stdenv/default.nix index 71bdc3e8f82..da93229ce94 100644 --- a/pkgs/stdenv/default.nix +++ b/pkgs/stdenv/default.nix @@ -54,7 +54,7 @@ rec { if system == "armv7l-linux" then stdenvLinux else if system == "mips64el-linux" then stdenvLinux else if system == "powerpc-linux" then /* stdenvLinux */ stdenvNative else - if system == "x86_64-darwin" then stdenvDarwin else + if system == "x86_64-darwin" then stdenvDarwinPure else if system == "x86_64-solaris" then stdenvNix else if system == "i686-cygwin" then stdenvNative else if system == "x86_64-cygwin" then stdenvNative else From e2e4e59975b0022c72d03a74a68f9ab8a4da10a2 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Sat, 3 Oct 2015 14:16:41 +0300 Subject: [PATCH 002/148] 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 fca867434090efd3bd5ac7b741da8bfad0fa8a7e Mon Sep 17 00:00:00 2001 From: rnhmjoj Date: Sun, 11 Oct 2015 23:52:13 +0200 Subject: [PATCH 003/148] 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 004/148] 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 8162085634a4597a213fd53fa28e871548ea6f2e Mon Sep 17 00:00:00 2001 From: Alexei Robyn Date: Wed, 14 Oct 2015 20:24:06 +1100 Subject: [PATCH 005/148] kodi: Fix SSA/ASS subtitle support. --- pkgs/applications/video/kodi/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/applications/video/kodi/default.nix b/pkgs/applications/video/kodi/default.nix index 3fd3d31c18c..142822023fb 100644 --- a/pkgs/applications/video/kodi/default.nix +++ b/pkgs/applications/video/kodi/default.nix @@ -110,6 +110,7 @@ in stdenv.mkDerivation rec { --prefix LD_LIBRARY_PATH ":" "${libvdpau}/lib" \ --prefix LD_LIBRARY_PATH ":" "${libcec}/lib" \ --prefix LD_LIBRARY_PATH ":" "${libcec_platform}/lib" \ + --prefix LD_LIBRARY_PATH ":" "${libass}/lib" \ --prefix LD_LIBRARY_PATH ":" "${rtmpdump}/lib" done ''; From f2898b9ee5635adb1ff055e58f1add052a62de6a Mon Sep 17 00:00:00 2001 From: rnhmjoj Date: Wed, 14 Oct 2015 17:03:13 +0200 Subject: [PATCH 006/148] 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 57ad847982e37dfffd59c27290dbd8794175c8d5 Mon Sep 17 00:00:00 2001 From: Utku Demir Date: Wed, 14 Oct 2015 21:21:12 +0300 Subject: [PATCH 007/148] jenkins: 1.631 -> 1.633 --- .../tools/continuous-integration/jenkins/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/continuous-integration/jenkins/default.nix b/pkgs/development/tools/continuous-integration/jenkins/default.nix index ee18d297d43..c68874cf231 100644 --- a/pkgs/development/tools/continuous-integration/jenkins/default.nix +++ b/pkgs/development/tools/continuous-integration/jenkins/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "jenkins-${version}"; - version = "1.631"; + version = "1.633"; src = fetchurl { url = "http://mirrors.jenkins-ci.org/war/${version}/jenkins.war"; - sha256 = "0bfh5gv3yk9awkzf660jxf9vzzdcr6qa9hl0hkivaj4gmp5f9sp8"; + sha256 = "1s5jihq9shscsdazb1c393qab0djms4by5zn3ciylcgvif431n8m"; }; meta = with stdenv.lib; { description = "An extendable open source continuous integration server"; From d5a364cf8feeab84e4de106950f0820f8c084d68 Mon Sep 17 00:00:00 2001 From: Joe Hermaszewski Date: Wed, 14 Oct 2015 20:15:42 +0100 Subject: [PATCH 008/148] neovim: 2015-10-08 -> 2015-10-12 --- pkgs/applications/editors/neovim/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/editors/neovim/default.nix b/pkgs/applications/editors/neovim/default.nix index f9f1921a176..be0a00482f3 100644 --- a/pkgs/applications/editors/neovim/default.nix +++ b/pkgs/applications/editors/neovim/default.nix @@ -14,7 +14,7 @@ with stdenv.lib; let - version = "2015-10-08"; + version = "2015-10-12"; # Note: this is NOT the libvterm already in nixpkgs, but some NIH silliness: neovimLibvterm = let version = "2015-02-23"; in stdenv.mkDerivation { @@ -58,8 +58,8 @@ let name = "neovim-${version}"; src = fetchFromGitHub { - sha256 = "1kx4jsajl09klg0h0gzsv7mjz2kr09q4glznxwf8f5cncahgldfc"; - rev = "57d3a2a52fea57874d08472d0f8ee8f1bcee87c1"; + sha256 = "1rlybdldz708pz7k0qs2rpm0cjk8ywwyj5s38hyq4mzsswqszdsc"; + rev = "a3f048ee06dea15490d7b874d295c3fc850cdc51"; repo = "neovim"; owner = "neovim"; }; From bb15c81597efceb615a276a97a678406dd36b8a8 Mon Sep 17 00:00:00 2001 From: Joe Hermaszewski Date: Wed, 14 Oct 2015 20:27:36 +0100 Subject: [PATCH 009/148] libtermkey: 0.17 -> 0.18 --- pkgs/development/libraries/libtermkey/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/libtermkey/default.nix b/pkgs/development/libraries/libtermkey/default.nix index c59542fdfed..bbc7c9a6094 100644 --- a/pkgs/development/libraries/libtermkey/default.nix +++ b/pkgs/development/libraries/libtermkey/default.nix @@ -3,11 +3,11 @@ stdenv.mkDerivation rec { name = "libtermkey-${version}"; - version = "0.17"; + version = "0.18"; src = fetchzip { url = "http://www.leonerd.org.uk/code/libtermkey/libtermkey-${version}.tar.gz"; - sha256 = "085mdshgqsn76gfnnzfns7awv6lals9mgv5a6bybd9f9aj7lvrm5"; + sha256 = "0a0ih1a114phzmyq6jzgbp03x97463fwvrp1cgnl26awqw3f8sbf"; }; makeFlags = [ "PREFIX=$(out)" ] From e468b311bc04ad3b46791474dee3f09fdd744832 Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Thu, 15 Oct 2015 00:29:33 +0200 Subject: [PATCH 010/148] eliom: requires OCaml >= 4 --- pkgs/development/ocaml-modules/eliom/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/ocaml-modules/eliom/default.nix b/pkgs/development/ocaml-modules/eliom/default.nix index 7fe26863b3d..23959306d2d 100644 --- a/pkgs/development/ocaml-modules/eliom/default.nix +++ b/pkgs/development/ocaml-modules/eliom/default.nix @@ -3,6 +3,8 @@ ipaddr, ocamlnet, ocaml_ssl, ocaml_pcre, ocaml_optcomp, reactivedata, opam}: +assert stdenv.lib.versionAtLeast (stdenv.lib.getVersion ocaml) "4"; + stdenv.mkDerivation rec { pname = "eliom"; From a7bddbd4caa1b5b95079a4b6aee96ccfe2331a93 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Tue, 13 Oct 2015 16:29:45 +0200 Subject: [PATCH 011/148] hackage-packages.nix: update Haskell package set This update was generated by hackage2nix v20150922-17-gacb24c5 using the following inputs: - Nixpkgs: https://github.com/NixOS/nixpkgs/commit/d16b4a3e789f1abb769c6816b9a78466dcc81f8e - Hackage: https://github.com/commercialhaskell/all-cabal-hashes/commit/bf464d875465fd575aad1adf660ff83d35ba0a7b - LTS Haskell: https://github.com/fpco/lts-haskell/commit/0d493eae3616d7da684f1b6bf35709bc4408a5c0 - Stackage Nightly: https://github.com/fpco/stackage-nightly/commit/a19cf709b396706a63c627959a6ff52a6c14e8d7 --- .../haskell-modules/configuration-lts-0.0.nix | 3 + .../haskell-modules/configuration-lts-0.1.nix | 3 + .../haskell-modules/configuration-lts-0.2.nix | 3 + .../haskell-modules/configuration-lts-0.3.nix | 3 + .../haskell-modules/configuration-lts-0.4.nix | 3 + .../haskell-modules/configuration-lts-0.5.nix | 3 + .../haskell-modules/configuration-lts-0.6.nix | 3 + .../haskell-modules/configuration-lts-0.7.nix | 3 + .../haskell-modules/configuration-lts-1.0.nix | 3 + .../haskell-modules/configuration-lts-1.1.nix | 3 + .../configuration-lts-1.10.nix | 6 + .../configuration-lts-1.11.nix | 6 + .../configuration-lts-1.12.nix | 6 + .../configuration-lts-1.13.nix | 6 + .../configuration-lts-1.14.nix | 6 + .../configuration-lts-1.15.nix | 6 + .../haskell-modules/configuration-lts-1.2.nix | 4 + .../haskell-modules/configuration-lts-1.4.nix | 4 + .../haskell-modules/configuration-lts-1.5.nix | 4 + .../haskell-modules/configuration-lts-1.7.nix | 4 + .../haskell-modules/configuration-lts-1.8.nix | 4 + .../haskell-modules/configuration-lts-1.9.nix | 5 + .../haskell-modules/configuration-lts-2.0.nix | 6 + .../haskell-modules/configuration-lts-2.1.nix | 6 + .../configuration-lts-2.10.nix | 7 + .../configuration-lts-2.11.nix | 7 + .../configuration-lts-2.12.nix | 7 + .../configuration-lts-2.13.nix | 7 + .../configuration-lts-2.14.nix | 7 + .../configuration-lts-2.15.nix | 7 + .../configuration-lts-2.16.nix | 7 + .../configuration-lts-2.17.nix | 7 + .../configuration-lts-2.18.nix | 7 + .../configuration-lts-2.19.nix | 7 + .../haskell-modules/configuration-lts-2.2.nix | 6 + .../configuration-lts-2.20.nix | 7 + .../configuration-lts-2.21.nix | 7 + .../configuration-lts-2.22.nix | 7 + .../haskell-modules/configuration-lts-2.3.nix | 6 + .../haskell-modules/configuration-lts-2.4.nix | 6 + .../haskell-modules/configuration-lts-2.5.nix | 6 + .../haskell-modules/configuration-lts-2.6.nix | 6 + .../haskell-modules/configuration-lts-2.7.nix | 7 + .../haskell-modules/configuration-lts-2.8.nix | 7 + .../haskell-modules/configuration-lts-2.9.nix | 7 + .../haskell-modules/configuration-lts-3.0.nix | 9 + .../haskell-modules/configuration-lts-3.1.nix | 9 + .../haskell-modules/configuration-lts-3.2.nix | 9 + .../haskell-modules/configuration-lts-3.3.nix | 10 + .../haskell-modules/configuration-lts-3.4.nix | 10 + .../haskell-modules/configuration-lts-3.5.nix | 11 + .../haskell-modules/configuration-lts-3.6.nix | 11 + .../haskell-modules/configuration-lts-3.7.nix | 16 + .../haskell-modules/configuration-lts-3.8.nix | 17 + .../haskell-modules/configuration-lts-3.9.nix | 18 + .../haskell-modules/hackage-packages.nix | 795 +++++++++++++----- 56 files changed, 961 insertions(+), 199 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-lts-0.0.nix b/pkgs/development/haskell-modules/configuration-lts-0.0.nix index e4ce6501b50..4e96633ffec 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.0.nix @@ -617,6 +617,7 @@ self: super: { "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"; @@ -3035,6 +3036,7 @@ self: super: { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "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"; @@ -7658,6 +7660,7 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.1.nix b/pkgs/development/haskell-modules/configuration-lts-0.1.nix index 29eff60a39a..a83b845553d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.1.nix @@ -617,6 +617,7 @@ self: super: { "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"; @@ -3034,6 +3035,7 @@ self: super: { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "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"; @@ -7657,6 +7659,7 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.2.nix b/pkgs/development/haskell-modules/configuration-lts-0.2.nix index 39c535c9728..2be11aabdd1 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.2.nix @@ -617,6 +617,7 @@ self: super: { "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"; @@ -3034,6 +3035,7 @@ self: super: { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "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"; @@ -7657,6 +7659,7 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.3.nix b/pkgs/development/haskell-modules/configuration-lts-0.3.nix index 5e3bbb30a88..73960f178c4 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.3.nix @@ -617,6 +617,7 @@ self: super: { "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"; @@ -3034,6 +3035,7 @@ self: super: { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "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"; @@ -7657,6 +7659,7 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.4.nix b/pkgs/development/haskell-modules/configuration-lts-0.4.nix index 32838efe2e6..ab5ed4f9716 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.4.nix @@ -617,6 +617,7 @@ self: super: { "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"; @@ -3033,6 +3034,7 @@ self: super: { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "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"; @@ -7652,6 +7654,7 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.5.nix b/pkgs/development/haskell-modules/configuration-lts-0.5.nix index 8385b60aea6..03a086680ff 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.5.nix @@ -617,6 +617,7 @@ self: super: { "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"; @@ -3033,6 +3034,7 @@ self: super: { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "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"; @@ -7652,6 +7654,7 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.6.nix b/pkgs/development/haskell-modules/configuration-lts-0.6.nix index 0065e61039a..6053fa578c2 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.6.nix @@ -617,6 +617,7 @@ self: super: { "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"; @@ -3030,6 +3031,7 @@ self: super: { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "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"; @@ -7646,6 +7648,7 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.7.nix b/pkgs/development/haskell-modules/configuration-lts-0.7.nix index 6fb4028382a..1b029b2e72e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.7.nix @@ -617,6 +617,7 @@ self: super: { "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"; @@ -3030,6 +3031,7 @@ self: super: { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "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"; @@ -7646,6 +7648,7 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.0.nix b/pkgs/development/haskell-modules/configuration-lts-1.0.nix index 887247343e8..cfda037af8b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.0.nix @@ -614,6 +614,7 @@ self: super: { "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"; @@ -3020,6 +3021,7 @@ self: super: { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "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"; @@ -7630,6 +7632,7 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.1.nix b/pkgs/development/haskell-modules/configuration-lts-1.1.nix index 96703054c6a..88fe2a12f3b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.1.nix @@ -614,6 +614,7 @@ self: super: { "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"; @@ -3014,6 +3015,7 @@ self: super: { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "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"; @@ -7612,6 +7614,7 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.10.nix b/pkgs/development/haskell-modules/configuration-lts-1.10.nix index 4282ea24d14..37ecceb293d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.10.nix @@ -613,6 +613,7 @@ self: super: { "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"; @@ -3005,6 +3006,7 @@ self: super: { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "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"; @@ -5367,6 +5369,7 @@ self: super: { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = dontDistribute super."monad-peel"; @@ -7574,6 +7577,7 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7839,6 +7843,7 @@ self: super: { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; @@ -7969,6 +7974,7 @@ self: super: { "vector-space-points" = doDistribute super."vector-space-points_0_2_1"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.11.nix b/pkgs/development/haskell-modules/configuration-lts-1.11.nix index d2fee33b620..0a719cd2991 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.11.nix @@ -613,6 +613,7 @@ self: super: { "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"; @@ -3005,6 +3006,7 @@ self: super: { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "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"; @@ -5363,6 +5365,7 @@ self: super: { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = dontDistribute super."monad-peel"; @@ -7568,6 +7571,7 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7833,6 +7837,7 @@ self: super: { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; @@ -7963,6 +7968,7 @@ self: super: { "vector-space-points" = doDistribute super."vector-space-points_0_2_1"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.12.nix b/pkgs/development/haskell-modules/configuration-lts-1.12.nix index 4317fe0a721..807e25d18c6 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.12.nix @@ -613,6 +613,7 @@ self: super: { "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"; @@ -3005,6 +3006,7 @@ self: super: { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "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"; @@ -5362,6 +5364,7 @@ self: super: { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = dontDistribute super."monad-peel"; @@ -7565,6 +7568,7 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7830,6 +7834,7 @@ self: super: { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; @@ -7960,6 +7965,7 @@ self: super: { "vector-space-points" = doDistribute super."vector-space-points_0_2_1"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.13.nix b/pkgs/development/haskell-modules/configuration-lts-1.13.nix index 1f509f1d170..3d185d8b333 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.13.nix @@ -613,6 +613,7 @@ self: super: { "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"; @@ -3004,6 +3005,7 @@ self: super: { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "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"; @@ -5359,6 +5361,7 @@ self: super: { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = dontDistribute super."monad-peel"; @@ -7561,6 +7564,7 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7826,6 +7830,7 @@ self: super: { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; @@ -7956,6 +7961,7 @@ self: super: { "vector-space-points" = doDistribute super."vector-space-points_0_2_1"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.14.nix b/pkgs/development/haskell-modules/configuration-lts-1.14.nix index e2a60b64f90..03b0d820f99 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.14.nix @@ -612,6 +612,7 @@ self: super: { "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"; @@ -3001,6 +3002,7 @@ self: super: { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "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"; @@ -5353,6 +5355,7 @@ self: super: { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = dontDistribute super."monad-peel"; @@ -7553,6 +7556,7 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7818,6 +7822,7 @@ self: super: { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; @@ -7948,6 +7953,7 @@ self: super: { "vector-space-points" = doDistribute super."vector-space-points_0_2_1"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.15.nix b/pkgs/development/haskell-modules/configuration-lts-1.15.nix index 0ea1c32f4d2..d9021160b64 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.15.nix @@ -612,6 +612,7 @@ self: super: { "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"; @@ -2996,6 +2997,7 @@ self: super: { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "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"; @@ -5347,6 +5349,7 @@ self: super: { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = dontDistribute super."monad-peel"; @@ -7541,6 +7544,7 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7806,6 +7810,7 @@ self: super: { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; @@ -7935,6 +7940,7 @@ self: super: { "vector-space-points" = doDistribute super."vector-space-points_0_2_1"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.2.nix b/pkgs/development/haskell-modules/configuration-lts-1.2.nix index d4443fe5450..72bc49e3c83 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.2.nix @@ -614,6 +614,7 @@ self: super: { "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"; @@ -3012,6 +3013,7 @@ self: super: { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "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"; @@ -7606,6 +7608,7 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -8005,6 +8008,7 @@ self: super: { "vector-space-points" = doDistribute super."vector-space-points_0_2_1"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.4.nix b/pkgs/development/haskell-modules/configuration-lts-1.4.nix index 93b3618b443..4e3b1824c72 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.4.nix @@ -613,6 +613,7 @@ self: super: { "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"; @@ -3010,6 +3011,7 @@ self: super: { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "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"; @@ -7599,6 +7601,7 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7998,6 +8001,7 @@ self: super: { "vector-space-points" = doDistribute super."vector-space-points_0_2_1"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.5.nix b/pkgs/development/haskell-modules/configuration-lts-1.5.nix index 1a69fca9369..3bde16664d9 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.5.nix @@ -613,6 +613,7 @@ self: super: { "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"; @@ -3009,6 +3010,7 @@ self: super: { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "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"; @@ -7597,6 +7599,7 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7994,6 +7997,7 @@ self: super: { "vector-space-points" = doDistribute super."vector-space-points_0_2_1"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.7.nix b/pkgs/development/haskell-modules/configuration-lts-1.7.nix index fb3cba5b31c..a4735937363 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.7.nix @@ -613,6 +613,7 @@ self: super: { "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"; @@ -3009,6 +3010,7 @@ self: super: { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "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"; @@ -7591,6 +7593,7 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7988,6 +7991,7 @@ self: super: { "vector-space-points" = doDistribute super."vector-space-points_0_2_1"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.8.nix b/pkgs/development/haskell-modules/configuration-lts-1.8.nix index 094aa59e3a5..f8436e1c0b1 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.8.nix @@ -613,6 +613,7 @@ self: super: { "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"; @@ -3007,6 +3008,7 @@ self: super: { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "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"; @@ -7586,6 +7588,7 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7982,6 +7985,7 @@ self: super: { "vector-space-points" = doDistribute super."vector-space-points_0_2_1"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.9.nix b/pkgs/development/haskell-modules/configuration-lts-1.9.nix index 2ec02ed4ac1..a9e76b26d8a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.9.nix @@ -613,6 +613,7 @@ self: super: { "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"; @@ -3007,6 +3008,7 @@ self: super: { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "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"; @@ -5369,6 +5371,7 @@ self: super: { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = dontDistribute super."monad-peel"; @@ -7582,6 +7585,7 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7978,6 +7982,7 @@ self: super: { "vector-space-points" = doDistribute super."vector-space-points_0_2_1"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.0.nix b/pkgs/development/haskell-modules/configuration-lts-2.0.nix index 1c70e065943..f029092a405 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.0.nix @@ -607,6 +607,7 @@ self: super: { "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"; @@ -2975,6 +2976,7 @@ self: super: { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "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"; @@ -5292,6 +5294,7 @@ self: super: { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = dontDistribute super."monad-peel"; @@ -7463,6 +7466,7 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7727,6 +7731,7 @@ self: super: { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; @@ -7855,6 +7860,7 @@ self: super: { "vector-space-points" = doDistribute super."vector-space-points_0_2_1"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.1.nix b/pkgs/development/haskell-modules/configuration-lts-2.1.nix index 32440077dd1..ec9899ec447 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.1.nix @@ -607,6 +607,7 @@ self: super: { "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"; @@ -2974,6 +2975,7 @@ self: super: { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "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"; @@ -5290,6 +5292,7 @@ self: super: { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = dontDistribute super."monad-peel"; @@ -7461,6 +7464,7 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7725,6 +7729,7 @@ self: super: { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; @@ -7852,6 +7857,7 @@ self: super: { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.10.nix b/pkgs/development/haskell-modules/configuration-lts-2.10.nix index d99b088b54d..fa6fe9727c1 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.10.nix @@ -347,6 +347,7 @@ self: super: { "GLHUI" = dontDistribute super."GLHUI"; "GLM" = dontDistribute super."GLM"; "GLMatrix" = dontDistribute super."GLMatrix"; + "GLURaw" = doDistribute super."GLURaw_1_5_0_1"; "GLUT" = doDistribute super."GLUT_2_7_0_1"; "GLUtil" = dontDistribute super."GLUtil"; "GPX" = dontDistribute super."GPX"; @@ -605,6 +606,7 @@ self: super: { "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"; @@ -2953,6 +2955,7 @@ self: super: { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "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"; @@ -5246,6 +5249,7 @@ self: super: { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = dontDistribute super."monad-peel"; @@ -7394,6 +7398,7 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7656,6 +7661,7 @@ self: super: { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; @@ -7783,6 +7789,7 @@ self: super: { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.11.nix b/pkgs/development/haskell-modules/configuration-lts-2.11.nix index 8b648dfe214..9aa629669e0 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.11.nix @@ -347,6 +347,7 @@ self: super: { "GLHUI" = dontDistribute super."GLHUI"; "GLM" = dontDistribute super."GLM"; "GLMatrix" = dontDistribute super."GLMatrix"; + "GLURaw" = doDistribute super."GLURaw_1_5_0_1"; "GLUT" = doDistribute super."GLUT_2_7_0_1"; "GLUtil" = dontDistribute super."GLUtil"; "GPX" = dontDistribute super."GPX"; @@ -605,6 +606,7 @@ self: super: { "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"; @@ -2952,6 +2954,7 @@ self: super: { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "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"; @@ -5238,6 +5241,7 @@ self: super: { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = dontDistribute super."monad-peel"; @@ -7381,6 +7385,7 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7643,6 +7648,7 @@ self: super: { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; @@ -7770,6 +7776,7 @@ self: super: { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.12.nix b/pkgs/development/haskell-modules/configuration-lts-2.12.nix index f9c78759faa..5c43ee1b2de 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.12.nix @@ -347,6 +347,7 @@ self: super: { "GLHUI" = dontDistribute super."GLHUI"; "GLM" = dontDistribute super."GLM"; "GLMatrix" = dontDistribute super."GLMatrix"; + "GLURaw" = doDistribute super."GLURaw_1_5_0_1"; "GLUT" = doDistribute super."GLUT_2_7_0_1"; "GLUtil" = dontDistribute super."GLUtil"; "GPX" = dontDistribute super."GPX"; @@ -605,6 +606,7 @@ self: super: { "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"; @@ -2952,6 +2954,7 @@ self: super: { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "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"; @@ -5238,6 +5241,7 @@ self: super: { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = dontDistribute super."monad-peel"; @@ -7380,6 +7384,7 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7642,6 +7647,7 @@ self: super: { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; @@ -7769,6 +7775,7 @@ self: super: { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.13.nix b/pkgs/development/haskell-modules/configuration-lts-2.13.nix index 1a53bf0b520..11fda4472e3 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.13.nix @@ -347,6 +347,7 @@ self: super: { "GLHUI" = dontDistribute super."GLHUI"; "GLM" = dontDistribute super."GLM"; "GLMatrix" = dontDistribute super."GLMatrix"; + "GLURaw" = doDistribute super."GLURaw_1_5_0_1"; "GLUT" = doDistribute super."GLUT_2_7_0_1"; "GLUtil" = dontDistribute super."GLUtil"; "GPX" = dontDistribute super."GPX"; @@ -605,6 +606,7 @@ self: super: { "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"; @@ -2952,6 +2954,7 @@ self: super: { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "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"; @@ -5236,6 +5239,7 @@ self: super: { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = dontDistribute super."monad-peel"; @@ -7376,6 +7380,7 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7638,6 +7643,7 @@ self: super: { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; @@ -7765,6 +7771,7 @@ self: super: { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.14.nix b/pkgs/development/haskell-modules/configuration-lts-2.14.nix index 9941d2e320b..289ca8719fe 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.14.nix @@ -347,6 +347,7 @@ self: super: { "GLHUI" = dontDistribute super."GLHUI"; "GLM" = dontDistribute super."GLM"; "GLMatrix" = dontDistribute super."GLMatrix"; + "GLURaw" = doDistribute super."GLURaw_1_5_0_1"; "GLUT" = doDistribute super."GLUT_2_7_0_1"; "GLUtil" = dontDistribute super."GLUtil"; "GPX" = dontDistribute super."GPX"; @@ -605,6 +606,7 @@ self: super: { "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"; @@ -2950,6 +2952,7 @@ self: super: { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "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"; @@ -5233,6 +5236,7 @@ self: super: { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = dontDistribute super."monad-peel"; @@ -7371,6 +7375,7 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7633,6 +7638,7 @@ self: super: { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; @@ -7760,6 +7766,7 @@ self: super: { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.15.nix b/pkgs/development/haskell-modules/configuration-lts-2.15.nix index 4d93d9d4c55..9d1bf3da059 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.15.nix @@ -347,6 +347,7 @@ self: super: { "GLHUI" = dontDistribute super."GLHUI"; "GLM" = dontDistribute super."GLM"; "GLMatrix" = dontDistribute super."GLMatrix"; + "GLURaw" = doDistribute super."GLURaw_1_5_0_1"; "GLUT" = doDistribute super."GLUT_2_7_0_1"; "GLUtil" = dontDistribute super."GLUtil"; "GPX" = dontDistribute super."GPX"; @@ -605,6 +606,7 @@ self: super: { "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"; @@ -2948,6 +2950,7 @@ self: super: { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "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"; @@ -5230,6 +5233,7 @@ self: super: { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = dontDistribute super."monad-peel"; @@ -7365,6 +7369,7 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7627,6 +7632,7 @@ self: super: { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; @@ -7754,6 +7760,7 @@ self: super: { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.16.nix b/pkgs/development/haskell-modules/configuration-lts-2.16.nix index 849b4eb458f..9d052f9785f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.16.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.16.nix @@ -346,6 +346,7 @@ self: super: { "GLHUI" = dontDistribute super."GLHUI"; "GLM" = dontDistribute super."GLM"; "GLMatrix" = dontDistribute super."GLMatrix"; + "GLURaw" = doDistribute super."GLURaw_1_5_0_1"; "GLUT" = doDistribute super."GLUT_2_7_0_1"; "GLUtil" = dontDistribute super."GLUtil"; "GPX" = dontDistribute super."GPX"; @@ -603,6 +604,7 @@ self: super: { "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"; @@ -2941,6 +2943,7 @@ self: super: { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "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"; @@ -5220,6 +5223,7 @@ self: super: { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = dontDistribute super."monad-peel"; @@ -7353,6 +7357,7 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7615,6 +7620,7 @@ self: super: { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; @@ -7742,6 +7748,7 @@ self: super: { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.17.nix b/pkgs/development/haskell-modules/configuration-lts-2.17.nix index fb1eee12fe1..b0675f292f8 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.17.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.17.nix @@ -346,6 +346,7 @@ self: super: { "GLHUI" = dontDistribute super."GLHUI"; "GLM" = dontDistribute super."GLM"; "GLMatrix" = dontDistribute super."GLMatrix"; + "GLURaw" = doDistribute super."GLURaw_1_5_0_1"; "GLUT" = doDistribute super."GLUT_2_7_0_1"; "GLUtil" = dontDistribute super."GLUtil"; "GPX" = dontDistribute super."GPX"; @@ -603,6 +604,7 @@ self: super: { "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"; @@ -2936,6 +2938,7 @@ self: super: { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "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"; @@ -5212,6 +5215,7 @@ self: super: { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = dontDistribute super."monad-peel"; @@ -7342,6 +7346,7 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7604,6 +7609,7 @@ self: super: { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; @@ -7731,6 +7737,7 @@ self: super: { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.18.nix b/pkgs/development/haskell-modules/configuration-lts-2.18.nix index df7ca966d33..f11cb01559d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.18.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.18.nix @@ -346,6 +346,7 @@ self: super: { "GLHUI" = dontDistribute super."GLHUI"; "GLM" = dontDistribute super."GLM"; "GLMatrix" = dontDistribute super."GLMatrix"; + "GLURaw" = doDistribute super."GLURaw_1_5_0_1"; "GLUT" = doDistribute super."GLUT_2_7_0_1"; "GLUtil" = dontDistribute super."GLUtil"; "GPX" = dontDistribute super."GPX"; @@ -602,6 +603,7 @@ self: super: { "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"; @@ -2930,6 +2932,7 @@ self: super: { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "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"; @@ -5204,6 +5207,7 @@ self: super: { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = dontDistribute super."monad-peel"; @@ -7331,6 +7335,7 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7593,6 +7598,7 @@ self: super: { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; @@ -7720,6 +7726,7 @@ self: super: { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.19.nix b/pkgs/development/haskell-modules/configuration-lts-2.19.nix index 31d20ccfb5f..c6858c8f66b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.19.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.19.nix @@ -346,6 +346,7 @@ self: super: { "GLHUI" = dontDistribute super."GLHUI"; "GLM" = dontDistribute super."GLM"; "GLMatrix" = dontDistribute super."GLMatrix"; + "GLURaw" = doDistribute super."GLURaw_1_5_0_1"; "GLUT" = doDistribute super."GLUT_2_7_0_1"; "GLUtil" = dontDistribute super."GLUtil"; "GPX" = dontDistribute super."GPX"; @@ -602,6 +603,7 @@ self: super: { "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"; @@ -2930,6 +2932,7 @@ self: super: { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "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"; @@ -5202,6 +5205,7 @@ self: super: { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = dontDistribute super."monad-peel"; @@ -7326,6 +7330,7 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7588,6 +7593,7 @@ self: super: { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; @@ -7715,6 +7721,7 @@ self: super: { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.2.nix b/pkgs/development/haskell-modules/configuration-lts-2.2.nix index 9dca0321278..eb52972daf7 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.2.nix @@ -607,6 +607,7 @@ self: super: { "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"; @@ -2971,6 +2972,7 @@ self: super: { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "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"; @@ -5286,6 +5288,7 @@ self: super: { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = dontDistribute super."monad-peel"; @@ -7456,6 +7459,7 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7720,6 +7724,7 @@ self: super: { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; @@ -7847,6 +7852,7 @@ self: super: { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.20.nix b/pkgs/development/haskell-modules/configuration-lts-2.20.nix index 451743606d5..a645487603d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.20.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.20.nix @@ -346,6 +346,7 @@ self: super: { "GLHUI" = dontDistribute super."GLHUI"; "GLM" = dontDistribute super."GLM"; "GLMatrix" = dontDistribute super."GLMatrix"; + "GLURaw" = doDistribute super."GLURaw_1_5_0_1"; "GLUT" = doDistribute super."GLUT_2_7_0_1"; "GLUtil" = dontDistribute super."GLUtil"; "GPX" = dontDistribute super."GPX"; @@ -602,6 +603,7 @@ self: super: { "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"; @@ -2926,6 +2928,7 @@ self: super: { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "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"; @@ -5197,6 +5200,7 @@ self: super: { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = dontDistribute super."monad-peel"; @@ -7319,6 +7323,7 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7581,6 +7586,7 @@ self: super: { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; @@ -7708,6 +7714,7 @@ self: super: { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.21.nix b/pkgs/development/haskell-modules/configuration-lts-2.21.nix index 7ed6f83c98b..fa1cd007556 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.21.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.21.nix @@ -346,6 +346,7 @@ self: super: { "GLHUI" = dontDistribute super."GLHUI"; "GLM" = dontDistribute super."GLM"; "GLMatrix" = dontDistribute super."GLMatrix"; + "GLURaw" = doDistribute super."GLURaw_1_5_0_1"; "GLUT" = doDistribute super."GLUT_2_7_0_1"; "GLUtil" = dontDistribute super."GLUtil"; "GPX" = dontDistribute super."GPX"; @@ -602,6 +603,7 @@ self: super: { "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"; @@ -2926,6 +2928,7 @@ self: super: { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "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"; @@ -5195,6 +5198,7 @@ self: super: { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = dontDistribute super."monad-peel"; @@ -7313,6 +7317,7 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7575,6 +7580,7 @@ self: super: { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; @@ -7700,6 +7706,7 @@ self: super: { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.22.nix b/pkgs/development/haskell-modules/configuration-lts-2.22.nix index 0dc04ffbbb2..13f101981d4 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.22.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.22.nix @@ -346,6 +346,7 @@ self: super: { "GLHUI" = dontDistribute super."GLHUI"; "GLM" = dontDistribute super."GLM"; "GLMatrix" = dontDistribute super."GLMatrix"; + "GLURaw" = doDistribute super."GLURaw_1_5_0_1"; "GLUT" = doDistribute super."GLUT_2_7_0_1"; "GLUtil" = dontDistribute super."GLUtil"; "GPX" = dontDistribute super."GPX"; @@ -602,6 +603,7 @@ self: super: { "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"; @@ -2925,6 +2927,7 @@ self: super: { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "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"; @@ -5191,6 +5194,7 @@ self: super: { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = dontDistribute super."monad-peel"; @@ -7309,6 +7313,7 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7571,6 +7576,7 @@ self: super: { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; @@ -7696,6 +7702,7 @@ self: super: { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.3.nix b/pkgs/development/haskell-modules/configuration-lts-2.3.nix index baaae9b69df..efc5e18e7f8 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.3.nix @@ -607,6 +607,7 @@ self: super: { "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"; @@ -2970,6 +2971,7 @@ self: super: { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "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"; @@ -5284,6 +5286,7 @@ self: super: { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = dontDistribute super."monad-peel"; @@ -7453,6 +7456,7 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7717,6 +7721,7 @@ self: super: { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; @@ -7844,6 +7849,7 @@ self: super: { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.4.nix b/pkgs/development/haskell-modules/configuration-lts-2.4.nix index c6635aec357..e385c5e8041 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.4.nix @@ -607,6 +607,7 @@ self: super: { "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"; @@ -2969,6 +2970,7 @@ self: super: { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "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"; @@ -5282,6 +5284,7 @@ self: super: { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = dontDistribute super."monad-peel"; @@ -7447,6 +7450,7 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7711,6 +7715,7 @@ self: super: { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; @@ -7838,6 +7843,7 @@ self: super: { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.5.nix b/pkgs/development/haskell-modules/configuration-lts-2.5.nix index e27d01b2d33..4d8785f64de 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.5.nix @@ -607,6 +607,7 @@ self: super: { "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"; @@ -2967,6 +2968,7 @@ self: super: { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "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"; @@ -5279,6 +5281,7 @@ self: super: { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = dontDistribute super."monad-peel"; @@ -7443,6 +7446,7 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7707,6 +7711,7 @@ self: super: { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; @@ -7834,6 +7839,7 @@ self: super: { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.6.nix b/pkgs/development/haskell-modules/configuration-lts-2.6.nix index d63eb109d2c..a508c266754 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.6.nix @@ -607,6 +607,7 @@ self: super: { "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"; @@ -2963,6 +2964,7 @@ self: super: { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "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"; @@ -5273,6 +5275,7 @@ self: super: { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = dontDistribute super."monad-peel"; @@ -7436,6 +7439,7 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7698,6 +7702,7 @@ self: super: { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; @@ -7825,6 +7830,7 @@ self: super: { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.7.nix b/pkgs/development/haskell-modules/configuration-lts-2.7.nix index c5f96fdf36e..6e9e7ff7f10 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.7.nix @@ -347,6 +347,7 @@ self: super: { "GLHUI" = dontDistribute super."GLHUI"; "GLM" = dontDistribute super."GLM"; "GLMatrix" = dontDistribute super."GLMatrix"; + "GLURaw" = doDistribute super."GLURaw_1_5_0_1"; "GLUT" = doDistribute super."GLUT_2_7_0_1"; "GLUtil" = dontDistribute super."GLUtil"; "GPX" = dontDistribute super."GPX"; @@ -605,6 +606,7 @@ self: super: { "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"; @@ -2961,6 +2963,7 @@ self: super: { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "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"; @@ -5271,6 +5274,7 @@ self: super: { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = dontDistribute super."monad-peel"; @@ -7434,6 +7438,7 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7696,6 +7701,7 @@ self: super: { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; @@ -7823,6 +7829,7 @@ self: super: { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.8.nix b/pkgs/development/haskell-modules/configuration-lts-2.8.nix index b4c261140f7..e9b2c5052dc 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.8.nix @@ -347,6 +347,7 @@ self: super: { "GLHUI" = dontDistribute super."GLHUI"; "GLM" = dontDistribute super."GLM"; "GLMatrix" = dontDistribute super."GLMatrix"; + "GLURaw" = doDistribute super."GLURaw_1_5_0_1"; "GLUT" = doDistribute super."GLUT_2_7_0_1"; "GLUtil" = dontDistribute super."GLUtil"; "GPX" = dontDistribute super."GPX"; @@ -605,6 +606,7 @@ self: super: { "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"; @@ -2960,6 +2962,7 @@ self: super: { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "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"; @@ -5267,6 +5270,7 @@ self: super: { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = dontDistribute super."monad-peel"; @@ -7426,6 +7430,7 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7688,6 +7693,7 @@ self: super: { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; @@ -7815,6 +7821,7 @@ self: super: { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.9.nix b/pkgs/development/haskell-modules/configuration-lts-2.9.nix index 42212b80ba6..3ad75c3f98e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.9.nix @@ -347,6 +347,7 @@ self: super: { "GLHUI" = dontDistribute super."GLHUI"; "GLM" = dontDistribute super."GLM"; "GLMatrix" = dontDistribute super."GLMatrix"; + "GLURaw" = doDistribute super."GLURaw_1_5_0_1"; "GLUT" = doDistribute super."GLUT_2_7_0_1"; "GLUtil" = dontDistribute super."GLUtil"; "GPX" = dontDistribute super."GPX"; @@ -605,6 +606,7 @@ self: super: { "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"; @@ -2955,6 +2957,7 @@ self: super: { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "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"; @@ -5257,6 +5260,7 @@ self: super: { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = dontDistribute super."monad-peel"; @@ -7409,6 +7413,7 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7671,6 +7676,7 @@ self: super: { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; @@ -7798,6 +7804,7 @@ self: super: { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.0.nix b/pkgs/development/haskell-modules/configuration-lts-3.0.nix index d19b6d3b367..09a04be9184 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.0.nix @@ -587,6 +587,7 @@ self: super: { "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"; @@ -2455,6 +2456,7 @@ self: super: { "djinn" = dontDistribute super."djinn"; "djinn-th" = dontDistribute super."djinn-th"; "dlist" = doDistribute super."dlist_0_7_1_1"; + "dns" = doDistribute super."dns_2_0_0"; "dnscache" = dontDistribute super."dnscache"; "dnsrbl" = dontDistribute super."dnsrbl"; "dnssd" = dontDistribute super."dnssd"; @@ -2810,6 +2812,7 @@ self: super: { "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"; @@ -3399,6 +3402,7 @@ self: super: { "happstack-lite" = dontDistribute super."happstack-lite"; "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; "happstack-plugins" = dontDistribute super."happstack-plugins"; + "happstack-server" = doDistribute super."happstack-server_7_4_4"; "happstack-server-tls" = dontDistribute super."happstack-server-tls"; "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; "happstack-state" = dontDistribute super."happstack-state"; @@ -4975,6 +4979,7 @@ self: super: { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-ran" = dontDistribute super."monad-ran"; @@ -7009,6 +7014,7 @@ self: super: { "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"; @@ -7169,6 +7175,7 @@ self: super: { "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"; @@ -7261,6 +7268,7 @@ self: super: { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; @@ -7375,6 +7383,7 @@ self: super: { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.1.nix b/pkgs/development/haskell-modules/configuration-lts-3.1.nix index 3af3b09834e..50d34a82985 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.1.nix @@ -587,6 +587,7 @@ self: super: { "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"; @@ -2452,6 +2453,7 @@ self: super: { "djinn" = dontDistribute super."djinn"; "djinn-th" = dontDistribute super."djinn-th"; "dlist" = doDistribute super."dlist_0_7_1_1"; + "dns" = doDistribute super."dns_2_0_0"; "dnscache" = dontDistribute super."dnscache"; "dnsrbl" = dontDistribute super."dnsrbl"; "dnssd" = dontDistribute super."dnssd"; @@ -2804,6 +2806,7 @@ self: super: { "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"; @@ -3393,6 +3396,7 @@ self: super: { "happstack-lite" = dontDistribute super."happstack-lite"; "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; "happstack-plugins" = dontDistribute super."happstack-plugins"; + "happstack-server" = doDistribute super."happstack-server_7_4_4"; "happstack-server-tls" = dontDistribute super."happstack-server-tls"; "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; "happstack-state" = dontDistribute super."happstack-state"; @@ -4967,6 +4971,7 @@ self: super: { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-ran" = dontDistribute super."monad-ran"; @@ -6998,6 +7003,7 @@ self: super: { "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"; @@ -7158,6 +7164,7 @@ self: super: { "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"; @@ -7250,6 +7257,7 @@ self: super: { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; @@ -7363,6 +7371,7 @@ self: super: { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.2.nix b/pkgs/development/haskell-modules/configuration-lts-3.2.nix index d84e7e046be..baec2a6a87e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.2.nix @@ -584,6 +584,7 @@ self: super: { "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"; @@ -2447,6 +2448,7 @@ self: super: { "dixi" = dontDistribute super."dixi"; "djinn" = dontDistribute super."djinn"; "djinn-th" = dontDistribute super."djinn-th"; + "dns" = doDistribute super."dns_2_0_0"; "dnscache" = dontDistribute super."dnscache"; "dnsrbl" = dontDistribute super."dnsrbl"; "dnssd" = dontDistribute super."dnssd"; @@ -2799,6 +2801,7 @@ self: super: { "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"; @@ -3386,6 +3389,7 @@ self: super: { "happstack-lite" = dontDistribute super."happstack-lite"; "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; "happstack-plugins" = dontDistribute super."happstack-plugins"; + "happstack-server" = doDistribute super."happstack-server_7_4_4"; "happstack-server-tls" = dontDistribute super."happstack-server-tls"; "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; "happstack-state" = dontDistribute super."happstack-state"; @@ -4957,6 +4961,7 @@ self: super: { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-ran" = dontDistribute super."monad-ran"; @@ -6980,6 +6985,7 @@ self: super: { "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"; @@ -7140,6 +7146,7 @@ self: super: { "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"; @@ -7232,6 +7239,7 @@ self: super: { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; @@ -7345,6 +7353,7 @@ self: super: { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.3.nix b/pkgs/development/haskell-modules/configuration-lts-3.3.nix index a38627e75f1..c83d3237350 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.3.nix @@ -583,6 +583,7 @@ self: super: { "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"; @@ -2442,6 +2443,7 @@ self: super: { "dixi" = dontDistribute super."dixi"; "djinn" = dontDistribute super."djinn"; "djinn-th" = dontDistribute super."djinn-th"; + "dns" = doDistribute super."dns_2_0_0"; "dnscache" = dontDistribute super."dnscache"; "dnsrbl" = dontDistribute super."dnsrbl"; "dnssd" = dontDistribute super."dnssd"; @@ -2794,6 +2796,7 @@ self: super: { "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"; @@ -3380,6 +3383,7 @@ self: super: { "happstack-lite" = dontDistribute super."happstack-lite"; "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; "happstack-plugins" = dontDistribute super."happstack-plugins"; + "happstack-server" = doDistribute super."happstack-server_7_4_4"; "happstack-server-tls" = dontDistribute super."happstack-server-tls"; "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; "happstack-state" = dontDistribute super."happstack-state"; @@ -4949,6 +4953,7 @@ self: super: { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-ran" = dontDistribute super."monad-ran"; @@ -4983,6 +4988,7 @@ self: super: { "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-extras" = doDistribute super."monoid-extras_0_4_0_1"; "monoid-owns" = dontDistribute super."monoid-owns"; "monoid-record" = dontDistribute super."monoid-record"; @@ -6966,6 +6972,7 @@ self: super: { "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"; @@ -7126,6 +7133,7 @@ self: super: { "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"; @@ -7218,6 +7226,7 @@ self: super: { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; @@ -7330,6 +7339,7 @@ self: super: { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.4.nix b/pkgs/development/haskell-modules/configuration-lts-3.4.nix index 43a9b7dc884..74cf66b00f3 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.4.nix @@ -583,6 +583,7 @@ self: super: { "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"; @@ -2441,6 +2442,7 @@ self: super: { "dixi" = dontDistribute super."dixi"; "djinn" = dontDistribute super."djinn"; "djinn-th" = dontDistribute super."djinn-th"; + "dns" = doDistribute super."dns_2_0_0"; "dnscache" = dontDistribute super."dnscache"; "dnsrbl" = dontDistribute super."dnsrbl"; "dnssd" = dontDistribute super."dnssd"; @@ -2793,6 +2795,7 @@ self: super: { "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"; @@ -3379,6 +3382,7 @@ self: super: { "happstack-lite" = dontDistribute super."happstack-lite"; "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; "happstack-plugins" = dontDistribute super."happstack-plugins"; + "happstack-server" = doDistribute super."happstack-server_7_4_4"; "happstack-server-tls" = dontDistribute super."happstack-server-tls"; "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; "happstack-state" = dontDistribute super."happstack-state"; @@ -4948,6 +4952,7 @@ self: super: { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-ran" = dontDistribute super."monad-ran"; @@ -4982,6 +4987,7 @@ self: super: { "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-extras" = doDistribute super."monoid-extras_0_4_0_1"; "monoid-owns" = dontDistribute super."monoid-owns"; "monoid-record" = dontDistribute super."monoid-record"; @@ -6963,6 +6969,7 @@ self: super: { "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"; @@ -7123,6 +7130,7 @@ self: super: { "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"; @@ -7215,6 +7223,7 @@ self: super: { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; @@ -7327,6 +7336,7 @@ self: super: { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.5.nix b/pkgs/development/haskell-modules/configuration-lts-3.5.nix index 44e33ca667b..a238a1165eb 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.5.nix @@ -583,6 +583,7 @@ self: super: { "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"; @@ -772,6 +773,7 @@ self: super: { "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"; @@ -2437,6 +2439,7 @@ self: super: { "dixi" = dontDistribute super."dixi"; "djinn" = dontDistribute super."djinn"; "djinn-th" = dontDistribute super."djinn-th"; + "dns" = doDistribute super."dns_2_0_0"; "dnscache" = dontDistribute super."dnscache"; "dnsrbl" = dontDistribute super."dnsrbl"; "dnssd" = dontDistribute super."dnssd"; @@ -2787,6 +2790,7 @@ self: super: { "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"; @@ -3373,6 +3377,7 @@ self: super: { "happstack-lite" = dontDistribute super."happstack-lite"; "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; "happstack-plugins" = dontDistribute super."happstack-plugins"; + "happstack-server" = doDistribute super."happstack-server_7_4_4"; "happstack-server-tls" = dontDistribute super."happstack-server-tls"; "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; "happstack-state" = dontDistribute super."happstack-state"; @@ -4935,6 +4940,7 @@ self: super: { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-ran" = dontDistribute super."monad-ran"; @@ -4969,6 +4975,7 @@ self: super: { "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-extras" = doDistribute super."monoid-extras_0_4_0_1"; "monoid-owns" = dontDistribute super."monoid-owns"; "monoid-record" = dontDistribute super."monoid-record"; @@ -6940,6 +6947,7 @@ self: super: { "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"; @@ -7100,6 +7108,7 @@ self: super: { "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"; @@ -7192,6 +7201,7 @@ self: super: { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; @@ -7304,6 +7314,7 @@ self: super: { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.6.nix b/pkgs/development/haskell-modules/configuration-lts-3.6.nix index 1fc5b2ba285..28533c82c11 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.6.nix @@ -583,6 +583,7 @@ self: super: { "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"; @@ -772,6 +773,7 @@ self: super: { "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"; @@ -2432,6 +2434,7 @@ self: super: { "dixi" = dontDistribute super."dixi"; "djinn" = dontDistribute super."djinn"; "djinn-th" = dontDistribute super."djinn-th"; + "dns" = doDistribute super."dns_2_0_0"; "dnscache" = dontDistribute super."dnscache"; "dnsrbl" = dontDistribute super."dnsrbl"; "dnssd" = dontDistribute super."dnssd"; @@ -2778,6 +2781,7 @@ self: super: { "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"; @@ -3360,6 +3364,7 @@ self: super: { "happstack-lite" = dontDistribute super."happstack-lite"; "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; "happstack-plugins" = dontDistribute super."happstack-plugins"; + "happstack-server" = doDistribute super."happstack-server_7_4_4"; "happstack-server-tls" = dontDistribute super."happstack-server-tls"; "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; "happstack-state" = dontDistribute super."happstack-state"; @@ -4915,6 +4920,7 @@ self: super: { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-ran" = dontDistribute super."monad-ran"; @@ -4949,6 +4955,7 @@ self: super: { "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-owns" = dontDistribute super."monoid-owns"; "monoid-record" = dontDistribute super."monoid-record"; "monoid-statistics" = dontDistribute super."monoid-statistics"; @@ -6913,6 +6920,7 @@ self: super: { "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"; @@ -7072,6 +7080,7 @@ self: super: { "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"; @@ -7164,6 +7173,7 @@ self: super: { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; @@ -7275,6 +7285,7 @@ self: super: { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.7.nix b/pkgs/development/haskell-modules/configuration-lts-3.7.nix index cbdc1bc7eb1..440d6163086 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.7.nix @@ -581,6 +581,7 @@ self: super: { "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"; @@ -770,6 +771,7 @@ self: super: { "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"; @@ -2418,6 +2420,7 @@ self: super: { "dixi" = dontDistribute super."dixi"; "djinn" = dontDistribute super."djinn"; "djinn-th" = dontDistribute super."djinn-th"; + "dns" = doDistribute super."dns_2_0_0"; "dnscache" = dontDistribute super."dnscache"; "dnsrbl" = dontDistribute super."dnsrbl"; "dnssd" = dontDistribute super."dnssd"; @@ -2763,6 +2766,7 @@ self: super: { "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"; @@ -3344,6 +3348,7 @@ self: super: { "happstack-lite" = dontDistribute super."happstack-lite"; "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; "happstack-plugins" = dontDistribute super."happstack-plugins"; + "happstack-server" = doDistribute super."happstack-server_7_4_4"; "happstack-server-tls" = dontDistribute super."happstack-server-tls"; "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; "happstack-state" = dontDistribute super."happstack-state"; @@ -4893,6 +4898,7 @@ self: super: { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-ran" = dontDistribute super."monad-ran"; @@ -4927,6 +4933,7 @@ self: super: { "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-owns" = dontDistribute super."monoid-owns"; "monoid-record" = dontDistribute super."monoid-record"; "monoid-statistics" = dontDistribute super."monoid-statistics"; @@ -6176,16 +6183,21 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "servant" = doDistribute super."servant_0_4_4_4"; "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0"; "servant-blaze" = dontDistribute super."servant-blaze"; + "servant-client" = doDistribute super."servant-client_0_4_4_4"; + "servant-docs" = doDistribute super."servant-docs_0_4_4_4"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-jquery" = doDistribute super."servant-jquery_0_4_4_4"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; + "servant-server" = doDistribute super."servant-server_0_4_4_4"; "servius" = dontDistribute super."servius"; "ses-html" = dontDistribute super."ses-html"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; @@ -6876,6 +6888,7 @@ self: super: { "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"; @@ -7033,6 +7046,7 @@ self: super: { "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"; @@ -7125,6 +7139,7 @@ self: super: { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; @@ -7236,6 +7251,7 @@ self: super: { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.8.nix b/pkgs/development/haskell-modules/configuration-lts-3.8.nix index 337cc99d73e..c2b6eabf5f0 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.8.nix @@ -581,6 +581,7 @@ self: super: { "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"; @@ -770,6 +771,7 @@ self: super: { "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"; @@ -2404,6 +2406,7 @@ self: super: { "dixi" = dontDistribute super."dixi"; "djinn" = dontDistribute super."djinn"; "djinn-th" = dontDistribute super."djinn-th"; + "dns" = doDistribute super."dns_2_0_0"; "dnscache" = dontDistribute super."dnscache"; "dnsrbl" = dontDistribute super."dnsrbl"; "dnssd" = dontDistribute super."dnssd"; @@ -2748,6 +2751,7 @@ self: super: { "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"; @@ -3328,6 +3332,7 @@ self: super: { "happstack-lite" = dontDistribute super."happstack-lite"; "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; "happstack-plugins" = dontDistribute super."happstack-plugins"; + "happstack-server" = doDistribute super."happstack-server_7_4_4"; "happstack-server-tls" = dontDistribute super."happstack-server-tls"; "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; "happstack-state" = dontDistribute super."happstack-state"; @@ -4873,6 +4878,7 @@ self: super: { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-ran" = dontDistribute super."monad-ran"; @@ -4907,6 +4913,7 @@ self: super: { "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-owns" = dontDistribute super."monoid-owns"; "monoid-record" = dontDistribute super."monoid-record"; "monoid-statistics" = dontDistribute super."monoid-statistics"; @@ -6152,16 +6159,21 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "servant" = doDistribute super."servant_0_4_4_4"; "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0"; "servant-blaze" = dontDistribute super."servant-blaze"; + "servant-client" = doDistribute super."servant-client_0_4_4_4"; + "servant-docs" = doDistribute super."servant-docs_0_4_4_4"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-jquery" = doDistribute super."servant-jquery_0_4_4_4"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; + "servant-server" = doDistribute super."servant-server_0_4_4_4"; "servius" = dontDistribute super."servius"; "ses-html" = dontDistribute super."ses-html"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; @@ -6848,6 +6860,7 @@ self: super: { "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"; @@ -7004,6 +7017,7 @@ self: super: { "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"; @@ -7096,6 +7110,7 @@ self: super: { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; @@ -7207,6 +7222,7 @@ self: super: { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; @@ -7327,6 +7343,7 @@ self: super: { "webrtc-vad" = dontDistribute super."webrtc-vad"; "webserver" = dontDistribute super."webserver"; "websnap" = dontDistribute super."websnap"; + "websockets" = doDistribute super."websockets_0_9_6_0"; "websockets-snap" = dontDistribute super."websockets-snap"; "webwire" = dontDistribute super."webwire"; "wedding-announcement" = dontDistribute super."wedding-announcement"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.9.nix b/pkgs/development/haskell-modules/configuration-lts-3.9.nix index cfa9c491280..ea7dd04fa31 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.9.nix @@ -580,6 +580,7 @@ self: super: { "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"; @@ -768,6 +769,7 @@ self: super: { "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"; @@ -2397,6 +2399,7 @@ self: super: { "dixi" = dontDistribute super."dixi"; "djinn" = dontDistribute super."djinn"; "djinn-th" = dontDistribute super."djinn-th"; + "dns" = doDistribute super."dns_2_0_0"; "dnscache" = dontDistribute super."dnscache"; "dnsrbl" = dontDistribute super."dnsrbl"; "dnssd" = dontDistribute super."dnssd"; @@ -2739,6 +2742,7 @@ self: super: { "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"; @@ -3318,6 +3322,7 @@ self: super: { "happstack-lite" = dontDistribute super."happstack-lite"; "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; "happstack-plugins" = dontDistribute super."happstack-plugins"; + "happstack-server" = doDistribute super."happstack-server_7_4_4"; "happstack-server-tls" = dontDistribute super."happstack-server-tls"; "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; "happstack-state" = dontDistribute super."happstack-state"; @@ -4861,6 +4866,7 @@ self: super: { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-ran" = dontDistribute super."monad-ran"; @@ -4894,6 +4900,7 @@ self: super: { "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-owns" = dontDistribute super."monoid-owns"; "monoid-record" = dontDistribute super."monoid-record"; "monoid-statistics" = dontDistribute super."monoid-statistics"; @@ -6136,16 +6143,21 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "servant" = doDistribute super."servant_0_4_4_4"; "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0"; "servant-blaze" = dontDistribute super."servant-blaze"; + "servant-client" = doDistribute super."servant-client_0_4_4_4"; + "servant-docs" = doDistribute super."servant-docs_0_4_4_4"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-jquery" = doDistribute super."servant-jquery_0_4_4_4"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; + "servant-server" = doDistribute super."servant-server_0_4_4_4"; "servius" = dontDistribute super."servius"; "ses-html" = dontDistribute super."ses-html"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; @@ -6831,6 +6843,7 @@ self: super: { "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"; @@ -6987,6 +7000,7 @@ self: super: { "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"; @@ -7079,6 +7093,7 @@ self: super: { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; @@ -7190,6 +7205,7 @@ self: super: { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; @@ -7309,6 +7325,7 @@ self: super: { "webrtc-vad" = dontDistribute super."webrtc-vad"; "webserver" = dontDistribute super."webserver"; "websnap" = dontDistribute super."websnap"; + "websockets" = doDistribute super."websockets_0_9_6_0"; "websockets-snap" = dontDistribute super."websockets-snap"; "webwire" = dontDistribute super."webwire"; "wedding-announcement" = dontDistribute super."wedding-announcement"; @@ -7485,6 +7502,7 @@ self: super: { "yes-precure5-command" = dontDistribute super."yes-precure5-command"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; + "yesod-auth" = doDistribute super."yesod-auth_1_4_7"; "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos"; diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix index d13b8d5ba5c..c9c4b5b2575 100644 --- a/pkgs/development/haskell-modules/hackage-packages.nix +++ b/pkgs/development/haskell-modules/hackage-packages.nix @@ -6065,7 +6065,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) freeglut; inherit (pkgs) mesa;}; - "GLURaw" = callPackage + "GLURaw_1_5_0_1" = callPackage ({ mkDerivation, base, freeglut, mesa, OpenGLRaw, transformers }: mkDerivation { pname = "GLURaw"; @@ -6076,6 +6076,20 @@ 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) freeglut; inherit (pkgs) mesa;}; + + "GLURaw" = callPackage + ({ mkDerivation, base, freeglut, mesa, OpenGLRaw, transformers }: + mkDerivation { + pname = "GLURaw"; + version = "1.5.0.2"; + sha256 = "dd24af039bef7f44dc580692b57a7a16a36a44b7261c8d3008aba60b696a4c3f"; + libraryHaskellDepends = [ base OpenGLRaw transformers ]; + librarySystemDepends = [ freeglut mesa ]; + homepage = "http://www.haskell.org/haskellwiki/Opengl"; + description = "A raw binding for the OpenGL graphics system"; + license = stdenv.lib.licenses.bsd3; }) {inherit (pkgs) freeglut; inherit (pkgs) mesa;}; "GLUT_2_5_1_1" = callPackage @@ -11343,6 +11357,17 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "Lambdaya" = callPackage + ({ mkDerivation, base, mtl, unix }: + mkDerivation { + pname = "Lambdaya"; + version = "0.1.0.0"; + sha256 = "99107e7588c63f173c085c6310ab122cee45ce55f16f6ded2eed7b279f0c7301"; + libraryHaskellDepends = [ base mtl unix ]; + description = "Library for RedPitaya"; + license = stdenv.lib.licenses.gpl3; + }) {}; + "LargeCardinalHierarchy" = callPackage ({ mkDerivation, base }: mkDerivation { @@ -12359,6 +12384,8 @@ self: { pname = "MonadRandom"; version = "0.3.0.1"; sha256 = "40e6a19cecf9c72a5281e813c982e037104c287eef3e4b49a03b4fdd6736722d"; + revision = "1"; + editedCabalFile = "aef6c8f98c9f4c1fc09753192ec83a6c259087dd098ca2e6cacd3219872f071c"; libraryHaskellDepends = [ base mtl random transformers ]; description = "Random-number generation monad"; license = "unknown"; @@ -12373,6 +12400,8 @@ self: { pname = "MonadRandom"; version = "0.3.0.2"; sha256 = "71afdea34f7836678d989cef3373f76a62cca5f47440aa0185c85fff5694eaa1"; + revision = "1"; + editedCabalFile = "1b96fa21489194e7d5634e42f1f4efef26c5e0f9c0cea47c0ea0ca86dc4fd2e6"; libraryHaskellDepends = [ base mtl random transformers transformers-compat ]; @@ -12389,6 +12418,8 @@ self: { pname = "MonadRandom"; version = "0.4"; sha256 = "d32f3f7a8390125f43a67b78741c6655452dfc4388009ab4ca5a265ab5b86f93"; + revision = "1"; + editedCabalFile = "d913e82863e6b10963cc9f48a74e70739336e17debbcccef66f7e5068cdf7f1d"; libraryHaskellDepends = [ base mtl random transformers transformers-compat ]; @@ -13684,6 +13715,24 @@ self: { license = stdenv.lib.licenses.bsd3; }) {inherit (pkgs) mesa;}; + "OpenGLRaw_2_6_0_0" = callPackage + ({ mkDerivation, base, bytestring, containers, half, mesa, text + , transformers + }: + mkDerivation { + pname = "OpenGLRaw"; + version = "2.6.0.0"; + sha256 = "e962c18eb40d6e1ef7c2c3a877b0be14c35dbf533612d33074d5011bd266cc0d"; + libraryHaskellDepends = [ + base bytestring containers half 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; + hydraPlatforms = stdenv.lib.platforms.none; + }) {inherit (pkgs) mesa;}; + "OpenGLRaw21" = callPackage ({ mkDerivation, OpenGLRaw }: mkDerivation { @@ -14999,7 +15048,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "RSA" = callPackage + "RSA_2_1_0_3" = callPackage ({ mkDerivation, base, binary, bytestring, crypto-api , crypto-pubkey-types, DRBG, pureMD5, QuickCheck, SHA, tagged , test-framework, test-framework-quickcheck2 @@ -15017,9 +15066,10 @@ self: { ]; description = "Implementation of RSA, using the padding schemes of PKCS#1 v2.1."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "RSA_2_2_0" = callPackage + "RSA" = callPackage ({ mkDerivation, base, binary, bytestring, crypto-api , crypto-pubkey-types, DRBG, pureMD5, QuickCheck, SHA, tagged , test-framework, test-framework-quickcheck2 @@ -15037,7 +15087,6 @@ self: { ]; description = "Implementation of RSA, using the padding schemes of PKCS#1 v2.1."; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Raincat" = callPackage @@ -19596,8 +19645,8 @@ self: { pname = "accelerate-cuda"; version = "0.15.0.0"; sha256 = "bec5de97e2a621d8eab3da2598143e34c4145fb10adad6d4164ed4ce237316fd"; - revision = "2"; - editedCabalFile = "5ed199c4c1d360ed3eaee24df7016462ed1fb1313ff47d6828be546eec8708fc"; + revision = "3"; + editedCabalFile = "14c5a52cc4989793c20d22d81dec4aa91e4c64be122fde0453b0bd6cd790af82"; libraryHaskellDepends = [ accelerate array base binary bytestring cryptohash cuda directory fclabels filepath hashable hashtables language-c-quote @@ -19737,14 +19786,11 @@ self: { }: mkDerivation { pname = "accelerate-io"; - version = "0.15.0.0"; - sha256 = "66a48e417e353f6daad24e7ca385370764d6a0a1979066c1e890fba77b95e802"; - revision = "1"; - editedCabalFile = "5c3f8f7ebc03117652646329743ea251d281f72d81454e55538c27e87e8c0ecc"; + version = "0.15.1.0"; + sha256 = "d531fc6c950a6fcf0bdd72c65438c27fbffe2f3043444128979490d53fc7677c"; libraryHaskellDepends = [ accelerate array base bmp bytestring repa vector ]; - jailbreak = true; homepage = "https://github.com/AccelerateHS/accelerate-io"; description = "Read and write Accelerate arrays in various formats"; license = stdenv.lib.licenses.bsd3; @@ -40302,8 +40348,8 @@ self: { }: mkDerivation { pname = "cef"; - version = "0.1.2"; - sha256 = "9191a449057e8889c3626f8e625b85a27af059cc43c74d6202dad30a7b91b838"; + version = "0.1.3"; + sha256 = "9918fb0b19e23aefe90ed914e30498011f1fa6ea0c8ffdc9e8f8a90337ac41d4"; libraryHaskellDepends = [ base bytestring text time ]; testHaskellDepends = [ base directory doctest filepath ]; homepage = "http://github.com/picussecurity/haskell-cef.git"; @@ -43206,8 +43252,8 @@ self: { }: mkDerivation { pname = "clckwrks"; - version = "0.23.10"; - sha256 = "7e85091501c7a91a51c17920b415e764f20b730f1bf59ad0e0cc5be9b777cbe7"; + version = "0.23.11"; + sha256 = "65868751cc51e409a000edc5fb26e25f3c151f8a792ca80006ae87813cc9ea6e"; libraryHaskellDepends = [ acid-state aeson aeson-qq attoparsec base blaze-html bytestring cereal containers directory filepath happstack-authenticate @@ -43231,14 +43277,13 @@ self: { }: mkDerivation { pname = "clckwrks-cli"; - version = "0.2.14"; - sha256 = "2336de23aed5c6cb2dafdafbd42581c43db3313835a91ad70a664a2d7ecf9bb7"; + version = "0.2.15"; + sha256 = "8a7fad8590c6c1297b7076a7e4cc03689f37cd9371171748f351967cbb91b7f2"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ acid-state base clckwrks haskeline mtl network parsec ]; - jailbreak = true; homepage = "http://www.clckwrks.com/"; description = "a command-line interface for adminstrating some aspects of clckwrks"; license = stdenv.lib.licenses.bsd3; @@ -43370,13 +43415,12 @@ self: { }: mkDerivation { pname = "clckwrks-theme-bootstrap"; - version = "0.4.0"; - sha256 = "9f4e43b58b2a8ec3d9a8d33663c3cad8121981e72d69cada7c76467b329d4d23"; + version = "0.4.1"; + sha256 = "59399a42c5d928e9aa332e0901d023e00f6add27c03b95cddf405e392885f852"; libraryHaskellDepends = [ base clckwrks happstack-authenticate hsp hsx-jmacro hsx2hs jmacro mtl text web-plugins ]; - jailbreak = true; homepage = "http://www.clckwrks.com/"; description = "simple bootstrap based template for clckwrks"; license = stdenv.lib.licenses.bsd3; @@ -43388,8 +43432,8 @@ self: { }: mkDerivation { pname = "clckwrks-theme-clckwrks"; - version = "0.5.1"; - sha256 = "93540dc0dafbf1e9bc6863c215391905201bc4653133fd01c0f0c6a9bacd6858"; + version = "0.5.2"; + sha256 = "53182128e49924132191d6d607e7088f92367a10ab31d38b5e4a1d8a2471ed1c"; libraryHaskellDepends = [ base clckwrks containers happstack-authenticate hsp hsx2hs mtl text web-plugins @@ -57751,6 +57795,7 @@ self: { QuickCheck rematch stm test-framework test-framework-hunit test-framework-quickcheck2 time transformers unordered-containers ]; + doCheck = false; homepage = "http://github.com/haskell-distributed/distributed-process-execution"; description = "Execution Framework for The Cloud Haskell Application Platform"; license = stdenv.lib.licenses.bsd3; @@ -58128,6 +58173,7 @@ self: { QuickCheck rematch stm test-framework test-framework-hunit test-framework-quickcheck2 time transformers unordered-containers ]; + doCheck = false; homepage = "http://github.com/haskell-distributed/distributed-process-task"; description = "Task Framework for The Cloud Haskell Application Platform"; license = stdenv.lib.licenses.bsd3; @@ -58448,7 +58494,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "dns" = callPackage + "dns_2_0_0" = callPackage ({ mkDerivation, attoparsec, base, binary, blaze-builder , bytestring, conduit, conduit-extra, containers, doctest, hspec , iproute, mtl, network, random, resourcet, word8 @@ -58470,6 +58516,31 @@ self: { testTarget = "spec"; description = "DNS library in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "dns" = callPackage + ({ mkDerivation, attoparsec, base, binary, blaze-builder + , bytestring, conduit, conduit-extra, containers, doctest, hspec + , iproute, mtl, network, random, resourcet, word8 + }: + mkDerivation { + pname = "dns"; + version = "2.0.1"; + sha256 = "3d11e14bbfd07b46bba9c676dd970731be190d6dc9c5e95089c4da60565e47d2"; + libraryHaskellDepends = [ + attoparsec base binary blaze-builder bytestring conduit + conduit-extra containers iproute mtl network random resourcet + ]; + testHaskellDepends = [ + attoparsec base binary blaze-builder bytestring conduit + conduit-extra containers doctest hspec iproute mtl network random + resourcet word8 + ]; + doCheck = false; + testTarget = "spec"; + description = "DNS library in Haskell"; + license = stdenv.lib.licenses.bsd3; }) {}; "dnscache" = callPackage @@ -67208,6 +67279,19 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "first-and-last" = callPackage + ({ mkDerivation, base, Cabal }: + mkDerivation { + pname = "first-and-last"; + version = "0.1.0.0"; + sha256 = "d3d54fb686d09717501eed65a1ae21fdd5434ad73f958ff57d7ae849b1519653"; + libraryHaskellDepends = [ base ]; + testHaskellDepends = [ base Cabal ]; + homepage = "https://github.com/markandrus/first-and-last"; + description = "First and Last generalized to return up to n values"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "first-class-patterns" = callPackage ({ mkDerivation, base, transformers }: mkDerivation { @@ -71939,8 +72023,8 @@ self: { }: mkDerivation { pname = "getopt-generics"; - version = "0.11.0.1"; - sha256 = "b3f49f80af9e7eba12260f772c8b2b85cea4be80c7f33fc363c28f5f9d7f9eca"; + version = "0.11.0.2"; + sha256 = "d1d989bbf86df719c57cb01db59a554f3b07c475644dd3cecc48bfc29d885010"; libraryHaskellDepends = [ base base-compat base-orphans generics-sop tagged ]; @@ -71949,7 +72033,7 @@ self: { QuickCheck safe silently tagged ]; doCheck = false; - homepage = "https://github.com/zalora/getopt-generics#readme"; + homepage = "https://github.com/soenkehahn/getopt-generics#readme"; description = "Create command line interfaces with ease"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -76689,27 +76773,14 @@ self: { ({ mkDerivation, base, containers, deepseq, pointed }: mkDerivation { pname = "grouped-list"; - version = "0.1.0.0"; - sha256 = "e8d4003fa846ee6a928209bd78c526691d40b7eaaec76fdc636d38967f05c9fb"; + version = "0.1.2.0"; + sha256 = "77aa60756373ca42065568fb5c57c8cb9b5f85e89ed3d35192b8df4c48ae390f"; libraryHaskellDepends = [ base containers deepseq pointed ]; 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; }) {}; - "grouped-list_0_1_1_0" = callPackage - ({ mkDerivation, base, containers, deepseq, pointed }: - mkDerivation { - pname = "grouped-list"; - version = "0.1.1.0"; - sha256 = "ee4d9d19edb36c8f3bcf5b85e3ef461d73018424197a0ae1cc1161edd8ebc765"; - libraryHaskellDepends = [ base containers deepseq pointed ]; - 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; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "groupoid" = callPackage ({ mkDerivation, base }: mkDerivation { @@ -80726,24 +80797,25 @@ self: { "happstack-authenticate" = callPackage ({ mkDerivation, acid-state, aeson, authenticate, base , base64-bytestring, boomerang, bytestring, containers - , data-default, filepath, happstack-hsp, happstack-jmacro - , happstack-server, hsp, hsx-jmacro, hsx2hs, http-conduit - , http-types, ixset-typed, jmacro, jwt, lens, mime-mail, mtl - , pwstore-purehaskell, random, safecopy, shakespeare, text, time - , unordered-containers, userid, web-routes, web-routes-boomerang - , web-routes-happstack, web-routes-hsp, web-routes-th + , data-default, email-validate, filepath, happstack-hsp + , happstack-jmacro, happstack-server, hsp, hsx-jmacro, hsx2hs + , http-conduit, http-types, ixset-typed, jmacro, jwt, lens + , mime-mail, mtl, pwstore-purehaskell, random, safecopy + , shakespeare, text, time, unordered-containers, userid, web-routes + , web-routes-boomerang, web-routes-happstack, web-routes-hsp + , web-routes-th }: mkDerivation { pname = "happstack-authenticate"; - version = "2.2.0"; - sha256 = "7093ae69b6be698102f87df7851eafbdeb830f55467083aea06bd8b11adf5078"; + version = "2.3.0"; + sha256 = "d459a80c7c54a05e31a803f200233bb491350099e04f2fb27567735fe0dfe9c2"; libraryHaskellDepends = [ acid-state aeson authenticate base base64-bytestring boomerang - bytestring containers data-default filepath happstack-hsp - happstack-jmacro happstack-server hsp hsx-jmacro hsx2hs - http-conduit http-types ixset-typed jmacro jwt lens mime-mail mtl - pwstore-purehaskell random safecopy shakespeare text time - unordered-containers userid web-routes web-routes-boomerang + bytestring containers data-default email-validate filepath + happstack-hsp happstack-jmacro happstack-server hsp hsx-jmacro + hsx2hs http-conduit http-types ixset-typed jmacro jwt lens + mime-mail mtl pwstore-purehaskell random safecopy shakespeare text + time unordered-containers userid web-routes web-routes-boomerang web-routes-happstack web-routes-hsp web-routes-th ]; homepage = "http://www.happstack.com/"; @@ -81176,7 +81248,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "happstack-server" = callPackage + "happstack-server_7_4_4" = callPackage ({ mkDerivation, base, base64-bytestring, blaze-html, bytestring , containers, directory, exceptions, extensible-exceptions , filepath, hslogger, html, HUnit, monad-control, mtl, network @@ -81203,6 +81275,36 @@ self: { homepage = "http://happstack.com"; description = "Web related tools and services"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "happstack-server" = callPackage + ({ mkDerivation, base, base64-bytestring, blaze-html, bytestring + , containers, directory, exceptions, extensible-exceptions + , filepath, hslogger, html, HUnit, monad-control, mtl, network + , network-uri, old-locale, parsec, process, sendfile, syb + , system-filepath, template-haskell, text, threads, time + , time-compat, transformers, transformers-base, transformers-compat + , unix, utf8-string, xhtml, zlib + }: + mkDerivation { + pname = "happstack-server"; + version = "7.4.5"; + sha256 = "704a11b50604e57bd960633a73baa77fe23993f41b35202a0e26f4af2f91dc96"; + libraryHaskellDepends = [ + base base64-bytestring blaze-html bytestring containers directory + exceptions extensible-exceptions filepath hslogger html + monad-control mtl network network-uri old-locale parsec process + sendfile syb system-filepath template-haskell text threads time + time-compat transformers transformers-base transformers-compat unix + utf8-string xhtml zlib + ]; + testHaskellDepends = [ + base bytestring containers HUnit parsec zlib + ]; + homepage = "http://happstack.com"; + description = "Web related tools and services"; + license = stdenv.lib.licenses.bsd3; }) {}; "happstack-server-tls" = callPackage @@ -84234,8 +84336,8 @@ self: { ({ mkDerivation, base }: mkDerivation { pname = "haskore-vintage"; - version = "0.2"; - sha256 = "d618cd63ca221c980b61fde864e8a024bfefba0318984d92a270c3b1fbd1f8b6"; + version = "0.3"; + sha256 = "0bd49a041c73292d195897a1e8a73713669b09b1a73f3e29251f72223da708ab"; libraryHaskellDepends = [ base ]; homepage = "http://haskell.org/haskore/"; description = "The February 2000 version of Haskore"; @@ -85147,8 +85249,8 @@ self: { }: mkDerivation { pname = "hastily"; - version = "0.1.0.4"; - sha256 = "0cb4cb729d1c6a382a81c2667c0bd42ec6be3aaa90604e8de2067f5ec8a351fb"; + version = "0.1.0.6"; + sha256 = "d001119682dc0389bbac946793401209c7286a01d9b157fab638ac8fda78a72e"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -96076,8 +96178,8 @@ self: { ({ mkDerivation, base, checkers, hspec }: mkDerivation { pname = "hspec-checkers"; - version = "0.1.0"; - sha256 = "cd4ceeed2d9b46f42d440914814162657264e541ad25232ae609b274e5fb7810"; + version = "0.1.0.1"; + sha256 = "9703ad134d1711b17301d760cebc36814c48a0e4e5712590514c93e6ec278dab"; libraryHaskellDepends = [ base checkers hspec ]; testHaskellDepends = [ base checkers hspec ]; description = "Allows to use checkers properties from hspec"; @@ -97191,6 +97293,7 @@ self: { libraryHaskellDepends = [ base exceptions hsqml-datamodel type-list vinyl ]; + jailbreak = true; homepage = "https://github.com/marcinmrotek/hsqml-datamodel-vinyl"; description = "HsQML DataModel instances for Vinyl Rec"; license = stdenv.lib.licenses.bsd3; @@ -98125,23 +98228,6 @@ self: { }) {}; "http-api-data" = callPackage - ({ mkDerivation, base, bytestring, doctest, Glob, hspec, HUnit - , QuickCheck, text, time - }: - mkDerivation { - pname = "http-api-data"; - version = "0.2"; - sha256 = "25b9127e356d15b7edea37068629f87523854a12f0ce4ac65a03ae391a4a6659"; - libraryHaskellDepends = [ base bytestring text time ]; - testHaskellDepends = [ - base doctest Glob hspec HUnit QuickCheck text time - ]; - homepage = "http://github.com/fizruk/http-api-data"; - description = "Converting to/from HTTP API data like URL pieces, headers and query parameters"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "http-api-data_0_2_1" = callPackage ({ mkDerivation, base, bytestring, doctest, Glob, hspec, HUnit , QuickCheck, text, time }: @@ -98156,7 +98242,6 @@ self: { homepage = "http://github.com/fizruk/http-api-data"; description = "Converting to/from HTTP API data like URL pieces, headers and query parameters"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "http-attoparsec" = callPackage @@ -108779,8 +108864,8 @@ self: { pname = "keter"; version = "1.3.7"; sha256 = "a0710bf072a8829f5e696a6cf760554b26006d520f311ae29a53bf46e96f98c3"; - revision = "2"; - editedCabalFile = "cefc8c00964e630396ca46f09d13a77fc4870db48e5526796817ca6d35aa3e49"; + revision = "3"; + editedCabalFile = "97b84a04bdbef02b95c502f4a4e27791dc3a6e10f40a4797cf267311be1c6875"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -108822,8 +108907,8 @@ self: { pname = "keter"; version = "1.3.7.1"; sha256 = "003ce327d5b8ce407df901b46a99a37109b2ce14d6f51e50212130ba5ed9843e"; - revision = "2"; - editedCabalFile = "a1c0a6f6e7ffa9cd6c5a1c2780fdb5ce14a95d3c5fe9fe96cfeccc3726e91e98"; + revision = "3"; + editedCabalFile = "a534637676d741ad4b3a5c0ba745df72206f16008e52ed037cc7de8cb4db2556"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -111272,15 +111357,15 @@ self: { }) {}; "language-lua2" = callPackage - ({ mkDerivation, base, containers, Earley, lexer-applicative - , microlens, optparse-applicative, QuickCheck, regex-applicative - , semigroups, srcloc, tasty, tasty-hunit, tasty-quickcheck - , transformers, unordered-containers, wl-pprint + ({ mkDerivation, base, containers, deepseq, Earley + , lexer-applicative, microlens, optparse-applicative, QuickCheck + , regex-applicative, semigroups, srcloc, tasty, tasty-hunit + , tasty-quickcheck, transformers, unordered-containers, wl-pprint }: mkDerivation { pname = "language-lua2"; - version = "0.1.0.3"; - sha256 = "f375d752b3100a5cf2afa3238ba6a3fac5311af3e937e3f988c569de319aa009"; + version = "0.1.0.4"; + sha256 = "3d5e92e4ec4b096cb44432fc7e2ee2620470c4912c3fd85e30b07a7b834c422b"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -111292,9 +111377,10 @@ self: { base Earley lexer-applicative optparse-applicative srcloc wl-pprint ]; testHaskellDepends = [ - base lexer-applicative QuickCheck semigroups srcloc tasty + base deepseq lexer-applicative QuickCheck semigroups srcloc tasty tasty-hunit tasty-quickcheck unordered-containers ]; + doCheck = false; homepage = "http://github.com/mitchellwrosen/language-lua2"; description = "Lua parser and pretty printer"; license = stdenv.lib.licenses.bsd3; @@ -118492,29 +118578,6 @@ self: { }) {}; "mandrill" = callPackage - ({ mkDerivation, aeson, base, base64-bytestring, blaze-html - , bytestring, containers, email-validate, http-client - , http-client-tls, http-types, lens, mtl, old-locale, QuickCheck - , raw-strings-qq, tasty, tasty-hunit, tasty-quickcheck, text, time - }: - mkDerivation { - pname = "mandrill"; - version = "0.4.1.0"; - sha256 = "677f358e4ff991a41baff9e105a96d90849778dfa1ed12b316866e2df4cdb7e6"; - libraryHaskellDepends = [ - aeson base base64-bytestring blaze-html bytestring containers - email-validate http-client http-client-tls http-types lens mtl - old-locale QuickCheck text time - ]; - testHaskellDepends = [ - aeson base bytestring QuickCheck raw-strings-qq tasty tasty-hunit - tasty-quickcheck text - ]; - description = "Library for interfacing with the Mandrill JSON API"; - license = stdenv.lib.licenses.mit; - }) {}; - - "mandrill_0_5_0_0" = callPackage ({ mkDerivation, aeson, base, base64-bytestring, blaze-html , bytestring, containers, email-validate, http-client , http-client-tls, http-types, lens, mtl, old-locale, QuickCheck @@ -118536,7 +118599,6 @@ self: { ]; description = "Library for interfacing with the Mandrill JSON API"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mandulia" = callPackage @@ -122653,7 +122715,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "monad-parallel" = callPackage + "monad-parallel_0_7_1_4" = callPackage ({ mkDerivation, base, parallel, transformers, transformers-compat }: mkDerivation { @@ -122666,6 +122728,22 @@ self: { homepage = "http://trac.haskell.org/SCC/wiki/monad-parallel"; description = "Parallel execution of monadic computations"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "monad-parallel" = callPackage + ({ mkDerivation, base, parallel, transformers, transformers-compat + }: + mkDerivation { + pname = "monad-parallel"; + version = "0.7.2"; + sha256 = "fa410be89895b177dd092a30a324e12a026d59bc999070e0c1d4da91d747bee3"; + libraryHaskellDepends = [ + base parallel transformers transformers-compat + ]; + homepage = "http://trac.haskell.org/SCC/wiki/monad-parallel"; + description = "Parallel execution of monadic computations"; + license = stdenv.lib.licenses.bsd3; }) {}; "monad-parallel-progressbar" = callPackage @@ -123520,7 +123598,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "mono-traversable" = callPackage + "mono-traversable_0_9_3" = callPackage ({ mkDerivation, base, bytestring, comonad, containers, dlist , dlist-instances, foldl, hashable, hspec, HUnit, QuickCheck , semigroupoids, semigroups, split, text, transformers @@ -123542,6 +123620,31 @@ self: { homepage = "https://github.com/snoyberg/mono-traversable"; description = "Type classes for mapping, folding, and traversing monomorphic containers"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "mono-traversable" = callPackage + ({ mkDerivation, base, bytestring, comonad, containers, dlist + , dlist-instances, foldl, hashable, hspec, HUnit, QuickCheck + , semigroupoids, semigroups, split, text, transformers + , unordered-containers, vector, vector-algorithms, vector-instances + }: + mkDerivation { + pname = "mono-traversable"; + version = "0.10.0"; + sha256 = "5f71c909ed5b5b399fdceeb565b3eb3c19fbcdd771ca9a87595f863c35429fab"; + libraryHaskellDepends = [ + base bytestring comonad containers dlist dlist-instances hashable + semigroupoids semigroups split text transformers + unordered-containers vector vector-algorithms vector-instances + ]; + testHaskellDepends = [ + base bytestring containers foldl hspec HUnit QuickCheck semigroups + text transformers unordered-containers vector + ]; + homepage = "https://github.com/snoyberg/mono-traversable"; + description = "Type classes for mapping, folding, and traversing monomorphic containers"; + license = stdenv.lib.licenses.mit; }) {}; "monoid-extras_0_3_3_5" = callPackage @@ -126500,8 +126603,8 @@ self: { }: mkDerivation { pname = "ncurses"; - version = "0.2.11"; - sha256 = "f3dbd238d44c4bf44ccb5364540300bc9a16b539822535f3cd5d9e1189105922"; + version = "0.2.12"; + sha256 = "fbafe7fcb6e829fa1c3a3827c9adc871e7784cd76448d0c75d99b92f81dc1165"; libraryHaskellDepends = [ base containers text transformers ]; librarySystemDepends = [ ncurses ]; libraryToolDepends = [ c2hs ]; @@ -129913,8 +130016,8 @@ self: { ({ mkDerivation, base, containers }: mkDerivation { pname = "observable-sharing"; - version = "0.2.3"; - sha256 = "36438ff9a35a7d7ff0f73d5bc798e544584d1aa0efc07e7f0fb7a5513ed20432"; + version = "0.2.4"; + sha256 = "400efecddcfdd992717caccc3a7b00590e7635bf92305d7d93f81d47327811d3"; libraryHaskellDepends = [ base containers ]; homepage = "https://github.com/atzeus/observable-sharing"; description = "Simple observable sharing"; @@ -131878,8 +131981,8 @@ self: { }: mkDerivation { pname = "ot"; - version = "0.2.0.0"; - sha256 = "a3e917487a3aab56966fc3d676a3b8cf079acbd05b0ea0c887d6b90a18a6c46d"; + version = "0.2.1.0"; + sha256 = "56f1c888103c699b1025c1f23a7e3423a5b7cf93041af24d8fbd1eb9f08caa04"; libraryHaskellDepends = [ aeson attoparsec base binary either ghc mtl QuickCheck text ]; @@ -131887,7 +131990,6 @@ self: { aeson base binary HUnit QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 text ]; - jailbreak = true; homepage = "https://github.com/operational-transformation/ot.hs"; description = "Real-time collaborative editing with Operational Transformation"; license = stdenv.lib.licenses.mit; @@ -132037,8 +132139,8 @@ self: { }: mkDerivation { pname = "packer"; - version = "0.1.8"; - sha256 = "713d29b95f41aff8ed21dc59551c5caf3ac165c07d43d4e403cb1b161429f8e4"; + version = "0.1.9"; + sha256 = "d2926f876da4ef8e4590bbc501caf83b0703018971ad5413e9d6647667d681e4"; libraryHaskellDepends = [ base bytestring ghc-prim transformers ]; testHaskellDepends = [ base bytestring tasty tasty-hunit tasty-quickcheck @@ -132665,6 +132767,37 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "pandoc-citeproc_0_8" = callPackage + ({ mkDerivation, aeson, aeson-pretty, attoparsec, base, bytestring + , containers, data-default, directory, filepath, hs-bibutils, mtl + , old-locale, pandoc, pandoc-types, parsec, process, rfc5051 + , setenv, split, syb, tagsoup, temporary, text, time, vector + , xml-conduit, yaml + }: + mkDerivation { + pname = "pandoc-citeproc"; + version = "0.8"; + sha256 = "834ba89edc9d92dd2e9bf0f001a5ce3d5713b8a7b580232b6a088b5f7f6ddc5e"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson base bytestring containers data-default directory filepath + hs-bibutils mtl old-locale pandoc pandoc-types parsec rfc5051 + setenv split syb tagsoup text time vector xml-conduit yaml + ]; + executableHaskellDepends = [ + aeson aeson-pretty attoparsec base bytestring containers directory + filepath pandoc pandoc-types process syb temporary text vector yaml + ]; + testHaskellDepends = [ + aeson base bytestring directory filepath pandoc pandoc-types + process temporary text yaml + ]; + description = "Supports using pandoc with citeproc"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "pandoc-citeproc-preamble" = callPackage ({ mkDerivation, base, directory, filepath, pandoc-types, process }: @@ -135520,7 +135653,6 @@ self: { monad-control monad-logger mysql mysql-simple persistent resourcet text transformers ]; - doHaddock = false; homepage = "http://www.yesodweb.com/book/persistent"; description = "Backend for the persistent library using MySQL database server"; license = stdenv.lib.licenses.mit; @@ -136856,17 +136988,21 @@ self: { }) {}; "picologic" = callPackage - ({ mkDerivation, base, containers, mtl, parsec, picosat, pretty }: + ({ mkDerivation, base, containers, mtl, parsec, picosat, pretty + , QuickCheck + }: mkDerivation { pname = "picologic"; - version = "0.1.1"; - sha256 = "40b8f3a30f200f956d967c4bfa8063cbaf9a9e1963c246cffcc79e8e5da29193"; + version = "0.1.2"; + sha256 = "449f6ead23c54d1751d66437a06950a5b2a478348c53e6b927ec9a2bb9e9e40f"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base containers mtl parsec picosat pretty ]; - jailbreak = true; + testHaskellDepends = [ + base containers mtl picosat pretty QuickCheck + ]; homepage = "https://github.com/sdiehl/picologic"; description = "Utilities for symbolic predicate logic expressions"; license = stdenv.lib.licenses.mit; @@ -146349,8 +146485,8 @@ self: { }: mkDerivation { pname = "reflex-transformers"; - version = "0.1"; - sha256 = "b7871b9e833eadfa04832cf978bfbb762c3f02cab68a8876eeb8b45af2fd219e"; + version = "0.2"; + sha256 = "81ab5c2fd634285c6c3044310ec37082e2d2350a8857f29c3c615198593b8430"; libraryHaskellDepends = [ base containers lens mtl reflex semigroups stateWriter transformers ]; @@ -149154,21 +149290,6 @@ self: { }) {}; "rest-happstack" = callPackage - ({ mkDerivation, base, containers, happstack-server, mtl, rest-core - , rest-gen, utf8-string - }: - mkDerivation { - pname = "rest-happstack"; - version = "0.3"; - sha256 = "494b9ae9e126e03e45d0fd61cbd77c4160ad3493448fcfbfcb1e2d0d8e9bc766"; - libraryHaskellDepends = [ - base containers happstack-server mtl rest-core rest-gen utf8-string - ]; - description = "Rest driver for Happstack"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "rest-happstack_0_3_1" = callPackage ({ mkDerivation, base, containers, happstack-server, mtl, rest-core , rest-gen, utf8-string }: @@ -149181,7 +149302,6 @@ self: { ]; description = "Rest driver for Happstack"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rest-snap_0_1_17_14" = callPackage @@ -154739,7 +154859,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "servant" = callPackage + "servant_0_4_4_4" = callPackage ({ mkDerivation, aeson, attoparsec, base, bytestring , bytestring-conversion, case-insensitive, directory, doctest , filemanip, filepath, hspec, http-media, http-types, network-uri @@ -154763,6 +154883,33 @@ self: { homepage = "http://haskell-servant.github.io/"; description = "A family of combinators for defining webservices APIs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "servant" = callPackage + ({ mkDerivation, aeson, attoparsec, base, bytestring + , bytestring-conversion, case-insensitive, directory, doctest + , filemanip, filepath, hspec, http-media, http-types, network-uri + , parsec, QuickCheck, quickcheck-instances, string-conversions + , text, url + }: + mkDerivation { + pname = "servant"; + version = "0.4.4.5"; + sha256 = "b82abafe5bd1357c64c36c344ab38dc8fa8ad8f40126b86323da9bfc4047f544"; + libraryHaskellDepends = [ + aeson attoparsec base bytestring bytestring-conversion + case-insensitive http-media http-types network-uri + string-conversions text + ]; + testHaskellDepends = [ + aeson attoparsec base bytestring directory doctest filemanip + filepath hspec parsec QuickCheck quickcheck-instances + string-conversions text url + ]; + homepage = "http://haskell-servant.github.io/"; + description = "A family of combinators for defining webservices APIs"; + license = stdenv.lib.licenses.bsd3; }) {}; "servant-JuicyPixels_0_1_0_0" = callPackage @@ -154812,8 +154959,8 @@ self: { ({ mkDerivation, base, blaze-html, http-media, servant }: mkDerivation { pname = "servant-blaze"; - version = "0.4.4.4"; - sha256 = "58e3d5922b9031559aebc7ae99e52712d6a208cb2c0164da5baffb4cd55cafa1"; + version = "0.4.4.5"; + sha256 = "b2ac467c4cc6e3e439436616f9132818e1023ea048e918d87f133342705bc991"; libraryHaskellDepends = [ base blaze-html http-media servant ]; homepage = "http://haskell-servant.github.io/"; description = "Blaze-html support for servant"; @@ -154900,7 +155047,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "servant-client" = callPackage + "servant-client_0_4_4_4" = callPackage ({ mkDerivation, aeson, attoparsec, base, bytestring, deepseq , either, exceptions, hspec, http-client, http-client-tls , http-media, http-types, HUnit, network, network-uri, QuickCheck @@ -154924,6 +155071,33 @@ self: { homepage = "http://haskell-servant.github.io/"; description = "automatical derivation of querying functions for servant webservices"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "servant-client" = callPackage + ({ mkDerivation, aeson, attoparsec, base, bytestring, deepseq + , either, exceptions, hspec, http-client, http-client-tls + , http-media, http-types, HUnit, network, network-uri, QuickCheck + , safe, servant, servant-server, string-conversions, text + , transformers, wai, warp + }: + mkDerivation { + pname = "servant-client"; + version = "0.4.4.5"; + sha256 = "7ca47d0bb95268222fe19d34b31acf501ea89d7a9a4ce77a3ebc0cd18386b953"; + libraryHaskellDepends = [ + aeson attoparsec base bytestring either exceptions http-client + http-client-tls http-media http-types network-uri safe servant + string-conversions text transformers + ]; + testHaskellDepends = [ + aeson base bytestring deepseq either hspec http-client http-media + http-types HUnit network QuickCheck servant servant-server text wai + warp + ]; + homepage = "http://haskell-servant.github.io/"; + description = "automatical derivation of querying functions for servant webservices"; + license = stdenv.lib.licenses.bsd3; }) {}; "servant-docs_0_3_1" = callPackage @@ -155007,7 +155181,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "servant-docs" = callPackage + "servant-docs_0_4_4_4" = callPackage ({ mkDerivation, aeson, base, bytestring, bytestring-conversion , case-insensitive, hashable, hspec, http-media, http-types, lens , servant, string-conversions, text, unordered-containers @@ -155033,6 +155207,35 @@ self: { homepage = "http://haskell-servant.github.io/"; description = "generate API docs for your servant webservice"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "servant-docs" = callPackage + ({ mkDerivation, aeson, base, bytestring, bytestring-conversion + , case-insensitive, hashable, hspec, http-media, http-types, lens + , servant, string-conversions, text, unordered-containers + }: + mkDerivation { + pname = "servant-docs"; + version = "0.4.4.5"; + sha256 = "55f4c036cc96aebac19eeea43af412f696002a8e3497a95ff4aa25429c7c474e"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base bytestring bytestring-conversion case-insensitive hashable + http-media http-types lens servant string-conversions text + unordered-containers + ]; + executableHaskellDepends = [ + aeson base bytestring-conversion lens servant string-conversions + text + ]; + testHaskellDepends = [ + aeson base hspec lens servant string-conversions + ]; + homepage = "http://haskell-servant.github.io/"; + description = "generate API docs for your servant webservice"; + license = stdenv.lib.licenses.bsd3; }) {}; "servant-ede" = callPackage @@ -155067,8 +155270,8 @@ self: { }: mkDerivation { pname = "servant-examples"; - version = "0.4.4.4"; - sha256 = "e180ff93d58ebb467097b337e00f77b42e9780880627ab52a2b8d69363fc7de4"; + version = "0.4.4.5"; + sha256 = "51a0f8953c3eeed16c6745286d858338f657d000af9ad2f6a7a7531688426425"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -155153,7 +155356,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "servant-jquery" = callPackage + "servant-jquery_0_4_4_4" = callPackage ({ mkDerivation, aeson, base, charset, filepath, hspec , hspec-expectations, language-ecmascript, lens, servant , servant-server, stm, text, transformers, warp @@ -155174,14 +155377,38 @@ self: { homepage = "http://haskell-servant.github.io/"; description = "Automatically derive (jquery) javascript functions to query servant webservices"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "servant-jquery" = callPackage + ({ mkDerivation, aeson, base, charset, filepath, hspec + , hspec-expectations, language-ecmascript, lens, servant + , servant-server, stm, text, transformers, warp + }: + mkDerivation { + pname = "servant-jquery"; + version = "0.4.4.5"; + sha256 = "33059d2a707bfad6fcd3f92cdaac69da9767dce1f2e11f7c4c9b2ad9df1d1b3c"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base charset lens servant text ]; + executableHaskellDepends = [ + aeson base filepath servant servant-server stm transformers warp + ]; + testHaskellDepends = [ + base hspec hspec-expectations language-ecmascript lens servant + ]; + homepage = "http://haskell-servant.github.io/"; + description = "Automatically derive (jquery) javascript functions to query servant webservices"; + license = stdenv.lib.licenses.bsd3; }) {}; "servant-lucid" = callPackage ({ mkDerivation, base, http-media, lucid, servant }: mkDerivation { pname = "servant-lucid"; - version = "0.4.4.4"; - sha256 = "c42702b20da1f8daea4c2a633e777214e524a2afac96c0b559209351f1f1cd0d"; + version = "0.4.4.5"; + sha256 = "85c922b88dbf4c7c0e8447e326938ab1f3f8dd60400f1b23a0d63109e6159913"; libraryHaskellDepends = [ base http-media lucid servant ]; homepage = "http://haskell-servant.github.io/"; description = "Servant support for lucid"; @@ -155194,8 +155421,8 @@ self: { }: mkDerivation { pname = "servant-mock"; - version = "0.4.4.4"; - sha256 = "1df192ac10aea342cffd5da509f9c5eca40b659fa3c7b77aad87ec0bbb82f35c"; + version = "0.4.4.5"; + sha256 = "3b1cb43127ceb10979fa056c847e588d030293ee8842e13d1c18458b886d7ed6"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -155426,7 +155653,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "servant-server" = callPackage + "servant-server_0_4_4_4" = callPackage ({ mkDerivation, aeson, attoparsec, base, bytestring , bytestring-conversion, directory, doctest, either, exceptions , filemanip, filepath, hspec, hspec-wai, http-types, mmorph, mtl @@ -155455,6 +155682,38 @@ self: { homepage = "http://haskell-servant.github.io/"; description = "A family of combinators for defining webservices APIs and serving them"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "servant-server" = callPackage + ({ mkDerivation, aeson, attoparsec, base, bytestring + , bytestring-conversion, directory, doctest, either, exceptions + , filemanip, filepath, hspec, hspec-wai, http-types, mmorph, mtl + , network, network-uri, parsec, QuickCheck, safe, servant, split + , string-conversions, system-filepath, temporary, text + , transformers, wai, wai-app-static, wai-extra, warp + }: + mkDerivation { + pname = "servant-server"; + version = "0.4.4.5"; + sha256 = "30d9668ff406911356a0ebcba7591924c5bb5c55a228e5682e394a66ee593a58"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson attoparsec base bytestring either filepath http-types mmorph + mtl network-uri safe servant split string-conversions + system-filepath text transformers wai wai-app-static warp + ]; + executableHaskellDepends = [ aeson base servant text wai warp ]; + testHaskellDepends = [ + aeson base bytestring bytestring-conversion directory doctest + either exceptions filemanip filepath hspec hspec-wai http-types mtl + network parsec QuickCheck servant string-conversions temporary text + transformers wai wai-extra warp + ]; + homepage = "http://haskell-servant.github.io/"; + description = "A family of combinators for defining webservices APIs and serving them"; + license = stdenv.lib.licenses.bsd3; }) {}; "serversession" = callPackage @@ -173065,8 +173324,8 @@ self: { }: mkDerivation { pname = "threads-supervisor"; - version = "1.0.3.0"; - sha256 = "b64e2b63d65808de4a64a1157ebacb831efc549fdbd38a97012f48ecb3a437c6"; + version = "1.0.4.0"; + sha256 = "6d48e9007275c6ff3ce01c35f89a106110878e65c67c654f3432c3c3d6b9e02f"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -173802,6 +174061,18 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "timeless" = callPackage + ({ mkDerivation, base, time, transformers }: + mkDerivation { + pname = "timeless"; + version = "0.8.0.2"; + sha256 = "bb32b4ed361bbb17d2d86d19958513a0231d9789c615a52975cedb7efba99ad7"; + libraryHaskellDepends = [ base time transformers ]; + homepage = "https://github.com/carldong/timeless"; + description = "An Arrow based Functional Reactive Programming library"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "timeout" = callPackage ({ mkDerivation, base, exceptions, mtl, QuickCheck, tasty , tasty-quickcheck, time @@ -175745,8 +176016,8 @@ self: { ({ mkDerivation, base, containers, template-haskell, time }: mkDerivation { pname = "true-name"; - version = "0.0.0.1"; - sha256 = "f5b57148ebab8d1f72001d795d44720aa3ee2d4c7f12e63f48fc38884004e7e2"; + version = "0.0.0.2"; + sha256 = "55e3785f6072bd0b5ed030ae3894bb92c5684681217833ddc4f112b0d32f9c3e"; libraryHaskellDepends = [ base template-haskell ]; testHaskellDepends = [ base containers template-haskell time ]; homepage = "https://github.com/liyang/true-name"; @@ -176677,6 +176948,7 @@ self: { template-haskell 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; @@ -176786,6 +177058,7 @@ 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; @@ -177194,7 +177467,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "type-list" = callPackage + "type-list_0_2_0_0" = callPackage ({ mkDerivation, base, singletons }: mkDerivation { pname = "type-list"; @@ -177203,6 +177476,18 @@ self: { libraryHaskellDepends = [ base singletons ]; description = "Operations on type-level lists and tuples"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "type-list" = callPackage + ({ mkDerivation, base, singletons }: + mkDerivation { + pname = "type-list"; + version = "0.3.0.2"; + sha256 = "80e7f52a5fb88880be9a166fbe664bda7e9f94d64d70c877471c833567722aee"; + libraryHaskellDepends = [ base singletons ]; + description = "Operations on type-level lists and tuples"; + license = stdenv.lib.licenses.bsd3; }) {}; "type-natural" = callPackage @@ -177753,10 +178038,8 @@ self: { }: mkDerivation { pname = "uhc-light"; - version = "1.1.9.0"; - sha256 = "72d6c7c3a8b94b315c6346684e9ba2e97215ebf6e49d97bbc3852e4b0a000b37"; - revision = "1"; - editedCabalFile = "8847b4a41a2f6c9be09cf7b4835f53219522da9ef0ca26b918159fec747bd938"; + version = "1.1.9.1"; + sha256 = "9192b3ce50cf5f796799490b8f22b6ee20a3310e7e2216e09dc9706765e0cc61"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -177776,16 +178059,16 @@ self: { "uhc-util" = callPackage ({ mkDerivation, array, base, binary, bytestring, containers - , directory, fclabels, fgl, hashable, ListLike, mtl, process, syb - , time, time-compat, uulib + , directory, fclabels, fgl, hashable, mtl, process, syb, time + , time-compat, uulib }: mkDerivation { pname = "uhc-util"; - version = "0.1.6.0"; - sha256 = "128641dd69d7adb85095988132914ac5d14140ef063e28cee5102997d1acb6d9"; + version = "0.1.6.2"; + sha256 = "f559daf2f339b4d3ab2194895c19a10a304c68970b10c1e6571b52734f4bd19a"; libraryHaskellDepends = [ array base binary bytestring containers directory fclabels fgl - hashable ListLike mtl process syb time time-compat uulib + hashable mtl process syb time time-compat uulib ]; homepage = "https://github.com/UU-ComputerScience/uhc-util"; description = "UHC utilities"; @@ -178845,7 +179128,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "unix-time" = callPackage + "unix-time_0_3_5" = callPackage ({ mkDerivation, base, binary, bytestring, doctest, hspec , old-locale, old-time, QuickCheck, time }: @@ -178860,6 +179143,24 @@ self: { doCheck = false; description = "Unix time parser/formatter and utilities"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "unix-time" = callPackage + ({ mkDerivation, base, binary, bytestring, doctest, hspec + , old-locale, old-time, QuickCheck, time + }: + mkDerivation { + pname = "unix-time"; + version = "0.3.6"; + sha256 = "5d15ebd0ee74e13638a7c04a7fc5f05a29ccd3228c8798df226939a778f7db37"; + libraryHaskellDepends = [ base binary bytestring old-time ]; + testHaskellDepends = [ + base bytestring doctest hspec old-locale old-time QuickCheck time + ]; + doCheck = false; + description = "Unix time parser/formatter and utilities"; + license = stdenv.lib.licenses.bsd3; }) {}; "unlambda" = callPackage @@ -181626,12 +181927,27 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "vector-th-unbox" = callPackage + "vector-th-unbox_0_2_1_2" = callPackage ({ mkDerivation, base, data-default, template-haskell, vector }: mkDerivation { pname = "vector-th-unbox"; version = "0.2.1.2"; sha256 = "0df696462d424bab569cc7a8ba1b1d0057bc5a71c510567fe5bcd1a940ae4d05"; + revision = "1"; + editedCabalFile = "bddeef74d6aab09ec3f1b5c9781f96b4a92f6f1234836cbaff78a493e73ca1fa"; + libraryHaskellDepends = [ base template-haskell vector ]; + testHaskellDepends = [ base data-default vector ]; + description = "Deriver for Data.Vector.Unboxed using Template Haskell"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "vector-th-unbox" = callPackage + ({ mkDerivation, base, data-default, template-haskell, vector }: + mkDerivation { + pname = "vector-th-unbox"; + version = "0.2.1.3"; + sha256 = "33db750d3d867f23d0406a7165952b030831ed610b06ef777cfae8439b382689"; libraryHaskellDepends = [ base template-haskell vector ]; testHaskellDepends = [ base data-default vector ]; description = "Deriver for Data.Vector.Unboxed using Template Haskell"; @@ -182280,8 +182596,8 @@ self: { }: mkDerivation { pname = "waddle"; - version = "0.1.0.5"; - sha256 = "9b2101391babec27362f11bea8775d2b778766cbc24184cb82e7e3154086986c"; + version = "0.1.0.6"; + sha256 = "48782ba072e71678cb7d01043f8c10981ea7e7e5a123f0d8fb7a482f75c4ca15"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -182292,7 +182608,6 @@ self: { base binary bytestring case-insensitive containers directory JuicyPixels ]; - jailbreak = true; homepage = "https://github.com/mgrabmueller/waddle"; description = "DOOM WAD file utilities"; license = stdenv.lib.licenses.bsd3; @@ -185222,8 +185537,8 @@ self: { }: mkDerivation { pname = "warp"; - version = "3.1.4"; - sha256 = "6e7e96dd49f0d0635e3453dbe3a074db3ab8ce69ce48b9da7701f211198029b9"; + version = "3.1.6"; + sha256 = "34ce9ad59002bee92224b25bc64bec7d86576b41900cde305af419f304ad4093"; libraryHaskellDepends = [ array auto-update base blaze-builder bytestring bytestring-builder case-insensitive containers ghc-prim hashable http-date http-types @@ -185663,15 +185978,16 @@ self: { "wavefront" = callPackage ({ mkDerivation, attoparsec, base, dlist, filepath, mtl, text - , transformers + , transformers, vector }: mkDerivation { pname = "wavefront"; - version = "0.2"; - sha256 = "5f9130cb8fa4ecb1b4f6313aa24c8e7c595c15cce72fa9a2e0f009dd6cb9503c"; + version = "0.3"; + sha256 = "65443f1ca1ceb6418e3740c085bd8f6f85c6ca2033deeafd7c7e4f418043e3a2"; libraryHaskellDepends = [ - attoparsec base dlist filepath mtl text transformers + attoparsec base dlist filepath mtl text transformers vector ]; + jailbreak = true; homepage = "https://github.com/phaazon/wavefront"; description = "Wavefront OBJ loader"; license = stdenv.lib.licenses.bsd3; @@ -186268,26 +186584,26 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "webdriver_0_7" = callPackage + "webdriver_0_8" = callPackage ({ mkDerivation, aeson, attoparsec, base, base64-bytestring - , bytestring, cond, data-default, directory, directory-tree + , bytestring, cond, data-default-class, directory, directory-tree , exceptions, filepath, http-client, http-types, lifted-base - , monad-control, mtl, network, network-uri, parallel, scientific - , temporary, text, time, transformers, transformers-base - , unordered-containers, vector, zip-archive + , monad-control, network, network-uri, scientific, temporary, text + , time, transformers, transformers-base, unordered-containers + , vector, zip-archive }: mkDerivation { pname = "webdriver"; - version = "0.7"; - sha256 = "3e26d74d378318d58fd8080d2e18394e953821801ee6ce8394e6321c7bdb6b6f"; + version = "0.8"; + sha256 = "357b6d21d9c3e322a7d85868e40464505d30fce3d3e3fd318c1742247cc431aa"; libraryHaskellDepends = [ aeson attoparsec base base64-bytestring bytestring cond - data-default directory directory-tree exceptions filepath - http-client http-types lifted-base monad-control mtl network + 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 vector zip-archive ]; - testHaskellDepends = [ base parallel text ]; + testHaskellDepends = [ base text ]; homepage = "https://github.com/kallisti-dev/hs-webdriver"; description = "a Haskell client for the Selenium WebDriver protocol"; license = stdenv.lib.licenses.bsd3; @@ -186686,7 +187002,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "websockets" = callPackage + "websockets_0_9_6_0" = callPackage ({ mkDerivation, attoparsec, base, base64-bytestring, binary , blaze-builder, bytestring, case-insensitive, containers, entropy , HUnit, network, QuickCheck, random, SHA, test-framework @@ -186716,6 +187032,39 @@ self: { homepage = "http://jaspervdj.be/websockets"; description = "A sensible and clean way to write WebSocket-capable servers in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "websockets" = callPackage + ({ mkDerivation, attoparsec, base, base64-bytestring, binary + , blaze-builder, bytestring, case-insensitive, containers, entropy + , HUnit, network, QuickCheck, random, SHA, test-framework + , test-framework-hunit, test-framework-quickcheck2, text + }: + mkDerivation { + pname = "websockets"; + version = "0.9.6.1"; + sha256 = "3c75cb59585710862c57277c8be718903ba727452d5f662288abb8b59eb57cd4"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + attoparsec base base64-bytestring binary blaze-builder bytestring + case-insensitive containers entropy network random SHA text + ]; + executableHaskellDepends = [ + attoparsec base base64-bytestring binary blaze-builder bytestring + case-insensitive containers entropy network random SHA text + ]; + testHaskellDepends = [ + attoparsec base base64-bytestring binary blaze-builder bytestring + case-insensitive containers entropy HUnit network QuickCheck random + SHA test-framework test-framework-hunit test-framework-quickcheck2 + text + ]; + doCheck = false; + homepage = "http://jaspervdj.be/websockets"; + description = "A sensible and clean way to write WebSocket-capable servers in Haskell"; + license = stdenv.lib.licenses.bsd3; }) {}; "websockets-snap" = callPackage @@ -187120,6 +187469,24 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "witherable_0_1_3_1" = callPackage + ({ mkDerivation, base, base-orphans, containers, hashable + , transformers, unordered-containers, vector + }: + mkDerivation { + pname = "witherable"; + version = "0.1.3.1"; + sha256 = "4b11917e2d562ce725394d994600ef59c7d1928dccbffe44a5bdf6de62af2fd0"; + libraryHaskellDepends = [ + base base-orphans containers hashable transformers + unordered-containers vector + ]; + homepage = "https://github.com/fumieval/witherable"; + description = "Generalization of filter and catMaybes"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "witness" = callPackage ({ mkDerivation, base, categories, constraints, transformers }: mkDerivation { @@ -191989,7 +192356,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "yesod-auth" = callPackage + "yesod-auth_1_4_7" = callPackage ({ mkDerivation, aeson, authenticate, base, base16-bytestring , base64-bytestring, binary, blaze-builder, blaze-html , blaze-markup, byteable, bytestring, conduit, conduit-extra @@ -192016,6 +192383,36 @@ self: { homepage = "http://www.yesodweb.com/"; description = "Authentication for Yesod"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "yesod-auth" = callPackage + ({ mkDerivation, aeson, authenticate, base, base16-bytestring + , base64-bytestring, binary, blaze-builder, blaze-html + , blaze-markup, byteable, bytestring, conduit, conduit-extra + , containers, cryptohash, data-default, email-validate, file-embed + , http-client, http-conduit, http-types, lifted-base, mime-mail + , network-uri, nonce, persistent, persistent-template, random + , resourcet, safe, shakespeare, template-haskell, text, time + , transformers, unordered-containers, wai, yesod-core, yesod-form + , yesod-persistent + }: + mkDerivation { + pname = "yesod-auth"; + version = "1.4.8"; + sha256 = "65a16bb6fb9601be88ec9af99577800041b455eaa5d0b2f645c618c306587cb2"; + libraryHaskellDepends = [ + aeson authenticate base base16-bytestring base64-bytestring binary + blaze-builder blaze-html blaze-markup byteable bytestring conduit + conduit-extra containers cryptohash data-default email-validate + file-embed http-client http-conduit http-types lifted-base + mime-mail network-uri nonce persistent persistent-template random + resourcet safe shakespeare template-haskell text time transformers + unordered-containers wai yesod-core yesod-form yesod-persistent + ]; + homepage = "http://www.yesodweb.com/"; + description = "Authentication for Yesod"; + license = stdenv.lib.licenses.mit; }) {}; "yesod-auth-account" = callPackage From a0376d4666c9933428c9511076ed468129183973 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Tue, 13 Oct 2015 20:00:26 +0200 Subject: [PATCH 012/148] haskell-conduit: fix build with pre-7.10.x versions of GHC Thanks to @bennofs for finding this issue! --- .../haskell-modules/configuration-ghc-6.12.x.nix | 3 +++ .../haskell-modules/configuration-ghc-7.0.x.nix | 3 +++ .../haskell-modules/configuration-ghc-7.2.x.nix | 3 +++ .../haskell-modules/configuration-ghc-7.4.x.nix | 3 +++ .../haskell-modules/configuration-ghc-7.6.x.nix | 7 +++---- .../haskell-modules/configuration-ghc-7.8.x.nix | 3 +++ 6 files changed, 18 insertions(+), 4 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-ghc-6.12.x.nix b/pkgs/development/haskell-modules/configuration-ghc-6.12.x.nix index bfb9ecdb5ba..06fedc6a1c4 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-6.12.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-6.12.x.nix @@ -91,4 +91,7 @@ self: super: { # Needs hashable on pre 7.10.x compilers. nats = addBuildDepend super.nats self.hashable; + # Needs void on pre 7.10.x compilers. + conduit = addBuildDepend super.conduit self.void; + } 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 55432ccdac5..9ce0e920042 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.0.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.0.x.nix @@ -73,4 +73,7 @@ self: super: { # Newer versions require bytestring >=0.10. tar = super.tar_0_4_1_0; + # Needs void on pre 7.10.x compilers. + conduit = addBuildDepend super.conduit self.void; + } 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 c848a50cd36..ae85c4a009c 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.2.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.2.x.nix @@ -73,4 +73,7 @@ self: super: { # Newer versions require bytestring >=0.10. tar = super.tar_0_4_1_0; + # Needs void on pre 7.10.x compilers. + conduit = addBuildDepend super.conduit self.void; + } 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 0046ad66c23..aa27b70a566 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix @@ -82,4 +82,7 @@ self: super: { # Newer versions require bytestring >=0.10. tar = super.tar_0_4_1_0; + # Needs void on pre 7.10.x compilers. + conduit = addBuildDepend super.conduit self.void; + } diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix index ccc4aa54c28..a1ce7cf68d6 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix @@ -79,10 +79,6 @@ self: super: { # Needs hashable on pre 7.10.x compilers. nats = addBuildDepend super.nats self.hashable; - # Newer versions always trigger the non-deterministic library ID bug - # and are virtually impossible to compile on Hydra. - conduit = super.conduit_1_2_4_1; - # https://github.com/magthe/sandi/issues/7 sandi = overrideCabal super.sandi (drv: { postPatch = "sed -i -e 's|base ==4.8.*,|base,|' sandi.cabal"; @@ -96,4 +92,7 @@ self: super: { convertible = markBroken super.convertible; ghc-mod = markBroken super.ghc-mod; + # Needs void on pre 7.10.x compilers. + conduit = addBuildDepend super.conduit self.void; + } 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 e5f5d3c953a..4b1d9df24e4 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix @@ -138,4 +138,7 @@ self: super: { xss-sanitize_0_3_5_4 = addBuildDepend super.xss-sanitize_0_3_5_4 self.network; xss-sanitize_0_3_5_5 = addBuildDepend super.xss-sanitize_0_3_5_5 self.network; + # Needs void on pre 7.10.x compilers. + conduit = addBuildDepend super.conduit self.void; + } From ba995630209ff9fa0908d0522cc03b5982d5aabb Mon Sep 17 00:00:00 2001 From: Tom Hunger Date: Thu, 15 Oct 2015 09:56:22 +0100 Subject: [PATCH 013/148] Use versioned tarball URL for chkrootkit. Pointing at the latest version is fragile: Hash updates don't follow source updates automatically. --- pkgs/tools/security/chkrootkit/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/tools/security/chkrootkit/default.nix b/pkgs/tools/security/chkrootkit/default.nix index 36a203a7b50..2dad4b3e43a 100644 --- a/pkgs/tools/security/chkrootkit/default.nix +++ b/pkgs/tools/security/chkrootkit/default.nix @@ -4,7 +4,7 @@ stdenv.mkDerivation { name = "chkrootkit-0.50"; src = fetchurl { - url = ftp://ftp.pangeia.com.br/pub/seg/pac/chkrootkit.tar.gz; + url = ftp://ftp.pangeia.com.br/pub/seg/pac/chkrootkit-0.50.tar.gz; sha256 = "1ivclp7ixndacjmf7xgj8lfa6h7ihx44mzzsapqdvf0c5f9gqj4m"; }; From 18cad45480e70bd10a2a59a6ab9b0dd3e264f359 Mon Sep 17 00:00:00 2001 From: "Ricardo M. Correia" Date: Thu, 15 Oct 2015 11:15:20 +0200 Subject: [PATCH 014/148] flashplayer: 11.2.202.521 -> 11.2.202.535 --- .../browsers/mozilla-plugins/flashplayer-11/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer-11/default.nix b/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer-11/default.nix index 2a554c5b3f6..4b94ecdcf5f 100644 --- a/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer-11/default.nix +++ b/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer-11/default.nix @@ -36,7 +36,7 @@ let # -> http://get.adobe.com/flashplayer/ - version = "11.2.202.521"; + version = "11.2.202.535"; src = if stdenv.system == "x86_64-linux" then @@ -47,7 +47,7 @@ let else rec { inherit version; url = "http://fpdownload.adobe.com/get/flashplayer/pdc/${version}/install_flash_player_11_linux.x86_64.tar.gz"; - sha256 = "1fckmapjy7rvy1g5jr71x69j7vviy9262wwpwk6cipym2fi7zvid"; + sha256 = "13fy842plbnv4w081sbhga0jrpbwz8yydg49c2v96l2marmzw9zp"; } else if stdenv.system == "i686-linux" then if debug then @@ -60,7 +60,7 @@ let else rec { inherit version; url = "http://fpdownload.adobe.com/get/flashplayer/pdc/${version}/install_flash_player_11_linux.i386.tar.gz"; - sha256 = "1483bi34ymchv1cqg57whxhlrhhvwhcw33zjgwzmy7bacxbkj9ia"; + sha256 = "0z99nz1k0cf86dgs367ddxfnf05m32psidpmdzi5qiqaj10h6j6s"; } else throw "Flash Player is not supported on this platform"; From 4c626f44d9ffddee5b73d9411678f49f80be140d Mon Sep 17 00:00:00 2001 From: Rinaldus Date: Mon, 5 Oct 2015 14:18:41 +0300 Subject: [PATCH 015/148] wine-{unstable,staging}: update 1.7.48 -> 1.7.52 Close #10238. --- pkgs/misc/emulators/wine/versions.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/misc/emulators/wine/versions.nix b/pkgs/misc/emulators/wine/versions.nix index 2775150385d..f3f1e3bff15 100644 --- a/pkgs/misc/emulators/wine/versions.nix +++ b/pkgs/misc/emulators/wine/versions.nix @@ -1,7 +1,7 @@ { unstable = { - wineVersion = "1.7.48"; - wineSha256 = "13kcjirif57p8mg4yhzxf0hjpghlwc18iskz66dx94i0dvjmrxg3"; + wineVersion = "1.7.52"; + wineSha256 = "0jsm1p7zwhfb5fpp0xd39vnx9m98kqgfng1q9kdj70rm1hmb6wq7"; geckoVersion = "2.36"; geckoSha256 = "12hjks32yz9jq4w3xhk3y1dy2g3iakqxd7aldrdj51cqiz75g95g"; gecko64Version = "2.36"; @@ -20,8 +20,8 @@ monoSha256 = "09dwfccvfdp3walxzp6qvnyxdj2bbyw9wlh6cxw2sx43gxriys5c"; }; staging = { - version = "1.7.48"; - sha256 = "06p1h92vaqlzk09aj4na6z7k3a81y9nw19rfg9q2szpcqjdd437w"; + version = "1.7.52"; + sha256 = "12r100gv34k44kia14wrfa42q0cjd8ir8vi8cx1b6hgnzw3x0gzk"; }; winetricks = { version = "20150706"; From cb38f10d12dbe5b6910ed4716c60df3d7becb7af Mon Sep 17 00:00:00 2001 From: Charles Strahan Date: Sun, 20 Sep 2015 18:33:28 -0400 Subject: [PATCH 016/148] nixos-generate-config: detect brcmfmac requirement This makes the firmware available (or would, if someone switched off enableAllFirmware). Corresponding kernel module should get auto-loaded. See #9948. Close #9971. --- .../installer/tools/nixos-generate-config.pl | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/nixos/modules/installer/tools/nixos-generate-config.pl b/nixos/modules/installer/tools/nixos-generate-config.pl index 39ef4c51ba1..19656c9b9ea 100644 --- a/nixos/modules/installer/tools/nixos-generate-config.pl +++ b/nixos/modules/installer/tools/nixos-generate-config.pl @@ -152,6 +152,22 @@ sub pciCheck { push @kernelModules, "wl"; } + # broadcom FullMac driver + # list taken from + # https://wireless.wiki.kernel.org/en/users/Drivers/brcm80211#brcmfmac + if ($vendor eq "0x14e4" && + ($device eq "0x43a3" || $device eq "0x43df" || $device eq "0x43ec" || + $device eq "0x43d3" || $device eq "0x43d9" || $device eq "0x43e9" || + $device eq "0x43ba" || $device eq "0x43bb" || $device eq "0x43bc" || + $device eq "0xaa52" || $device eq "0x43ca" || $device eq "0x43cb" || + $device eq "0x43cc" || $device eq "0x43c3" || $device eq "0x43c4" || + $device eq "0x43c5" + ) ) + { + # we need e.g. brcmfmac43602-pcie.bin + push @imports, ""; + } + # Can't rely on $module here, since the module may not be loaded # due to missing firmware. Ideally we would check modules.pcimap # here. From 2e5b6362ae299bf699e5b12f20e8952878b43d75 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Thu, 15 Oct 2015 13:17:37 +0200 Subject: [PATCH 017/148] Bump minimum required Nix version Issue #10337. --- default.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/default.nix b/default.nix index bdbe13b3ea2..e2227b13bbb 100644 --- a/default.nix +++ b/default.nix @@ -1,6 +1,8 @@ -if ! builtins ? nixVersion || builtins.compareVersions "1.8" builtins.nixVersion == 1 then +let requiredVersion = "1.10"; in - abort "This version of Nixpkgs requires Nix >= 1.8, please upgrade! See https://nixos.org/wiki/How_to_update_when_nix_is_too_old_to_evaluate_nixpkgs" +if ! builtins ? nixVersion || builtins.compareVersions requiredVersion builtins.nixVersion == 1 then + + abort "This version of Nixpkgs requires Nix >= ${requiredVersion}, please upgrade! See https://nixos.org/wiki/How_to_update_when_Nix_is_too_old_to_evaluate_Nixpkgs" else From eebbf15da9cd1e2202515264fa4608b8f57e8cd3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mariusz=20=60shd=60=20Gliwi=C5=84ski?= Date: Wed, 14 Oct 2015 17:11:22 +0200 Subject: [PATCH 018/148] dex: init at 0.7 --- pkgs/tools/X11/dex/default.nix | 23 +++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 25 insertions(+) create mode 100644 pkgs/tools/X11/dex/default.nix diff --git a/pkgs/tools/X11/dex/default.nix b/pkgs/tools/X11/dex/default.nix new file mode 100644 index 00000000000..d147ef4a70c --- /dev/null +++ b/pkgs/tools/X11/dex/default.nix @@ -0,0 +1,23 @@ +{ stdenv, fetchFromGitHub, python3 }: + +stdenv.mkDerivation rec { + program = "dex"; + name = "${program}-${version}"; + version = "0.7"; + + src = fetchFromGitHub { + owner = "jceb"; + repo = program; + rev = "v${version}"; + sha256 = "041ms01snalapapaniabr92d8iim1qrxian626nharjmp2rd69v5"; + }; + + propagatedBuildInputs = [ python3 ]; + makeFlags = [ "PREFIX=$(out)" "VERSION=$(version)" ]; + + meta = { + description = "A program to generate and execute DesktopEntry files of the Application type"; + homepage = https://github.com/jceb/dex; + platforms = stdenv.lib.platforms.linux; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 037030f9794..361061ba0a0 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1231,6 +1231,8 @@ let gtk = gtk3; }; + dex = callPackage ../tools/X11/dex { }; + ddccontrol = callPackage ../tools/misc/ddccontrol { }; ddccontrol-db = callPackage ../data/misc/ddccontrol-db { }; From 729098633ca718c960bc01d2bccb29950f2ffa88 Mon Sep 17 00:00:00 2001 From: Florian Paul Schmidt Date: Thu, 15 Oct 2015 14:16:23 +0200 Subject: [PATCH 019/148] 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 2252268ee946edf87aace55e3a7ce8091a622288 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Tue, 13 Oct 2015 23:35:43 +0200 Subject: [PATCH 020/148] pythonPackages.buttersink 0.6.6 -> 0.6.7 --- 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 293a655eb9a..d7bedaec8d4 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -1080,10 +1080,10 @@ let }; buttersink = buildPythonPackage rec { - name = "buttersink-0.6.6"; + name = "buttersink-0.6.7"; src = pkgs.fetchurl { - sha256 = "1vi0pz8r3d17bsn5g7clkyph7sc0rjzbzqk6rwglaxcah7sfj2mj"; + sha256 = "1azd0g0p9qk9wp344jmvqp4wk5f3wpsz3lb750xvnmd7qzf6v377"; url = "https://pypi.python.org/packages/source/b/buttersink/${name}.tar.gz"; }; From 7d64d43b0de93aaa819d63b8c9cab2f5f6e349a0 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Thu, 15 Oct 2015 14:02:09 +0200 Subject: [PATCH 021/148] rsstail 2015-09-06 -> 2.1 --- .../networking/feedreaders/rsstail/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/networking/feedreaders/rsstail/default.nix b/pkgs/applications/networking/feedreaders/rsstail/default.nix index 5786d708cd6..1a36dd8ae20 100644 --- a/pkgs/applications/networking/feedreaders/rsstail/default.nix +++ b/pkgs/applications/networking/feedreaders/rsstail/default.nix @@ -1,12 +1,12 @@ { stdenv, fetchFromGitHub, cppcheck, libmrss }: -let version = "2015-09-06"; in +let version = "2.1"; in stdenv.mkDerivation rec { name = "rsstail-${version}"; src = fetchFromGitHub { - sha256 = "1rfzib5fzm0i8wf3njld1lvxgbci0hxxnvp2qx1k4bwpv744xkpx"; - rev = "16636539e4cc75dafbfa7f05539769be7dad4b66"; + sha256 = "12p69i3g1fwlw0bds9jqsdmzkid3k5a41w31d227i7vm12wcvjf6"; + rev = "6f2436185372b3f945a4989406c4b6a934fe8a95"; repo = "rsstail"; owner = "flok99"; }; @@ -15,7 +15,7 @@ stdenv.mkDerivation rec { ++ stdenv.lib.optional doCheck cppcheck; postPatch = '' - substituteInPlace Makefile --replace -liconv "" + substituteInPlace Makefile --replace -liconv_hook "" ''; makeFlags = "prefix=$(out)"; From 5d5a03f190aae60b739561f8571b95165f27ce4f Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Thu, 15 Oct 2015 14:21:46 +0200 Subject: [PATCH 022/148] eid-mw 4.1.6 -> 4.1.7 --- pkgs/tools/security/eid-mw/default.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/security/eid-mw/default.nix b/pkgs/tools/security/eid-mw/default.nix index fbb8f0321ef..cdafb560565 100644 --- a/pkgs/tools/security/eid-mw/default.nix +++ b/pkgs/tools/security/eid-mw/default.nix @@ -1,12 +1,12 @@ { stdenv, fetchFromGitHub, autoreconfHook, gtk2, nssTools, pcsclite , pkgconfig }: -let version = "4.1.6"; in +let version = "4.1.7"; in stdenv.mkDerivation { name = "eid-mw-${version}"; src = fetchFromGitHub { - sha256 = "006s7093wqmk36mrlakjv89bqddyh599rvmgv0zgsp15vf9160zi"; + sha256 = "1m44s8mzz8gg97xdmbng40279hc4i7q7i7yd45hbagacny0wxi1k"; rev = "v${version}"; repo = "eid-mw"; owner = "Fedict"; @@ -29,10 +29,11 @@ stdenv.mkDerivation { --replace "modutil" "${nssTools}/bin/modutil" # Only provides a useless "about-eid-mw.desktop" that segfaults anyway: - rm -rf $out/share/applications $out/bin/about-eid-mw + rm -r $out/share/applications $out/bin/about-eid-mw ''; meta = with stdenv.lib; { + inherit version; description = "Belgian electronic identity card (eID) middleware"; homepage = http://eid.belgium.be/en/using_your_eid/installing_the_eid_software/linux/; license = licenses.lgpl3; From 7fb7fafe0ff47e1edc225fe2001327c1f70f9481 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 15 Oct 2015 14:35:32 +0200 Subject: [PATCH 023/148] emacs-markdown-mode: add version 2.0-82-gfe30ef7 --- .../emacs-modes/markdown-mode/default.nix | 28 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 7 +++-- 2 files changed, 32 insertions(+), 3 deletions(-) create mode 100644 pkgs/applications/editors/emacs-modes/markdown-mode/default.nix diff --git a/pkgs/applications/editors/emacs-modes/markdown-mode/default.nix b/pkgs/applications/editors/emacs-modes/markdown-mode/default.nix new file mode 100644 index 00000000000..032a2417c20 --- /dev/null +++ b/pkgs/applications/editors/emacs-modes/markdown-mode/default.nix @@ -0,0 +1,28 @@ +{ stdenv, fetchFromGitHub, emacs }: + +let + version = "2.0-82-gfe30ef7"; +in +stdenv.mkDerivation { + name = "markdown-mode-${version}"; + + src = fetchFromGitHub { + owner = "defunkt"; + repo = "markdown-mode"; + rev = "v${version}"; + sha256 = "14a6r05j0g2ppq2q4kd14qyxwr6yv5jwndavbwzkmp6qhmm9k8nz"; + }; + + buildInputs = [ emacs ]; + + buildPhase = '' + emacs -L . --batch -f batch-byte-compile *.el + ''; + + installPhase = '' + install -d $out/share/emacs/site-lisp + install *.el *.elc $out/share/emacs/site-lisp + ''; + + meta.license = stdenv.lib.license.gpl3Plus; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 361061ba0a0..befdae14113 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10453,7 +10453,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; }); @@ -11244,6 +11244,8 @@ let magit = callPackage ../applications/editors/emacs-modes/magit { }; + markdownMode = callPackage ../applications/editors/emacs-modes/markdown-mode { }; + maudeMode = callPackage ../applications/editors/emacs-modes/maude { }; metaweblog = callPackage ../applications/editors/emacs-modes/metaweblog { }; @@ -12392,7 +12394,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; @@ -15207,4 +15209,3 @@ tweakAlias = _n: alias: with lib; else alias; in lib.mapAttrs tweakAlias aliases // self; in pkgs - From 30d82d4a648e6080ec74a87c52ff0183d3f7b4d5 Mon Sep 17 00:00:00 2001 From: Philipp Hausmann Date: Thu, 15 Oct 2015 13:12:40 +0200 Subject: [PATCH 024/148] uhc: Update to 1.1.9.1 --- pkgs/development/compilers/uhc/default.nix | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/pkgs/development/compilers/uhc/default.nix b/pkgs/development/compilers/uhc/default.nix index 017dcfb3e12..b0bd70fab03 100644 --- a/pkgs/development/compilers/uhc/default.nix +++ b/pkgs/development/compilers/uhc/default.nix @@ -1,18 +1,18 @@ { stdenv, coreutils, fetchgit, m4, libtool, clang, ghcWithPackages }: -let wrappedGhc = ghcWithPackages (hpkgs: with hpkgs; [shuffle hashable mtl network uhc-util uulib] ); +let wrappedGhc = ghcWithPackages (hpkgs: with hpkgs; [fgl vector syb uulib network binary hashable uhc-util mtl transformers directory containers array process filepath shuffle uuagc] ); in stdenv.mkDerivation rec { # Important: # The commits "Fixate/tag v..." are the released versions. # Ignore the "bumped version to ...." commits, they do not # correspond to releases. - version = "1.1.9.1.20150611"; + version = "1.1.9.1"; name = "uhc-${version}"; src = fetchgit { url = "https://github.com/UU-ComputerScience/uhc.git"; - rev = "b80098e07d12900f098ea964b1d2b3f38e5c9900"; - sha256 = "14qg1fd9pgbczcmn5ggkd9674qadx1izmz8363ps7c207dg94f9x"; + rev = "ce93d01486972c994ea2bbbd3d43859911120c39"; + sha256 = "1y670sc6ky74l3msayzqjlkjv1kpv3g35pirsq3q79klzvnpyj2x"; }; postUnpack = "sourceRoot=\${sourceRoot}/EHC"; @@ -50,6 +50,5 @@ in stdenv.mkDerivation rec { # On Darwin, the GNU libtool is used, which does not # support the -static flag and thus breaks the build. platforms = ["x86_64-linux"]; - broken = true; # https://github.com/UU-ComputerScience/uhc/issues/60 }; } 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/148] 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 c7105ce93926829feb218818f0181f8f9a6e68b1 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 15 Oct 2015 15:14:34 +0200 Subject: [PATCH 026/148] emacs-markdown-mode: fix misspelled license attribute --- pkgs/applications/editors/emacs-modes/markdown-mode/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/editors/emacs-modes/markdown-mode/default.nix b/pkgs/applications/editors/emacs-modes/markdown-mode/default.nix index 032a2417c20..7176b289b8b 100644 --- a/pkgs/applications/editors/emacs-modes/markdown-mode/default.nix +++ b/pkgs/applications/editors/emacs-modes/markdown-mode/default.nix @@ -24,5 +24,5 @@ stdenv.mkDerivation { install *.el *.elc $out/share/emacs/site-lisp ''; - meta.license = stdenv.lib.license.gpl3Plus; + meta.license = stdenv.lib.licenses.gpl3Plus; } From 1663d3eb6e7adfe6e6a98bc49b5263a4747e0bc7 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Tue, 13 Oct 2015 15:08:46 +0300 Subject: [PATCH 027/148] urxvt_perls: 2015-03-28 -> 2.2 --- .../rxvt_unicode-plugins/urxvt-perls/default.nix | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/pkgs/applications/misc/rxvt_unicode-plugins/urxvt-perls/default.nix b/pkgs/applications/misc/rxvt_unicode-plugins/urxvt-perls/default.nix index 6a1acca48d9..03a505591b7 100644 --- a/pkgs/applications/misc/rxvt_unicode-plugins/urxvt-perls/default.nix +++ b/pkgs/applications/misc/rxvt_unicode-plugins/urxvt-perls/default.nix @@ -1,12 +1,14 @@ -{ stdenv, fetchgit }: +{ stdenv, fetchFromGitHub }: -stdenv.mkDerivation { - name = "urxvt-perls-2015-03-28"; +stdenv.mkDerivation rec { + name = "urxvt-perls-${version}"; + version = "2.2"; - src = fetchgit { - url = "git://github.com/muennich/urxvt-perls"; - rev = "e4dbde31edd19e2f4c2b6c91117ee91e2f83ddd7"; - sha256 = "1f8a27c3d54377fdd4ab0be2f4efb8329d4900bb1c792b306dc23b5ee59260b1"; + src = fetchFromGitHub { + owner = "muennich"; + repo = "urxvt-perls"; + rev = version; + sha256 = "1cb0jbjmwfy2dlq2ny8wpc04k79jp3pz9qhbmgagsxs3sp1jg2hz"; }; installPhase = '' From 2a117cda417ca4b2e8a7243cccde164d3fca6364 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Tue, 13 Oct 2015 15:11:54 +0300 Subject: [PATCH 028/148] yed: 3.14.3 -> 3.14.4 --- pkgs/applications/graphics/yed/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/graphics/yed/default.nix b/pkgs/applications/graphics/yed/default.nix index e3b7d001174..51c41e01bf9 100644 --- a/pkgs/applications/graphics/yed/default.nix +++ b/pkgs/applications/graphics/yed/default.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, requireFile, makeWrapper, unzip, jre }: stdenv.mkDerivation rec { - name = "yEd-3.14.3"; + name = "yEd-3.14.4"; src = requireFile { name = "${name}.zip"; url = "https://www.yworks.com/en/products/yfiles/yed/"; - sha256 = "0xgazknbz82sgk65hxmvbycl1vd25z80a7jgwjgw7syicrgmplcl"; + sha256 = "0pm271ss6cq2s6cv9ww92haaq2abkjxd9dvc8d72h6af5awv8xy6"; }; nativeBuildInputs = [ unzip makeWrapper ]; From 5877d74f03f8164af91850d439d7cc584c006d6e Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Tue, 13 Oct 2015 15:14:24 +0300 Subject: [PATCH 029/148] rxvt_unicode: add patch to fix Shift+PgUp/PgDown bug --- pkgs/applications/misc/rxvt_unicode/default.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pkgs/applications/misc/rxvt_unicode/default.nix b/pkgs/applications/misc/rxvt_unicode/default.nix index c1d74c247ce..325a42b70b1 100644 --- a/pkgs/applications/misc/rxvt_unicode/default.nix +++ b/pkgs/applications/misc/rxvt_unicode/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, perlSupport, libX11, libXt, libXft, ncurses, perl, +{ stdenv, fetchurl, fetchpatch, perlSupport, libX11, libXt, libXft, ncurses, perl, fontconfig, freetype, pkgconfig, libXrender, gdkPixbufSupport, gdk_pixbuf, unicode3Support }: @@ -28,6 +28,10 @@ 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 1c79177d4cb697acac88d9c1f62877d160c15c4c Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Tue, 13 Oct 2015 15:23:15 +0300 Subject: [PATCH 030/148] pidginlatex: use new texlive --- pkgs/top-level/all-packages.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index befdae14113..c91318fbd0c 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -12433,7 +12433,9 @@ let plugins = []; }; - pidginlatex = callPackage ../applications/networking/instant-messengers/pidgin-plugins/pidgin-latex { }; + pidginlatex = callPackage ../applications/networking/instant-messengers/pidgin-plugins/pidgin-latex { + texLive = texlive.combined.scheme-basic; + }; pidginlatexSF = pidginlatex; From 273a4f21920725f2e1b87ef14a247edfeb349913 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Tue, 13 Oct 2015 15:23:28 +0300 Subject: [PATCH 031/148] pidginlatexSF: move to deprecated aliases --- pkgs/top-level/all-packages.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index c91318fbd0c..dbafc1050bd 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -12437,8 +12437,6 @@ let texLive = texlive.combined.scheme-basic; }; - pidginlatexSF = pidginlatex; - pidginmsnpecan = callPackage ../applications/networking/instant-messengers/pidgin-plugins/msn-pecan { }; pidgin-mra = callPackage ../applications/networking/instant-messengers/pidgin-plugins/pidgin-mra { }; @@ -15203,6 +15201,7 @@ aliases = with self; rec { xlibs = xorg; # added 2015-09 youtube-dl = pythonPackages.youtube-dl; # added 2015-06-07 youtubeDL = youtube-dl; # added 2014-10-26 + pidginlatexSF = pidginlatex; # added 2014-11-02 }; tweakAlias = _n: alias: with lib; From a8ae9b2e4206a25c6f3139ded84110d6e041ac0f Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Tue, 13 Oct 2015 15:28:17 +0300 Subject: [PATCH 032/148] libbluray: 0.8.1 -> 0.9.0 --- pkgs/development/libraries/libbluray/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/libbluray/default.nix b/pkgs/development/libraries/libbluray/default.nix index d8571254967..77fa6dec43e 100644 --- a/pkgs/development/libraries/libbluray/default.nix +++ b/pkgs/development/libraries/libbluray/default.nix @@ -19,12 +19,12 @@ assert withFonts -> freetype != null; stdenv.mkDerivation rec { baseName = "libbluray"; - version = "0.8.1"; + version = "0.9.0"; name = "${baseName}-${version}"; src = fetchurl { url = "ftp://ftp.videolan.org/pub/videolan/${baseName}/${version}/${name}.tar.bz2"; - sha256 = "13zvkrwy2fr877gkifgwnqfsb3krbz7hklfcwqfjbhmvqn0cdgnd"; + sha256 = "0kb9znxk6610vi0fjhqxn4z5i98nvxlsz1f8dakj99rg42livdl4"; }; nativeBuildInputs = [ pkgconfig autoreconfHook ] From d54a45906384929a6a9910cb559a6aa952d3199f Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Tue, 13 Oct 2015 15:30:49 +0300 Subject: [PATCH 033/148] ipopt: 3.12.3 -> 3.12.4 --- pkgs/development/libraries/science/math/ipopt/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/science/math/ipopt/default.nix b/pkgs/development/libraries/science/math/ipopt/default.nix index 89d2a242f96..f9897e4add3 100644 --- a/pkgs/development/libraries/science/math/ipopt/default.nix +++ b/pkgs/development/libraries/science/math/ipopt/default.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, unzip, openblas, gfortran }: stdenv.mkDerivation rec { - version = "3.12.3"; + version = "3.12.4"; name = "ipopt-${version}"; src = fetchurl { url = "http://www.coin-or.org/download/source/Ipopt/Ipopt-${version}.zip"; - sha256 = "0h8qx3hq2m21qrg4v3n26v2qbhl6saxrpa7rbhnmkkcfj5s942yr"; + sha256 = "0hxmpi3zx5zgv2ijscdvc40xf88hx5if0d9sgch155z70g15wx0l"; }; preConfigure = '' From 786b657031904e3a2b2a7c646a22f1a75a2744fb Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Tue, 13 Oct 2015 15:31:11 +0300 Subject: [PATCH 034/148] cppzmq: 2015-07-06 -> 20150926 --- pkgs/development/libraries/cppzmq/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/libraries/cppzmq/default.nix b/pkgs/development/libraries/cppzmq/default.nix index 282ad7bfcd7..f74ee51cab2 100644 --- a/pkgs/development/libraries/cppzmq/default.nix +++ b/pkgs/development/libraries/cppzmq/default.nix @@ -1,12 +1,12 @@ { stdenv, fetchgit }: stdenv.mkDerivation rec { - name = "cppzmq-2015-07-06"; + name = "cppzmq-20150926"; src = fetchgit { url = "https://github.com/zeromq/cppzmq"; - rev = "a88bf3e0b0bc6ed5f5b25a58f8997a1dae374c8b"; - sha256 = "75a6630b870c1f0d5b9d6a0ba03e83ceee47aaa2a253894e75a8a93a6d65d3aa"; + rev = "fa2f2c67a79c31d73bfef6862cc8ce12a98dd022"; + sha256 = "7b46712b5fa7e59cd0ffae190674046c71d5762c064003c125d6cd7a3da19b71"; }; installPhase = '' From f2ce7bb0a595f2bb49aa90a2266b433c16d5264a Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Tue, 13 Oct 2015 16:09:32 +0300 Subject: [PATCH 035/148] folly: 2015-09-17 -> 0.57.0 --- pkgs/development/libraries/folly/default.nix | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/pkgs/development/libraries/folly/default.nix b/pkgs/development/libraries/folly/default.nix index 4659ba21123..046b7f97ba4 100644 --- a/pkgs/development/libraries/folly/default.nix +++ b/pkgs/development/libraries/folly/default.nix @@ -1,21 +1,29 @@ -{ stdenv, fetchFromGitHub, autoreconfHook, boost, libevent, double_conversion, glog +{ stdenv, fetchFromGitHub, fetchpatch, autoreconfHook, boost, libevent, double_conversion, glog , google-gflags, python, libiberty, openssl }: stdenv.mkDerivation rec { - version = "2015-09-17"; + version = "0.57.0"; name = "folly-${version}"; src = fetchFromGitHub { owner = "facebook"; repo = "folly"; - rev = "e4527fb5d04f5fec823bd6a2402b620a6e1a64e3"; - sha256 = "0iicq19yylafr7qs221xgk8pcwf6nnyx6srgsx9y9cyf72siadcb"; + rev = "v${version}"; + sha256 = "12b9bkwmndfwmsknc209kpplxn9wqmwr3p2h0l2szrppq4qqyfq9"; }; + patches = [ + # Fix compatibility with Boost 1.59 + (fetchpatch { + url = "https://github.com/facebook/folly/commit/29193aca605bb93d82a3c92acd95bb342115f3a4.patch"; + sha256 = "1ixpgq1wjr3i7madx4faw72n17ilc9cr435k5w1x95jr954m9j7b"; + }) + ]; + nativeBuildInputs = [ autoreconfHook python ]; buildInputs = [ libiberty boost libevent double_conversion glog google-gflags openssl ]; - postUnpack = "sourceRoot=\${sourceRoot}/folly"; + postPatch = "cd folly"; preBuild = '' patchShebangs build ''; From fdebbd5fa68a0b19b1245dd851bf002d69798686 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Thu, 15 Oct 2015 16:54:47 +0300 Subject: [PATCH 036/148] onscripter-en: update homepage --- pkgs/games/onscripter-en/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/games/onscripter-en/default.nix b/pkgs/games/onscripter-en/default.nix index 8e9f5a988bf..ab60041aa30 100644 --- a/pkgs/games/onscripter-en/default.nix +++ b/pkgs/games/onscripter-en/default.nix @@ -26,7 +26,7 @@ stdenv.mkDerivation rec { meta = with stdenv.lib; { description = "Japanese visual novel scripting engine"; - homepage = "http://dev.haeleth.net/onscripter.shtml"; + homepage = "http://unclemion.com/onscripter/"; license = licenses.gpl2; platforms = platforms.unix; maintainers = with maintainers; [ abbradar ]; From 646986d5ded94dd2c32f8c869eb1c7d77e94454e Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Thu, 15 Oct 2015 16:57:47 +0300 Subject: [PATCH 037/148] crawl: 0.16.1 -> 0.16.2 --- pkgs/games/crawl/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/games/crawl/default.nix b/pkgs/games/crawl/default.nix index 43dc3409591..06151365060 100644 --- a/pkgs/games/crawl/default.nix +++ b/pkgs/games/crawl/default.nix @@ -3,7 +3,7 @@ , tileMode ? true }: -let version = "0.16.1"; +let version = "0.16.2"; in stdenv.mkDerivation rec { name = "crawl-${version}" + (if tileMode then "-tiles" else ""); @@ -11,7 +11,7 @@ stdenv.mkDerivation rec { owner = "crawl-ref"; repo = "crawl-ref"; rev = version; - sha256 = "0gciqaij05qr5bwkk5mblvk5k0p6bzjd58czk1b6x5xx5qcp6mmh"; + sha256 = "08ns49if8941vsg6abywgw3mnjafgj5sga0cdvvvviq0qqzprhw9"; }; patches = [ ./crawl_purify.patch ]; From a0343c3711733a16c79e645db2f1f14c955e98ae Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Thu, 15 Oct 2015 16:58:01 +0300 Subject: [PATCH 038/148] android-udev-rules: 20150821 -> 20150920 --- pkgs/os-specific/linux/android-udev-rules/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/os-specific/linux/android-udev-rules/default.nix b/pkgs/os-specific/linux/android-udev-rules/default.nix index 3f763e917e3..137a362bcd8 100644 --- a/pkgs/os-specific/linux/android-udev-rules/default.nix +++ b/pkgs/os-specific/linux/android-udev-rules/default.nix @@ -1,12 +1,12 @@ { stdenv, fetchgit }: stdenv.mkDerivation { - name = "android-udev-rules-20150821"; + name = "android-udev-rules-20150920"; src = fetchgit { url = "https://github.com/M0Rf30/android-udev-rules"; - rev = "07ccded2a89c2bb6da984e596c015c5e9546e497"; - sha256 = "953fc10bd0de46afef999dc1c1b20801b3d6e289af48d18fa96b1cac3ac54518"; + rev = "d2e89a3f6deb096071b15e18b9e3608a02d62437"; + sha256 = "bdc553a1eb4efc4e85866f61f50f2c2f7b8d09d2eb5122afad7c9b38e0fdc4fb"; }; installPhase = '' From 8dec927f460dcae34c0f2d9f83283b1abc042581 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Thu, 15 Oct 2015 17:00:00 +0300 Subject: [PATCH 039/148] uwsgi: 2.0.11.1 -> 2.0.11.2 --- pkgs/servers/uwsgi/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/uwsgi/default.nix b/pkgs/servers/uwsgi/default.nix index e7e7502665f..89260109e26 100644 --- a/pkgs/servers/uwsgi/default.nix +++ b/pkgs/servers/uwsgi/default.nix @@ -24,11 +24,11 @@ in assert builtins.filter (x: lib.all (y: y.name != x) available) plugins == []; stdenv.mkDerivation rec { - name = "uwsgi-2.0.11.1"; + name = "uwsgi-2.0.11.2"; src = fetchurl { url = "http://projects.unbit.it/downloads/${name}.tar.gz"; - sha256 = "11v2j9n204hlvi1p1wp4r3nn22fqyd1qlbqcfqddi77sih9x79vm"; + sha256 = "0p482j4yi48bmpgx1qpdfk86hjn4dswb137jbmigdlrd9l5rp20b"; }; nativeBuildInputs = [ python3 pkgconfig ]; From 0645e6b43f88c07536788f8aeea72f737d31f52f Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Thu, 15 Oct 2015 17:02:01 +0300 Subject: [PATCH 040/148] sdl-jstest: 20150625 -> 20150806 --- pkgs/tools/misc/sdl-jstest/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/misc/sdl-jstest/default.nix b/pkgs/tools/misc/sdl-jstest/default.nix index cf62039fc03..677f52c2c32 100644 --- a/pkgs/tools/misc/sdl-jstest/default.nix +++ b/pkgs/tools/misc/sdl-jstest/default.nix @@ -1,11 +1,11 @@ { fetchgit, stdenv, cmake, pkgconfig, SDL, SDL2, ncurses, docbook_xsl }: stdenv.mkDerivation rec { - name = "sdl-jstest-20150625"; + name = "sdl-jstest-20150806"; src = fetchgit { url = "https://github.com/Grumbel/sdl-jstest"; - rev = "3f54b86ebe0d2f95e9c1d034bc4ed02d6d2b6409"; - sha256 = "d33e0a2c66b551ecf333590f1a6e1730093af31cee1be8757748624d42e14df1"; + rev = "7b792376178c9656c851ddf106c7d57b2495e8b9"; + sha256 = "3aa9a002de9c9999bd7c6248b94148f15dba6106489e418b2a1a410324f75eb8"; }; buildInputs = [ SDL SDL2 ncurses ]; From 43930f40571c98ebd07b492b6def4a4e7bc5a587 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Thu, 15 Oct 2015 17:03:49 +0300 Subject: [PATCH 041/148] tlp: 0.7 -> 0.8 --- pkgs/tools/misc/tlp/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/misc/tlp/default.nix b/pkgs/tools/misc/tlp/default.nix index 1e90ecfee32..4f90b432d04 100644 --- a/pkgs/tools/misc/tlp/default.nix +++ b/pkgs/tools/misc/tlp/default.nix @@ -1,7 +1,7 @@ { stdenv, fetchFromGitHub, makeWrapper, perl, systemd, iw, rfkill, hdparm, ethtool, inetutils, kmod , enableRDW ? true, networkmanager }: -let version = "0.7"; +let version = "0.8"; in stdenv.mkDerivation { inherit enableRDW; @@ -11,7 +11,7 @@ in stdenv.mkDerivation { owner = "linrunner"; repo = "TLP"; rev = "${version}"; - sha256 = "0vgx2jnk9gp41fw992l9dmv462jpcrnwqkzsa8z0lh0l77ax2jcg"; + sha256 = "19fvk0xz6i2ryf41akk4jg1c4sb4rcyxdl9fr0w4lja7g76d5zww"; }; makeFlags = [ "DESTDIR=$(out)" From 25033c50e8ae1b73e963b81195a5dde64965d3fd Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Thu, 15 Oct 2015 17:04:57 +0300 Subject: [PATCH 042/148] update-resolv-conf: 2014-10-03 -> 20141003 --- pkgs/tools/networking/openvpn/update-resolv-conf.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/tools/networking/openvpn/update-resolv-conf.nix b/pkgs/tools/networking/openvpn/update-resolv-conf.nix index de04c1419e2..f5937f05004 100644 --- a/pkgs/tools/networking/openvpn/update-resolv-conf.nix +++ b/pkgs/tools/networking/openvpn/update-resolv-conf.nix @@ -1,7 +1,7 @@ { stdenv, fetchgit, makeWrapper, openresolv, coreutils }: stdenv.mkDerivation rec { - name = "update-resolv-conf-2014-10-03"; + name = "update-resolv-conf-20141003"; src = fetchgit { url = https://github.com/masterkorp/openvpn-update-resolv-conf/; From 62e676b9598d2638e846761160082f6fec392ffe Mon Sep 17 00:00:00 2001 From: Sander van der Burg Date: Thu, 15 Oct 2015 14:42:24 +0000 Subject: [PATCH 043/148] androidenv: fix broken, less frequently used command-line tools --- .../mobile/androidenv/androidsdk.nix | 13 +++++++++++-- .../mobile/androidenv/build-tools.nix | 17 +++++++++++++---- pkgs/development/mobile/androidenv/default.nix | 2 ++ .../mobile/androidenv/platform-tools.nix | 12 +++++++++--- 4 files changed, 35 insertions(+), 9 deletions(-) diff --git a/pkgs/development/mobile/androidenv/androidsdk.nix b/pkgs/development/mobile/androidenv/androidsdk.nix index bc994603ab4..055c307f2cc 100644 --- a/pkgs/development/mobile/androidenv/androidsdk.nix +++ b/pkgs/development/mobile/androidenv/androidsdk.nix @@ -53,12 +53,21 @@ stdenv.mkDerivation rec { done ''} - # The android script used SWT and wants to dynamically load some GTK+ stuff. - # The following wrapper ensures that they can be found: + # The following scripts used SWT and wants to dynamically load some GTK+ stuff. + # Creating these wrappers ensure that they can be found: + wrapProgram `pwd`/android \ --prefix PATH : ${jdk}/bin \ --prefix LD_LIBRARY_PATH : ${glib}/lib:${gtk}/lib:${libXtst}/lib + wrapProgram `pwd`/uiautomatorviewer \ + --prefix PATH : ${jdk}/bin \ + --prefix LD_LIBRARY_PATH : ${glib}/lib:${gtk}/lib:${libXtst}/lib + + wrapProgram `pwd`/hierarchyviewer \ + --prefix PATH : ${jdk}/bin \ + --prefix LD_LIBRARY_PATH : ${glib}/lib:${gtk}/lib:${libXtst}/lib + # The emulators need additional libraries, which are dynamically loaded => let's wrap them for i in emulator emulator-arm emulator-mips emulator-x86 diff --git a/pkgs/development/mobile/androidenv/build-tools.nix b/pkgs/development/mobile/androidenv/build-tools.nix index a73eae3f50c..1b49c8f6fc4 100644 --- a/pkgs/development/mobile/androidenv/build-tools.nix +++ b/pkgs/development/mobile/androidenv/build-tools.nix @@ -1,4 +1,4 @@ -{stdenv, stdenv_32bit, fetchurl, unzip, zlib_32bit}: +{stdenv, stdenv_32bit, fetchurl, unzip, zlib_32bit, ncurses_32bit}: stdenv.mkDerivation rec { version = "23.0.1"; @@ -24,7 +24,7 @@ stdenv.mkDerivation rec { cd android-* # Patch the interpreter - for i in aapt aidl dexdump llvm-rs-cc + for i in aapt aidl bcc_compat dexdump llvm-rs-cc do patchelf --set-interpreter ${stdenv_32bit.cc.libc}/lib/ld-linux.so.2 $i done @@ -36,13 +36,22 @@ stdenv.mkDerivation rec { done # These binaries need to find libstdc++, libgcc_s and libraries in the current folder - for i in lib/libbcc.so lib/libbcinfo.so lib/libclang.so llvm-rs-cc + for i in lib/libbcc.so lib/libbcinfo.so lib/libclang.so aidl do patchelf --set-rpath ${stdenv_32bit.cc.cc}/lib:`pwd`/lib $i done + + # Create link to make libtinfo.so.5 work + ln -s ${ncurses_32bit}/lib/libncurses.so.5 `pwd`/lib/libtinfo.so.5 + + # These binaries need to find libstdc++, libgcc_s, ncurses, and libraries in the current folder + for i in bcc_compat llvm-rs-cc + do + patchelf --set-rpath ${stdenv_32bit.cc.cc}/lib:${ncurses_32bit}/lib:`pwd`/lib $i + done # These binaries also need zlib in addition to libstdc++ - for i in zipalign + for i in arm-linux-androideabi-ld i686-linux-android-ld mipsel-linux-android-ld split-select zipalign do patchelf --set-interpreter ${stdenv_32bit.cc.libc}/lib/ld-linux.so.2 $i patchelf --set-rpath ${stdenv_32bit.cc.cc}/lib:${zlib_32bit}/lib:`pwd`/lib $i diff --git a/pkgs/development/mobile/androidenv/default.nix b/pkgs/development/mobile/androidenv/default.nix index ed8e838722c..86d82abbea4 100644 --- a/pkgs/development/mobile/androidenv/default.nix +++ b/pkgs/development/mobile/androidenv/default.nix @@ -4,12 +4,14 @@ rec { platformTools = import ./platform-tools.nix { inherit (pkgs) stdenv fetchurl unzip; stdenv_32bit = pkgs_i686.stdenv; + zlib_32bit = pkgs_i686.zlib; }; buildTools = import ./build-tools.nix { inherit (pkgs) stdenv fetchurl unzip; stdenv_32bit = pkgs_i686.stdenv; zlib_32bit = pkgs_i686.zlib; + ncurses_32bit = pkgs_i686.ncurses; }; support = import ./support.nix { diff --git a/pkgs/development/mobile/androidenv/platform-tools.nix b/pkgs/development/mobile/androidenv/platform-tools.nix index d217d57643d..1243ba429a3 100644 --- a/pkgs/development/mobile/androidenv/platform-tools.nix +++ b/pkgs/development/mobile/androidenv/platform-tools.nix @@ -1,4 +1,4 @@ -{stdenv, stdenv_32bit, fetchurl, unzip}: +{stdenv, stdenv_32bit, zlib_32bit, fetchurl, unzip}: stdenv.mkDerivation rec { version = "23.0.1"; @@ -22,10 +22,16 @@ stdenv.mkDerivation rec { ${stdenv.lib.optionalString (stdenv.system == "i686-linux" || stdenv.system == "x86_64-linux") '' - for i in adb fastboot + for i in adb dmtracedump fastboot hprof-conv sqlite3 do patchelf --set-interpreter ${stdenv_32bit.cc.libc}/lib/ld-linux.so.2 $i - patchelf --set-rpath ${stdenv_32bit.cc.cc}/lib $i + patchelf --set-rpath ${stdenv_32bit.cc.cc}/lib:`pwd`/lib $i + done + + for i in etc1tool + do + patchelf --set-interpreter ${stdenv_32bit.cc.libc}/lib/ld-linux.so.2 $i + patchelf --set-rpath ${stdenv_32bit.cc.cc}/lib:${zlib_32bit}/lib:`pwd`/lib $i done ''} From 01a903335c2767e2a2533db572c22d3c5353a8db Mon Sep 17 00:00:00 2001 From: Pavan Rikhi Date: Thu, 15 Oct 2015 11:40:37 -0400 Subject: [PATCH 044/148] 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 045/148] 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 046/148] 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 047/148] 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 048/148] 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 049/148] 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 050/148] 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 051/148] 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 052/148] 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 053/148] 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 054/148] 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 055/148] 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 056/148] 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 057/148] 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 058/148] 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 059/148] 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 060/148] 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 061/148] 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 062/148] 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 063/148] 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 064/148] 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 065/148] 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 066/148] 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 067/148] 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 068/148] 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 069/148] 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 070/148] 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 071/148] 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 072/148] 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 073/148] 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 074/148] 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 075/148] 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 076/148] 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 077/148] 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 078/148] 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 079/148] 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 080/148] 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 081/148] 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 082/148] 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 29119dfb69d9736f215bbcb9dc8b05d439dc86ed Mon Sep 17 00:00:00 2001 From: Igor Sharonov Date: Sat, 17 Oct 2015 09:22:33 +0300 Subject: [PATCH 083/148] 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 084/148] 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 085/148] 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 086/148] 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 087/148] 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 088/148] 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 089/148] 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 090/148] 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 091/148] 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 092/148] 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 093/148] 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 094/148] 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 095/148] 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 096/148] 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 097/148] 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 098/148] 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 099/148] 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 100/148] 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 101/148] 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 102/148] 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 103/148] 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 104/148] 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 105/148] 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 106/148] 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 107/148] 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 108/148] 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 109/148] 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 110/148] 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 111/148] 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 112/148] 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 113/148] 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 114/148] 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 af86a58051d858dc70b52ae551600f90a08d7bc1 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Mon, 19 Oct 2015 00:01:32 +0200 Subject: [PATCH 115/148] 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 116/148] 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 117/148] 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 118/148] 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 119/148] 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 120/148] 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 121/148] 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 122/148] 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 123/148] 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 124/148] 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 125/148] 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 126/148] 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 127/148] 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 128/148] 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 129/148] 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 130/148] 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 131/148] 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 132/148] 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 133/148] 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 134/148] 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 135/148] 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 136/148] 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 137/148] 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 138/148] 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 139/148] 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 140/148] 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 141/148] 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 142/148] 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 143/148] 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 144/148] 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 145/148] 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 146/148] 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 147/148] 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 148/148] 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" ;