From e6cd147ae7ae05900ec2ab8ad933bfac7428feac Mon Sep 17 00:00:00 2001 From: Ryan Artecona Date: Fri, 22 Jan 2016 14:22:12 -0500 Subject: [PATCH 001/268] nixos manual: allow options from nix packages --- nixos/doc/manual/default.nix | 24 ++++++++++++++++-------- 1 file changed, 16 insertions(+), 8 deletions(-) diff --git a/nixos/doc/manual/default.nix b/nixos/doc/manual/default.nix index bd558dac971..eb2ceb7fd02 100644 --- a/nixos/doc/manual/default.nix +++ b/nixos/doc/manual/default.nix @@ -1,4 +1,4 @@ -{ pkgs, options, version, revision }: +{ pkgs, options, version, revision, extraSources ? [] }: with pkgs; with pkgs.lib; @@ -17,19 +17,27 @@ let # Clean up declaration sites to not refer to the NixOS source tree. optionsList' = flip map optionsList (opt: opt // { - declarations = map (fn: stripPrefix fn) opt.declarations; + declarations = map (fn: stripAnyPrefixes fn) opt.declarations; } // optionalAttrs (opt ? example) { example = substFunction opt.example; } // optionalAttrs (opt ? default) { default = substFunction opt.default; } // optionalAttrs (opt ? type) { type = substFunction opt.type; }); - prefix = toString ../../..; + # We need to strip references to /nix/store/* from options, + # including any `extraSources` if some modules came from elsewhere, + # or else the build will fail. + # + # E.g. if some `options` came from modules in ${pkgs.customModules}/nix, + # you'd need to include `extraSources = [ "#{pkgs.customModules}" ]` + herePrefix = toString ../../..; + prefixesToStrip = [ herePrefix ] ++ extraSources; - stripPrefix = fn: - if substring 0 (stringLength prefix) fn == prefix then - substring (stringLength prefix + 1) 1000 fn - else - fn; + stripAnyPrefixes = fn: + flip (flip fold fn) prefixesToStrip (fn: prefix: + if substring 0 (stringLength prefix) fn == prefix then + substring (stringLength prefix + 1) 1000 fn + else + fn); # Convert the list of options into an XML file. optionsXML = builtins.toFile "options.xml" (builtins.toXML optionsList'); From 9790094f23f199da3e849df659d6151d8d9fa171 Mon Sep 17 00:00:00 2001 From: Patrick Mahoney Date: Sat, 23 Jan 2016 21:49:50 -0600 Subject: [PATCH 002/268] libgdiplus: build on darwin --- pkgs/development/libraries/libgdiplus/default.nix | 5 +++-- pkgs/top-level/all-packages.nix | 4 +++- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/pkgs/development/libraries/libgdiplus/default.nix b/pkgs/development/libraries/libgdiplus/default.nix index 56bc72acff0..60995046982 100644 --- a/pkgs/development/libraries/libgdiplus/default.nix +++ b/pkgs/development/libraries/libgdiplus/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, pkgconfig, glib, cairo, fontconfig +{ stdenv, fetchurl, pkgconfig, glib, cairo, Carbon, fontconfig , libtiff, giflib, libungif, libjpeg, libpng, monoDLLFixer , libXrender, libexif }: @@ -25,5 +25,6 @@ stdenv.mkDerivation rec { buildInputs = [ pkgconfig glib cairo fontconfig libtiff giflib libungif libjpeg libpng libXrender libexif - ]; + ] + ++ stdenv.lib.optional stdenv.isDarwin Carbon; } diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 1c283e4acb1..7801abec048 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -7267,7 +7267,9 @@ let libgcrypt_1_5 = callPackage ../development/libraries/libgcrypt/1.5.nix { }; - libgdiplus = callPackage ../development/libraries/libgdiplus { }; + libgdiplus = callPackage ../development/libraries/libgdiplus { + inherit (darwin.apple_sdk.frameworks) Carbon; + }; libgksu = callPackage ../development/libraries/libgksu { }; From 312bae7fc07c846d70751ff2d414db2b11c43563 Mon Sep 17 00:00:00 2001 From: Reno Reckling Date: Sun, 24 Jan 2016 11:18:30 +0100 Subject: [PATCH 003/268] nixos-ssh: set SSH_ASKPASS globally and not just on interactive shells If we limit SSH_ASKPASS to interactive shells, users are unable to trigger the ssh-passphrase dialog from their desktop environment autostart scripts. Usecase: I call ssh-add during my desktop environment autostart and want to have the passphrase dialog immediately after startup. For this to work, SSH_ASKPASS needs to be propagated properly on non-interactive shells. --- nixos/modules/programs/ssh.nix | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/nixos/modules/programs/ssh.nix b/nixos/modules/programs/ssh.nix index 260888be485..2da8ff738fb 100644 --- a/nixos/modules/programs/ssh.nix +++ b/nixos/modules/programs/ssh.nix @@ -221,10 +221,7 @@ in fi ''; - environment.interactiveShellInit = optionalString config.services.xserver.enable - '' - export SSH_ASKPASS=${askPassword} - ''; + environment.variables.SSH_ASKPASS = optionalString config.services.xserver.enable askPassword; programs.ssh.askPassword = mkDefault "${pkgs.x11_ssh_askpass}/libexec/x11-ssh-askpass"; From 4537bbf8b9e51a4c700564789642b9e5b498d506 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Fri, 22 Jan 2016 13:53:28 +0100 Subject: [PATCH 004/268] pythonPackages.CommonMark: 0.5.4 -> 0.6.3 --- pkgs/top-level/python-packages.nix | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 2793f3ce321..ede5bf0e52a 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -2971,13 +2971,18 @@ in modules // { CommonMark = buildPythonPackage rec { name = "CommonMark-${version}"; - version = "0.5.4"; + version = "0.6.3"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/C/CommonMark/${name}.tar.gz"; - sha256 = "34d73ec8085923c023930dfc0bcd1c4286e28a2a82de094bb72fabcc0281cbe5"; + sha256 = "ee5a88f23678794592efe3fc11033f17fc77b3296a85f5e1d5b715f8e110a773"; }; + LC_ALL="en_US.UTF-8"; + + buildInputs = with self; [ flake8 pkgs.glibcLocales ]; + propagatedBuildInputs = with self; [ future ]; + meta = { description = "Python parser for the CommonMark Markdown spec"; homepage = https://github.com/rolandshoemaker/CommonMark-py; From 7df300952222eed0938b5d3fecfa299a5626fa47 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Fri, 22 Jan 2016 13:53:59 +0100 Subject: [PATCH 005/268] pythonPackages.dask: 0.7.5 -> 0.7.6 --- 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 ede5bf0e52a..85025c5ef81 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -4035,11 +4035,11 @@ in modules // { dask = buildPythonPackage rec { name = "dask-${version}"; - version = "0.7.5"; + version = "0.7.6"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/d/dask/${name}.tar.gz"; - sha256 = "05s1jz3y7llzh3373ab6yx0fb47f0mfy9xyqbknkwsnhabj6g2ib"; + sha256 = "ff27419e059715907afefe6cbcc1f8c748855c7a93be25be211dabcb689cee3b"; }; propagatedBuildInputs = with self; [numpy toolz dill]; From 9302637819e75097b45b78cb4095c12dcca08af1 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Fri, 22 Jan 2016 13:54:17 +0100 Subject: [PATCH 006/268] pythonPackages.jupyter_console: 4.0.3 -> 4.1.0 --- pkgs/top-level/python-packages.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 85025c5ef81..07d92c47c13 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -5880,14 +5880,15 @@ in modules // { }; jupyter_console = buildPythonPackage rec { - version = "4.0.3"; + version = "4.1.0"; name = "jupyter_console-${version}"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/j/jupyter_console/${name}.tar.gz"; - sha256 = "555be6963a8f6431fbe1d424c7ffefee90824758058e4c9a2ab3aa045948eb85"; + sha256 = "3f9703b632e38d68713fc2ea1f546edc4db2a8f925c94b6dd91a8d0c13816ce9"; }; + buildInputs = with self; [ nose ]; propagatedBuildInputs = with self; [ jupyter_client ipython From 390d6016feb66a3291262b292306b481104d1411 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Fri, 22 Jan 2016 13:54:33 +0100 Subject: [PATCH 007/268] pythonPackages.ipykernel: 4.2.0 -> 4.2.2 --- pkgs/top-level/python-packages.nix | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 07d92c47c13..12b2aa96ce2 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -9663,16 +9663,25 @@ in modules // { }; ipykernel = buildPythonPackage rec { - version = "4.2.0"; + version = "4.2.2"; name = "ipykernel-${version}"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/i/ipykernel/${name}.tar.gz"; - sha256 = "723b3d4baac20f0c9cd91fc75c3e813636ecb6c6e303fb34d628c3df078985a7"; + sha256 = "a876da43e01acec2c305abdd8e6aa55f052bab1196171ccf1cb9a6aa230298b0"; }; - buildInputs = with self; [] ++ optionals isPy27 [mock]; - propagatedBuildInputs = with self; [ipython traitlets jupyter_client pexpect]; + buildInputs = with self; [ nose ] ++ optionals isPy27 [mock]; + propagatedBuildInputs = with self; [ + ipython + jupyter_client + pexpect + traitlets + ]; + + # Tests require backends. + # I don't want to add all supported backends as propagatedBuildInputs + doCheck = false; meta = { description = "IPython Kernel for Jupyter"; From 2b708d43f080fc7ab99fd26e350629a9df6fdcf8 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Fri, 22 Jan 2016 13:54:50 +0100 Subject: [PATCH 008/268] pythonPackages.ipython: 4.0.0 -> 4.0.3 --- pkgs/top-level/python-packages.nix | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 12b2aa96ce2..9b66c891c98 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -9712,24 +9712,31 @@ in modules // { }; ipython = buildPythonPackage rec { - version = "4.0.0"; + version = "4.0.3"; name = "ipython-${version}"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/i/ipython/${name}.tar.gz"; - sha256 = "2fd276c407fb0b29e5d4884a7029a2c27fef0a06fd7a34924cce69b7cc43f4da"; + sha256 = "3a928f59e8ac8dd97858c28390867c87c09510f1f8bbe97e4e9c6b036eb84fc0"; }; prePatch = stdenv.lib.optionalString stdenv.isDarwin '' substituteInPlace setup.py --replace "'gnureadline'" " " ''; - buildInputs = with self; [nose] ++ optionals isPy27 [mock]; + buildInputs = with self; [ nose pkgs.glibcLocales pygments ] ++ optionals isPy27 [mock]; propagatedBuildInputs = with self; [decorator pickleshare simplegeneric traitlets readline requests2 pexpect sqlite3] ++ optionals stdenv.isDarwin [appnope gnureadline]; + LC_ALL="en_US.UTF-8"; + + doCheck = false; # Circular dependency with ipykernel + + checkPhase = '' + nosetests + ''; meta = { description = "IPython: Productive Interactive Computing"; homepage = http://ipython.org/; From 4d9bdce5c47c23d9ab61b96ef342c25f7cb67300 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Fri, 22 Jan 2016 13:55:12 +0100 Subject: [PATCH 009/268] pythonPackages.iso8601: 0.1.10 -> 0.1.11 --- pkgs/top-level/python-packages.nix | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 9b66c891c98..3d333a9214d 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -9866,15 +9866,20 @@ in modules // { }; }; - iso8601 = buildPythonPackage { - name = "iso8601-0.1.10"; + iso8601 = buildPythonPackage rec { + name = "iso8601-${version}"; + version = "0.1.11"; src = pkgs.fetchurl { - url = https://pypi.python.org/packages/source/i/iso8601/iso8601-0.1.10.tar.gz; - sha256 = "1qf01afxh7j4gja71vxv345if8avg6nnm0ry0zsk6j3030xgy4p7"; + url = "https://pypi.python.org/packages/source/i/iso8601/${name}.tar.gz"; + sha256 = "e8fb52f78880ae063336c94eb5b87b181e6a0cc33a6c008511bac9a6e980ef30"; }; buildInputs = [ self.pytest ]; + checkPhase = '' + py.test iso8601 + ''; + meta = { homepage = https://bitbucket.org/micktwomey/pyiso8601/; description = "Simple module to parse ISO 8601 dates"; From bfb414d5c6cd496a9c53878f0d96c02d41d12046 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Fri, 22 Jan 2016 13:55:25 +0100 Subject: [PATCH 010/268] pythonPackages.nose: 1.3.4 -> 1.3.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 3d333a9214d..d8d42253df9 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -11848,12 +11848,12 @@ in modules // { }; nose = buildPythonPackage rec { - version = "1.3.4"; + version = "1.3.7"; name = "nose-${version}"; src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/n/nose/${name}.tar.gz"; - sha256 = "00qymfgwg4iam4xi0w9bnv7lcb3fypq1hzfafzgs1rfmwaj67g3n"; + sha256 = "f1bffef9cbc82628f6e7d7b40d7e255aefaa1adb6a1b1d26c69a8b79e6208a98"; }; propagatedBuildInputs = [ self.coverage ]; From 494e6be6bbf4517934e91909faca5261b8760210 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Fri, 22 Jan 2016 13:55:46 +0100 Subject: [PATCH 011/268] pythonPackages.numba: 0.22.1 -> 0.23.1 Update numba. Even when executing the correct file, the tests still fail; cannot import an extension module. --- pkgs/top-level/python-packages.nix | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index d8d42253df9..d6182fbec93 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -12070,12 +12070,12 @@ in modules // { }; numba = buildPythonPackage rec { - version = "0.22.1"; + version = "0.23.1"; name = "numba-${version}"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/n/numba/${name}.tar.gz"; - sha256 = "8194c41cdf96c16e3b3d246c0381daf4e587d1ada761f410efecb8315c2cdda3"; + sha256 = "80ce9968591db7c93e36258cc5e6734eb1e42826332799746dc6c073a6d5d317"; }; NIX_CFLAGS_COMPILE = stdenv.lib.optionalString stdenv.isDarwin "-I${pkgs.libcxx}/include/c++/v1"; @@ -12089,6 +12089,14 @@ in modules // { # export NUMBAPRO_LIBDEVICE= #''; + # Copy test script into $out and run the test suite. + checkPhase = '' + cp runtests.py $out/${python.sitePackages}/numba/runtests.py + ${python.interpreter} $out/${python.sitePackages}/numba/runtests.py + ''; + # ImportError: cannot import name '_typeconv' + doCheck = false; + meta = { homepage = http://numba.pydata.org/; license = licenses.bsd2; From 881dbe42d5f1bc500ce6cc5c1f94e1de18af081f Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Fri, 22 Jan 2016 13:56:00 +0100 Subject: [PATCH 012/268] pythonPackages.qtconsole: 4.1.0 -> 4.1.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 d6182fbec93..e05afbeb4c4 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -17155,12 +17155,12 @@ in modules // { }; qtconsole = buildPythonPackage rec { - version = "4.1.0"; + version = "4.1.1"; name = "qtconsole-${version}"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/q/qtconsole/${name}.tar.gz"; - sha256 = "61fb6e001dd2619a9fe8bd3a096d91c2c794cd9b2c7550a6df27ab6d5d03eb19"; + sha256 = "741906acae9e02c0df9138ac88b621ef22e438565aa96d783a9ef88faec3de46"; }; buildInputs = with self; [] ++ optionals isPy27 [mock]; From 84155c4fdb69c186f4a207964c982469da2b3bd9 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Fri, 22 Jan 2016 13:56:15 +0100 Subject: [PATCH 013/268] pythonPackages.recommonmark: 0.2.0 -> 0.4.0 --- pkgs/top-level/python-packages.nix | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index e05afbeb4c4..2cc5f6b4c06 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -2990,6 +2990,14 @@ in modules // { }; }; + CommonMark_54 = self.CommonMark.override rec { + name = "CommonMark-0.5.4"; + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/C/CommonMark/${name}.tar.gz"; + sha256 = "34d73ec8085923c023930dfc0bcd1c4286e28a2a82de094bb72fabcc0281cbe5"; + }; + }; + coilmq = buildPythonPackage (rec { name = "coilmq-0.6.1"; @@ -17222,15 +17230,15 @@ in modules // { recommonmark = buildPythonPackage rec { name = "recommonmark-${version}"; - version = "0.2.0"; + version = "0.4.0"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/r/recommonmark/${name}.tar.gz"; - sha256 = "28c0babc79c487280fc5bf5daf1f3f1d734e9e4293ba929a7617524ff6911fd7"; + sha256 = "6e29c723abcf5533842376d87c4589e62923ecb6002a8e059eb608345ddaff9d"; }; buildInputs = with self; [ pytest sphinx ]; - propagatedBuildInputs = with self; [ CommonMark docutils ]; + propagatedBuildInputs = with self; [ CommonMark_54 docutils ]; meta = { description = "A docutils-compatibility bridge to CommonMark"; From 569acd33e599a4c1d1761fcc9bc939985d793e36 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Fri, 22 Jan 2016 13:56:31 +0100 Subject: [PATCH 014/268] pythonPackages.isodate: 0.5.0 -> 0.5.4 --- pkgs/top-level/python-packages.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 2cc5f6b4c06..db41acb205c 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -17501,11 +17501,12 @@ in modules // { }); isodate = buildPythonPackage rec { - name = "isodate-0.5.0"; + name = "isodate-${version}"; + version = "0.5.4"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/i/isodate/${name}.tar.gz"; - md5 = "9a267e9327feb3d021cae26002ba6e0e"; + sha256 = "42105c41d037246dc1987e36d96f3752ffd5c0c24834dd12e4fdbe1e79544e31"; }; meta = { From bb16c26538969fbfcd7ee9894efa3d18c4703697 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Fri, 22 Jan 2016 13:57:06 +0100 Subject: [PATCH 015/268] pythonPackages.xarray: 0.6.1 -> 0.7.0 Note that xray has been renamed to xarray. --- pkgs/top-level/python-packages.nix | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index db41acb205c..576fab9f8c8 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -20979,21 +20979,21 @@ in modules // { }; }); - xray = buildPythonPackage rec { - name = "xray-${version}"; - version = "0.6.1"; + xarray = buildPythonPackage rec { + name = "xarray-${version}"; + version = "0.7.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/x/xray/${name}.tar.gz"; - sha256 = "bfbc307203d5433b4da31c210773c8474c237ff97350874b6e436d452fb9dfc8"; + url = "https://pypi.python.org/packages/source/x/xarray/${name}.tar.gz"; + sha256 = "b1562e8e2c61f1c3587d557ff48d2bc7be36574d6a8e86f11186c356bdd794cf"; }; - buildInputs = with self; [nose]; + buildInputs = with self; [ pytest ]; propagatedBuildInputs = with self; [numpy pandas]; meta = { description = "N-D labeled arrays and datasets in Python"; - homepage = https://github.com/xray/xray; + homepage = https://github.com/pydata/xarray; license = licenses.asl20; maintainers = with maintainers; [ fridh ]; }; From 694c2c149a3534fcf04bf76e7501d9683c4d67e5 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Fri, 22 Jan 2016 13:57:23 +0100 Subject: [PATCH 016/268] pythonPackages.traitlets: 4.0.0 -> 4.1.0 --- 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 576fab9f8c8..8adcadab8c4 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -19781,12 +19781,12 @@ in modules // { }; traitlets = buildPythonPackage rec { - version = "4.0.0"; + version = "4.1.0"; name = "traitlets-${version}"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/t/traitlets/${name}.tar.gz"; - sha256 = "0b140b4a94a4f1951887d9bce4650da211f79600fc9fdb422acc90c5bbe0233b"; + sha256 = "440e38dfa5d2a26c086d4b427cfb7aed17d0a2dca78bce90c33354da2592af5b"; }; propagatedBuildInputs = with self; [ipython_genutils decorator]; From 4d3f714217719373b5e06b36b9b906957fe15114 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Fri, 22 Jan 2016 13:58:03 +0100 Subject: [PATCH 017/268] pythonPackages.ipython_genutils: add maintainer --- pkgs/top-level/python-packages.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 8adcadab8c4..5a74db78c9a 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -9768,6 +9768,7 @@ in modules // { description = "Vestigial utilities from IPython"; homepage = http://ipython.org/; license = licenses.bsd3; + maintainers = with maintainers; [ fridh ]; }; }; From 891bec3f77a8c8055a146e24fd71108aa197d8cd Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sat, 23 Jan 2016 21:13:44 +0100 Subject: [PATCH 018/268] pythonPackages.ipython_gen_utils: fix test runner --- pkgs/top-level/python-packages.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 5a74db78c9a..d73a64ad4a2 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -9762,7 +9762,12 @@ in modules // { sha256 = "3a0624a251a26463c9dfa0ffa635ec51c4265380980d9a50d65611c3c2bd82a6"; }; - buildInputs = with self; [ pytest ]; + LC_ALL = "en_US.UTF-8"; + buildInputs = with self; [ nose pkgs.glibcLocales ]; + + checkPhase = '' + nosetests -v ipython_genutils/tests + ''; meta = { description = "Vestigial utilities from IPython"; From 4df253790adc5895185b197f930b9d97929f017f Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Fri, 22 Jan 2016 13:58:47 +0100 Subject: [PATCH 019/268] pythonPackages.python_statsd: remove myself from maintainers No idea how I became maintainer of this package. --- pkgs/top-level/python-packages.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index d73a64ad4a2..a863a29780e 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -19271,7 +19271,6 @@ in modules // { description = "A client for Etsy's node-js statsd server"; homepage = https://github.com/WoLpH/python-statsd; license = licenses.bsd3; - maintainers = with maintainers; [ fridh ]; }; }; From 8535503556f2c814e8e322b7928a4d5e5566c5c6 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Fri, 22 Jan 2016 14:26:34 +0100 Subject: [PATCH 020/268] pythonPackages.twisted: 11.1 -> 15.5 --- pkgs/servers/matrix-synapse/default.nix | 2 +- pkgs/top-level/python-packages.nix | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/servers/matrix-synapse/default.nix b/pkgs/servers/matrix-synapse/default.nix index 66d9e7258f4..714ff9d002c 100644 --- a/pkgs/servers/matrix-synapse/default.nix +++ b/pkgs/servers/matrix-synapse/default.nix @@ -26,7 +26,7 @@ buildPythonPackage rec { propagatedBuildInputs = with pythonPackages; [ blist canonicaljson daemonize dateutil frozendict pillow pybcrypt pyasn1 pydenticon pymacaroons-pynacl pynacl pyopenssl pysaml2 pytz requests2 - service-identity signedjson systemd twisted15 ujson unpaddedbase64 pyyaml + service-identity signedjson systemd twisted ujson unpaddedbase64 pyyaml matrix-angular-sdk ]; diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index a863a29780e..dd3df2310c9 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -18216,7 +18216,7 @@ in modules // { md5 = "f16f4237c9ee483a0cd13208849d96ad"; }; - propagatedBuildInputs = with self; [ twisted15 ]; + propagatedBuildInputs = with self; [ twisted ]; meta = { description = "setuptools plug-in that helps run unit tests built with the \"Trial\" framework (from Twisted)"; @@ -20176,7 +20176,7 @@ in modules // { }; }; - twisted = buildPythonPackage rec { + twisted_11 = buildPythonPackage rec { # NOTE: When updating please check if new versions still cause issues # to packages like carbon (http://stackoverflow.com/questions/19894708/cant-start-carbon-12-04-python-error-importerror-cannot-import-name-daem) disabled = isPy3k; @@ -20207,7 +20207,7 @@ in modules // { }; }; - twisted15 = buildPythonPackage rec { + twisted = buildPythonPackage rec { disabled = isPy3k; name = "Twisted-15.5.0"; From 1ae037ee28978c65a61623a6bad554e8bfffb728 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Fri, 22 Jan 2016 16:15:38 +0100 Subject: [PATCH 021/268] pythonPackages.line_profiler: disable for pypy --- pkgs/top-level/python-packages.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index dd3df2310c9..421fb59a8aa 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -10313,6 +10313,8 @@ in modules // { buildInputs = with self; [ cython ]; + disabled = isPyPy; + meta = { description = "Line-by-line profiler"; homepage = https://github.com/rkern/line_profiler; From 6c8ebec7db678f3dda7799348ec8739721edc811 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Fri, 22 Jan 2016 16:15:27 +0100 Subject: [PATCH 022/268] pythonPackages.scripttest: Disable tests Tests are not included. Nose is also not required. --- pkgs/top-level/python-packages.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 421fb59a8aa..47cb218d15b 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -18109,7 +18109,10 @@ in modules // { md5 = "1d1c5117ccfc7b5961cae6c1020c0848"; }; - buildInputs = with self; [ nose pytest ]; + buildInputs = with self; [ pytest ]; + + # Tests are not included. See https://github.com/pypa/scripttest/issues/11 + doCheck = false; meta = { description = "A library for testing interactive command-line applications"; From 2ea4d056b6a9489130f03f9224e8c0a879550d63 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Fri, 22 Jan 2016 16:39:32 +0100 Subject: [PATCH 023/268] pythonPackages.doctest-ignore-unicode: init at 0.1.2 --- pkgs/top-level/python-packages.nix | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 47cb218d15b..0c11b1cedc9 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -4587,6 +4587,24 @@ in modules // { }; }; + doctest-ignore-unicode = buildPythonPackage rec { + name = "doctest-ignore-unicode-${version}"; + version = "0.1.2"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/d/doctest-ignore-unicode/${name}.tar.gz"; + sha256= "fc90b2d0846477285c6b67fc4cb4d6f39fcf76d8752f4df0a241486f31512ad5"; + }; + + propagatedBuildInputs = with self; [ nose ]; + + meta = { + description = "Add flag to ignore unicode literal prefixes in doctests"; + license = with licenses; [ asl20 ]; + homepage = http://github.com/gnublade/doctest-ignore-unicode; + }; + }; + dogpile_cache = buildPythonPackage rec { name = "dogpile.cache-0.5.4"; @@ -11429,6 +11447,7 @@ in modules // { sha256 = "1fhn123hy4qj0zmmmbx0q0r4hwikay13yirsp74niiw5d52y7ib8"; }; + buildInputs = with self; [ doctest-ignore-unicode ]; propagatedBuildInputs = [ pkgs.graphviz pkgs.pkgconfig ]; meta = { From d216359528a5a434b49b4b3fe5f597ccf9e8daee Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Fri, 22 Jan 2016 16:58:09 +0100 Subject: [PATCH 024/268] pythonPackages.carbon: 0.9.12 -> 0.9.15 No tests included in tarball. --- pkgs/top-level/python-packages.nix | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 0c11b1cedc9..79c8c35fb89 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -22166,18 +22166,15 @@ in modules // { carbon = buildPythonPackage rec { name = "carbon-${version}"; - version = "0.9.12"; + version = "0.9.15"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/c/carbon/${name}.tar.gz"; - md5 = "66967d5a622fd29973838fcd10eb34f3"; + sha256 = "f01db6d37726c6fc0a8aaa66a7bf14436b0dd0d62ef3c20ecb31605a4d365d2e"; }; propagatedBuildInputs = with self; [ whisper txamqp zope_interface twisted ]; - # error: invalid command 'test' - doCheck = false; - meta = { homepage = http://graphite.wikidot.com/; description = "Backend data caching and persistence daemon for Graphite"; From d0856b377180c6bc3578a5de4d9037a4754ef8b2 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Fri, 22 Jan 2016 19:08:14 +0100 Subject: [PATCH 025/268] pythonPackages.oauth2: 1.5.211 -> 1.9.0.post1 --- pkgs/top-level/python-packages.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 79c8c35fb89..858daabf473 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -12335,12 +12335,12 @@ in modules // { }); oauth2 = buildPythonPackage (rec { - name = "oauth2-1.5.211"; - disabled = isPy3k; + name = "oauth2-${version}"; + version = "1.9.0.post1"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/o/oauth2/oauth2-1.5.211.tar.gz"; - sha256 = "82a38f674da1fa496c0fc4df714cbb058540bed72a30c50a2e344b0d984c4d21"; + url = "http://pypi.python.org/packages/source/o/oauth2/${name}.tar.gz"; + sha256 = "c006a85e7c60107c7cc6da1b184b5c719f6dd7202098196dfa6e55df669b59bf"; }; propagatedBuildInputs = with self; [ httplib2 ]; From 97762604753bb25a3feec511059050c7b5126f8c Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Fri, 22 Jan 2016 19:24:45 +0100 Subject: [PATCH 026/268] pythonPackages.pygraphviz: 1.3 -> 1.3.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 858daabf473..de738a619a4 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -11439,12 +11439,12 @@ in modules // { }; pygraphviz = buildPythonPackage rec { - version = "1.3"; + version = "1.3.1"; name = "pygraphviz-${version}"; src = pkgs.fetchurl { url = "https://github.com/pygraphviz/pygraphviz/archive/${name}.tar.gz"; - sha256 = "1fhn123hy4qj0zmmmbx0q0r4hwikay13yirsp74niiw5d52y7ib8"; + sha256 = "7c294cbc9d88946be671cc0d8602aac176d8c56695c0a7d871eadea75a958408"; }; buildInputs = with self; [ doctest-ignore-unicode ]; From 6b1065e98b71f906875f5edb51031541a5a244ae Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Fri, 22 Jan 2016 19:25:10 +0100 Subject: [PATCH 027/268] pythonPackages.psutil: 2.1.1 -> 3.4.2 --- pkgs/top-level/python-packages.nix | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index de738a619a4..c0b6d1eb49d 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14862,17 +14862,23 @@ in modules // { psutil = buildPythonPackage rec { name = "psutil-${version}"; - version = "2.1.1"; + version = "3.4.2"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/p/psutil/${name}.tar.gz"; - sha256 = "14smqj57yjrm6hjz5n2annkgv0kmxckdhqvfx784f4d4lr52m0dz"; + sha256 = "b17fa01aa766daa388362d0eda5c215d77e03a8d37676b68971f37bf3913b725"; }; - # failed tests: https://code.google.com/p/psutil/issues/detail?id=434 + # Certain tests fail due to being in a chroot. + # See also the older issue: https://code.google.com/p/psutil/issues/detail?id=434 doCheck = false; - buildInputs = optional stdenv.isDarwin pkgs.darwin.IOKit; + checkPhase = '' + ${python.interpreter} test/test_psutil.py + ''; + + # Test suite needs `free`, therefore we have pkgs.busybox + buildInputs = with self; [ mock pkgs.busybox] ++ optionals stdenv.isDarwin [ pkgs.darwin.IOKit ]; meta = { description = "Process and system utilization information interface for python"; From 901d2c3074256611855e64e7df1e82a540c6c984 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Fri, 22 Jan 2016 19:31:02 +0100 Subject: [PATCH 028/268] pythonPackages.tqdm: 3.1.4 -> 3.7.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 c0b6d1eb49d..52721839637 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -19977,11 +19977,11 @@ in modules // { tqdm = buildPythonPackage rec { name = "tqdm-${version}"; - version = "3.1.4"; + version = "3.7.1"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/t/tqdm/${name}.tar.gz"; - sha256 = "e2dbef0df0fd24c9ae3b2e07bef2a3607ad8431142e76d3294a5a11926d214bf"; + sha256 = "f12d792685f779e8754e623aff1a25a93b98a90457e3a2b7eb89b4401c2c239e"; }; buildInputs = with self; [ nose coverage pkgs.glibcLocales flake8 ]; From cebb7a13f205b32c7e99ef1cc7072f2c62279991 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Fri, 22 Jan 2016 19:31:13 +0100 Subject: [PATCH 029/268] pythonPackages.terminado: 0.5 -> 0.6 --- 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 52721839637..5d083591b48 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -19664,11 +19664,11 @@ in modules // { terminado = buildPythonPackage rec { name = "terminado-${version}"; - version = "0.5"; + version = "0.6"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/t/terminado/${name}.tar.gz"; - sha256 = "63e893eff1ba84f1ee7c4bfcca7676ba1de6394538bb9aa80cbbc8866cb875b6"; + sha256 = "2c0ba1f624067dccaaead7d2247cfe029806355cef124dc2ccb53c83229f0126"; }; propagatedBuildInputs = with self; [ ptyprocess tornado ]; From 3f928e47028d9be2ea542757c3fe8e83180a595e Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Fri, 22 Jan 2016 19:46:04 +0100 Subject: [PATCH 030/268] pythonPackages.pytz: 2015.4 -> 2015.7 --- pkgs/top-level/python-packages.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 5d083591b48..7f51bf13a0e 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -16797,11 +16797,11 @@ in modules // { pytz = buildPythonPackage rec { name = "pytz-${version}"; - version = "2015.4"; + version = "2015.7"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/p/pytz/${name}.tar.bz2"; - md5 = "39f7375c4b1fa34cdcb4b4765d08f817"; + url = "http://pypi.python.org/packages/source/p/pytz/${name}.tar.gz"; + sha256 = "99266ef30a37e43932deec2b7ca73e83c8dbc3b9ff703ec73eca6b1dae6befea"; }; meta = { From 9cbfa6640ac97b5c88be1a8a1f8386f9c7a3d7f6 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Fri, 22 Jan 2016 19:46:22 +0100 Subject: [PATCH 031/268] pythonPackages.pyzmq: 14.5 -> 15.2 --- pkgs/top-level/python-packages.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 7f51bf13a0e..32ed677bc43 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -21952,12 +21952,12 @@ in modules // { }; pyzmq = buildPythonPackage rec { - name = "pyzmq-14.5.0"; + name = "pyzmq-15.2.0"; src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/p/pyzmq/${name}.tar.gz"; - sha256 = "1gbpgz4ngfw5x6zlsa1k0jwy5vd5wg9iz1shdx4zav256ib08vjx"; + sha256 = "2dafa322670a94e20283aba2a44b92134d425bd326419b68ad4db8d0831a26ec"; }; - buildInputs = with self; [ pkgs.zeromq3 pytest]; + buildInputs = with self; [ pkgs.zeromq3 pytest tornado ]; propagatedBuildInputs = [ self.py ]; checkPhase = '' py.test $out/${python.sitePackages}/zmq/ From 4f31a4b99363545b29e601d3071783576997085b Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Fri, 22 Jan 2016 19:55:15 +0100 Subject: [PATCH 032/268] pythonPackages.rsa: 3.1.4 -> 3.3 --- pkgs/top-level/python-packages.nix | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 32ed677bc43..fdda083d38d 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -17819,14 +17819,19 @@ in modules // { }; rsa = buildPythonPackage rec { - name = "rsa-3.1.4"; + name = "rsa-${version}"; + version = "3.3"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/r/rsa/${name}.tar.gz"; - sha256 = "1842ghkkimzf4fi3np4vwbwnsriv4d9malp1sbnv2xn26rcv1c72"; + sha256 = "03f3d9bebad06681771016b8752a40b12f615ff32363c7aa19b3798e73ccd615"; }; - buildInputs = with self; [ self.pyasn1 ]; + buildInputs = with self; [ pyasn1 unittest2 ]; + + checkPhase = '' + ${python.interpreter} run_tests.py + ''; meta = { homepage = http://stuvel.eu/rsa; From a2805e5f33ce73b95d7809fd6b202bb3056b1e2b Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Fri, 22 Jan 2016 20:06:13 +0100 Subject: [PATCH 033/268] pythonPackages.shapely: 1.3.1 -> 1.5.13 --- pkgs/top-level/python-packages.nix | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index fdda083d38d..72723b0c4cb 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -18475,14 +18475,17 @@ in modules // { }; shapely = buildPythonPackage rec { - name = "Shapely-1.3.1"; + name = "Shapely-${version}"; + version = "1.5.13"; src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/S/Shapely/${name}.tar.gz"; - sha256 = "099sc7ajpp6hbgrx3c0bl6hhkz1mhnr0ahvc7s4i3f3b7q1zfn7l"; + sha256 = "68f8efb43112e8ef1f7e56e2c9eef64e0cbc1c19528c627696fb07345075a348"; }; - buildInputs = with self; [ pkgs.geos pkgs.glibcLocales ]; + buildInputs = with self; [ pkgs.geos pkgs.glibcLocales pytest ]; + + propagatedBuildInputs = with self; [ numpy ]; preConfigure = '' export LANG="en_US.UTF-8"; @@ -18492,7 +18495,11 @@ in modules // { sed -i "s|_lgeos = load_dll('geos_c', fallbacks=.*)|_lgeos = load_dll('geos_c', fallbacks=['${pkgs.geos}/lib/libgeos_c.so'])|" shapely/geos.py ''; - doCheck = false; # won't suceed for unknown reasons that look harmless, though + # Error when importing extension types. Happens also after install + + checkPhase = '' + py.test tests + ''; meta = { description = "Geometric objects, predicates, and operations"; From 0ae31562d40e6b0a12c60f3e9855b27f61235a67 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Fri, 22 Jan 2016 20:14:44 +0100 Subject: [PATCH 034/268] pythonPackages.flake8: 2.5.0 -> 2.5.1 --- pkgs/top-level/python-packages.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 72723b0c4cb..bf1d02e970b 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -8324,12 +8324,13 @@ in modules // { }; }; - flake8 = buildPythonPackage (rec { - name = "flake8-2.5.0"; + flake8 = buildPythonPackage rec { + name = "flake8-${version}"; + version = "2.5.1"; src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/f/flake8/${name}.tar.gz"; - sha256 = "137qwipa4z6z8z7n0zg7kg6qi3348l8ck6zqa4yyjah9xv3ch5l2"; + sha256 = "448aed48b0671fe6062f47b98c3081f3a4b36fbe99ddb8ac2a3be6e6cb135603"; }; buildInputs = with self; [ nose mock ]; @@ -8341,7 +8342,7 @@ in modules // { license = licenses.mit; maintainers = with maintainers; [ garbas ]; }; - }); + }; flask = buildPythonPackage { name = "flask-0.10.1"; From f2dd69a7369b6527ef2ba8141a05e09cee4f2a97 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Fri, 22 Jan 2016 20:15:47 +0100 Subject: [PATCH 035/268] pythonPackages.pep8: 1.5.7 -> 1.7.0 Now supports Python 3.5. --- pkgs/top-level/python-packages.nix | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index bf1d02e970b..7ec7555067d 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14223,14 +14223,11 @@ in modules // { pep8 = buildPythonPackage rec { name = "pep8-${version}"; - # 1.6.0 and higher are blocked by flake8 - version = "1.5.7"; - - disabled = isPy35; # Not yet supported + version = "1.7.0"; src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/p/pep8/${name}.tar.gz"; - sha256 = "12b9bbdbwnspxgak14xg58c130x2n0blxzlms5jn2dszn8qj3d0m"; + sha256 = "a113d5f5ad7a7abacef9df5ec3f2af23a20a28005921577b15dd584d099d5900"; }; meta = { From 2c866e479ad62f0d85343a417d781d03be8dbb43 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Fri, 22 Jan 2016 20:27:45 +0100 Subject: [PATCH 036/268] pythonPackages: move LC_ALL="en_US.UTF-8"; out of phases --- pkgs/top-level/python-packages.nix | 62 ++++++++++-------------------- 1 file changed, 20 insertions(+), 42 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 7ec7555067d..56ee1bf25d4 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -4229,9 +4229,7 @@ in modules // { buildInputs = [ pkgs.glibcLocales ]; - preBuild = '' - export LC_ALL="en_US.UTF-8" - ''; + LC_ALL="en_US.UTF-8"; meta = { description = "Powerful extensions to the standard datetime module"; @@ -5482,9 +5480,7 @@ in modules // { buildInputs = [ pkgs.glibcLocales ]; - preBuild = '' - export LC_ALL="en_US.UTF-8" - ''; + LC_ALL="en_US.UTF-8"; # TODO: AppIndicator propagatedBuildInputs = with self; [ pkgs.gobjectIntrospection pygobject3 pkgs.makeWrapper pkgs.gtk3 ]; @@ -8217,9 +8213,7 @@ in modules // { buildInputs = [ pkgs.glibcLocales ]; - preConfigure = '' - export LC_ALL="en_US.UTF-8" - ''; + LC_ALL="en_US.UTF-8"; propagatedBuildInputs = with self; [ six pytz ]; @@ -9301,9 +9295,7 @@ in modules // { sha256 = "1d2za9crkgzildx610w3zif2i8phcqhh6n8nzg3yvy2mg0s18mkl"; }; - preBuild = '' - export LC_ALL="en_US.UTF-8" - ''; + LC_ALL="en_US.UTF-8"; buildInputs = with self; [ six pkgs.glibcLocales ]; @@ -10844,9 +10836,10 @@ in modules // { # sed calls will be unecessary in v3.1.11+ preConfigure = '' sed -i 's/==/>=/' setup.py - export LC_ALL="en_US.UTF-8" ''; + LC_ALL="en_US.UTF-8"; + meta = { description = '' A content management platform built using the Django framework @@ -10953,9 +10946,7 @@ in modules // { sed -i 's/requests.*"/requests"/' setup.py ''; - preBuild = '' - export LC_ALL="en_US.UTF-8" - ''; + LC_ALL="en_US.UTF-8"; postInstall = '' mkdir -p $out/lib @@ -11212,10 +11203,7 @@ in modules // { buildInputs = [ pkgs.glibcLocales self.mock ]; - # some files in tests dir include unicode names - preBuild = '' - export LC_ALL="en_US.UTF-8" - ''; + LC_ALL="en_US.UTF-8"; propagatedBuildInputs = with self; [ argparse jinja2 six modules.readline ] ++ (optionals isPy26 [ importlib ordereddict ]); @@ -11297,9 +11285,7 @@ in modules // { buildInputs = [ pkgs.glibcLocales ]; - preCheck = '' - export LC_ALL="en_US.UTF-8" - ''; + LC_ALL="en_US.UTF-8"; meta = { homepage = http://alastair/python-musicbrainz-ngs; @@ -14209,9 +14195,7 @@ in modules // { sed -i -e "s|'git'|'${pkgs.git}/bin/git'|" pelican/tests/test_pelican.py ''; - preConfigure = '' - export LC_ALL="en_US.UTF-8" - ''; + LC_ALL="en_US.UTF-8"; meta = { description = "A tool to generate a static blog from reStructuredText or Markdown input files"; @@ -18116,8 +18100,10 @@ in modules // { buildInputs = with self; [ nose pillow pkgs.gfortran pkgs.glibcLocales ]; propagatedBuildInputs = with self; [ numpy scipy pkgs.openblas ]; + LC_ALL="en_US.UTF-8"; + checkPhase = '' - LC_ALL="en_US.UTF-8" HOME=$TMPDIR OMP_NUM_THREADS=1 nosetests $out/${python.sitePackages}/sklearn/ + HOME=$TMPDIR OMP_NUM_THREADS=1 nosetests $out/${python.sitePackages}/sklearn/ ''; meta = { @@ -18672,9 +18658,7 @@ in modules // { }; - preBuild = '' - export LC_ALL="en_US.UTF-8" - ''; + LC_ALL="en_US.UTF-8"; checkPhase = '' ${python.interpreter} test_clint.py @@ -19413,9 +19397,7 @@ in modules // { name = "sure-${version}"; version = "1.2.24"; - preBuild = '' - export LC_ALL="en_US.UTF-8" - ''; + LC_ALL="en_US.UTF-8"; disabled = isPyPy; @@ -19997,9 +19979,7 @@ in modules // { buildInputs = with self; [ nose coverage pkgs.glibcLocales flake8 ]; propagatedBuildInputs = with self; [ matplotlib pandas ]; - preBuild = '' - export LC_ALL="en_US.UTF-8" - ''; + LC_ALL="en_US.UTF-8"; doCheck = false; # Many transient failures in performance tests and due to use of sleep @@ -22225,9 +22205,7 @@ in modules // { sha256 = "12hhblqy1ajvidm38im4171x4arg83pfmziyn53nizp29p3m14gi"; }; - preBuild = '' - export LC_ALL="en_US.UTF-8" - ''; + LC_ALL="en_US.UTF-8"; buildInputs = [ pkgs.glibcLocales ]; @@ -23780,9 +23758,9 @@ in modules // { }; disabled = isPyPy; buildInputs = [ pkgs.glibcLocales ]; - preConfigure = '' - export LC_ALL="en_US.UTF-8" - ''; + + LC_ALL="en_US.UTF-8"; + meta = { description = "Copy your docs directly to the gh-pages branch."; homepage = "http://github.com/davisp/ghp-import"; From a94703dbb2722f668cd206e2fe7be3f41fd43835 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Fri, 22 Jan 2016 20:40:11 +0100 Subject: [PATCH 037/268] pythonPackages.shortuuid: 0.4.2 -> 0.4.3 --- 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 56ee1bf25d4..ae41dcb4a32 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -18265,13 +18265,13 @@ in modules // { shortuuid = buildPythonPackage rec { name = "shortuuid-${version}"; - version = "0.4.2"; + version = "0.4.3"; disabled = isPy26; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/s/shortuuid/${name}.tar.gz"; - md5 = "142e3ae4e7cd32d41a71deb359db4cfe"; + sha256 = "4606dbb19124d98109c00e2cafae2df8117aec02115623e18fb2abe3f766d293"; }; buildInputs = with self; [pep8]; From ec5ca4c55d8fc2ccdbf3d8eb9d9247ed352f16cf Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Fri, 22 Jan 2016 21:37:43 +0100 Subject: [PATCH 038/268] pythonPackages.umalqurra: init at 0.2 This package has no license specified, so I use public domain here. --- 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 ae41dcb4a32..84e4a7d9098 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -20276,6 +20276,25 @@ in modules // { }; }; + umalqurra = buildPythonPackage rec { + name = "umalqurra-${version}"; + version = "0.2"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/u/umalqurra/umalqurra-0.2.tar.gz"; + sha256 = "719f6a36f908ada1c29dae0d934dd0f1e1f6e3305784edbec23ad719397de678"; + }; + + # See for license + # https://github.com/tytkal/python-hijiri-ummalqura/issues/4 + meta = { + description = "Date Api that support Hijri Umalqurra calendar"; + homepage = https://github.com/tytkal/python-hijiri-ummalqura; + license = with licenses; [ publicDomain ]; + }; + + }; + umemcache = buildPythonPackage rec { name = "umemcache-${version}"; version = "1.6.3"; From 46ef50e7ca109276e50b92b9035265f6370e1ccc Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Fri, 22 Jan 2016 21:38:04 +0100 Subject: [PATCH 039/268] pythonPackages.dateparser: 0.3.1 -> 0.3.2-pre-2016-01-21 --- pkgs/top-level/python-packages.nix | 24 +++++++++++++++--------- 1 file changed, 15 insertions(+), 9 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 84e4a7d9098..a8ec533e62c 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -4159,26 +4159,32 @@ in modules // { }; }); - dateparser = buildPythonPackage (rec { + dateparser = buildPythonPackage rec { name = "dateparser-${version}"; - version = "0.3.1"; - disabled = isPy3k; + version = "0.3.2-pre-2016-01-21"; # Fix assert year 2016 == 2015 - src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/d/dateparser/${name}.tar.gz"; - sha256 = "56c291a45398e9172d53201ac213226989295749191c1f02d8f3b593b6f88e48"; + src = pkgs.fetchgit { + url = "https://github.com/scrapinghub/dateparser.git"; + rev = "d20a63f1d1cee5b4bd19c9f745774cfa9f219549"; + sha256 = "f04f75d013ba2896681ffeb3669d78e4c496236121da751b89ff0b4a4053f771"; }; - buildInputs = with self; [ nose nose-parameterized mock ]; + # Does not seem to work on Python 3 because of relative import. + # Upstream Travis configuration is wrong and tests only 2.7 + disabled = isPy3k; - propagatedBuildInputs = with self; [ self.six jdatetime pyyaml dateutil ]; + LC_ALL = "en_US.UTF-8"; + + buildInputs = with self; [ nose nose-parameterized mock pkgs.glibcLocales ]; + + propagatedBuildInputs = with self; [ six jdatetime pyyaml dateutil umalqurra pytz ]; meta = { description = "Date parsing library designed to parse dates from HTML pages"; homepage = http://pypi.python.org/pypi/dateparser; license = licenses.bsd3; }; - }); + }; dateutil = buildPythonPackage (rec { name = "dateutil-${version}"; From 91c5fc3aa9cf64da4f141678b6f44bd7f0098441 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Fri, 22 Jan 2016 21:58:42 +0100 Subject: [PATCH 040/268] pythonPackages.ledger-autosync: add missing buildInput nose --- pkgs/top-level/python-packages.nix | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index a8ec533e62c..df42dd850a1 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -5819,11 +5819,14 @@ in modules // { sha256 = "f19fa66e656309825887171d84a462e64676b1cc36b62e4dd8679ff63926a469"; }; - buildInputs = [ - self.ofxclient self.mock + buildInputs = with self; [ + ofxclient + mock + nose # Used at runtime to translate ofx entries to the ledger # format. In fact, user could use either ledger or hledger. - pkgs.which pkgs.ledger ]; + pkgs.which + pkgs.ledger ]; # Tests are disable since they require hledger and python-ledger doCheck = false; From 5c565856be654072db745fa08c9c5ab28c00c43b Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Fri, 22 Jan 2016 23:17:19 +0100 Subject: [PATCH 041/268] pythonPackages.pathpy: 7.6 -> 8.1.2 --- pkgs/top-level/python-packages.nix | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index df42dd850a1..09dc0e9c7fb 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14094,15 +14094,17 @@ in modules // { }; pathpy = buildPythonPackage rec { - version = "7.6"; + version = "8.1.2"; name = "path.py-${version}"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/p/path.py/${name}.tar.gz"; - sha256 = "5cdf60f359f1add18f8556c9a1855cbd1d517f0780e3d386c256515f698ba0e0"; + sha256 = "ada95d117c4559abe64080961daf5badda68561afdd34c278f8ca20f2fa466d2"; }; - buildInputs = with self; [setuptools_scm pytestrunner pytest]; + buildInputs = with self; [setuptools_scm pytestrunner pytest pkgs.glibcLocales ]; + + LC_ALL="en_US.UTF-8"; meta = { description = "A module wrapper for os.path"; @@ -14110,10 +14112,9 @@ in modules // { license = licenses.mit; }; - # Test fails with python 2.7: TestUnicodePaths.test_walkdirs_with_unicode_name - # Also during tests with python 3.4: RuntimeError: dictionary changed size during iteration - # Caused by pytestrunner - doCheck = false; + checkPhase = '' + py.test test_path.py + ''; }; paypalrestsdk = buildPythonPackage rec { From e0d0f8dbd2a4980e7a65e702064ffdaa3427c253 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sat, 23 Jan 2016 12:09:44 +0100 Subject: [PATCH 042/268] pythonPackages.setuptools and bootstrapped-pip: 18.2 -> 19.4 Update to latest setuptools. Latest setuptools will always try to run tests. This can cause some very vague errors. We now need to fix all packages where we do not invoke the correct test runner. --- .../python-modules/bootstrapped-pip/default.nix | 4 ++-- pkgs/development/python-modules/setuptools/default.nix | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/development/python-modules/bootstrapped-pip/default.nix b/pkgs/development/python-modules/bootstrapped-pip/default.nix index 67773627029..43f8cca4c82 100644 --- a/pkgs/development/python-modules/bootstrapped-pip/default.nix +++ b/pkgs/development/python-modules/bootstrapped-pip/default.nix @@ -6,8 +6,8 @@ let sha256 = "1sl642ncvipqx0hzypvl5hsiqngy0sib0kq242g4mic7vnid6bn9"; }; setuptools_source = fetchurl { - url = "https://pypi.python.org/packages/3.4/s/setuptools/setuptools-18.2-py2.py3-none-any.whl"; - sha256 = "0jhafl8wmjc8xigl1ib5hqiq9crmipcz0zcga52riymgqbf2bzh4"; + url = "https://pypi.python.org/packages/3.5/s/setuptools/setuptools-19.4-py2.py3-none-any.whl"; + sha256 = "0801e6d862ca4ce24d918420d62f07ee2fe736dc016e3afa99d2103e7a02e9a6"; }; in stdenv.mkDerivation rec { name = "python-${python.version}-bootstrapped-pip-${version}"; diff --git a/pkgs/development/python-modules/setuptools/default.nix b/pkgs/development/python-modules/setuptools/default.nix index 082a16056fd..74624063ba3 100644 --- a/pkgs/development/python-modules/setuptools/default.nix +++ b/pkgs/development/python-modules/setuptools/default.nix @@ -1,14 +1,14 @@ -{ stdenv, fetchurl, python, wrapPython }: +{ stdenv, lib, fetchurl, python, wrapPython }: stdenv.mkDerivation rec { shortName = "setuptools-${version}"; name = "${python.executable}-${shortName}"; - version = "18.2"; # 18.4 breaks python34Packages.characteristic and many others + version = "19.4"; # 18.4 and up breaks python34Packages.characteristic and many others src = fetchurl { url = "http://pypi.python.org/packages/source/s/setuptools/${shortName}.tar.gz"; - sha256 = "07avbdc26yl2a46s76fc7m4vg611g8sh39l26x9dr9byya6sb509"; + sha256 = "214bf29933f47cf25e6faa569f710731728a07a19cae91ea64f826051f68a8cf"; }; buildInputs = [ python wrapPython ]; @@ -24,7 +24,7 @@ stdenv.mkDerivation rec { meta = with stdenv.lib; { description = "Utilities to facilitate the installation of Python packages"; homepage = http://pypi.python.org/pypi/setuptools; - license = [ "PSF" "ZPL" ]; + license = with lib.licenses; [ psfl zpt20 ]; platforms = platforms.all; }; } From cb69ea969b3bc2c48c481524e7b6b2b458f3aa62 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sat, 23 Jan 2016 12:32:06 +0100 Subject: [PATCH 043/268] pythonPackages.six: use correct test runner --- pkgs/top-level/python-packages.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 09dc0e9c7fb..72e9cc2fa50 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -18848,6 +18848,12 @@ in modules // { sha256 = "0snmb8xffb3vsma0z67i0h0w2g2dy0p3gsgh9gi4i0kgc5l8spqh"; }; + buildInputs = with self; [ pytest ]; + + checkPhase = '' + py.test test_six.py + ''; + meta = { description = "A Python 2 and 3 compatibility library"; homepage = http://pypi.python.org/pypi/six/; From 30623449cf8dd6b168f06c81f8c08e5e6c908954 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sat, 23 Jan 2016 16:51:25 +0100 Subject: [PATCH 044/268] pythonPackages.click: run correct test runner --- pkgs/top-level/python-packages.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 72e9cc2fa50..ef5431d43b0 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -2824,6 +2824,15 @@ in modules // { sha256 = "10kavbisnk9m93jl2wi34pw7ryr2qbxshh2cysxwxd7bymqgz87v"; }; + buildInputs = with self; [ pytest ]; + + checkPhase = '' + py.test tests + ''; + + # Python 3.5 str/bytes-like errors with reading files + doCheck = !isPy3k; + meta = { homepage = http://click.pocoo.org/; description = "Create beautiful command line interfaces in Python"; From 05b7ad66123cd68cd0f248bba4cf588abb49f965 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sat, 23 Jan 2016 17:08:38 +0100 Subject: [PATCH 045/268] pythonPackages.py: Disable tests due to circular dependency Since we weren't invoking the correct test runner (py.test) the tests weren't actually ran. Nevertheless, we won't be possible to run them because of a circular dependency so let's disable them. --- 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 ef5431d43b0..bae0cffcba4 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14943,8 +14943,8 @@ in modules // { sha256 = "a6501963c725fc2554dabfece8ae9a8fb5e149c0ac0a42fd2b02c5c1c57fc114"; }; - # some weird errors with paths - # doCheck = !isPy3k; + # Circular dependency on pytest + doCheck = false; meta = { description = "Library with cross-python path, ini-parsing, io, code, log facilities"; From 3633eea4d0489c829926cc9cec7ed40f329dc7b4 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sat, 23 Jan 2016 17:17:11 +0100 Subject: [PATCH 046/268] pythonPackages.xlrd: 0.9.3 -> 0.9.4 --- 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 bae0cffcba4..a2381c61a8a 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -13928,10 +13928,10 @@ in modules // { xlrd = buildPythonPackage rec { name = "xlrd-${version}"; - version = "0.9.3"; + version = "0.9.4"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/x/xlrd/xlrd-${version}.tar.gz"; - sha256 = "174ks80h0g9p67ahnakf0y7di3gvbhxvb1jlk097gvd7gpi3aflk"; + sha256 = "8e8d3359f39541a6ff937f4030db54864836a06e42988c452db5b6b86d29ea72"; }; }; From 8e8f1b14d0cc4190bdb14c4bc89061ca63b572c3 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sat, 23 Jan 2016 17:40:24 +0100 Subject: [PATCH 047/268] pythonPackages.mock: invoke correct test runner --- pkgs/top-level/python-packages.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index a2381c61a8a..feda966981d 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -11049,6 +11049,10 @@ in modules // { buildInputs = with self; [ unittest2 ]; propagatedBuildInputs = with self; [ funcsigs six pbr ]; + checkPhase = '' + ${python.interpreter} -m unittest discover + ''; + meta = { description = "Mock objects for Python"; homepage = http://python-mock.sourceforge.net/; From 7c2af9fe4f66844c0befa1119524741aabb6141f Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sat, 23 Jan 2016 18:54:36 +0100 Subject: [PATCH 048/268] pythonPackages.cython: disable tests Fixed invocation of test suite. Disabled tests due to compiler errors and testing taking a very long time. --- pkgs/top-level/python-packages.nix | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index feda966981d..4423e1a1db8 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -3282,7 +3282,13 @@ in modules // { sha256 = "13hdffhd37mx3gjby018xl179jaj957fy7kzi01crmimxvn2zi7y"; }; - buildInputs = with self; [ pkgs.pkgconfig ]; + buildInputs = with self; [ pkgs.pkgconfig pkgs.gdb ]; + + checkPhase = '' + ${python.interpreter} runtests.py + ''; + + doCheck = false; # Lots of weird compiler errors meta = { description = "An optimising static compiler for both the Python programming language and the extended Cython programming language"; From 541fe51a5125ebd61db8099d24561854be0de821 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sat, 23 Jan 2016 19:00:09 +0100 Subject: [PATCH 049/268] pythonPackages.bottleneck: fix test runner --- pkgs/top-level/python-packages.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 4423e1a1db8..c8bbafd884f 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -13952,7 +13952,12 @@ in modules // { url = "https://pypi.python.org/packages/source/B/Bottleneck/Bottleneck-${version}.tar.gz"; sha256 = "15dl0ll5xmfzj2fsvajzwxsb9dbw5i9fx9i4r6n4i5nzzba7m6wd"; }; + + buildInputs = with self; [ nose ]; propagatedBuildInputs = [self.numpy]; + checkPhase = '' + nosetests -v $out/${python.sitePackages} + ''; }; paho-mqtt = buildPythonPackage rec { From a1618008655c8758bab8963436a5461e51361379 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sat, 23 Jan 2016 19:41:26 +0100 Subject: [PATCH 050/268] pythonPackages.cytoolz: fix test runner, disable tests for 3.5 --- pkgs/top-level/python-packages.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index c8bbafd884f..66f62f9e825 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -3311,10 +3311,12 @@ in modules // { buildInputs = with self; [ nose ]; checkPhase = '' - nosetests cytoolz/tests + nosetests -v $out/${python.sitePackages} ''; - doCheck = false; # Cannot import the extension module + # Several tests fail with Python 3.5 + # https://github.com/pytoolz/cytoolz/issues/73 + doCheck = !isPy35; meta = { homepage = "http://github.com/pytoolz/cytoolz/"; From 18ae7a182bae3b6f023d8e8b35556e939bc8ab95 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sat, 23 Jan 2016 20:47:49 +0100 Subject: [PATCH 051/268] pythonPackages.pexpect: disable tests --- pkgs/top-level/python-packages.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 66f62f9e825..2f300fcbb4f 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14322,6 +14322,9 @@ in modules // { sha256 = "dfea618d43e83cfff21504f18f98019ba520f330e4142e5185ef7c73527de5ba"; }; + # Wants to run python in a subprocess + doCheck = false; + meta = { homepage = http://www.noah.org/wiki/Pexpect; description = "Automate interactive console applications such as ssh, ftp, etc"; From a086b364dafca9f80eb2690c561b8a108ba94bbf Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sat, 23 Jan 2016 20:50:59 +0100 Subject: [PATCH 052/268] pythonPackages.qrcode: disable for python 3.x --- pkgs/top-level/python-packages.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 2f300fcbb4f..45b90c934c7 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -19950,6 +19950,10 @@ in modules // { sha256 = "0skzrvhjnnacrz52jml4i050vdx5lfcd3np172srxjaghdgfxg9k"; }; + # Errors in several tests: + # TypeError: must be str, not bytes + disabled = isPy3k; + propagatedBuildInputs = with self; [ six pillow ]; meta = { From f1c24d4866e6a59faec9fea5dd69cfbb2808b0fa Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sat, 23 Jan 2016 21:03:23 +0100 Subject: [PATCH 053/268] pythonPackages.willow: 0.2.1 -> 0.2.2, disable tests Test data is not included. --- pkgs/top-level/python-packages.nix | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 45b90c934c7..61c260778dc 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -24174,15 +24174,19 @@ in modules // { willow = buildPythonPackage rec { name = "willow-${version}"; - version = "0.2.1"; + version = "0.2.2"; disabled = pythonOlder "2.7"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/W/Willow/Willow-${version}.tar.gz"; - sha256 = "0mgdpq7cvyvgk0n8ibkym3nsw1xg89kbismsj2y186ldcyxfajwa"; + sha256 = "111c82fbfcda2710ce6201b0b7e0cfa1ff3c4f2f0dc788cc8dfc8db933c39c73"; }; - propagatedBuildInputs = with self; [ six ]; + propagatedBuildInputs = with self; [ six pillow ]; + + # Test data is not included + # https://github.com/torchbox/Willow/issues/34 + doCheck = false; meta = { description = "A Python image library that sits on top of Pillow, Wand and OpenCV"; From 7051a66805d2ff13a7be4b71561b566391e19dfe Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sat, 23 Jan 2016 21:11:19 +0100 Subject: [PATCH 054/268] pythonPackages.fs: 0.5.0 -> 0.5.4 --- pkgs/top-level/python-packages.nix | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 61c260778dc..bd7c74d2c7e 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -8709,15 +8709,27 @@ in modules // { }); fs = buildPythonPackage rec { - name = "fs-0.5.0"; + name = "fs-0.5.4"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/f/fs/${name}.tar.gz"; - sha256 = "144f4yn2nvnxh2vrnmiabpwx3s637np0d1j1w95zym790d66shir"; + sha256 = "ba2cca8773435a7c86059d57cb4b8ea30fda40f8610941f7822d1ce3ffd36197"; }; + LC_ALL = "en_US.UTF-8"; + buildInputs = [ pkgs.glibcLocales ]; propagatedBuildInputs = [ self.six ]; + checkPhase = '' + ${python.interpreter} -m unittest discover + ''; + + # Judging from SyntaxError + disabled = isPy3k; + + # Lots of errors. Likely due to being in a chroot + doCheck = false; + meta = { description = "Filesystem abstraction"; homepage = http://pypi.python.org/pypi/fs; From c882af9cf3514157912edd1426bc6fda5f1aadc1 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sat, 23 Jan 2016 21:22:03 +0100 Subject: [PATCH 055/268] pythonPackages.pystache: fix test runner --- pkgs/top-level/python-packages.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index bd7c74d2c7e..104fc318155 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -16166,6 +16166,18 @@ in modules // { sha256 = "f7bbc265fb957b4d6c7c042b336563179444ab313fb93a719759111eabd3b85a"; }; + LC_ALL = "en_US.UTF-8"; + + buildInputs = [ pkgs.glibcLocales ]; + + checkPhase = '' + ${python.interpreter} -m unittest discover + ''; + + # SyntaxError Python 3 + # https://github.com/defunkt/pystache/issues/181 + disabled = isPy3k; + meta = { description = "A framework-agnostic, logic-free templating system inspired by ctemplate and et"; homepage = https://github.com/defunkt/pystache; From 945872dc193e4c445cee477858092692eb96ef69 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sat, 23 Jan 2016 21:32:23 +0100 Subject: [PATCH 056/268] pythonPackages.fasteners: fix test runner --- pkgs/top-level/python-packages.nix | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 104fc318155..249c2119fcf 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -13649,7 +13649,14 @@ in modules // { sha256 = "0nghdq3zihiqg10dp76ls7yn44m5wjncyz7fk8isagkrspkh9a3n"; }; - propagatedBuildInputs = with self; [ six monotonic ]; + propagatedBuildInputs = with self; [ six monotonic testtools ]; + + checkPhase = '' + ${python.interpreter} -m unittest discover + ''; + # Tests are written for Python 3.x only (concurrent.futures) + doCheck = isPy3k; + meta = with stdenv.lib; { description = "Fasteners"; From 8c4831206691965977d41ac910b73a28bfd3b995 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 24 Jan 2016 09:37:02 +0100 Subject: [PATCH 057/268] pythonPackages.traitlets: fix test runner --- pkgs/top-level/python-packages.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 249c2119fcf..2674e22fa14 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -19867,6 +19867,9 @@ in modules // { name = "testtools-${version}"; version = "1.8.0"; + # Python 2 only judging from SyntaxError + disabled = isPy3k; + src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/t/testtools/${name}.tar.gz"; sha256 = "15yxz8d70iy1b1x6gd7spvblq0mjxjardl4vnaqasxafzc069zca"; @@ -19892,8 +19895,13 @@ in modules // { sha256 = "440e38dfa5d2a26c086d4b427cfb7aed17d0a2dca78bce90c33354da2592af5b"; }; + buildInputs = with self; [ nose mock ]; propagatedBuildInputs = with self; [ipython_genutils decorator]; + checkPhase = '' + nosetests -v + ''; + meta = { description = "Traitlets Python config system"; homepage = http://ipython.org/; From 3b2e3355db9726a9656761024d3b9c9645640263 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 24 Jan 2016 09:45:56 +0100 Subject: [PATCH 058/268] pythonPackages.traits: disable tests Broken test suite. --- pkgs/top-level/python-packages.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 2674e22fa14..c1eb0530b90 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -20123,6 +20123,18 @@ in modules // { md5 = "3ad558eebaedc63c29c80183c0371d2f"; }; + # Use pytest because its easier to discover tests + buildInputs = with self; [ pytest ]; + checkPhase = '' + py.test $out/${python.sitePackages} + ''; + + # Test suite is broken for 3.x on latest release + # https://github.com/enthought/traits/issues/187 + # https://github.com/enthought/traits/pull/188 + # Furthermore, some tests fail due to being in a chroot + doCheck = false; + propagatedBuildInputs = with self; [ numpy ]; meta = { From a57a8fae393d54fea4319eff6248f2b8f07789db Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 24 Jan 2016 09:54:39 +0100 Subject: [PATCH 059/268] pythonPackages.tidylib: fix test runner, disable tests --- pkgs/top-level/python-packages.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index c1eb0530b90..5e09ae6db40 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -18612,6 +18612,17 @@ in modules // { md5 = "2a28267370c9409b592cdb786649cb25"; }; + # Judging from SyntaxError in tests + disabled = isPy3k; + + checkPhase = '' + ${python.interpreter} -m unittest discover + ''; + + # Bunch of tests fail + # https://github.com/countergram/pytidylib/issues/13 + doCheck = false; + patchPhase = '' sed -i 's#load_library(name)#load_library("${pkgs.html-tidy}/lib/libtidy.so")#' tidylib/__init__.py ''; From 61e7978c4698743394014491fff82691e5070ce1 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 24 Jan 2016 10:21:06 +0100 Subject: [PATCH 060/268] pythonPackages.lazy-object-proxy: init at 1.2.1 --- pkgs/top-level/python-packages.nix | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 5e09ae6db40..c527bb70fa5 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -10282,6 +10282,30 @@ in modules // { }; }; + lazy-object-proxy = buildPythonPackage rec { + name = "lazy-object-proxy-${version}"; + version = "1.2.1"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/l/lazy-object-proxy/${name}.tar.gz"; + sha256 = "22ed751a2c63c6cf718674fd7461b1dfc45215bab4751ca32b6c9b8cb2734cb3"; + }; + + buildInputs = with self; [ pytest ]; + checkPhase = '' + py.test tests + ''; + + # Broken tests. Seem to be fixed upstream according to Travis. + doCheck = false; + + meta = { + description = "A fast and thorough lazy object proxy"; + homepage = https://github.com/ionelmc/python-lazy-object-proxy; + license = with licenses; [ bsd2 ]; + }; + + }; le = buildPythonPackage rec { name = "le-${version}"; From bb9f1e7e3b75512acc5cfa419ca272cc59b97d0a Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 24 Jan 2016 10:20:11 +0100 Subject: [PATCH 061/268] pythonPackages.astroid: 1.3.4 -> 1.4.4 --- pkgs/top-level/python-packages.nix | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index c527bb70fa5..8fa31fd7ef2 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -978,14 +978,22 @@ in modules // { }; }); - astroid = buildPythonPackage (rec { - name = "astroid-1.3.4"; - propagatedBuildInputs = with self; [ logilab_common six ]; + astroid = buildPythonPackage rec { + name = "astroid-1.4.4"; + + propagatedBuildInputs = with self; [ logilab_common six lazy-object-proxy ]; + src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/a/astroid/${name}.tar.gz"; - sha256 = "1fz9x21pziy9dmivvlsgl7a86ka2m9jp3pky01da5aj89ym3wi8b"; + sha256 = "7f7e5512efe515098e77cbd3a60e87c8db8954097b0e025d8d6f72f2e8ddc298"; }; - }); + + meta = { + description = "A abstract syntax tree for Python with inference support"; + homepage = http://bitbucket.org/logilab/astroid; + license = with licenses; [ lgpl2 ]; + }; + }; attrdict = buildPythonPackage (rec { name = "attrdict-2.0.0"; From 1a8c7c90301d5afb66aadfa24fb4d645af59e040 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 24 Jan 2016 10:20:55 +0100 Subject: [PATCH 062/268] pythonPackages.pytest_28: init at 2.8.6 --- pkgs/top-level/python-packages.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 8fa31fd7ef2..0cff9bbdc8e 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -3823,6 +3823,15 @@ in modules // { }; }; + pytest_28 = self.pytest.override rec { + name = "pytest-2.8.6"; + + src = pkgs.fetchurl { + url = "http://pypi.python.org/packages/source/p/pytest/${name}.tar.gz"; + sha256 = "ed38a3725b8e4478555dfdb549a4219ca3ba57955751141a1aaa45b706d84194"; + }; + }; + pytestcache = buildPythonPackage rec { name = "pytest-cache-1.0"; src = pkgs.fetchurl { From 9441311e932800bf9c1ff48718328c3f0bf4b840 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 24 Jan 2016 10:19:53 +0100 Subject: [PATCH 063/268] pythonPackages.pylint: 1.4.1 -> 1.5.4 --- .../python-modules/pylint/default.nix | 23 --------------- pkgs/top-level/python-packages.nix | 28 +++++++++++++++++-- 2 files changed, 26 insertions(+), 25 deletions(-) delete mode 100644 pkgs/development/python-modules/pylint/default.nix diff --git a/pkgs/development/python-modules/pylint/default.nix b/pkgs/development/python-modules/pylint/default.nix deleted file mode 100644 index 09890e8694f..00000000000 --- a/pkgs/development/python-modules/pylint/default.nix +++ /dev/null @@ -1,23 +0,0 @@ -{ stdenv, fetchurl, astroid, buildPythonPackage }: - -buildPythonPackage rec { - name = "pylint-1.4.1"; - namePrefix = ""; - - src = fetchurl { - url = "https://pypi.python.org/packages/source/p/pylint/${name}.tar.gz"; - sha256 = "0c7hw1pcp5sqmc0v86zygw21isfgzbsqdmlb1sywncnlxmh30f1y"; - }; - - propagatedBuildInputs = [ astroid ]; - - postInstall = '' - mkdir -p $out/share/emacs/site-lisp - cp "elisp/"*.el $out/share/emacs/site-lisp/ - ''; - - meta = { - homepage = http://www.logilab.org/project/pylint; - description = "A bug and style checker for Python"; - }; -} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 0cff9bbdc8e..14c6ac9b631 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -85,8 +85,6 @@ in modules // { blivet = callPackage ../development/python-modules/blivet { }; - pylint = callPackage ../development/python-modules/pylint { }; - dbus = callPackage ../development/python-modules/dbus { dbus = pkgs.dbus; }; @@ -15836,6 +15834,32 @@ in modules // { }; }; + pylint = buildPythonPackage rec { + name = "pylint-${version}"; + version = "1.5.4"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/p/pylint/${name}.tar.gz"; + sha256 = "2fe3cc2fc66a56fdc35dbbc2bf1dd96a534abfc79ee6b2ad9ae4fe166e570c4b"; + }; + + propagatedBuildInputs = with self; [ astroid ]; + + checkPhase = '' + cd pylint/test; ${python.interpreter} -m unittest discover -p "*test*" + ''; + + postInstall = '' + mkdir -p $out/share/emacs/site-lisp + cp "elisp/"*.el $out/share/emacs/site-lisp/ + ''; + + meta = { + homepage = http://www.logilab.org/project/pylint; + description = "A bug and style checker for Python"; + }; + }; + pyrr = buildPythonPackage rec { name = "pyrr-${version}"; version = "0.7.2"; From 7beace29affdd8328afafe3c22559aa0ac7a795b Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 24 Jan 2016 10:25:06 +0100 Subject: [PATCH 064/268] pythonPackages.funcparserlib: fix test runner, disable python 3.x --- pkgs/top-level/python-packages.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 14c6ac9b631..5312ba63254 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -5153,6 +5153,13 @@ in modules // { md5 = "3aba546bdad5d0826596910551ce37c0"; }; + checkPhase = '' + ${python.interpreter} -m unittest discover + ''; + + # Judging from SyntaxError in tests. + disabled = isPy3k; + meta = { description = "Recursive descent parsing library based on functional combinators"; homepage = https://code.google.com/p/funcparserlib/; From f46faccbf019c9da5e6949b6c7a596c359cc45c1 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 24 Jan 2016 10:30:21 +0100 Subject: [PATCH 065/268] pythonPackages.funcy: 1.4 -> 1.6 --- pkgs/top-level/python-packages.nix | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 5312ba63254..cf4691b2ef8 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -23129,13 +23129,16 @@ in modules // { funcy = buildPythonPackage rec { - name = "funcy-1.4"; + name = "funcy-1.6"; src = pkgs.fetchurl { - url = "https://github.com/Suor/funcy/archive/1.4.tar.gz"; - sha256 = "694e29aa67d03a6ab006f1854740b65f4f87e581afb33853f80e647ddb5f24e7"; + url = "https://pypi.python.org/packages/source/f/funcy/${name}.tar.gz"; + sha256 = "511495db0c5660af18d3151b008c6ce698ae7fbf60887278e79675e35eed1f01"; }; + # No tests + doCheck = false; + meta = { description = "Collection of fancy functional tools focused on practicality"; homepage = "http://funcy.readthedocs.org/"; From 0ea690d4e141497dc7740d13f92eec9b6859382c Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 24 Jan 2016 10:34:37 +0100 Subject: [PATCH 066/268] pythonPackages.audioread: 1.2.1 -> 2.1.1 --- pkgs/top-level/python-packages.nix | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index cf4691b2ef8..639f9b4246e 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -1011,13 +1011,17 @@ in modules // { }); audioread = buildPythonPackage rec { - name = "audioread-1.2.1"; + name = "audioread-${version}"; + version = "2.1.1"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/a/audioread/${name}.tar.gz"; - md5 = "01a80357f38dbd9bf8d7403802df89ac"; + sha256 = "ffb601de7a9e40850d4ec3256a3a6bbe8fa40466dafb5c65f41b08e4bb963f1e"; }; + # No tests, need to disable or py3k breaks + doCheck = false; + meta = { description = "Cross-platform audio decoding"; homepage = "https://github.com/sampsyo/audioread"; From 07e721e18b0b7d72e307b7e9af3d7a6b3be04d57 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 24 Jan 2016 10:37:08 +0100 Subject: [PATCH 067/268] pythonPackages.thrift: 0.9.2 -> 0.9.3 --- pkgs/top-level/python-packages.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 639f9b4246e..9ff75e968e5 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -23800,13 +23800,16 @@ in modules // { thrift = buildPythonPackage rec { name = "thrift-${version}"; - version = "0.9.2"; + version = "0.9.3"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/t/thrift/${name}.tar.gz"; - sha256 = "1yla6wg18x2a0l0lrvkp1v464hqhff98ck8pnv8d5j9kn3j6bxh8"; + sha256 = "dfbc3d3bd19d396718dab05abaf46d93ae8005e2df798ef02e32793cd963877e"; }; + # No tests. Breaks when not disabling. + doCheck = false; + meta = { description = "Python bindings for the Apache Thrift RPC system"; homepage = http://thrift.apache.org/; From b23586919c12ec395e72505b8c1a92406eb4bfb7 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 24 Jan 2016 10:41:45 +0100 Subject: [PATCH 068/268] pythonPackages.iniparse: disable tests --- pkgs/top-level/python-packages.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 9ff75e968e5..e1c37eaab4f 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -5690,6 +5690,13 @@ in modules // { sha256 = "0m60k46vr03x68jckachzsipav0bwhhnqb8715hm1cngs89fxhdb"; }; + checkPhase = '' + ${python.interpreter} runtests.py + ''; + + # Does not install tests + doCheck = false; + meta = with stdenv.lib; { description = "Accessing and Modifying INI files"; license = licenses.mit; From 2e5ec8d35c3d85eba23c78ab29c3d0a41f8fd72e Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 24 Jan 2016 10:45:09 +0100 Subject: [PATCH 069/268] pythonPackages.eventlib: Disable python 3 --- pkgs/top-level/python-packages.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index e1c37eaab4f..c9c6fbc29d9 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -4948,6 +4948,9 @@ in modules // { name = "python-eventlib-${version}"; version = "0.2.1"; + # Judging from SyntaxError + disabled = isPy3k; + src = pkgs.fetchurl { url = "http://download.ag-projects.com/SipClient/${name}.tar.gz"; sha256 = "25224794420f430946fe46932718b521a6264903fe8c0ed3563dfdb844c623e7"; From 268439eb36c07859907d21080fecd64b05911951 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 24 Jan 2016 10:47:21 +0100 Subject: [PATCH 070/268] pythonPackages.fastimport: fix testrunner, disable python 3 --- pkgs/top-level/python-packages.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index c9c6fbc29d9..4977abceb52 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -8252,11 +8252,18 @@ in modules // { name = "fastimport-${version}"; version = "0.9.4"; + # Judging from SyntaxError + disabled = isPy3k; + src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/f/fastimport/${name}.tar.gz"; sha256 = "0k8x7552ypx9rc14vbsvg2lc6z0r8pv9laah28pdwyynbq10825d"; }; + checkPhase = '' + ${python.interpreter} -m unittest discover + ''; + meta = { homepage = https://launchpad.net/python-fastimport; description = "VCS fastimport/fastexport parser"; From b1152099cdcd3b442b750fdd1fcd2224191a6f49 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 24 Jan 2016 12:13:42 +0100 Subject: [PATCH 071/268] pythonPackages.astroid: fix missing dependency --- pkgs/top-level/python-packages.nix | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 4977abceb52..353e8470c7a 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -979,13 +979,20 @@ in modules // { astroid = buildPythonPackage rec { name = "astroid-1.4.4"; - propagatedBuildInputs = with self; [ logilab_common six lazy-object-proxy ]; + propagatedBuildInputs = with self; [ logilab_common six lazy-object-proxy wrapt ]; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/a/astroid/${name}.tar.gz"; sha256 = "7f7e5512efe515098e77cbd3a60e87c8db8954097b0e025d8d6f72f2e8ddc298"; }; + checkPhase = '' + ${python.interpreter} -m unittest discover + ''; + + # Tests cannot be found because they're named unittest_... + # instead of test_... + meta = { description = "A abstract syntax tree for Python with inference support"; homepage = http://bitbucket.org/logilab/astroid; From 5ce5577cd1e2d54e16674afa6ab91590af3b83a5 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 24 Jan 2016 12:14:05 +0100 Subject: [PATCH 072/268] pythonPackages.alabaster: 0.7.3 -> 0.7.7 --- pkgs/top-level/python-packages.nix | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 353e8470c7a..d77229e06d3 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -419,13 +419,18 @@ in modules // { }; alabaster = buildPythonPackage rec { - name = "alabaster-0.7.3"; + name = "alabaster-0.7.7"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/a/alabaster/${name}.tar.gz"; - md5 = "67428d1383fd833f1282fed5deba0898"; + sha256 = "f416a84e0d0ddbc288f6b8f2c276d10b40ca1238562cd9ed5a751292ec647b71"; }; + propagatedBuildInputs = with self; [ pygments ]; + + # No tests included + doCheck = false; + meta = { homepage = https://github.com/bitprophet/alabaster; description = "a Sphinx theme"; From 18355061b0a5fedcce054813db9849f233f2f3a7 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 24 Jan 2016 12:14:29 +0100 Subject: [PATCH 073/268] pythonPackages.setuptools_scm: 1.7.0 -> 1.10.1 --- pkgs/top-level/python-packages.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index d77229e06d3..0058fa36bb5 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -18359,11 +18359,11 @@ in modules // { setuptools_scm = buildPythonPackage rec { name = "setuptools_scm-${version}"; - version = "1.7.0"; + version = "1.10.1"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/s/setuptools_scm/${name}.tar.gz"; - sha256 = "f2f69c782b4f549003edf5b75b356b37f40a4e880b615996c5d9c117913d6f9c"; + url = "https://pypi.python.org/packages/source/s/setuptools_scm/${name}.tar.bz2"; + sha256 = "1cdea91bbe1ec4d52b3e9c451ab32ae6e1f3aa3fd91e90580490a9eb75bea286"; }; buildInputs = with self; [ pip ]; From 8dceb18ae2ec975e4dbd48f0c24603a6e8598a22 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 24 Jan 2016 12:14:48 +0100 Subject: [PATCH 074/268] pythonPackages.snowballstemmer: 1.2.0 -> 1.2.1 --- pkgs/top-level/python-packages.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 0058fa36bb5..f70b4c3a917 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -18567,13 +18567,16 @@ in modules // { }; snowballstemmer = buildPythonPackage rec { - name = "snowballstemmer-1.2.0"; + name = "snowballstemmer-1.2.1"; src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/s/snowballstemmer/${name}.tar.gz"; - md5 = "51f2ef829db8129dd0f2354f0b209970"; + sha256 = "919f26a68b2c17a7634da993d91339e288964f93c274f1343e3bbbe2096e1128"; }; + # No tests included + doCheck = false; + propagatedBuildInputs = with self; [ PyStemmer ]; meta = { From 8879d1dc049d900a607cec5f25166f4543e44cfb Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 24 Jan 2016 12:15:09 +0100 Subject: [PATCH 075/268] pythonPackages.Babel: 2.1.1 -> 2.2.0 --- 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 f70b4c3a917..37642bd3401 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -15345,11 +15345,11 @@ in modules // { Babel = buildPythonPackage (rec { - name = "Babel-2.1.1"; + name = "Babel-2.2.0"; src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/B/Babel/${name}.tar.gz"; - sha256 = "0j2jgfzj1a2m39pm2qc36fzr7a6p5ybwndi0xdzhi2p8zw7dbdkz"; + sha256 = "d8cb4c0e78148aee89560f9fe21587aa57739c975bb89ff66b1e842cc697428f"; }; buildInputs = with self; [ pytest ]; From ab870b756e6fa28e6ab73888da62286d265c5065 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 24 Jan 2016 12:15:47 +0100 Subject: [PATCH 076/268] pythonPackages.cytoolz: disable PyPy --- pkgs/top-level/python-packages.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 37642bd3401..5a6a27b08b7 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -3330,6 +3330,9 @@ in modules // { sha256 = "9c2e3dda8232b6cd5b84b8c8df6c8155c2adeb8734eb7ec38e189affc0f2eba5"; }; + # Extension types + disabled = isPyPy; + buildInputs = with self; [ nose ]; checkPhase = '' From 2a46ead803895e9e16489452d89058788155062c Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 24 Jan 2016 12:16:09 +0100 Subject: [PATCH 077/268] pythonPackages.bsddb3: disable Python 3.x --- pkgs/top-level/python-packages.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 5a6a27b08b7..05553a42090 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -2169,6 +2169,9 @@ in modules // { buildInputs = [ pkgs.db ]; + # Judging from SyntaxError in test + disabled = isPy3k; + # Path to database need to be set. # Somehow the setup.py flag is not propagated. #setupPyBuildFlags = [ "--berkeley-db=${pkgs.db}" ]; From 55d363736170a6b891b1f170fb8319f5260fac63 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 24 Jan 2016 12:26:54 +0100 Subject: [PATCH 078/268] pythonPackages.keepalive: 0.4.1 -> 0.5 --- pkgs/top-level/python-packages.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 05553a42090..8d9df0db901 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -7965,13 +7965,16 @@ in modules // { keepalive = buildPythonPackage rec { name = "keepalive-${version}"; - version = "0.4.1"; + version = "0.5"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/k/keepalive/keepalive-${version}.tar.gz"; - sha256 = "07vn3b67ajwi7vv37h02kw7hg2z5dxhn9947dnvii05rfr5b27iy"; + sha256 = "3c6b96f9062a5a76022f0c9d41e9ef5552d80b1cadd4fccc1bf8f183ba1d1ec1"; }; + # No tests included + doCheck = false; + meta = with stdenv.lib; { description = "An HTTP handler for `urllib2` that supports HTTP 1.1 and keepalive."; homepage = "https://github.com/wikier/keepalive"; From 5a6c570b4ef7c30fe5bc0a427636fbac42bd9d39 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 24 Jan 2016 12:27:24 +0100 Subject: [PATCH 079/268] pythonPackages.Fabric: 1.10.0 -> 1.10.2 --- pkgs/top-level/python-packages.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 8d9df0db901..c9343159202 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -5102,11 +5102,11 @@ in modules // { }; }; - fabric = buildPythonPackage rec { - name = "fabric-${version}"; - version = "1.10.0"; + Fabric = buildPythonPackage rec { + name = "Fabric-${version}"; + version = "1.10.2"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/F/Fabric/Fabric-${version}.tar.gz"; + url = "https://pypi.python.org/packages/source/F/Fabric/${name}.tar.gz"; sha256 = "0nikc05iz1fx2c9pvxrhrs819cpmg566azm99450yq2m8qmp1cpd"; }; disabled = isPy3k; From f586ff981a7e42ff5e4fafa63d6c1015cb6ddd05 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 24 Jan 2016 12:28:01 +0100 Subject: [PATCH 080/268] pythonPackages.fudge: 0.9.6 -> 1.1.0 --- pkgs/top-level/python-packages.nix | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index c9343159202..008aaf68ada 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -5160,13 +5160,19 @@ in modules // { }; fudge = buildPythonPackage rec { - name = "fudge-0.9.6"; + name = "fudge-1.1.0"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/f/fudge/${name}.tar.gz"; - sha256 = "185ia3vr3qk4f2s1a9hdxb8ci4qc0x0xidrad96pywg8j930qs9l"; + sha256 = "eba59a926fa1df1ab6dddd69a7a8af21865b16cad800cb4d1af75070b0f52afb"; }; buildInputs = with self; [ nose nosejs ]; propagatedBuildInputs = with self; [ sphinx ]; + + disabled = isPy3k; + + checkPhase = '' + nosetests -v + ''; }; From 07d5eae59db0133478bc96249c8e0d176bdbeb4b Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 24 Jan 2016 12:35:49 +0100 Subject: [PATCH 081/268] pythonPackages.nose-parameterized: fix test runner --- pkgs/top-level/python-packages.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 008aaf68ada..23caadfe5d5 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -4186,8 +4186,17 @@ in modules // { sha256 = "a11c41b0cf8218e7cdc19ab7a1bdf5c141d161cd2350daee819473cc63cd0685"; }; + disabled = !isPy3k; + + LC_ALL = "en_US.UTF-8"; + buildInputs = with self; [ nose pkgs.glibcLocales ]; propagatedBuildInputs = with self; [ self.six ]; + checkPhase = '' + nosetests -v + ''; + + meta = { description = "Parameterized testing with any Python test framework"; homepage = http://pypi.python.org/pypi/nose-parameterized; From 7e6e897fce2e39886938075783d6d2dabe418c05 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 24 Jan 2016 12:40:51 +0100 Subject: [PATCH 082/268] pythonPackages.fusepy: disable tests --- pkgs/top-level/python-packages.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 23caadfe5d5..7a526cbf841 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -8847,6 +8847,9 @@ in modules // { propagatedBuildInputs = [ pkgs.fuse ]; + # No tests included + doCheck = false; + patchPhase = '' substituteInPlace fuse.py --replace \ "find_library('fuse')" "'${pkgs.fuse}/lib/libfuse.so'" From 4e1ed2fea0f11aeaddcfa051f6e704171ddd6f5a Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 24 Jan 2016 12:41:12 +0100 Subject: [PATCH 083/268] pythonPackages.ipywidgets: fix something --- pkgs/top-level/python-packages.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 7a526cbf841..f69072beaf2 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -9918,6 +9918,7 @@ in modules // { sha256 = "ceeb325e45ade9537c2d115fed9d522e5c6e90bb161592e2f0807375dc661028"; }; + buildInputs = with self; [ nose ]; propagatedBuildInputs = with self; [ipython ipykernel traitlets notebook]; meta = { From f10234eeb8a509b42386be2b7523b15840c08186 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 24 Jan 2016 12:41:41 +0100 Subject: [PATCH 084/268] pythonPackages.jupyter_client: add test runner, disable tests --- pkgs/top-level/python-packages.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index f69072beaf2..65a6fb5d17b 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -10186,8 +10186,16 @@ in modules // { sha256 = "ff1ef5c6c3031a62db46ec6329867b4cb1595e6102a7819b3b5252b0c524bdb8"; }; + buildInputs = with self; [ nose ]; propagatedBuildInputs = with self; [traitlets jupyter_core pyzmq] ++ optional isPyPy py; + checkPhase = '' + nosetests -v + ''; + + # Circular dependency with ipykernel + doCheck = false; + meta = { description = "Jupyter protocol implementation and client libraries"; homepage = http://jupyter.org/; From 7598a2513032ca310c285434303633754101a802 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 24 Jan 2016 12:42:29 +0100 Subject: [PATCH 085/268] pythonPackages.notebook: fix test runner, disable tests --- pkgs/top-level/python-packages.nix | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 65a6fb5d17b..8e0b9ac0fb0 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -12173,10 +12173,19 @@ in modules // { sha256 = "b597437ba33538221008e21fea71cd01eda9da1515ca3963d7c74e44f4b03d90"; }; - buildInputs = with self; [nose] ++ optionals isPy27 [mock]; + LC_ALL = "en_US.UTF-8"; + + buildInputs = with self; [nose pkgs.glibcLocales] ++ optionals isPy27 [mock]; propagatedBuildInputs = with self; [jinja2 tornado ipython_genutils traitlets jupyter_core jupyter_client nbformat nbconvert ipykernel terminado requests2 pexpect]; + checkPhase = '' + nosetests -v + ''; + + # Certain tests fail due to being in a chroot. + # PermissionError + doCheck = false; meta = { description = "The Jupyter HTML notebook is a web-based notebook environment for interactive computing"; homepage = http://jupyter.org/; From 0a9e7a5fe82c4cf363a223f22fc7ce3364ef78a6 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 24 Jan 2016 12:45:04 +0100 Subject: [PATCH 086/268] pythonPackages.jupyter_core: add test runner, disable tests --- pkgs/top-level/python-packages.nix | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 8e0b9ac0fb0..c727be0292c 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -10213,7 +10213,15 @@ in modules // { sha256 = "96a68a3b1d018ff7776270b26b7cb0cfd7a18a53ef2061421daff435707d198c"; }; - propagatedBuildInputs = with self; [traitlets]; + buildInputs = with self; [ pytest mock ]; + propagatedBuildInputs = with self; [ ipython traitlets]; + + checkPhase = '' + py.test + ''; + + # Several tests fail due to being in a chroot + doCheck = false; meta = { description = "Jupyter core package. A base package on which Jupyter projects rely"; From f9035f473e57a7667873296870c4bd5610d9e663 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 24 Jan 2016 12:45:27 +0100 Subject: [PATCH 087/268] pythonPackages.pygraphviz: fix url --- pkgs/top-level/python-packages.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index c727be0292c..af99b3b1da0 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -11595,7 +11595,7 @@ in modules // { name = "pygraphviz-${version}"; src = pkgs.fetchurl { - url = "https://github.com/pygraphviz/pygraphviz/archive/${name}.tar.gz"; + url = "https://pypi.python.org/packages/source/p/pygraphviz/${name}.tar.gz"; sha256 = "7c294cbc9d88946be671cc0d8602aac176d8c56695c0a7d871eadea75a958408"; }; From 992c5d95f063b1dd51dc3718b44768336dcadd6b Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 24 Jan 2016 12:45:57 +0100 Subject: [PATCH 088/268] pythonPackages.nbconvert: add test runner, disable tests --- pkgs/top-level/python-packages.nix | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index af99b3b1da0..07d53a8ebdc 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -11761,10 +11761,17 @@ in modules // { sha256 = "e0296e45293dd127d028f678e3b6aba3f1db3283a134178bdb49eea402d4cf1c"; }; - buildInputs = with self; [nose]; + buildInputs = with self; [nose ipykernel ]; propagatedBuildInputs = with self; [mistune jinja2 pygments traitlets jupyter_core nbformat ipykernel tornado jupyter_client]; + checkPhase = '' + nosetests -v + ''; + + # PermissionError. Likely due to being in a chroot + doCheck = false; + meta = { description = "Converting Jupyter Notebooks"; homepage = http://jupyter.org/; From ca1e2f05b7a6e60cbba0f8ff5c6e2a550246cdbf Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 24 Jan 2016 12:46:42 +0100 Subject: [PATCH 089/268] pythonPackages.nbformat: add nose --- pkgs/top-level/python-packages.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 07d53a8ebdc..369890f17a0 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -11789,6 +11789,7 @@ in modules // { sha256 = "5261c957589b9dfcd387c338d59375162ba9ca82c69e378961a1f4e641285db5"; }; + buildInputs = with self; [ nose ]; propagatedBuildInputs = with self; [ipython_genutils traitlets jsonschema jupyter_core]; meta = { From 1a25a73299167de77b9bd75d0cf24d7d100f54c8 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 24 Jan 2016 12:47:18 +0100 Subject: [PATCH 090/268] pythonPackages.nose-cover3: disable tests --- pkgs/top-level/python-packages.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 369890f17a0..b55c1c832e8 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -12129,6 +12129,9 @@ in modules // { propagatedBuildInputs = with self; [ nose ]; + # No tests included + doCheck = false; + meta = { description = "Coverage 3.x support for Nose"; homepage = https://github.com/ask/nosecover3; From e09c4b3a9da26f58d7a7f4dc874f86ea19a7fcec Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 24 Jan 2016 12:47:50 +0100 Subject: [PATCH 091/268] pythonPackages.nosejs: fix test runner --- pkgs/top-level/python-packages.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index b55c1c832e8..a33c83cb386 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -12165,6 +12165,11 @@ in modules // { sha256 = "0qrhkd3sga56qf6k0sqyhwfcladwi05gl6aqmr0xriiq1sgva5dy"; }; buildInputs = with self; [ nose ]; + + checkPhase = '' + nosetests -v + ''; + }; nose-cprof = buildPythonPackage rec { From 3bb7c30cca6037096f68d315ad4e651338770f3b Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 24 Jan 2016 12:48:34 +0100 Subject: [PATCH 092/268] pythonPackages.ldappool: disable python 3.x --- pkgs/top-level/python-packages.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index a33c83cb386..93aec506175 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -13737,6 +13737,9 @@ in modules // { sha256 = "1akmzf51cjfvmd0nvvm562z1w9vq45zsx6fa72kraqgsgxhnrhqz"; }; + # Judging from SyntaxError + disabled = isPy3k; + meta = with stdenv.lib; { homepage = "https://github.com/mozilla-services/ldappool"; }; From 4bd7239f500f1fe00ad79c463578673820f09596 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 24 Jan 2016 12:48:58 +0100 Subject: [PATCH 093/268] pythonPackages.pygments: disable tests --- pkgs/top-level/python-packages.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 93aec506175..1209a3aaf45 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -15914,6 +15914,9 @@ in modules // { propagatedBuildInputs = with self; [ docutils ]; + # Circular dependency with sphinx + doCheck = false; + meta = { homepage = http://pygments.org/; description = "A generic syntax highlighter"; From 430ddcd65f3a08693777a6ee8e043d0a8ec69ff8 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 24 Jan 2016 12:49:34 +0100 Subject: [PATCH 094/268] pythonPackages.PyStemmer: fix test runner --- pkgs/top-level/python-packages.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 1209a3aaf45..593cb78d9b6 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -16380,6 +16380,10 @@ in modules // { md5 = "46ee623eeeba5a7cc0d95cbfa7e18abd"; }; + checkPhase = '' + ${python.interpreter} runtests.py + ''; + meta = { description = "Snowball stemming algorithms, for information retrieval"; homepage = http://snowball.tartarus.org/; From 6a1390aff3443fa71d1cbee6cf0df88d05fcdaf9 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 24 Jan 2016 12:50:31 +0100 Subject: [PATCH 095/268] pythonPackages.wrapt: disable tests --- pkgs/top-level/python-packages.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 593cb78d9b6..d7573f5c210 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14017,6 +14017,9 @@ in modules // { name = "wrapt-${version}"; version = "1.10.5"; + # No tests in archive + doCheck = false; + src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/w/wrapt/${name}.tar.gz"; sha256 = "0cq8rlpzkxzk48b50yrfhzn1d1hrq4gjcdqlrgq4v5palgiv9jwr"; From 2144c41530c4f759b6e4339ac7b1763a3aedf9f3 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 24 Jan 2016 13:06:03 +0100 Subject: [PATCH 096/268] pythonPackages.pypdf2: mark broken --- pkgs/top-level/python-packages.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index d7573f5c210..5df72d24697 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -16696,9 +16696,11 @@ in modules // { sha256 = "1sw225j9fgsvg1zm7lrij96fihfmq8pc1vg611dc55491zvj9ls3"; }; - buildInputs = with self; [ ]; + LC_ALL = "en_US.UTF-8"; + buildInputs = [ pkgs.glibcLocales ]; meta = { + broken = true; # 2 tests, both fail description = "A Pure-Python library built as a PDF toolkit"; homepage = "http://mstamy2.github.com/PyPDF2/"; license = licenses.bsd3; From 63804899ecba7298013760f756071663b1e40dfd Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 24 Jan 2016 13:10:52 +0100 Subject: [PATCH 097/268] pythonPackages.GitPython: disable tests --- pkgs/top-level/python-packages.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 5df72d24697..eba96d22f1b 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -5425,9 +5425,14 @@ in modules // { sha256 = "0q7plxnbbkp5dd0k73736l7gf932a89yy920yrgl8amfpixw324w"; }; - buildInputs = with self; [ nose ]; + buildInputs = with self; [ mock nose ]; propagatedBuildInputs = with self; [ gitdb ]; + # All tests error with + # InvalidGitRepositoryError: /tmp/nix-build-python2.7-GitPython-1.0.1.drv-0/GitPython-1.0.1 + # Maybe due to being in a chroot? + doCheck = false; + meta = { description = "Python Git Library"; maintainers = with maintainers; [ mornfall ]; From 9558ab1ba933afda579dbfd986ea12718ac3b33f Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 24 Jan 2016 13:29:32 +0100 Subject: [PATCH 098/268] pythonPackages.reportlab: fix test runner --- pkgs/top-level/python-packages.nix | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index eba96d22f1b..6c2bf932cff 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -17295,7 +17295,17 @@ in modules // { sha256 = "14v212cq2w3p0j5xydfr8rav8c8qas1q845r0xj7fm6q5dk8grkj"; }; - buildInputs = with self; [ freetype pillow pip ]; + LC_ALL = "en_US.UTF-8"; + buildInputs = with self; [ freetype pillow pip pkgs.glibcLocales ]; + + patchPhase = '' + rm tests/test_graphics_barcode.py + rm tests/test_graphics_render.py + ''; + + checkPhase = '' + ${python.interpreter} tests/runAll.py + ''; meta = { description = "An Open Source Python library for generating PDFs and graphics"; From 4afc8dba8418015c27f07d55c693cb59c47a4f25 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 24 Jan 2016 13:32:51 +0100 Subject: [PATCH 099/268] pythonPackages.mrbob: 0.1.1 -> 0.1.2 --- pkgs/top-level/python-packages.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 6c2bf932cff..9f38fdab5cd 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -11364,15 +11364,17 @@ in modules // { mrbob = buildPythonPackage rec { name = "mrbob-${version}"; - version = "0.1.1"; + version = "0.1.2"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/m/mr.bob/mr.bob-${version}.zip"; - md5 = "84a117c9a75b86842b0fa5f5c9c767f3"; + url = "http://pypi.python.org/packages/source/m/mr.bob/mr.bob-${version}.tar.gz"; + sha256 = "6737eaf98aaeae85e07ebef844ee5156df2f06a8b28d7c3dcb056f811c588121"; }; buildInputs = [ pkgs.glibcLocales self.mock ]; + disabled = isPy3k; + LC_ALL="en_US.UTF-8"; propagatedBuildInputs = with self; [ argparse jinja2 six modules.readline ] ++ From d9193873562af5ab7a45c0a10d6a87477fe5a08f Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 24 Jan 2016 13:35:26 +0100 Subject: [PATCH 100/268] pythonPackages.cmd2: disable tests --- pkgs/top-level/python-packages.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 9f38fdab5cd..dc5f01c4024 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -13176,6 +13176,9 @@ in modules // { sha256 = "1a346zcd46c8gwbbp2cxsmvgfkyy26kwxjzdnkv7n47w6660sy5c"; }; + # No tests included + doCheck = false; + propagatedBuildInputs = with self; [ pyparsing ]; From 8f1ab60ad2944ff2ff363e3218b3413527dcd47f Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 24 Jan 2016 13:55:02 +0100 Subject: [PATCH 101/268] pythonPackages.slixmpp: 1.0.post5 -> 1.1 --- pkgs/top-level/python-packages.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index dc5f01c4024..673e608c522 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -11845,16 +11845,16 @@ in modules // { slixmpp = buildPythonPackage rec { name = "slixmpp-${version}"; - version = "1.0.post5"; + version = "1.1"; disabled = (!isPy34); src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/s/slixmpp/${name}.tar.gz"; - sha256 = "0ik23w3y52m30z56874wgac07j70k7b06n20j44slii8avf58p4b"; + sha256 = "030ca7e71cbb7e17fb48f83db97779fdbac0b4424cef01245f3276a110b30a6c"; }; - propagatedBuildInputs = with self ; [ aiodns pyasn1 ]; + propagatedBuildInputs = with self ; [ aiodns pyasn1 pkgs.gnupg1]; meta = { meta = "Elegant Python library for XMPP"; From 9890ee7bc119bd7791e34d9f09c59f32174a741d Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 24 Jan 2016 13:55:19 +0100 Subject: [PATCH 102/268] pythonPackages.pycares: 0.7.0 -> 1.0.0 --- pkgs/top-level/python-packages.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 673e608c522..8e2d7e6d17f 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -6554,15 +6554,18 @@ in modules // { pycares = buildPythonPackage rec { name = "pycares-${version}"; - version = "0.7.0"; + version = "1.0.0"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/p/pycares/${name}.tar.gz"; - sha256 = "10lr3ij67khmfm14cb3sqch3vhv37f3j1whwznq6qy4prfmz5gvl"; + sha256 = "a18341ea030e2cc0743acdf4aa72302bdf6b820938b36ce4bd76e43faa2276a3"; }; propagatedBuildInputs = [ pkgs.c-ares ]; + # No tests included + doCheck = false; + meta = { homepage = http://github.com/saghul/pycares; description = "Interface for c-ares"; From b69ff580e295860bd487eedf014257eed943e071 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 24 Jan 2016 13:55:59 +0100 Subject: [PATCH 103/268] pythonPackages.poezio: add test runner --- pkgs/top-level/python-packages.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 8e2d7e6d17f..36fde7a4991 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -24233,6 +24233,8 @@ in modules // { namePrefix = ""; disabled = (!isPy34); + + buildInputs = with self; [ pytest ]; propagatedBuildInputs = with self ; [ aiodns slixmpp pyinotify potr ]; patches = From e6e5655926fadf1ab4d872fa830ead353a7714c6 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 24 Jan 2016 14:07:13 +0100 Subject: [PATCH 104/268] pythonPackages.aiodns: 0.3.2 -> 1.0.0 --- pkgs/top-level/python-packages.nix | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 36fde7a4991..ef84d21e88c 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -377,16 +377,18 @@ in modules // { aiodns = buildPythonPackage rec { name = "aiodns-${version}"; - version = "0.3.2"; + version = "1.0.0"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/a/aiodns/${name}.tar.gz"; - sha256 = "0i9ypv9l4d59j87kkrsh1livfgnspyzcbx26jw9x58xs5z05xj7k"; + sha256 = "95140e4d2b67ee16dfbf357d9b54d7453b58f1732e81f869a1803a3ba3773b0d"; }; - propagatedBuildInputs = with self ; [ - pycares asyncio - ] ++ optional (isPy26 || isPy27 || isPyPy) self.trollius; + propagatedBuildInputs = with self; [ pycares ] ++ optional isPy33 asyncio ++ optional (isPy26 || isPy27 || isPyPy) trollius; + + # Tests are not distributed + # https://github.com/saghul/aiodns/issues/13 + doCheck = false; meta = { homepage = http://github.com/saghul/aiodns; From 85a3f52e102a456cb6ab2c5a34644f67634181f2 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 24 Jan 2016 14:08:44 +0100 Subject: [PATCH 105/268] pythonPackages.futures: 3.0.3 -> 3.0.4 --- pkgs/top-level/python-packages.nix | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index ef84d21e88c..f0ef1db45ed 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -8913,16 +8913,23 @@ in modules // { futures = buildPythonPackage rec { name = "futures-${version}"; - version = "3.0.3"; + version = "3.0.4"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/f/futures/${name}.tar.gz"; - sha256 = "2fe2342bb4fe8b8e217f0d21b5921cbe5408bf966d9f92025e707e881b198bed"; + sha256 = "19485d83f7bd2151c0aeaf88fbba3ee50dadfb222ffc3b66a344ef4952b782a3"; }; # This module is for backporting functionality to Python 2.x, it's builtin in py3k disabled = isPy3k; + checkPhase = '' + ${python.interpreter} -m unittest discover + ''; + + # Tests fail + doCheck = false; + meta = with pkgs.stdenv.lib; { description = "Backport of the concurrent.futures package from Python 3.2"; homepage = "https://github.com/agronholm/pythonfutures"; From 446a99b9d5c84abad513dbf2572f738179df5559 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 24 Jan 2016 14:27:46 +0100 Subject: [PATCH 106/268] pythonPackages.ipyparallel: disable tests --- pkgs/top-level/python-packages.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index f0ef1db45ed..cffee8679e0 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -9856,8 +9856,13 @@ in modules // { sha256 = "c943f6b3bbabb9332336d15474969e2a7a73d5b583f9786f7b357c75e4b1709a"; }; + buildInputs = with self; [ nose ]; + propagatedBuildInputs = with self; [ipython_genutils decorator pyzmq ipython jupyter_client ipykernel]; + # Requires access to cluster + doCheck = false; + meta = { description = "Interactive Parallel Computing with IPython"; homepage = http://ipython.org/; From d893d1c8ebb1cd15dad4b1aabfc60408dfa70a8b Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 24 Jan 2016 14:28:33 +0100 Subject: [PATCH 107/268] pythonPackages.fudge_9: init at 0.9.6 needed for Fabric --- pkgs/top-level/python-packages.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index cffee8679e0..fed8e49eaaa 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -5186,6 +5186,14 @@ in modules // { ''; }; + fudge_9 = self.fudge.override rec { + name = "fudge-0.9.6"; + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/f/fudge/${name}.tar.gz"; + sha256 = "34690c4692e8717f4d6a2ab7d841070c93c8d0ea0d2615b47064e291f750b1a0"; + }; + }; + funcparserlib = buildPythonPackage rec { name = "funcparserlib-0.3.6"; From 3da674148be0f57e044e67e0996fe7098aa65cbe Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 24 Jan 2016 14:28:56 +0100 Subject: [PATCH 108/268] pythonPackages.Fabric: fix dependency on fudge<1 --- pkgs/top-level/python-packages.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index fed8e49eaaa..ccd9de5bb80 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -5123,7 +5123,7 @@ in modules // { disabled = isPy3k; doCheck = (!isPyPy); # https://github.com/fabric/fabric/issues/11891 propagatedBuildInputs = with self; [ paramiko pycrypto ]; - buildInputs = with self; [ fudge nose ]; + buildInputs = with self; [ fudge_9 nose ]; }; fedora_cert = stdenv.mkDerivation (rec { From 4104f09fab21a23c173eb2072bae0da56e6850fc Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 24 Jan 2016 14:32:10 +0100 Subject: [PATCH 109/268] pythonPackages.qtconsole: add nose --- pkgs/top-level/python-packages.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index ccd9de5bb80..bfccc347cad 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -17490,7 +17490,7 @@ in modules // { sha256 = "741906acae9e02c0df9138ac88b621ef22e438565aa96d783a9ef88faec3de46"; }; - buildInputs = with self; [] ++ optionals isPy27 [mock]; + buildInputs = with self; [ nose ] ++ optionals isPy27 [mock]; propagatedBuildInputs = with self; [traitlets jupyter_core jupyter_client pygments ipykernel pyqt4]; meta = { From dbe8f255619d06e9ffe2386da8e32e26546022f3 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 24 Jan 2016 14:47:25 +0100 Subject: [PATCH 110/268] pythonPackages.slixmpp: add missing dependency --- pkgs/top-level/python-packages.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index bfccc347cad..bee03724711 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -11879,7 +11879,7 @@ in modules // { sha256 = "030ca7e71cbb7e17fb48f83db97779fdbac0b4424cef01245f3276a110b30a6c"; }; - propagatedBuildInputs = with self ; [ aiodns pyasn1 pkgs.gnupg1]; + propagatedBuildInputs = with self ; [ aiodns pyasn1 pkgs.gnupg1 pyasn1-modules]; meta = { meta = "Elegant Python library for XMPP"; From 7d0ed7978edcca88ae4e23a98f249a624a2ce659 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 24 Jan 2016 14:47:41 +0100 Subject: [PATCH 111/268] pythonPackages.reportlab: disable for PyPy --- pkgs/top-level/python-packages.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index bee03724711..300f6a9e560 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -17337,6 +17337,9 @@ in modules // { ${python.interpreter} tests/runAll.py ''; + # See https://bitbucket.org/pypy/compatibility/wiki/reportlab%20toolkit + disabled = isPypy; + meta = { description = "An Open Source Python library for generating PDFs and graphics"; homepage = http://www.reportlab.com/; From 3d565008e88c7c0e36ac897ce087fd14f7d15877 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 24 Jan 2016 14:54:50 +0100 Subject: [PATCH 112/268] pythonPackages.readme: fix test runner, disable tests --- pkgs/top-level/python-packages.nix | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 300f6a9e560..f473457ed12 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -17659,12 +17659,17 @@ in modules // { sha256 = "08j2w67nilczn1i5r7h22vag9673i6vnfhyq2rv27r1bdmi5a30m"; }; + buildInputs = with self; [ pytest ]; propagatedBuildInputs = with self; [ six docutils pygments bleach html5lib ]; - buildInputs = with self; [ - ]; + checkPhase = '' + py.test + ''; + + # Tests fail, possibly broken. + doCheck = false; meta = with stdenv.lib; { description = "readme"; From 2902ad92f7e896bfd802be0c5f8fa3e3b637ce8d Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 24 Jan 2016 15:07:01 +0100 Subject: [PATCH 113/268] pythonPackages.jmespath: fix test runner --- pkgs/top-level/python-packages.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index f473457ed12..48cf354ab55 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -10176,6 +10176,7 @@ in modules // { sha256 = "1lazbx65imassd7h24z49za001rvx1lmx8r0l21h4izs7pp14nnd"; }; + buildInputs = with self; [ nose ]; propagatedBuildInputs = with self; [ ply ]; meta = { From df24802268b7a19b05085cc13a1d5aa83bea76e0 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 24 Jan 2016 15:13:41 +0100 Subject: [PATCH 114/268] pythonPackages.ply: 3.7 -> 3.8 --- pkgs/top-level/python-packages.nix | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 48cf354ab55..48743705928 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -12751,13 +12751,21 @@ in modules // { }; ply = buildPythonPackage (rec { - name = "ply-3.7"; + name = "ply-3.8"; src = pkgs.fetchurl { - url = "http://www.dabeaz.com/ply/${name}.tar.gz"; - sha256 = "105gw1xayqww99qsls0lv37z4hzg5qnglxkd7s3h96hw9jsbfpzq"; + url = "https://pypi.python.org/packages/source/p/ply/${name}.tar.gz"; + sha256 = "e7d1bdff026beb159c9942f7a17e102c375638d9478a7ecd4cc0c76afd8de0b8"; }; + checkPhase = '' + ${python.interpreter} test/testlex.py + ${python.interpreter} test/testyacc.py + ''; + + # Test suite appears broken + doCheck = false; + meta = { homepage = http://www.dabeaz.com/ply/; From 9226f8783e0e875975124be204c55fd55ce7fc9c Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 24 Jan 2016 15:18:39 +0100 Subject: [PATCH 115/268] pythonPackages.pyopengl: disable tests --- pkgs/top-level/python-packages.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 48743705928..be9d6a7b936 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -16779,6 +16779,12 @@ in modules // { license = "BSD-style"; platforms = platforms.mesaPlatforms; }; + + # Need to fix test runner + # Tests have many dependencies + # Extension types could not be found. + # Should run test suite from $out/${python.sitePackages} + doCheck = false; }; pyopenssl = buildPythonPackage rec { From 8ebd757d8baf6353e667c3869ab02b2637d7990e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Sun, 24 Jan 2016 15:28:49 +0100 Subject: [PATCH 116/268] nixopsUnstable: nixops --- pkgs/top-level/all-packages.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 1c283e4acb1..be51779be12 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -15466,7 +15466,7 @@ let nixops = callPackage ../tools/package-management/nixops { }; - nixopsUnstable = callPackage ../tools/package-management/nixops/unstable.nix { }; + nixopsUnstable = nixops;# callPackage ../tools/package-management/nixops/unstable.nix { }; nixui = callPackage ../tools/package-management/nixui { node_webkit = nwjs_0_12; }; From ac160ab42f19922711328c339e1fa7513779250f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Sun, 24 Jan 2016 15:32:46 +0100 Subject: [PATCH 117/268] fabric -> Fabric --- pkgs/top-level/all-packages.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index be51779be12..0f564112dc4 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1452,7 +1452,7 @@ let f2fs-tools = callPackage ../tools/filesystems/f2fs-tools { }; - fabric = pythonPackages.fabric; + Fabric = pythonPackages.Fabric; fail2ban = callPackage ../tools/security/fail2ban { }; From ba82374e3fc827bae6609af83b6e2047f2b4418b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Sun, 24 Jan 2016 15:33:35 +0100 Subject: [PATCH 118/268] fix eval --- pkgs/top-level/python-packages.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index be9d6a7b936..54adf571a00 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -17353,7 +17353,7 @@ in modules // { ''; # See https://bitbucket.org/pypy/compatibility/wiki/reportlab%20toolkit - disabled = isPypy; + disabled = isPyPy; meta = { description = "An Open Source Python library for generating PDFs and graphics"; From fb4560ceda3b0f033f7d175531e315bad90dca5f Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 24 Jan 2016 15:34:00 +0100 Subject: [PATCH 119/268] pythonPackage.cffi_0_8: exit at 0.8.6 --- pkgs/top-level/python-packages.nix | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 54adf571a00..854273227ec 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -3749,21 +3749,6 @@ in modules // { }; }; - cffi_0_8 = if isPyPy then null else buildPythonPackage rec { - name = "cffi-0.8.6"; - - src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/c/cffi/${name}.tar.gz"; - sha256 = "0406j3sgndmx88idv5zxkkrwfqxmjl18pj8gf47nsg4ymzixjci5"; - }; - - propagatedBuildInputs = with self; [ pkgs.libffi pycparser ]; - - meta = { - maintainers = with maintainers; [ iElectric ]; - }; - }; - cffi = if isPyPy then null else buildPythonPackage rec { name = "cffi-1.3.0"; From e09ad08442f802b7789ff915029f537baf366323 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 24 Jan 2016 15:38:55 +0100 Subject: [PATCH 120/268] pythonPackages.qtconsole: disable tests --- pkgs/top-level/python-packages.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 854273227ec..14dc8d85f0c 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -17496,6 +17496,9 @@ in modules // { buildInputs = with self; [ nose ] ++ optionals isPy27 [mock]; propagatedBuildInputs = with self; [traitlets jupyter_core jupyter_client pygments ipykernel pyqt4]; + # : cannot connect to X server + doCheck = false; + meta = { description = "Jupyter Qt console"; homepage = http://jupyter.org/; From 32582d2873f5ac0211845a0c8097ae8e2f3b0445 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 24 Jan 2016 15:52:40 +0100 Subject: [PATCH 121/268] pythonPackages.pycparser: disable python 3.5 --- pkgs/top-level/python-packages.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 14dc8d85f0c..7c63e3cba82 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -3797,6 +3797,9 @@ in modules // { sha256 = "7959b4a74abdc27b312fed1c21e6caf9309ce0b29ea86b591fd2e99ecdf27f73"; }; + # Unsupported + disabled = isPy35; + meta = { description = "C parser in Python"; homepage = https://github.com/eliben/pycparser; From baaa62e1a9d7cc1e48524a0600eeb3e305e584c3 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 24 Jan 2016 15:53:36 +0100 Subject: [PATCH 122/268] python.qtconsole: explain why tests disabled --- pkgs/top-level/python-packages.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 7c63e3cba82..103e5bdc963 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -17499,7 +17499,7 @@ in modules // { buildInputs = with self; [ nose ] ++ optionals isPy27 [mock]; propagatedBuildInputs = with self; [traitlets jupyter_core jupyter_client pygments ipykernel pyqt4]; - # : cannot connect to X server + # : cannot connect to X server doCheck = false; meta = { From 4d1405091d6322f0a3bc8e2d5caef5ce74b8972c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Sun, 24 Jan 2016 15:53:21 +0100 Subject: [PATCH 123/268] pythonPackages.shapely: run tests from --- pkgs/top-level/python-packages.nix | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 103e5bdc963..a73e3adbf0a 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -18800,10 +18800,8 @@ in modules // { sed -i "s|_lgeos = load_dll('geos_c', fallbacks=.*)|_lgeos = load_dll('geos_c', fallbacks=['${pkgs.geos}/lib/libgeos_c.so'])|" shapely/geos.py ''; - # Error when importing extension types. Happens also after install - checkPhase = '' - py.test tests + py.test $out ''; meta = { From 9e988d4f702d6504144f0f4f42f277f573d0c699 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Sun, 24 Jan 2016 16:00:39 +0100 Subject: [PATCH 124/268] pythonPackages.Logbook: 0.4.2 -> 0.11.3, enable tests --- pkgs/top-level/python-packages.nix | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index a73e3adbf0a..b6201c7666e 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -22980,14 +22980,20 @@ in modules // { Logbook = buildPythonPackage rec { name = "Logbook-${version}"; - version = "0.4.2"; + version = "0.11.3"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/L/Logbook/${name}.tar.gz"; - # md5 = "143cb15af4c4a784ca785a1546ad1b93"; - sha256 = "1g2pnhxh7m64qsrs0ifwcmpfk7gqjvrawd8z66i001rsdnq778v0"; + sha256 = "0bchn00jj0y4dmrmqsm29ffcx37g79jcxjihadmgz2aj0z6dbsrc"; }; + buildInputs = [ self.pytest ]; + + checkPhase = '' + find tests -name \*.pyc -delete + py.test tests + ''; + meta = { homepage = http://pythonhosted.org/Logbook/; description = "A logging replacement for Python"; From e0606c55dcc192ad0685f3cd5e7bd1b65032edad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Sun, 24 Jan 2016 16:04:49 +0100 Subject: [PATCH 125/268] pythonPackages.nose-progressive: 1.3 -> 1.5.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 b6201c7666e..2084ab7f19b 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -19023,11 +19023,11 @@ in modules // { }; nose_progressive = buildPythonPackage rec { - name = "nose-progressive-1.3"; + name = "nose-progressive-1.5.1"; src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/n/nose-progressive/${name}.tar.gz"; - md5 = "180be93929c5962044a35489f193259d"; + sha256 = "0mfbjv3dcg23q0a130670g7xpfyvgza4wxkj991xxh8w9hs43ga4"; }; buildInputs = with self; [ pillow blessings nose ]; From 09cd68dfb2474d1788208d1e92b9bb99e4463193 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 24 Jan 2016 16:04:06 +0100 Subject: [PATCH 126/268] pythonPackages.cairocffi: 0.7.1 -> 0.7.2, mark as broken Fixed the test runner. Apparently a library could not be opened. --- pkgs/top-level/python-packages.nix | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 2084ab7f19b..93dab5b754d 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -2581,21 +2581,32 @@ in modules // { cairocffi = buildPythonPackage rec { - name = "cairocffi-0.7.1"; + name = "cairocffi-0.7.2"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/c/cairocffi/${name}.tar.gz"; - md5 = "e26d06a8d8b16c7210414ce15d453636"; + sha256 = "e42b4256d27bd960cbf3b91a6c55d602defcdbc2a73f7317849c80279feeb975"; }; + LC_ALL = "en_US.UTF-8"; + buildInputs = with self; [ pytest pkgs.glibcLocales ]; propagatedBuildInputs = with self; [ pkgs.cairo cffi ]; + checkPhase = '' + py.test $out/${python.sitePackages} + ''; + + # Marked broken since according to test + # Happens with 0.7.1 and 0.7.2 + # OSError: dlopen() failed to load a library: gdk_pixbuf-2.0 / gdk_pixbuf-2.0-0 + patchPhase = '' # Hardcode cairo library path sed -e 's,ffi\.dlopen(,&"${pkgs.cairo}/lib/" + ,' -i cairocffi/__init__.py ''; meta = { + broken = true; homepage = https://github.com/SimonSapin/cairocffi; license = "bsd"; description = "cffi-based cairo bindings for Python"; From 62d914d8a2c8759d3f18d0133a3c72e11da80767 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Sun, 24 Jan 2016 16:15:31 +0100 Subject: [PATCH 127/268] pythonPackages.jedi: 0.8.1 -> 0.9.0, disable tests --- pkgs/top-level/python-packages.nix | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 93dab5b754d..6505a53d0f6 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -10081,13 +10081,22 @@ in modules // { }; jedi = buildPythonPackage (rec { - name = "jedi-0.8.1"; + name = "jedi-0.9.0"; src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/j/jedi/${name}.tar.gz"; - sha256 = "1a7bg159mc1la5p1zsblzpr9hmypa7nz0mpvf7dww57cgi2sw8sd"; + sha256 = "0c8x962ynpx001fdvp07m2q5jk4igkxbj3rmnydavphvlgxijk1v"; }; + buildInputs = [ self.pytest ]; + + checkPhase = '' + py.test test + ''; + + # 7 failed + doCheck = false; + meta = { homepage = https://github.com/davidhalter/jedi; description = "An autocompletion tool for Python that can be used for text editors"; From cc960f658c70e03d90563332156fc75df921e279 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Sun, 24 Jan 2016 16:40:58 +0100 Subject: [PATCH 128/268] pythonPackages.deform_bootstrap: fix build --- pkgs/top-level/python-packages.nix | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 6505a53d0f6..8dac17020f5 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -4408,7 +4408,13 @@ in modules // { sha256 = "1hgq3vqsfqdmlyahnlc40w13viawhpzqf4jzigsggdb41x545fda"; }; - propagatedBuildInputs = with self; [ deform ]; + buildInputs = [ self.mock ]; + propagatedBuildInputs = with self; [ deform pyramid ]; + + # demo is removed as it depends on deformdemo + patchPhase = '' + rm -rf deform_bootstrap/demo + ''; meta = { maintainers = with maintainers; [ iElectric ]; From 6dbec4451cd9fb0eed327ebccb571950901a74af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Sun, 24 Jan 2016 16:45:33 +0100 Subject: [PATCH 129/268] tlsh: 3.4.1 -> 3.4.5, disable tests --- pkgs/top-level/python-packages.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 8dac17020f5..f7b16024a6b 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -23216,14 +23216,16 @@ in modules // { }; tlsh = buildPythonPackage rec { - name = "tlsh-3.4.1"; + name = "tlsh-3.4.5"; src = pkgs.fetchFromGitHub { owner = "trendmicro"; repo = "tlsh"; - rev = "b319aed6a270cc765347296b442820c495018833"; - sha256 = "08ysniihvidcyvh9zip64wwvj7mvxvsqs60ci8cxj28f1ip0n8wg"; + rev = "22fa9a62068b92c63f2b5a87004a7a7ceaac1930"; + sha256 = "1ydliir308xn4ywy705mmsh7863ldlixdvpqwdhbipzq9vfpmvll"; }; buildInputs = with pkgs; [ cmake ]; + # no test data + doCheck = false; preConfigure = '' mkdir build cd build From 5a5e0757c5b15e319f74a2bf29b7253871080d22 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Sun, 24 Jan 2016 16:47:10 +0100 Subject: [PATCH 130/268] azure-common: disable on PyPy --- pkgs/top-level/python-packages.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index f7b16024a6b..f703ab97e3e 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -1190,6 +1190,7 @@ in modules // { azure-common = buildPythonPackage rec { version = "1.0.0"; name = "azure-common-${version}"; + disabled = isPyPy; src = pkgs.fetchurl { url = https://pypi.python.org/packages/source/a/azure-common/azure-common-1.0.0.zip; sha256 = "074rwwy8zzs7zw3nww5q2wg5lxgdc4rmypp2gfc9mwsz0gb70491"; From ced3914cdc5fdcb7c45186f61b7cc68c50a0db36 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 24 Jan 2016 16:49:10 +0100 Subject: [PATCH 131/268] pythonPackages.awscli: disable testing --- pkgs/top-level/python-packages.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index f703ab97e3e..9ba83526b41 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -1125,6 +1125,9 @@ in modules // { sha256 = "0b50de084c8de70adf45c0e938b6350344d9b6acde8b7cdee02cb32964bc58fd"; }; + # No tests included + doCheck = false; + propagatedBuildInputs = with self; [ botocore bcdoc From 2c1c74649766a0c6954f647ee40be28de48e1274 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 24 Jan 2016 16:49:26 +0100 Subject: [PATCH 132/268] pythonPackages.botocore: fix test runner, disable testing --- pkgs/top-level/python-packages.nix | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 9ba83526b41..3d9bcbdedf9 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -2296,7 +2296,7 @@ in modules // { }; botocore = buildPythonPackage rec { - version = "1.3.12"; + version = "1.3.12"; # This version is required by awscli name = "botocore-${version}"; src = pkgs.fetchurl { @@ -2310,15 +2310,19 @@ in modules // { self.jmespath ]; - buildInputs = [ self.docutils ]; + buildInputs = with self; [ docutils mock nose ]; + + checkPhase = '' + nosetests -v + ''; + + # Network access + doCheck = false; meta = { homepage = https://github.com/boto/botocore; - license = "bsd"; - description = "A low-level interface to a growing number of Amazon Web Services"; - }; }; From 6985596af880ac068f77eec6e8b140bea78efdf4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Sun, 24 Jan 2016 16:50:48 +0100 Subject: [PATCH 133/268] filebrowser_safe: fix tests --- pkgs/top-level/python-packages.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 3d9bcbdedf9..8d76f81fd7a 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -8431,9 +8431,11 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/f/filebrowser_safe/${name}.tar.gz"; - md5 = "12a1ad3a1ed6a9377e758c4fa7fee570"; + sha256 = "02bn60fdslvng2ckn65fms3hjbzgsa8qa5161a8lr720wbx8gpj2"; }; + buildInputs = [ self.django ]; + meta = { description = "A snapshot of django-filebrowser for the Mezzanine CMS"; longDescription = '' From 215c5e4f78dc75706cac0ba85047f36343b712b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Sun, 24 Jan 2016 16:56:01 +0100 Subject: [PATCH 134/268] django_1_9: don't run tests --- pkgs/top-level/python-packages.nix | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 8d76f81fd7a..6ff387a76db 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -7597,6 +7597,9 @@ in modules // { wrapPythonProgramsIn $out/bin "$out $pythonPath" ''; + # too complicated to setup + doCheck = false; + meta = { description = "A high-level Python Web framework"; homepage = https://www.djangoproject.com/; @@ -7613,7 +7616,7 @@ in modules // { sha256 = "1n3hb80v7wl5j2mry5pfald6i9z42a9c3m9405877iqw3v49csc2"; }; - # error: invalid command 'test' + # too complicated to setup doCheck = false; # patch only $out/bin to avoid problems with starter templates (see #3134) @@ -7638,7 +7641,7 @@ in modules // { sha256 = "0xbwg6nyvwcbp2hvk0x3s5y823k5kizn0za1bl2rf6g6xcn7sddr"; }; - # error: invalid command 'test' + # too complicated to setup doCheck = false; # patch only $out/bin to avoid problems with starter templates (see #3134) @@ -7661,7 +7664,7 @@ in modules // { sha256 = "0misvia78c14y07zs5xsb9lv54q0v217jpaindrmhhw4wiryal3y"; }; - # error: invalid command 'test' + # too complicated to setup doCheck = false; # patch only $out/bin to avoid problems with starter templates (see #3134) @@ -7684,7 +7687,7 @@ in modules // { sha256 = "1vbcvn6ncg7hq5i1w95h746vkq9lmp120vx63h3p56z5nsz7gpmk"; }; - # error: invalid command 'test' + # too complicated to setup doCheck = false; # patch only $out/bin to avoid problems with starter templates (see #3134) From 2b3f17f4e8d52c767ec9052ed6e547098736c1c6 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 24 Jan 2016 17:06:03 +0100 Subject: [PATCH 135/268] pythonPackages.dateutil_1_5: disable for python 3.x --- pkgs/top-level/python-packages.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 6ff387a76db..4fe590d52bf 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -4280,6 +4280,8 @@ in modules // { dateutil_1_5 = buildPythonPackage (rec { name = "dateutil-1.5"; + disabled = isPy3k; + src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/p/python-dateutil/python-${name}.tar.gz"; sha256 = "02dhw57jf5kjcp7ng1if7vdrbnlpb9yjmz7wygwwvf3gni4766bg"; From a98b8f3f111d4d712c1f2a902a3fc85af4893822 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 24 Jan 2016 17:08:11 +0100 Subject: [PATCH 136/268] pythonPackages.pygments_2_0: init at 2.0.2 --- pkgs/top-level/python-packages.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 4fe590d52bf..ac21aa9082d 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -16001,6 +16001,16 @@ in modules // { }; }; + # For Pelican 3.6.3 + pygments_2_0 = self.pygments.override rec { + version = "2.0.2"; + name = "Pygments-${version}"; + + src = pkgs.fetchurl { + url = "http://pypi.python.org/packages/source/P/Pygments/${name}.tar.gz"; + sha256 = "7320919084e6dac8f4540638a46447a3bd730fca172afc17d2c03eed22cf4f51"; + }; + }; pygpgme = buildPythonPackage rec { version = "0.3"; From d9066cd36fec3116a01ed06df97ee5f365698fb9 Mon Sep 17 00:00:00 2001 From: Al Zohali Date: Sun, 24 Jan 2016 18:51:59 +0300 Subject: [PATCH 137/268] flashplayer-standalone: init at 11.2.202.559 --- .../flashplayer-11/default.nix | 36 +++++++++++++++++-- pkgs/top-level/all-packages.nix | 4 +++ 2 files changed, 37 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 9521e1debd7..f29f569cd3a 100644 --- a/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer-11/default.nix +++ b/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer-11/default.nix @@ -1,4 +1,5 @@ { stdenv +, lib , fetchurl , zlib , alsaLib @@ -54,6 +55,7 @@ let else "_linux.i386" else throw "Flash Player is not supported on this platform"; + is-i686 = (stdenv.system == "i686-linux"); in stdenv.mkDerivation rec { name = "flashplayer-${version}"; @@ -67,19 +69,47 @@ stdenv.mkDerivation rec { buildInputs = [ unzip ]; postUnpack = '' - cd */*${arch} - tar -xvzf *${suffix}.tar.gz + pushd $sourceRoot + tar -xvzf *${arch}/*${suffix}.tar.gz + + ${ lib.optionalString is-i686 '' + tar -xvzf */*_sa.*.tar.gz + tar -xvzf */*_sa_debug.*.tar.gz + ''} + + popd ''; - sourceRoot = "."; + sourceRoot = "fp_${version}_archive"; dontStrip = true; dontPatchELF = true; + outputs = [ "out" ] ++ lib.optionals is-i686 ["sa" "saDbg" ]; + installPhase = '' mkdir -p $out/lib/mozilla/plugins cp -pv libflashplayer.so $out/lib/mozilla/plugins patchelf --set-rpath "$rpath" $out/lib/mozilla/plugins/libflashplayer.so + + ${ lib.optionalString is-i686 '' + mkdir -p $sa/bin + cp flashplayer $sa/bin/ + + patchelf \ + --set-interpreter $(cat $NIX_CC/nix-support/dynamic-linker) \ + --set-rpath "$rpath" \ + $sa/bin/flashplayer + + + mkdir -p $saDbg/bin + cp flashplayerdebugger $saDbg/bin/ + + patchelf \ + --set-interpreter $(cat $NIX_CC/nix-support/dynamic-linker) \ + --set-rpath "$rpath" \ + $saDbg/bin/flashplayerdebugger + ''} ''; passthru = { diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index d8a56bcb179..20011a65bad 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -11846,6 +11846,10 @@ let debug = config.flashplayer.debug or false; }; + flashplayer-standalone = pkgsi686Linux.flashplayer.sa; + + flashplayer-standalone-debugger = pkgsi686Linux.flashplayer.saDbg; + fluxbox = callPackage ../applications/window-managers/fluxbox { }; fme = callPackage ../applications/misc/fme { From 3479b2f985ac8ebe3f6d8e6be28b0108ecc495ee Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 24 Jan 2016 17:08:46 +0100 Subject: [PATCH 138/268] pythonPackages.typogrify: disable tests --- pkgs/top-level/python-packages.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index ac21aa9082d..3883d827191 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -24220,7 +24220,9 @@ in modules // { md5 = "63f38f80531996f187d2894cc497ba08"; }; disabled = isPyPy; - propagatedBuildInputs = with self; [ smartypants ]; + # Wants to set up Django + doCheck = false; + propagatedBuildInputs = with self; [ django_1_9 smartypants jinja2 ]; meta = { description = "Filters to enhance web typography, including support for Django & Jinja templates"; homepage = "https://github.com/mintchaos/typogrify"; From fcd91c453cea3f62201b0aa18b2eecc8c5880685 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Sun, 24 Jan 2016 17:13:20 +0100 Subject: [PATCH 139/268] ndg_httpsclient: disable tests --- pkgs/top-level/python-packages.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 3883d827191..097d37a11e9 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -6295,6 +6295,9 @@ in modules // { sha256 = "1prv4j3wcy9kl5ndd5by543xp4cji9k35qncsl995w6sway34s1a"; }; + # uses networking + doCheck = false; + meta = { homepage = https://github.com/cedadev/ndg_httpsclient/; description = "Provide enhanced HTTPS support for httplib and urllib2 using PyOpenSSL"; From feec7427e561d9dc4e2d02fe7bc989e5b9e95b4a Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 24 Jan 2016 17:34:36 +0100 Subject: [PATCH 140/268] pythonPackages.pycups: disable tests --- pkgs/top-level/python-packages.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 097d37a11e9..707a0719bee 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -15707,6 +15707,9 @@ in modules // { buildInputs = [ pkgs.cups ]; + # Wants to connect to CUPS + doCheck = false; + meta = { description = "Python bindings for libcups"; homepage = http://cyberelk.net/tim/software/pycups/; From 44f8a047f16296d516cbd225c7b98645b18e49ec Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 24 Jan 2016 17:34:46 +0100 Subject: [PATCH 141/268] pythonPackages.mysql: disable tests --- pkgs/top-level/python-packages.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 707a0719bee..135ae990214 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -11683,6 +11683,15 @@ in modules // { rev = "refs/tags/pymysql-${version}"; sha256 = "12v8bw7pp455zqkwraxk69qycz2ngk18bbz60v72kdbp6kssnqhz"; }; + + buildInputs = with self; [ unittest2 ]; + + checkPhase = '' + ${python.interpreter} runtests.py + ''; + + # Wants to connect to MySQL + doCheck = false; }; pymysqlsa = self.buildPythonPackage rec { From d483ad069fa00e6963a7ca1afe2a16b9c032a89e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Sun, 24 Jan 2016 17:35:12 +0100 Subject: [PATCH 142/268] pymysql: disable tests --- pkgs/top-level/python-packages.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 135ae990214..df4c71f85b6 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -11678,6 +11678,8 @@ in modules // { pymysql = buildPythonPackage rec { name = "pymysql-${version}"; version = "0.6.6"; + # expects a local myqsl instance + doCheck = false; src = pkgs.fetchgit { url = https://github.com/PyMySQL/PyMySQL.git; rev = "refs/tags/pymysql-${version}"; From 8dda9916e2ad60aea5ba1a9944169710678259aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Sun, 24 Jan 2016 17:36:52 +0100 Subject: [PATCH 143/268] sqlparse: disable tests on py3k --- pkgs/top-level/python-packages.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index df4c71f85b6..a7b4b9f09c5 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -11678,8 +11678,6 @@ in modules // { pymysql = buildPythonPackage rec { name = "pymysql-${version}"; version = "0.6.6"; - # expects a local myqsl instance - doCheck = false; src = pkgs.fetchgit { url = https://github.com/PyMySQL/PyMySQL.git; rev = "refs/tags/pymysql-${version}"; @@ -19643,6 +19641,9 @@ in modules // { name = "sqlparse-${version}"; version = "0.1.16"; + # the source wasn't transformed with 2to3 yet + doCheck = !isPy3k; + src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/s/sqlparse/${name}.tar.gz"; sha256 = "108gy82x7davjrn3jqn7yv4r5v4jrzp892ysfx8l00abr8v6r337"; From 50767cd994c9f2bba318cffe4743f1a684e57956 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Sun, 24 Jan 2016 17:40:16 +0100 Subject: [PATCH 144/268] pygeoip: disable tests --- pkgs/top-level/python-packages.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index a7b4b9f09c5..f96d272df3a 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -15961,6 +15961,9 @@ in modules // { md5 = "861664f8be3bed44820356539f2ea5b6"; }; + # requires geoip samples + doCheck = false; + buildInputs = with self; [ nose ]; meta = { From 5a738e45425555805a776bf7105a15a5e4fc1f47 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Sun, 24 Jan 2016 17:43:04 +0100 Subject: [PATCH 145/268] pygraphviz: force rebuild --- pkgs/top-level/python-packages.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index f96d272df3a..2cec67a82c8 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -11656,8 +11656,7 @@ in modules // { }; pygraphviz = buildPythonPackage rec { - version = "1.3.1"; - name = "pygraphviz-${version}"; + name = "pygraphviz-1.3.1"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/p/pygraphviz/${name}.tar.gz"; From e572aff12d65d4aedfd15c4f83556acecf5aadbb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Sun, 24 Jan 2016 17:50:14 +0100 Subject: [PATCH 146/268] futures_2_2: override futures --- pkgs/top-level/python-packages.nix | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 2cec67a82c8..eb7c60432de 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -8969,7 +8969,7 @@ in modules // { }; }; - futures_2_2 = buildPythonPackage rec { + futures_2_2 = self.futures.override { version = "2.2.0"; name = "futures-${version}"; @@ -8977,13 +8977,6 @@ in modules // { url = "https://pypi.python.org/packages/source/f/futures/${name}.tar.gz"; sha256 = "1lqfzl3z3pkxakgbcrfy6x7x0fp3q18mj5lpz103ljj7fdqha70m"; }; - - meta = with stdenv.lib; { - description = "Backport of the concurrent.futures package from Python 3.2"; - homepage = "https://github.com/agronholm/pythonfutures"; - license = licenses.bsd2; - maintainers = with maintainers; [ garbas ]; - }; }; gcovr = buildPythonPackage rec { From 7bc2f2413da67a2fd48802afe7dedc2a3bf4cef2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Sun, 24 Jan 2016 18:00:29 +0100 Subject: [PATCH 147/268] blessings,nose_progressive: bump and fix for py3k --- pkgs/top-level/python-packages.nix | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index eb7c60432de..85672ea2f59 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -19091,8 +19091,11 @@ in modules // { sha256 = "0mfbjv3dcg23q0a130670g7xpfyvgza4wxkj991xxh8w9hs43ga4"; }; - buildInputs = with self; [ pillow blessings nose ]; - propagatedBuildInputs = with self; [ modules.curses ]; + buildInputs = with self; [ nose ]; + propagatedBuildInputs = with self; [ pillow blessings ]; + + # fails with obscure error + doCheck = !isPy3k; meta = { maintainers = with maintainers; [ iElectric ]; @@ -19100,17 +19103,17 @@ in modules // { }; blessings = buildPythonPackage rec { - name = "blessings-1.5.1"; + name = "blessings-1.6"; src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/b/blessings/${name}.tar.gz"; - md5 = "fbbddbf20b1f9a13e3fa612b1e086fd8"; + sha256 = "01rhgn2c3xjf9h1lxij9m05iwf2ba6d0vd7nic26c2gic4q73igd"; }; - # 4 failing tests + # 4 failing tests, 2to3 doCheck = false; - buildInputs = with self; [ nose modules.curses ]; + propagatedBuildInputs = with self; [ modules.curses ]; meta = { maintainers = with maintainers; [ iElectric ]; From c0a54c4594af2e11e611a4ea43a907c602e2c424 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 24 Jan 2016 18:03:17 +0100 Subject: [PATCH 148/268] pythonPackages.uncertainties: disable tests --- pkgs/top-level/python-packages.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 85672ea2f59..c58b626913b 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -23377,6 +23377,9 @@ in modules // { description = "Transparent calculations with uncertainties on the quantities involved (aka error propagation)"; license = licenses.bsd3; }; + + # No tests included + doCheck = false; }; From 916f770ad4cd05c33606de5b82f576df53ba6aa5 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 24 Jan 2016 18:03:53 +0100 Subject: [PATCH 149/268] pythonPackages.testfixtures: fix test runner, disable tests --- pkgs/top-level/python-packages.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index c58b626913b..e463c0c092f 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -22428,6 +22428,16 @@ in modules // { sha256 = "0my8zq9d27mc7j78pz9971cn5wz6zi4vxlqa50szr2vq9j2xxkll"; }; + buildInputs = with self; [ nose mock manuel ]; + + checkPhase = '' + nosetests -v + ''; + + # Test suite seems broken + # TypeError: TestSuite() missing 1 required positional argument: 'm' + # Haven't checked with newer version + doCheck = false; meta = with stdenv.lib; { homepage = "https://github.com/Simplistix/testfixtures"; From af6d9c876cdff1243f31859bcf9ca7f0940b339b Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 24 Jan 2016 18:04:15 +0100 Subject: [PATCH 150/268] pythonPackages.tinycss: fix test runner --- pkgs/top-level/python-packages.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index e463c0c092f..84b3f15fe50 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -4035,6 +4035,14 @@ in modules // { sha256 = "1pichqra4wk86142hqgvy9s5x6c5k5zhy8l9qxr0620pqk8spbd4"; }; + buildInputs = with self; [ pytest ]; + + propagatedBuildInputs = with self; [ cssutils ]; + + checkPhase = '' + py.test $out/${python.sitePackages} + ''; + meta = { description = "complete yet simple CSS parser for Python"; license = licenses.bsd3; From 707f512c7d951c917b78d303e77a992913d06202 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 24 Jan 2016 18:10:44 +0100 Subject: [PATCH 151/268] fix eval --- pkgs/top-level/python-packages.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 84b3f15fe50..12b3bc4fdad 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -8977,7 +8977,7 @@ in modules // { }; }; - futures_2_2 = self.futures.override { + futures_2_2 = self.futures.override rec { version = "2.2.0"; name = "futures-${version}"; From 31e465b5848ff5cf7f243bc93a1b938ad7971cb6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Sun, 24 Jan 2016 18:13:53 +0100 Subject: [PATCH 152/268] dill: disable tests --- pkgs/top-level/python-packages.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 12b3bc4fdad..bfe2fabf9a3 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -4527,6 +4527,9 @@ in modules // { propagatedBuildInputs = with self; [objgraph]; + # failing tests + doCheck = false; + meta = { description = "Serialize all of python (almost)"; homepage = http://www.cacr.caltech.edu/~mmckerns/dill.htm; From e72f0f2a6cd9a154d0c7bb8c874025f3989b48a7 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 24 Jan 2016 18:29:45 +0100 Subject: [PATCH 153/268] pythonPackages.joblib: 0.9.0b4 -> 0.9.4 --- pkgs/top-level/python-packages.nix | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index bfe2fabf9a3..064dfa4e5dd 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -6968,11 +6968,14 @@ in modules // { joblib = buildPythonPackage rec { name = "joblib-${version}"; - version = "0.9.0b4"; + version = "0.9.4"; src = pkgs.fetchurl { - url = https://pypi.python.org/packages/source/j/joblib/joblib-0.9.0b4.tar.gz; - md5 = "e0d79a085d4773c7a61cd38b4fb6dad5"; + url = "https://pypi.python.org/packages/source/j/joblib/${name}.tar.gz"; + sha256 = "e5faacf0da7b3035dbca9d56210962b86564aafca71a25f4ea376a405455cd60"; }; + + buildInputs = with self; [ nose ]; + }; samplerate = buildPythonPackage rec { From 64e4bdf10910289592073b652c3db1dcbf877d0f Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 24 Jan 2016 18:29:59 +0100 Subject: [PATCH 154/268] pythonPackages.le: disable tests --- pkgs/top-level/python-packages.nix | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 064dfa4e5dd..7f159554dcd 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -10478,15 +10478,17 @@ in modules // { le = buildPythonPackage rec { name = "le-${version}"; - version = "1.4.13"; + version = "1.4.29"; - src = pkgs.fetchFromGitHub { - owner = "logentries"; - repo = "le"; - rev = "v${version}"; - sha256 = "12l6fqavykjinq286i9pgbbbrv5lq2mmiji91g0m05lfdx9pg4y1"; + src = pkgs.fetchurl { + url = "https://github.com/logentries/le/archive/v${version}.tar.gz"; + sha256 = "d29738937cb6e714b6ec2ae74b66b1983482ffd54b4faa40767af18509521d4c"; }; + disabled = isPy3k; + + doCheck = false; + propagatedBuildInputs = with self; [ simplejson psutil ]; meta = { From 6d478b3fafe58225e9c551ecad6d37272e295453 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 24 Jan 2016 18:49:16 +0100 Subject: [PATCH 155/268] pythonPackages.seaborn: fix test runner, disable tests --- pkgs/top-level/python-packages.nix | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 7f159554dcd..9a4456bd7d6 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -18529,15 +18529,23 @@ in modules // { }; }; - seaborn= buildPythonPackage rec { + seaborn = buildPythonPackage rec { name = "seaborn-0.6.0"; src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/s/seaborn/${name}.tar.gz"; md5 = "bc518f1f45dadb9deb2bb57ca3af3cad"; }; + buildInputs = with self; [ nose ]; propagatedBuildInputs = with self; [ pandas matplotlib ]; + checkPhase = '' + nosetests -v + ''; + + # Computationally very demanding tests + doCheck = false; + meta = { description = "statisitical data visualization"; homepage = "http://stanford.edu/~mwaskom/software/seaborn/"; From 3f82220c388162ad556afd226738982b7b31486e Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 24 Jan 2016 18:49:42 +0100 Subject: [PATCH 156/268] pythonPackages.umalqurra: no tests included --- pkgs/top-level/python-packages.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 9a4456bd7d6..14625ea3fa0 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -20736,6 +20736,9 @@ in modules // { sha256 = "719f6a36f908ada1c29dae0d934dd0f1e1f6e3305784edbec23ad719397de678"; }; + # No tests included + doCheck = false; + # See for license # https://github.com/tytkal/python-hijiri-ummalqura/issues/4 meta = { From 08d43cd52e167b29c1eeabf49bcfe7989cb53f43 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 24 Jan 2016 19:04:54 +0100 Subject: [PATCH 157/268] pythonPackages.cloudpickle: init at 0.1.1 --- pkgs/top-level/python-packages.nix | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 14625ea3fa0..046a236bd17 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -2984,6 +2984,22 @@ in modules // { }; }); + cloudpickle = buildPythonPackage rec { + name = "cloudpickle-${version}"; + version = "0.1.1"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/c/cloudpickle/${name}.tar.gz"; + sha256 = "3418303f44c6c4daa184f1dc36c8c0b7ff8261c56d1f922ffd8d09e79caa4b74"; + }; + + meta = { + description = "Extended pickling support for Python objects"; + homepage = https://github.com/cloudpipe/cloudpickle; + license = with licenses; [ bsd3 ]; + }; + }; + cogapp = buildPythonPackage rec { version = "2.3"; From b194f07fdabdc20a19a65abf5b63c19bcf1d82bf Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 24 Jan 2016 19:05:18 +0100 Subject: [PATCH 158/268] pythonPackages.dask: fix test runner, disable tests --- pkgs/top-level/python-packages.nix | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 046a236bd17..66e97e76277 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -4137,7 +4137,15 @@ in modules // { sha256 = "ff27419e059715907afefe6cbcc1f8c748855c7a93be25be211dabcb689cee3b"; }; - propagatedBuildInputs = with self; [numpy toolz dill]; + buildInputs = with self; [ pytest ]; + propagatedBuildInputs = with self; [numpy toolz dill pandas ]; + + checkPhase = '' + py.test dask + ''; + + # Segfault, likely in numpy + doCheck = false; meta = { description = "Minimal task scheduling abstraction"; From 6f32d2a805bfe537523d969e2651664bfb066645 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 24 Jan 2016 19:13:58 +0100 Subject: [PATCH 159/268] pythonPackages.tinycss: fix tests --- pkgs/top-level/python-packages.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 66e97e76277..2fb61d3e507 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -4059,6 +4059,9 @@ in modules // { py.test $out/${python.sitePackages} ''; + # Disable Cython tests for PyPy + TINYCSS_SKIP_SPEEDUPS_TESTS = optional isPyPy true; + meta = { description = "complete yet simple CSS parser for Python"; license = licenses.bsd3; From 63353f9270f0304b10240cd275cd94edfaa13d7c Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 24 Jan 2016 19:19:57 +0100 Subject: [PATCH 160/268] pythonPackages.cloudpickle: disable tests --- pkgs/top-level/python-packages.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 2fb61d3e507..5db05eb5964 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -2993,6 +2993,15 @@ in modules // { sha256 = "3418303f44c6c4daa184f1dc36c8c0b7ff8261c56d1f922ffd8d09e79caa4b74"; }; + buildInputs = with self; [ pytest mock ]; + + checkPhase = '' + py.test tests + ''; + + # ImportError of test suite + doCheck = false; + meta = { description = "Extended pickling support for Python objects"; homepage = https://github.com/cloudpipe/cloudpickle; From 33c3e2e4041f22b486327ae0bb96b0351adc16ba Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 24 Jan 2016 19:30:14 +0100 Subject: [PATCH 161/268] pythonPackages.xarray: fix test runner --- pkgs/top-level/python-packages.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 5db05eb5964..ea06706417c 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -21525,6 +21525,10 @@ in modules // { buildInputs = with self; [ pytest ]; propagatedBuildInputs = with self; [numpy pandas]; + checkPhase = '' + py.test $out/${python.sitePackages} + ''; + meta = { description = "N-D labeled arrays and datasets in Python"; homepage = https://github.com/pydata/xarray; From 28b460cdaa3c4b55dc9c532e1977a72b1e719a06 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 24 Jan 2016 19:36:07 +0100 Subject: [PATCH 162/268] pythonPackages.CommonMark: disable tests --- pkgs/top-level/python-packages.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index ea06706417c..8a4e29cd266 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -3060,6 +3060,8 @@ in modules // { LC_ALL="en_US.UTF-8"; + doCheck = false; + buildInputs = with self; [ flake8 pkgs.glibcLocales ]; propagatedBuildInputs = with self; [ future ]; From 80d38d12b42cf1033506b202e390199806e5ab7e Mon Sep 17 00:00:00 2001 From: Thomas Bereknyei Date: Thu, 17 Dec 2015 13:17:49 -0500 Subject: [PATCH 163/268] Gateone: fix cacerts dependency --- nixos/modules/services/networking/gateone.nix | 4 +--- pkgs/top-level/python-packages.nix | 9 ++++++--- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/nixos/modules/services/networking/gateone.nix b/nixos/modules/services/networking/gateone.nix index 93273837181..78ff0b76198 100644 --- a/nixos/modules/services/networking/gateone.nix +++ b/nixos/modules/services/networking/gateone.nix @@ -21,7 +21,7 @@ options = { }; config = mkIf cfg.enable { environment.systemPackages = with pkgs.pythonPackages; [ - gateone pkgs.openssh pkgs.procps pkgs.coreutils ]; + gateone pkgs.openssh pkgs.procps pkgs.coreutils pkgs.cacert]; users.extraUsers.gateone = { description = "GateOne privilege separation user"; @@ -49,8 +49,6 @@ config = mkIf cfg.enable { User = "gateone"; Group = "gateone"; WorkingDirectory = cfg.settingsDir; - PermissionsStartOnly = true; - }; wantedBy = [ "multi-user.target" ]; diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 41f0afd9e70..130abbe8f3b 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -5065,18 +5065,21 @@ in modules // { name = "gateone-1.2-0d57c3"; disabled = ! isPy27; src = pkgs.fetchFromGitHub { - rev = "11ed97c663b3e8c1b8eba473b5cf8362b10d57c3"; + rev = "1d0e8037fbfb7c270f3710ce24154e24b7031bea"; owner= "liftoff"; repo = "GateOne"; - sha256 ="0zp9vfs6sqbx4d0g45kkjinfmsl9zqwa6bhp3xd81wx3ph9yr1hq"; + sha256 = "1ghrawlqwv7wnck6alqpbwy9mpv0y21cw2jirrvsxaracmvgk6vv"; }; - propagatedBuildInputs = with self; [tornado futures html5lib readline pkgs.openssl]; + propagatedBuildInputs = with self; [tornado futures html5lib readline pkgs.openssl pkgs.cacert pkgs.openssh]; meta = { homepage = https://liftoffsoftware.com/; description = "GateOne is a web-based terminal emulator and SSH client"; maintainers = with maintainers; [ tomberek ]; }; + postInstall='' + cp -R $out/gateone/* $out/lib/python2.7/site-packages/gateone + ''; }; gcutil = buildPythonPackage rec { From 3622038d20bb88f9a77ffe371721a9f77627e8af Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Mon, 25 Jan 2016 12:13:10 +0300 Subject: [PATCH 164/268] easyrsa2: init at 2.2.0 --- pkgs/tools/networking/easyrsa/2.x.nix | 46 +++++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 48 insertions(+) create mode 100644 pkgs/tools/networking/easyrsa/2.x.nix diff --git a/pkgs/tools/networking/easyrsa/2.x.nix b/pkgs/tools/networking/easyrsa/2.x.nix new file mode 100644 index 00000000000..e49c32aac70 --- /dev/null +++ b/pkgs/tools/networking/easyrsa/2.x.nix @@ -0,0 +1,46 @@ +{ stdenv, fetchurl, autoconf, automake111x, makeWrapper +, gnugrep, openssl}: + +stdenv.mkDerivation rec { + name = "easyrsa-2.2.0"; + + src = fetchurl { + url = "https://github.com/OpenVPN/easy-rsa/archive/v2.2.0.tar.gz"; + sha256 = "1xq4by5frb6ikn53ss3y8v7ss639dccxfq8jfrbk07ynkmk668qk"; + }; + + # Copy missing files and autoreconf + preConfigure = '' + cp ${automake111x}/share/automake/install-sh . + cp ${automake111x}/share/automake/missing . + + autoreconf + ''; + + preBuild = '' + mkdir -p $out/share/easy-rsa + ''; + + nativeBuildInputs = [ autoconf makeWrapper automake111x ]; + buildInputs = [ gnugrep openssl]; + + # Make sane defaults and patch default config vars + postInstall = '' + cp $out/share/easy-rsa/openssl-1.0.0.cnf $out/share/easy-rsa/openssl.cnf + for prog in $(find "$out/share/easy-rsa" -executable -type f); do + makeWrapper "$prog" "$out/bin/$(basename $prog)" \ + --set EASY_RSA "$out/share/easy-rsa" \ + --set OPENSSL "${openssl}/bin/openssl" \ + --set GREP "${gnugrep}/bin/grep" + done + sed -i "/EASY_RSA=\|OPENSSL=\|GREP=/d" $out/share/easy-rsa/vars + ''; + + meta = with stdenv.lib; { + description = "Simple shell based CA utility"; + homepage = http://openvpn.net/; + license = licenses.gpl2; + maintainers = [ maintainers.offline ]; + platforms = platforms.linux; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 1b35d454d23..905b4c18e8a 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1386,6 +1386,8 @@ let easyrsa = callPackage ../tools/networking/easyrsa { }; + easyrsa2 = callPackage ../tools/networking/easyrsa/2.x.nix { }; + ebook_tools = callPackage ../tools/text/ebook-tools { }; ecryptfs = callPackage ../tools/security/ecryptfs { }; From 1f2b819783d00f876865aee20cb63c477331a901 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Mon, 25 Jan 2016 11:16:23 +0100 Subject: [PATCH 165/268] binutils: extend meta.platforms to unix to fix #12606 Also refactor meta. Maybe we could have platforms.all in there, but I leave it here. --- pkgs/development/tools/misc/binutils/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/tools/misc/binutils/default.nix b/pkgs/development/tools/misc/binutils/default.nix index 4cc4cadc280..86d69d8da8c 100644 --- a/pkgs/development/tools/misc/binutils/default.nix +++ b/pkgs/development/tools/misc/binutils/default.nix @@ -67,7 +67,7 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = { + meta = with stdenv.lib; { description = "Tools for manipulating binaries (linker, assembler, etc.)"; longDescription = '' The GNU Binutils are a collection of binary tools. The main @@ -76,8 +76,8 @@ stdenv.mkDerivation rec { `gprof', `nm', `strip', etc. ''; homepage = http://www.gnu.org/software/binutils/; - license = stdenv.lib.licenses.gpl3Plus; - platforms = stdenv.lib.platforms.linux; + license = licenses.gpl3Plus; + platforms = platforms.unix; /* Give binutils a lower priority than gcc-wrapper to prevent a collision due to the ld/as wrappers/symlinks in the latter. */ From c0691a0659a06a0edfaa529568982d34b88e7eb9 Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Sun, 24 Jan 2016 22:54:53 +0100 Subject: [PATCH 166/268] compcert: 2.5 -> 2.6 --- pkgs/development/compilers/compcert/default.nix | 6 +++--- pkgs/top-level/all-packages.nix | 6 ++++-- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/pkgs/development/compilers/compcert/default.nix b/pkgs/development/compilers/compcert/default.nix index 3b1ebca1796..190f2b7a96a 100644 --- a/pkgs/development/compilers/compcert/default.nix +++ b/pkgs/development/compilers/compcert/default.nix @@ -4,14 +4,14 @@ stdenv.mkDerivation rec { name = "compcert-${version}"; - version = "2.5"; + version = "2.6"; src = fetchurl { url = "http://compcert.inria.fr/release/${name}.tgz"; - sha256 = "15gxarl2a8mz33fdn8pycj0ccazgmllbg2940n7aqdjlz807p11n"; + sha256 = "05sdxgg2w7ykw6xbcq6dl2kzxdz4qzhjajiawpy6490wqiji7wm1"; }; - buildInputs = [ coq ] ++ (with ocamlPackages; [ ocaml menhir ]); + buildInputs = [ coq ] ++ (with ocamlPackages; [ ocaml findlib menhir ]); enableParallelBuilding = true; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 905b4c18e8a..a9d1569b24e 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -3883,11 +3883,13 @@ let cmucl_binary = callPackage_i686 ../development/compilers/cmucl/binary.nix { }; - compcert = callPackage ../development/compilers/compcert ( + compcert = callPackage ../development/compilers/compcert (( if system == "x86_64-linux" then { tools = pkgsi686Linux.stdenv.cc; } else {} - ); + ) // { + ocamlPackages = ocamlPackages_4_02; + }); cryptol = haskellPackages.cryptol; From 495e8a6906950f73d7a0090b693c9af6dd0a658e Mon Sep 17 00:00:00 2001 From: Shea Levy Date: Mon, 25 Jan 2016 10:21:09 -0500 Subject: [PATCH 167/268] rt: Include version in drv --- pkgs/servers/rt/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/servers/rt/default.nix b/pkgs/servers/rt/default.nix index 7f8c372c335..253f90e68ef 100644 --- a/pkgs/servers/rt/default.nix +++ b/pkgs/servers/rt/default.nix @@ -1,7 +1,9 @@ { stdenv, fetchurl, perl }: stdenv.mkDerivation rec { - name = "rt-4.2.12"; + name = "rt-${version}"; + + version = "4.2.12"; src = fetchurl { url = "https://download.bestpractical.com/pub/rt/release/${name}.tar.gz"; From 7b6454cbb959e001a1e421d6cc00a00994fb7518 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Mon, 25 Jan 2016 16:37:13 +0100 Subject: [PATCH 168/268] geolite-legacy 2016-01-18 -> 2016-01-25 --- 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 c5510b79cc3..24f987f374c 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 = "2016-01-18"; + version = "2016-01-25"; in stdenv.mkDerivation { name = "geolite-legacy-${version}"; @@ -27,10 +27,10 @@ stdenv.mkDerivation { "1fksbnmda2a05cpax41h9r7jhi8102q41kl5nij4ai42d6yqy73x"; srcGeoIPASNum = fetchDB "asnum/GeoIPASNum.dat.gz" "GeoIPASNum.dat.gz" - "00x6d11l8jxc1dj7p1kwmr3x1zwxwbv7xqbxj17j30s4qjmkb2i1"; + "1n7zlmnaxvjljyih9yi9hns530by21h42j2kcszbcyvn7rd9rnyw"; srcGeoIPASNumv6 = fetchDB "asnum/GeoIPASNumv6.dat.gz" "GeoIPASNumv6.dat.gz" - "0r84ji86q4f6maw3scx9i054nzhjg4kb26r6fp1jdbiqjp8mhkyw"; + "1id60almra7mq4v86p37sfph8jrbdnc5pzxvy55wiyrvf6ydvk56"; meta = with stdenv.lib; { inherit version; From 9fb8020e4ec2e74e39a8f28dfb3ef18a70bd1eef Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sun, 24 Jan 2016 20:31:44 +0100 Subject: [PATCH 169/268] Add version attribute where maintainers |= nckx This will probably be mandatory soon, and is a step in the right direction. Removes the deprecated meta.version, and move some meta sections to the end of the file where I should have put them in the first place. --- pkgs/applications/audio/fmit/default.nix | 5 +-- pkgs/applications/audio/id3v2/default.nix | 4 +- .../audio/keyfinder-cli/default.nix | 3 +- pkgs/applications/audio/keyfinder/default.nix | 39 ++++++++--------- pkgs/applications/editors/neovim/default.nix | 11 +++-- .../graphics/apitrace/default.nix | 5 +-- .../graphics/simple-scan/default.nix | 3 +- .../graphics/swingsane/default.nix | 3 +- .../networking/feedreaders/rawdog/default.nix | 3 +- .../feedreaders/rsstail/default.nix | 3 +- .../networking/remote/x2goclient/default.nix | 18 ++++---- .../networking/vnstat/default.nix | 3 +- .../git-and-tools/git-bz/default.nix | 6 +-- .../git-and-tools/git-hub/default.nix | 3 +- pkgs/applications/video/clipgrab/default.nix | 3 +- pkgs/applications/video/minitube/default.nix | 31 +++++++------ .../virtualization/remotebox/default.nix | 5 +-- pkgs/data/documentation/man-pages/default.nix | 3 +- pkgs/data/fonts/hack/default.nix | 5 +-- .../misc/sound-theme-freedesktop/default.nix | 3 +- pkgs/data/misc/wireless-regdb/default.nix | 5 +-- pkgs/development/compilers/squeak/default.nix | 39 ++++++++--------- .../interpreters/picoc/default.nix | 43 +++++++++---------- .../libraries/accounts-qt/default.nix | 18 ++++---- pkgs/development/libraries/bobcat/default.nix | 21 +++++---- .../libraries/ip2location-c/default.nix | 5 +-- pkgs/development/libraries/libcli/default.nix | 4 +- .../libraries/libkeyfinder/default.nix | 21 +++++---- .../libnetfilter_conntrack/default.nix | 3 +- .../libraries/libxcomp/default.nix | 21 +++++---- pkgs/development/libraries/rote/default.nix | 3 +- pkgs/development/tools/alloy/default.nix | 39 ++++++++--------- .../tools/analysis/egypt/default.nix | 11 +++-- .../analysis/include-what-you-use/default.nix | 5 +-- pkgs/development/tools/java/cfr/default.nix | 29 ++++++------- .../tools/misc/bin_replace_string/default.nix | 15 +++---- .../tools/parsing/flexc++/default.nix | 31 +++++++------ pkgs/games/2048-in-terminal/default.nix | 3 +- pkgs/games/soi/default.nix | 2 +- pkgs/misc/cups/drivers/samsung/default.nix | 6 +-- pkgs/os-specific/linux/crda/default.nix | 5 +-- pkgs/os-specific/linux/fatrace/default.nix | 3 +- .../firmware/b43-firmware/6.30.163.46.nix | 5 +-- pkgs/os-specific/linux/freefall/default.nix | 4 +- pkgs/os-specific/linux/ftop/default.nix | 3 +- pkgs/os-specific/linux/kexectools/default.nix | 3 +- pkgs/os-specific/linux/mcelog/default.nix | 5 +-- pkgs/os-specific/linux/radeontop/default.nix | 5 +-- pkgs/os-specific/linux/uksmtools/default.nix | 5 +-- pkgs/shells/mksh/default.nix | 5 +-- pkgs/tools/admin/nxproxy/default.nix | 21 +++++---- pkgs/tools/cd-dvd/dvdisaster/default.nix | 3 +- pkgs/tools/compression/lz4/default.nix | 3 +- pkgs/tools/compression/zopfli/default.nix | 3 +- pkgs/tools/filesystems/duff/default.nix | 9 ++-- pkgs/tools/filesystems/encfs/default.nix | 4 +- pkgs/tools/filesystems/exfat/default.nix | 3 +- pkgs/tools/filesystems/gpart/default.nix | 3 +- pkgs/tools/filesystems/mp3fs/default.nix | 2 +- pkgs/tools/misc/clex/default.nix | 10 ++--- pkgs/tools/misc/ipad_charge/default.nix | 3 +- pkgs/tools/misc/ms-sys/default.nix | 3 +- pkgs/tools/misc/tldr/default.nix | 5 +-- pkgs/tools/networking/dhcping/default.nix | 7 ++- pkgs/tools/networking/hans/default.nix | 33 +++++++------- pkgs/tools/networking/ip2location/default.nix | 5 +-- pkgs/tools/networking/ipv6calc/default.nix | 3 +- pkgs/tools/networking/netsniff-ng/default.nix | 5 +-- pkgs/tools/networking/pcapc/default.nix | 3 +- pkgs/tools/networking/pingtcp/default.nix | 5 +-- .../tools/package-management/dpkg/default.nix | 5 +-- .../package-management/packagekit/default.nix | 5 +-- pkgs/tools/security/eid-mw/default.nix | 5 +-- pkgs/tools/security/eid-viewer/default.nix | 3 +- pkgs/tools/system/foremost/default.nix | 3 +- pkgs/tools/system/gptfdisk/default.nix | 3 +- pkgs/tools/system/suid-chroot/default.nix | 3 +- pkgs/tools/text/aha/default.nix | 5 +-- 78 files changed, 313 insertions(+), 378 deletions(-) diff --git a/pkgs/applications/audio/fmit/default.nix b/pkgs/applications/audio/fmit/default.nix index 36988c98091..21d1d0ef4c6 100644 --- a/pkgs/applications/audio/fmit/default.nix +++ b/pkgs/applications/audio/fmit/default.nix @@ -7,9 +7,9 @@ assert alsaSupport -> alsaLib != null; assert jackSupport -> libjack2 != null; assert portaudioSupport -> portaudio != null; -let version = "1.0.8"; in -stdenv.mkDerivation { +stdenv.mkDerivation rec { name = "fmit-${version}"; + version = "1.0.8"; src = fetchFromGitHub { sha256 = "04s7xcgmi5g58lirr48vf203n1jwdxf981x1p6ysbax24qwhs2kd"; @@ -37,7 +37,6 @@ stdenv.mkDerivation { enableParallelBuilding = true; meta = with stdenv.lib; { - inherit version; description = "Free Musical Instrument Tuner"; longDescription = '' FMIT is a graphical utility for tuning musical instruments, with error diff --git a/pkgs/applications/audio/id3v2/default.nix b/pkgs/applications/audio/id3v2/default.nix index 71dc88b9231..8780c013340 100644 --- a/pkgs/applications/audio/id3v2/default.nix +++ b/pkgs/applications/audio/id3v2/default.nix @@ -1,8 +1,9 @@ {stdenv, fetchurl, id3lib, groff, zlib}: -let version = "0.1.12"; in stdenv.mkDerivation rec { name = "id3v2-${version}"; + version = "0.1.12"; + src = fetchurl { url = "mirror://sourceforge/id3v2/${name}.tar.gz"; sha256 = "1gr22w8gar7zh5pyyvdy7cy26i47l57jp1l1nd60xfwx339zl1c1"; @@ -19,7 +20,6 @@ stdenv.mkDerivation rec { ''; meta = with stdenv.lib; { - inherit version; description = "A command line editor for id3v2 tags"; homepage = http://id3v2.sourceforge.net/; license = licenses.gpl2Plus; diff --git a/pkgs/applications/audio/keyfinder-cli/default.nix b/pkgs/applications/audio/keyfinder-cli/default.nix index 701bf6f82f4..6a013e8c604 100644 --- a/pkgs/applications/audio/keyfinder-cli/default.nix +++ b/pkgs/applications/audio/keyfinder-cli/default.nix @@ -1,8 +1,8 @@ { stdenv, fetchFromGitHub, libav, libkeyfinder }: -let version = "2015-09-13"; in stdenv.mkDerivation rec { name = "keyfinder-cli-${version}"; + version = "2015-09-13"; src = fetchFromGitHub { repo = "keyfinder-cli"; @@ -18,7 +18,6 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; meta = with stdenv.lib; { - inherit version; inherit (src.meta) homepage; description = "Musical key detection for digital audio (command-line tool)"; longDescription = '' diff --git a/pkgs/applications/audio/keyfinder/default.nix b/pkgs/applications/audio/keyfinder/default.nix index 74110c5924e..ae1a8ea1edf 100644 --- a/pkgs/applications/audio/keyfinder/default.nix +++ b/pkgs/applications/audio/keyfinder/default.nix @@ -1,8 +1,8 @@ { stdenv, fetchFromGitHub, libav_0_8, libkeyfinder, qtbase, qtxmlpatterns, taglib }: -let version = "2.1"; in -stdenv.mkDerivation { +stdenv.mkDerivation rec { name = "keyfinder-${version}"; + version = "2.1"; src = fetchFromGitHub { sha256 = "0j9k90ll4cr8j8dywb6zf1bs9vijlx7m4zsh6w9hxwrr7ymz89hn"; @@ -11,24 +11,6 @@ stdenv.mkDerivation { owner = "ibsh"; }; - meta = with stdenv.lib; { - inherit version; - description = "Musical key detection for digital audio (graphical UI)"; - longDescription = '' - KeyFinder is an open source key detection tool, for DJs interested in - harmonic and tonal mixing. Designed primarily for electronic and dance - music, it is highly configurable and can be applied to many genres. It - supports a huge range of codecs thanks to LibAV, and writes to metadata - tags using TagLib. It's intended to be very focused: no library - management, no track suggestions, no media player. Just a fast, - efficient workflow tool. - ''; - homepage = http://www.ibrahimshaath.co.uk/keyfinder/; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ nckx ]; - }; - buildInputs = [ libav_0_8 libkeyfinder qtbase qtxmlpatterns taglib ]; postPatch = '' @@ -43,4 +25,21 @@ stdenv.mkDerivation { ''; enableParallelBuilding = true; + + meta = with stdenv.lib; { + description = "Musical key detection for digital audio (graphical UI)"; + longDescription = '' + KeyFinder is an open source key detection tool, for DJs interested in + harmonic and tonal mixing. Designed primarily for electronic and dance + music, it is highly configurable and can be applied to many genres. It + supports a huge range of codecs thanks to LibAV, and writes to metadata + tags using TagLib. It's intended to be very focused: no library + management, no track suggestions, no media player. Just a fast, + efficient workflow tool. + ''; + homepage = http://www.ibrahimshaath.co.uk/keyfinder/; + license = licenses.gpl3Plus; + platforms = platforms.linux; + maintainers = with maintainers; [ nckx ]; + }; } diff --git a/pkgs/applications/editors/neovim/default.nix b/pkgs/applications/editors/neovim/default.nix index a27027406e2..dcb27451310 100644 --- a/pkgs/applications/editors/neovim/default.nix +++ b/pkgs/applications/editors/neovim/default.nix @@ -15,11 +15,10 @@ with stdenv.lib; let - version = "0.1.1"; - # Note: this is NOT the libvterm already in nixpkgs, but some NIH silliness: - neovimLibvterm = let version = "2015-11-06"; in stdenv.mkDerivation { + neovimLibvterm = stdenv.mkDerivation rec { name = "neovim-libvterm-${version}"; + version = "2015-11-06"; src = fetchFromGitHub { sha256 = "0f9r0wnr9ajcdd6as24igmch0n8s1annycb9f4k0vg6fngwaypy9"; @@ -59,8 +58,9 @@ let ignoreCollisions = true; }; - neovim = stdenv.mkDerivation { + neovim = stdenv.mkDerivation rec { name = "neovim-${version}"; + version = "0.1.1"; src = fetchFromGitHub { sha256 = "0crswjslp687yp1cpn7nmm0j2sccqhcxryzxv1s81cgpai0fzf60"; @@ -146,7 +146,10 @@ let in if (vimAlias == false && configure == null) then neovim else stdenv.mkDerivation { name = "neovim-${version}-configured"; + inherit (neovim) version; + nativeBuildInputs = [ makeWrapper ]; + buildCommand = '' mkdir -p $out/bin for item in ${neovim}/bin/*; do diff --git a/pkgs/applications/graphics/apitrace/default.nix b/pkgs/applications/graphics/apitrace/default.nix index 072cc698e92..f54628e0b8d 100644 --- a/pkgs/applications/graphics/apitrace/default.nix +++ b/pkgs/applications/graphics/apitrace/default.nix @@ -1,8 +1,8 @@ { stdenv, fetchFromGitHub, cmake, libX11, procps, python, qtbase }: -let version = "7.1"; in -stdenv.mkDerivation { +stdenv.mkDerivation rec { name = "apitrace-${version}"; + version = "7.1"; src = fetchFromGitHub { sha256 = "1n2gmsjnpyam7isg7n1ksggyh6y1l8drvx0a93bnvbcskr7jiz9a"; @@ -20,7 +20,6 @@ stdenv.mkDerivation { ''; meta = with stdenv.lib; { - inherit version; homepage = https://apitrace.github.io; description = "Tools to trace OpenGL, OpenGL ES, Direct3D, and DirectDraw APIs"; license = licenses.mit; diff --git a/pkgs/applications/graphics/simple-scan/default.nix b/pkgs/applications/graphics/simple-scan/default.nix index a2b7fd77337..5f8a8ac6b9a 100644 --- a/pkgs/applications/graphics/simple-scan/default.nix +++ b/pkgs/applications/graphics/simple-scan/default.nix @@ -1,9 +1,9 @@ { stdenv, fetchurl, cairo, colord, glib, gtk3, gusb, intltool, itstool , libusb1, libxml2, pkgconfig, sane-backends, vala, wrapGAppsHook }: -let version = "3.19.4"; in stdenv.mkDerivation rec { name = "simple-scan-${version}"; + version = "3.19.4"; src = fetchurl { sha256 = "1v9sify1s38qd5sfg26m7sdg9bkrfmai2nijs4wzah7xa9p23c83"; @@ -26,7 +26,6 @@ stdenv.mkDerivation rec { doCheck = true; meta = with stdenv.lib; { - inherit version; description = "Simple scanning utility"; longDescription = '' A really easy way to scan both documents and photos. You can crop out the diff --git a/pkgs/applications/graphics/swingsane/default.nix b/pkgs/applications/graphics/swingsane/default.nix index 0f85bf58c55..53bdbcd1274 100644 --- a/pkgs/applications/graphics/swingsane/default.nix +++ b/pkgs/applications/graphics/swingsane/default.nix @@ -1,8 +1,8 @@ { stdenv, fetchurl, makeDesktopItem, unzip, jre }: -let version = "0.2"; in stdenv.mkDerivation rec { name = "swingsane-${version}"; + version = "0.2"; src = fetchurl { sha256 = "15pgqgyw46yd2i367ax9940pfyvinyw2m8apmwhrn0ix5nywa7ni"; @@ -44,7 +44,6 @@ stdenv.mkDerivation rec { ''; meta = with stdenv.lib; { - inherit version; description = "Java GUI for SANE scanner servers (saned)"; longDescription = '' SwingSane is a powerful, cross platform, open source Java front-end for diff --git a/pkgs/applications/networking/feedreaders/rawdog/default.nix b/pkgs/applications/networking/feedreaders/rawdog/default.nix index 749e1864fda..e5e8f823d27 100644 --- a/pkgs/applications/networking/feedreaders/rawdog/default.nix +++ b/pkgs/applications/networking/feedreaders/rawdog/default.nix @@ -1,8 +1,8 @@ { stdenv, fetchurl, pythonPackages }: -let version = "2.21"; in pythonPackages.buildPythonPackage rec { name = "rawdog-${version}"; + version = "2.21"; src = fetchurl { url = "http://offog.org/files/${name}.tar.gz"; @@ -14,7 +14,6 @@ pythonPackages.buildPythonPackage rec { namePrefix = ""; meta = with stdenv.lib; { - inherit version; homepage = "http://offog.org/code/rawdog/"; description = "RSS Aggregator Without Delusions Of Grandeur"; license = licenses.gpl2; diff --git a/pkgs/applications/networking/feedreaders/rsstail/default.nix b/pkgs/applications/networking/feedreaders/rsstail/default.nix index 40c165c2540..fd349b320d2 100644 --- a/pkgs/applications/networking/feedreaders/rsstail/default.nix +++ b/pkgs/applications/networking/feedreaders/rsstail/default.nix @@ -1,8 +1,8 @@ { stdenv, fetchFromGitHub, cppcheck, libmrss }: -let version = "2.1"; in stdenv.mkDerivation rec { name = "rsstail-${version}"; + version = "2.1"; src = fetchFromGitHub { sha256 = "12p69i3g1fwlw0bds9jqsdmzkid3k5a41w31d227i7vm12wcvjf6"; @@ -24,7 +24,6 @@ stdenv.mkDerivation rec { doCheck = true; meta = with stdenv.lib; { - inherit version; description = "Monitor RSS feeds for new entries"; longDescription = '' RSSTail is more or less an RSS reader: it monitors an RSS feed and if it diff --git a/pkgs/applications/networking/remote/x2goclient/default.nix b/pkgs/applications/networking/remote/x2goclient/default.nix index fdc27b63e9e..ffebeb744ce 100644 --- a/pkgs/applications/networking/remote/x2goclient/default.nix +++ b/pkgs/applications/networking/remote/x2goclient/default.nix @@ -1,22 +1,14 @@ { stdenv, fetchurl, cups, libssh, libXpm, nxproxy, openldap, makeWrapper, qt4 }: -let version = "4.0.5.0"; in stdenv.mkDerivation rec { name = "x2goclient-${version}"; + version = "4.0.5.0"; src = fetchurl { url = "http://code.x2go.org/releases/source/x2goclient/${name}.tar.gz"; sha256 = "18a2pszh0nq2ir64a1ah1mlzddn4qcd12b339bv30n0y1ir92bi4"; }; - meta = with stdenv.lib; { - description = "Graphical NoMachine NX3 remote desktop client"; - homepage = http://x2go.org/; - license = licenses.gpl2; - platforms = platforms.linux; - maintainers = with maintainers; [ nckx ]; - }; - buildInputs = [ cups libssh libXpm nxproxy openldap qt4 ]; nativeBuildInputs = [ makeWrapper ]; @@ -35,4 +27,12 @@ stdenv.mkDerivation rec { postInstall = '' wrapProgram "$out/bin/x2goclient" --suffix PATH : "${nxproxy}/bin"; ''; + + meta = with stdenv.lib; { + description = "Graphical NoMachine NX3 remote desktop client"; + homepage = http://x2go.org/; + license = licenses.gpl2; + platforms = platforms.linux; + maintainers = with maintainers; [ nckx ]; + }; } diff --git a/pkgs/applications/networking/vnstat/default.nix b/pkgs/applications/networking/vnstat/default.nix index a553de8abb2..1c78f926fe7 100644 --- a/pkgs/applications/networking/vnstat/default.nix +++ b/pkgs/applications/networking/vnstat/default.nix @@ -1,8 +1,8 @@ { stdenv, fetchurl, gd, ncurses }: -let version = "1.15"; in stdenv.mkDerivation rec { name = "vnstat-${version}"; + version = "1.15"; src = fetchurl { sha256 = "0fdw3nbrfm4acv48r0934ls6ld5lwkff3gyym2c72qlbm9dlp0f3"; @@ -16,7 +16,6 @@ stdenv.mkDerivation rec { ''; meta = with stdenv.lib; { - inherit version; description = "Console-based network statistics utility for Linux"; longDescription = '' vnStat is a console-based network traffic monitor for Linux and BSD that diff --git a/pkgs/applications/version-management/git-and-tools/git-bz/default.nix b/pkgs/applications/version-management/git-and-tools/git-bz/default.nix index d43a49ac751..b5e1cdbcffb 100644 --- a/pkgs/applications/version-management/git-and-tools/git-bz/default.nix +++ b/pkgs/applications/version-management/git-and-tools/git-bz/default.nix @@ -2,9 +2,9 @@ , asciidoc, docbook_xml_dtd_45, docbook_xsl, libxslt, makeWrapper, xmlto , pythonPackages }: -let version = "3.2015-09-08"; in -stdenv.mkDerivation { +stdenv.mkDerivation rec { name = "git-bz-${version}"; + version = "3.2015-09-08"; src = fetchgit { sha256 = "19d9c81d4eeabe87079d8f60e4cfa7303f776f5a7c9874642cf2bd188851d029"; @@ -12,7 +12,6 @@ stdenv.mkDerivation { url = "git://git.fishsoup.net/git-bz"; }; - nativeBuildInputs = [ asciidoc docbook_xml_dtd_45 docbook_xsl libxslt makeWrapper xmlto ]; @@ -32,7 +31,6 @@ stdenv.mkDerivation { ''; meta = with stdenv.lib; { - inherit version; description = "Bugzilla integration for git"; longDescription = '' git-bz is a tool for integrating the Git command line with the diff --git a/pkgs/applications/version-management/git-and-tools/git-hub/default.nix b/pkgs/applications/version-management/git-and-tools/git-hub/default.nix index 271e1244820..b1626f687d4 100644 --- a/pkgs/applications/version-management/git-and-tools/git-hub/default.nix +++ b/pkgs/applications/version-management/git-and-tools/git-hub/default.nix @@ -1,8 +1,8 @@ { stdenv, fetchFromGitHub, docutils, python }: -let version = "0.9.0"; in stdenv.mkDerivation rec { name = "git-hub-${version}"; + version = "0.9.0"; src = fetchFromGitHub { sha256 = "0c4kq4a906lr8nzway7qh0560n2ydvidh9rlffh44902rd48kp0h"; @@ -29,7 +29,6 @@ stdenv.mkDerivation rec { ''; meta = with stdenv.lib; { - inherit version; inherit (src.meta) homepage; description = "Git command line interface to GitHub"; longDescription = '' diff --git a/pkgs/applications/video/clipgrab/default.nix b/pkgs/applications/video/clipgrab/default.nix index d4f968a3b9f..961471cd9b3 100644 --- a/pkgs/applications/video/clipgrab/default.nix +++ b/pkgs/applications/video/clipgrab/default.nix @@ -1,8 +1,8 @@ { stdenv, fetchurl, makeDesktopItem, ffmpeg, qt4 }: -let version = "3.5.6"; in stdenv.mkDerivation rec { name = "clipgrab-${version}"; + version = "3.5.6"; src = fetchurl { sha256 = "0wm6hqaq6ydbvvd0fqkfydxd5h7gf4di7lvq63xgxl4z40jqc25n"; @@ -41,7 +41,6 @@ stdenv.mkDerivation rec { ''; meta = with stdenv.lib; { - inherit version; description = "Video downloader for YouTube and other sites"; longDescription = '' ClipGrab is a free downloader and converter for YouTube, Vimeo, Metacafe, diff --git a/pkgs/applications/video/minitube/default.nix b/pkgs/applications/video/minitube/default.nix index 9ae200abebb..f9d887189ec 100644 --- a/pkgs/applications/video/minitube/default.nix +++ b/pkgs/applications/video/minitube/default.nix @@ -2,9 +2,9 @@ # "Free" API key generated by nckx , withAPIKey ? "AIzaSyBtFgbln3bu1swQC-naMxMtKh384D3xJZE" }: -let version = "2.4"; in -stdenv.mkDerivation { +stdenv.mkDerivation rec { name = "minitube-${version}"; + version = "2.4"; src = fetchFromGitHub { sha256 = "0mm8v2vpspwxh2fqaykb381v6r9apywc1b0x8jkcbp7s43w10lp5"; @@ -13,20 +13,6 @@ stdenv.mkDerivation { owner = "flaviotordini"; }; - meta = with stdenv.lib; { - inherit version; - description = "Stand-alone YouTube video player"; - longDescription = '' - Watch YouTube videos in a new way: you type a keyword, Minitube gives - you an endless video stream. Minitube is not about cloning the YouTube - website, it aims to create a new TV-like experience. - ''; - homepage = http://flavio.tordini.org/minitube; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ nckx ]; - }; - buildInputs = [ phonon phonon_backend_vlc qt4 ]; nativeBuildInputs = [ makeWrapper ]; @@ -40,4 +26,17 @@ stdenv.mkDerivation { wrapProgram $out/bin/minitube \ --prefix QT_PLUGIN_PATH : "${phonon_backend_vlc}/lib/kde4/plugins" ''; + + meta = with stdenv.lib; { + description = "Stand-alone YouTube video player"; + longDescription = '' + Watch YouTube videos in a new way: you type a keyword, Minitube gives + you an endless video stream. Minitube is not about cloning the YouTube + website, it aims to create a new TV-like experience. + ''; + homepage = http://flavio.tordini.org/minitube; + license = licenses.gpl3Plus; + platforms = platforms.linux; + maintainers = with maintainers; [ nckx ]; + }; } diff --git a/pkgs/applications/virtualization/remotebox/default.nix b/pkgs/applications/virtualization/remotebox/default.nix index e07f8d5b92c..37086f52730 100644 --- a/pkgs/applications/virtualization/remotebox/default.nix +++ b/pkgs/applications/virtualization/remotebox/default.nix @@ -1,8 +1,8 @@ { stdenv, fetchurl, makeWrapper, perl, perlPackages }: -let version = "2.0"; in -stdenv.mkDerivation { +stdenv.mkDerivation rec { name = "remotebox-${version}"; + version = "2.0"; src = fetchurl { url = "http://remotebox.knobgoblin.org.uk/downloads/RemoteBox-${version}.tar.bz2"; @@ -26,7 +26,6 @@ stdenv.mkDerivation { ''; meta = with stdenv.lib; { - inherit version; description = "VirtualBox client with remote management"; homepage = http://remotebox.knobgoblin.org.uk/; license = licenses.gpl2Plus; diff --git a/pkgs/data/documentation/man-pages/default.nix b/pkgs/data/documentation/man-pages/default.nix index 5800b429ae4..02b4518b63d 100644 --- a/pkgs/data/documentation/man-pages/default.nix +++ b/pkgs/data/documentation/man-pages/default.nix @@ -1,8 +1,8 @@ { stdenv, fetchurl }: -let version = "4.04"; in stdenv.mkDerivation rec { name = "man-pages-${version}"; + version = "4.04"; src = fetchurl { url = "mirror://kernel/linux/docs/man-pages/${name}.tar.xz"; @@ -12,7 +12,6 @@ stdenv.mkDerivation rec { makeFlags = [ "MANDIR=$(out)/share/man" ]; meta = with stdenv.lib; { - inherit version; description = "Linux development manual pages"; homepage = http://www.kernel.org/doc/man-pages/; repositories.git = http://git.kernel.org/pub/scm/docs/man-pages/man-pages; diff --git a/pkgs/data/fonts/hack/default.nix b/pkgs/data/fonts/hack/default.nix index 0b793d53fe6..44b931f3b1d 100644 --- a/pkgs/data/fonts/hack/default.nix +++ b/pkgs/data/fonts/hack/default.nix @@ -1,8 +1,8 @@ { stdenv, fetchurl, unzip }: -let version = "2.019"; in -stdenv.mkDerivation { +stdenv.mkDerivation rec { name = "hack-font-${version}"; + version = "2.019"; src = let version_ = with stdenv.lib; @@ -22,7 +22,6 @@ stdenv.mkDerivation { ''; meta = with stdenv.lib; { - inherit version; description = "A typeface designed for source code"; longDescription = '' Hack is hand groomed and optically balanced to be a workhorse face for diff --git a/pkgs/data/misc/sound-theme-freedesktop/default.nix b/pkgs/data/misc/sound-theme-freedesktop/default.nix index a43a94a0d7c..986f3d35b7d 100644 --- a/pkgs/data/misc/sound-theme-freedesktop/default.nix +++ b/pkgs/data/misc/sound-theme-freedesktop/default.nix @@ -1,8 +1,8 @@ { stdenv, fetchurl, intltool }: -let version = "0.8"; in stdenv.mkDerivation rec { name = "sound-theme-freedesktop-${version}"; + version = "0.8"; src = fetchurl { sha256 = "054abv4gmfk9maw93fis0bf605rc56dah7ys5plc4pphxqh8nlfb"; @@ -12,7 +12,6 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ intltool ]; meta = with stdenv.lib; { - inherit version; description = "Freedesktop reference sound theme"; homepage = http://freedesktop.org/wiki/Specifications/sound-theme-spec; # See http://cgit.freedesktop.org/sound-theme-freedesktop/tree/CREDITS: diff --git a/pkgs/data/misc/wireless-regdb/default.nix b/pkgs/data/misc/wireless-regdb/default.nix index acc1ca5b55e..123cb7a6208 100644 --- a/pkgs/data/misc/wireless-regdb/default.nix +++ b/pkgs/data/misc/wireless-regdb/default.nix @@ -1,8 +1,8 @@ { stdenv, fetchgit }: -let version = "2015-12-14"; in -stdenv.mkDerivation { +stdenv.mkDerivation rec { name = "wireless-regdb-${version}"; + version = "2015-12-14"; src = fetchgit { sha256 = "1ldfcxn3mdb104czy78b7nj1clsbfp8fc6mshix98zq0bg4k7rsm"; @@ -18,7 +18,6 @@ stdenv.mkDerivation { ]; meta = with stdenv.lib; { - inherit version; description = "Wireless regulatory database for CRDA"; homepage = http://wireless.kernel.org/en/developers/Regulatory/; license = licenses.isc; diff --git a/pkgs/development/compilers/squeak/default.nix b/pkgs/development/compilers/squeak/default.nix index 19b73a0bde5..8aa980b72e6 100644 --- a/pkgs/development/compilers/squeak/default.nix +++ b/pkgs/development/compilers/squeak/default.nix @@ -1,33 +1,15 @@ { stdenv, fetchurl, cmake, coreutils, dbus, freetype, glib, gnused , libpthreadstubs, pango, pkgconfig, libpulseaudio, which }: -let version = "4.10.2.2614"; in -stdenv.mkDerivation { +stdenv.mkDerivation rec { name = "squeak-${version}"; + version = "4.10.2.2614"; src = fetchurl { sha256 = "0bpwbnpy2sb4gylchfx50sha70z36bwgdxraym4vrr93l8pd3dix"; url = "http://squeakvm.org/unix/release/Squeak-${version}-src.tar.gz"; }; - meta = with stdenv.lib; { - inherit version; - description = "Smalltalk programming language and environment"; - longDescription = '' - Squeak is a full-featured implementation of the Smalltalk programming - language and environment based on (and largely compatible with) the - original Smalltalk-80 system. Squeak has very powerful 2- and 3-D - graphics, sound, video, MIDI, animation and other multimedia - capabilities. It also includes a customisable framework for creating - dynamic HTTP servers and interactively extensible Web sites. - ''; - homepage = http://squeakvm.org/; - downloadPage = http://squeakvm.org/unix/index.html; - license = with licenses; [ asl20 mit ]; - platforms = platforms.linux; - maintainers = with maintainers; [ nckx ]; - }; - buildInputs = [ coreutils dbus freetype glib gnused libpthreadstubs pango libpulseaudio which ]; nativeBuildInputs = [ cmake pkgconfig ]; @@ -44,4 +26,21 @@ stdenv.mkDerivation { ''; enableParallelBuilding = true; + + meta = with stdenv.lib; { + description = "Smalltalk programming language and environment"; + longDescription = '' + Squeak is a full-featured implementation of the Smalltalk programming + language and environment based on (and largely compatible with) the + original Smalltalk-80 system. Squeak has very powerful 2- and 3-D + graphics, sound, video, MIDI, animation and other multimedia + capabilities. It also includes a customisable framework for creating + dynamic HTTP servers and interactively extensible Web sites. + ''; + homepage = http://squeakvm.org/; + downloadPage = http://squeakvm.org/unix/index.html; + license = with licenses; [ asl20 mit ]; + platforms = platforms.linux; + maintainers = with maintainers; [ nckx ]; + }; } diff --git a/pkgs/development/interpreters/picoc/default.nix b/pkgs/development/interpreters/picoc/default.nix index 72e89def4f5..e78b7434719 100644 --- a/pkgs/development/interpreters/picoc/default.nix +++ b/pkgs/development/interpreters/picoc/default.nix @@ -1,8 +1,8 @@ { stdenv, fetchFromGitHub, readline }: -let version = "2015-05-04"; in -stdenv.mkDerivation { +stdenv.mkDerivation rec { name = "picoc-${version}"; + version = "2015-05-04"; src = fetchFromGitHub { sha256 = "01w3jwl0vn9fsmh7p20ad4nl9ljzgfn576yvncd9pk9frx3pd8y4"; @@ -11,26 +11,6 @@ stdenv.mkDerivation { owner = "zsaleeba"; }; - meta = with stdenv.lib; { - inherit version; - description = "Very small C interpreter for scripting"; - longDescription = '' - PicoC is a very small C interpreter for scripting. It was originally - written as a script language for a UAV's on-board flight system. It's - also very suitable for other robotic, embedded and non-embedded - applications. The core C source code is around 3500 lines of code. It's - not intended to be a complete implementation of ISO C but it has all the - essentials. When compiled it only takes a few k of code space and is also - very sparing of data space. This means it can work well in small embedded - devices. - ''; - homepage = https://github.com/zsaleeba/picoc; - downloadPage = https://code.google.com/p/picoc/downloads/list; - license = licenses.bsd3; - platforms = platforms.linux; - maintainers = with maintainers; [ nckx ]; - }; - buildInputs = [ readline ]; postPatch = '' @@ -50,4 +30,23 @@ stdenv.mkDerivation { mkdir -p $out/include install -m644 *.h $out/include ''; + + meta = with stdenv.lib; { + description = "Very small C interpreter for scripting"; + longDescription = '' + PicoC is a very small C interpreter for scripting. It was originally + written as a script language for a UAV's on-board flight system. It's + also very suitable for other robotic, embedded and non-embedded + applications. The core C source code is around 3500 lines of code. It's + not intended to be a complete implementation of ISO C but it has all the + essentials. When compiled it only takes a few k of code space and is also + very sparing of data space. This means it can work well in small embedded + devices. + ''; + homepage = https://github.com/zsaleeba/picoc; + downloadPage = https://code.google.com/p/picoc/downloads/list; + license = licenses.bsd3; + platforms = platforms.linux; + maintainers = with maintainers; [ nckx ]; + }; } diff --git a/pkgs/development/libraries/accounts-qt/default.nix b/pkgs/development/libraries/accounts-qt/default.nix index 315aab074e5..e2e5f079606 100644 --- a/pkgs/development/libraries/accounts-qt/default.nix +++ b/pkgs/development/libraries/accounts-qt/default.nix @@ -1,8 +1,8 @@ { stdenv, fetchFromGitLab, doxygen, glib, libaccounts-glib, pkgconfig, qtbase }: -let version = "1.13"; in -stdenv.mkDerivation { +stdenv.mkDerivation rec { name = "accounts-qt-${version}"; + version = "1.13"; src = fetchFromGitLab { sha256 = "1gpkgw05dwsf2wk5cy3skgss3kw6mqh7iv3fadrxqxfc1za1xmyl"; @@ -11,17 +11,17 @@ stdenv.mkDerivation { owner = "accounts-sso"; }; - meta = with stdenv.lib; { - description = "Qt library for accessing the online accounts database"; - homepage = "http://code.google.com/p/accounts-sso/"; - license = licenses.lgpl21; - maintainers = with maintainers; [ nckx ]; - }; - buildInputs = [ glib libaccounts-glib qtbase ]; nativeBuildInputs = [ doxygen pkgconfig ]; configurePhase = '' qmake PREFIX=$out LIBDIR=$out/lib CMAKE_CONFIG_PATH=$out/lib/cmake ''; + + meta = with stdenv.lib; { + description = "Qt library for accessing the online accounts database"; + homepage = "http://code.google.com/p/accounts-sso/"; + license = licenses.lgpl21; + maintainers = with maintainers; [ nckx ]; + }; } diff --git a/pkgs/development/libraries/bobcat/default.nix b/pkgs/development/libraries/bobcat/default.nix index 87eb1e324ce..b83fd0f7487 100644 --- a/pkgs/development/libraries/bobcat/default.nix +++ b/pkgs/development/libraries/bobcat/default.nix @@ -1,9 +1,9 @@ { stdenv, fetchFromGitHub, icmake, libmilter, libX11, openssl, readline , utillinux, yodl }: -let version = "4.00.00"; in -stdenv.mkDerivation { +stdenv.mkDerivation rec { name = "bobcat-${version}"; + version = "4.00.00"; src = fetchFromGitHub { sha256 = "0wdb25sgw7i3jk3lbja6b4ipqfg1sncam6adg2bn8l5fcinrpwgs"; @@ -12,15 +12,6 @@ stdenv.mkDerivation { owner = "fbb-git"; }; - meta = with stdenv.lib; { - inherit version; - description = "Brokken's Own Base Classes And Templates"; - homepage = https://fbb-git.github.io/bobcat/; - license = licenses.gpl3; - platforms = platforms.linux; - maintainers = with maintainers; [ nckx ]; - }; - buildInputs = [ libmilter libX11 openssl readline utillinux ]; nativeBuildInputs = [ icmake yodl ]; @@ -39,4 +30,12 @@ stdenv.mkDerivation { installPhase = '' ./build install ''; + + meta = with stdenv.lib; { + description = "Brokken's Own Base Classes And Templates"; + homepage = https://fbb-git.github.io/bobcat/; + license = licenses.gpl3; + platforms = platforms.linux; + maintainers = with maintainers; [ nckx ]; + }; } diff --git a/pkgs/development/libraries/ip2location-c/default.nix b/pkgs/development/libraries/ip2location-c/default.nix index 7bf4e746db4..109510df79b 100644 --- a/pkgs/development/libraries/ip2location-c/default.nix +++ b/pkgs/development/libraries/ip2location-c/default.nix @@ -1,8 +1,8 @@ { stdenv, fetchurl, autoreconfHook }: -let version = "7.0.2"; in # meta.homepage might change after a major update -stdenv.mkDerivation { +stdenv.mkDerivation rec { name = "ip2location-c-${version}"; + version = "7.0.2"; # meta.homepage might change after a major update src = fetchurl { sha256 = "1gs43qgcyfn83abrkhvvw1s67d1sbkbj3hab9m17ysn6swafiycx"; @@ -18,7 +18,6 @@ stdenv.mkDerivation { doCheck = false; meta = with stdenv.lib; { - inherit version; description = "Library to look up locations of host names and IP addresses"; longDescription = '' A C library to find the country, region, city,coordinates, diff --git a/pkgs/development/libraries/libcli/default.nix b/pkgs/development/libraries/libcli/default.nix index 7798eb5f8fc..1c247f6faa8 100644 --- a/pkgs/development/libraries/libcli/default.nix +++ b/pkgs/development/libraries/libcli/default.nix @@ -1,8 +1,8 @@ { stdenv, fetchFromGitHub }: -let version = "1.9.7"; in -stdenv.mkDerivation { +stdenv.mkDerivation rec { name = "libcli-${version}"; + version = "1.9.7"; src = fetchFromGitHub { sha256 = "08pmjhqkwldhmcwjhi2l27slf1fk6nxxfaihnk2637pqkycy8z0c"; diff --git a/pkgs/development/libraries/libkeyfinder/default.nix b/pkgs/development/libraries/libkeyfinder/default.nix index bde5db77fda..9ea4748af4b 100644 --- a/pkgs/development/libraries/libkeyfinder/default.nix +++ b/pkgs/development/libraries/libkeyfinder/default.nix @@ -1,8 +1,8 @@ { stdenv, fetchFromGitHub, fftw, qtbase }: -let version = "2.1"; in -stdenv.mkDerivation { +stdenv.mkDerivation rec { name = "libkeyfinder-${version}"; + version = "2.1"; src = fetchFromGitHub { sha256 = "07kc0cl6kirgmpdgkgmp6r3yvyf7b1w569z01g8rfl1cig80qdc7"; @@ -11,15 +11,6 @@ stdenv.mkDerivation { owner = "ibsh"; }; - meta = with stdenv.lib; { - inherit version; - description = "Musical key detection for digital audio (C++ library)"; - homepage = http://www.ibrahimshaath.co.uk/keyfinder/; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ nckx ]; - }; - buildInputs = [ fftw qtbase ]; postPatch = '' @@ -40,4 +31,12 @@ stdenv.mkDerivation { mkdir -p $out/lib cp -a lib*.so* $out/lib ''; + + meta = with stdenv.lib; { + description = "Musical key detection for digital audio (C++ library)"; + homepage = http://www.ibrahimshaath.co.uk/keyfinder/; + license = licenses.gpl3Plus; + platforms = platforms.linux; + maintainers = with maintainers; [ nckx ]; + }; } diff --git a/pkgs/development/libraries/libnetfilter_conntrack/default.nix b/pkgs/development/libraries/libnetfilter_conntrack/default.nix index 72aaa1593cc..75cca9a028e 100644 --- a/pkgs/development/libraries/libnetfilter_conntrack/default.nix +++ b/pkgs/development/libraries/libnetfilter_conntrack/default.nix @@ -1,8 +1,8 @@ { stdenv, fetchurl, pkgconfig, libnfnetlink, libmnl }: -let version = "1.0.5"; in stdenv.mkDerivation rec { name = "libnetfilter_conntrack-${version}"; + version = "1.0.5"; src = fetchurl { url = "http://netfilter.org/projects/libnetfilter_conntrack/files/${name}.tar.bz2"; @@ -14,7 +14,6 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ pkgconfig ]; meta = with stdenv.lib; { - inherit version; description = "Userspace library providing an API to the in-kernel connection tracking state table"; longDescription = '' libnetfilter_conntrack is a userspace library providing a programming interface (API) to the diff --git a/pkgs/development/libraries/libxcomp/default.nix b/pkgs/development/libraries/libxcomp/default.nix index 3a65277abe2..b19706c2c37 100644 --- a/pkgs/development/libraries/libxcomp/default.nix +++ b/pkgs/development/libraries/libxcomp/default.nix @@ -1,23 +1,14 @@ { stdenv, fetchurl, autoreconfHook, libjpeg, libpng12, libX11, zlib }: -let version = "3.5.0.32"; in -stdenv.mkDerivation { +stdenv.mkDerivation rec { name = "libxcomp-${version}"; + version = "3.5.0.32"; src = fetchurl { sha256 = "02n5bdc1jsq999agb4w6dmdj5l2wlln2lka84qz6rpswwc59zaxm"; url = "http://code.x2go.org/releases/source/nx-libs/nx-libs-${version}-lite.tar.gz"; }; - meta = with stdenv.lib; { - inherit version; - description = "NX compression library"; - homepage = "http://wiki.x2go.org/doku.php/wiki:libs:nx-libs"; - license = licenses.gpl2; - platforms = platforms.linux; - maintainers = with maintainers; [ nckx ]; - }; - buildInputs = [ libjpeg libpng12 libX11 zlib ]; nativeBuildInputs = [ autoreconfHook ]; @@ -26,4 +17,12 @@ stdenv.mkDerivation { ''; enableParallelBuilding = true; + + meta = with stdenv.lib; { + description = "NX compression library"; + homepage = "http://wiki.x2go.org/doku.php/wiki:libs:nx-libs"; + license = licenses.gpl2; + platforms = platforms.linux; + maintainers = with maintainers; [ nckx ]; + }; } diff --git a/pkgs/development/libraries/rote/default.nix b/pkgs/development/libraries/rote/default.nix index b87d4ed4ee4..524afd7cf4d 100644 --- a/pkgs/development/libraries/rote/default.nix +++ b/pkgs/development/libraries/rote/default.nix @@ -1,8 +1,8 @@ { stdenv, fetchurl, ncurses }: -let version = "0.2.8"; in stdenv.mkDerivation rec { name = "rote-${version}"; + version = "0.2.8"; src = fetchurl { sha256 = "05v1lw99jv4cwxl7spyi7by61j2scpdsvx809x5cga7dm5dhlmky"; @@ -14,7 +14,6 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; meta = with stdenv.lib; { - inherit version; description = "Our Own Terminal Emulation Library"; longDescription = '' ROTE is a simple C library for VT102 terminal emulation. It allows the diff --git a/pkgs/development/tools/alloy/default.nix b/pkgs/development/tools/alloy/default.nix index cb559a128ab..fbf784db0cc 100644 --- a/pkgs/development/tools/alloy/default.nix +++ b/pkgs/development/tools/alloy/default.nix @@ -1,33 +1,14 @@ { stdenv, fetchurl, jre, makeDesktopItem }: -let version = "4.2_2015-02-22"; in stdenv.mkDerivation rec { name = "alloy-${version}"; + version = "4.2_2015-02-22"; src = fetchurl { sha256 = "0p93v8jwx9prijpikkgmfdzb9qn8ljmvga5d9wvrkxddccjx9k28"; url = "http://alloy.mit.edu/alloy/downloads/alloy${version}.jar"; }; - meta = with stdenv.lib; { - inherit version; - description = "Language & tool for relational models"; - longDescription = '' - Alloy is a language for describing structures and a tool for exploring - them. An Alloy model is a collection of constraints that describes a set - of structures, e.g. all the possible security configurations of a web - application, or all the possible topologies of a switching network. The - Alloy Analyzer is a solver that takes the constraints of a model and - finds structures that satisfy them. Structures are displayed graphically, - and their appearance can be customized for the domain at hand. - ''; - homepage = http://alloy.mit.edu/; - downloadPage = http://alloy.mit.edu/alloy/download.html; - license = licenses.mit; - platforms = platforms.linux; - maintainers = with maintainers; [ nckx ]; - }; - desktopItem = makeDesktopItem rec { name = "alloy"; exec = name; @@ -57,4 +38,22 @@ stdenv.mkDerivation rec { install -Dm644 ${./icon.png} $out/share/pixmaps/alloy.png cp -r ${desktopItem}/share/applications $out/share ''; + + meta = with stdenv.lib; { + description = "Language & tool for relational models"; + longDescription = '' + Alloy is a language for describing structures and a tool for exploring + them. An Alloy model is a collection of constraints that describes a set + of structures, e.g. all the possible security configurations of a web + application, or all the possible topologies of a switching network. The + Alloy Analyzer is a solver that takes the constraints of a model and + finds structures that satisfy them. Structures are displayed graphically, + and their appearance can be customized for the domain at hand. + ''; + homepage = http://alloy.mit.edu/; + downloadPage = http://alloy.mit.edu/alloy/download.html; + license = licenses.mit; + platforms = platforms.linux; + maintainers = with maintainers; [ nckx ]; + }; } diff --git a/pkgs/development/tools/analysis/egypt/default.nix b/pkgs/development/tools/analysis/egypt/default.nix index 1233c4ce15a..fc63247468c 100644 --- a/pkgs/development/tools/analysis/egypt/default.nix +++ b/pkgs/development/tools/analysis/egypt/default.nix @@ -1,16 +1,19 @@ { stdenv, fetchurl, buildPerlPackage }: -let version = "1.10"; in buildPerlPackage rec { name = "egypt-${version}"; + version = "1.10"; src = fetchurl { sha256 = "0r0wj6v8z9fzlh9pb5617kyjdf92ppmlbzajaarrq729bbb6ln5m"; url = "http://www.gson.org/egypt/download/${name}.tar.gz"; }; + enableParallelBuilding = true; + + doCheck = true; + meta = with stdenv.lib; { - inherit version; description = "Tool for making call graphs of C programmes"; longDescription = '' Egypt is a simple tool for creating call graphs of C programs. It neither @@ -25,8 +28,4 @@ buildPerlPackage rec { platforms = platforms.linux; maintainers = with maintainers; [ nckx ]; }; - - enableParallelBuilding = true; - - doCheck = true; } diff --git a/pkgs/development/tools/analysis/include-what-you-use/default.nix b/pkgs/development/tools/analysis/include-what-you-use/default.nix index 75e4dba003b..374f0fee3f1 100644 --- a/pkgs/development/tools/analysis/include-what-you-use/default.nix +++ b/pkgs/development/tools/analysis/include-what-you-use/default.nix @@ -1,9 +1,9 @@ { stdenv, fetchurl, cmake, llvmPackages }: -# Also bump llvmPackages in all-packages.nix to the supported version! -let version = "0.5"; in stdenv.mkDerivation rec { name = "include-what-you-use-${version}"; + # Also bump llvmPackages in all-packages.nix to the supported version! + version = "0.5"; src = fetchurl { sha256 = "19pwhgwvfr86n8ks099p9r02v7zh8d3qs7g7snzkhpdgq1azww85"; @@ -18,7 +18,6 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; meta = with stdenv.lib; { - inherit version; description = "Analyze #includes in C/C++ source files with clang"; longDescription = '' For every symbol (type, function variable, or macro) that you use in diff --git a/pkgs/development/tools/java/cfr/default.nix b/pkgs/development/tools/java/cfr/default.nix index 3d42de4640e..46170341437 100644 --- a/pkgs/development/tools/java/cfr/default.nix +++ b/pkgs/development/tools/java/cfr/default.nix @@ -1,28 +1,14 @@ { stdenv, fetchurl, jre }: -let version = "0_101"; in stdenv.mkDerivation rec { name = "cfr-${version}"; + version = "0_101"; src = fetchurl { sha256 = "0zwl3whypdm2qrw3hwaqjnifkb4wcdn8fx9scrjkli54bhr6dqch"; url = "http://www.benf.org/other/cfr/cfr_${version}.jar"; }; - meta = with stdenv.lib; { - inherit version; - description = "Another java decompiler"; - longDescription = '' - CFR will decompile modern Java features - Java 8 lambdas (pre and post - Java beta 103 changes), Java 7 String switches etc, but is written - entirely in Java 6. - ''; - homepage = http://www.benf.org/other/cfr/; - license = licenses.mit; - platforms = platforms.all; - maintainers = with maintainers; [ nckx ]; - }; - buildInputs = [ jre ]; phases = [ "installPhase" ]; @@ -38,4 +24,17 @@ stdenv.mkDerivation rec { EOF install -Dm755 cfr $out/bin/cfr ''; + + meta = with stdenv.lib; { + description = "Another java decompiler"; + longDescription = '' + CFR will decompile modern Java features - Java 8 lambdas (pre and post + Java beta 103 changes), Java 7 String switches etc, but is written + entirely in Java 6. + ''; + homepage = http://www.benf.org/other/cfr/; + license = licenses.mit; + platforms = platforms.all; + maintainers = with maintainers; [ nckx ]; + }; } diff --git a/pkgs/development/tools/misc/bin_replace_string/default.nix b/pkgs/development/tools/misc/bin_replace_string/default.nix index 82a07d60f9a..fda527ee905 100644 --- a/pkgs/development/tools/misc/bin_replace_string/default.nix +++ b/pkgs/development/tools/misc/bin_replace_string/default.nix @@ -1,16 +1,20 @@ { stdenv, fetchurl, libelf, txt2man }: -let version = "0.2"; in -stdenv.mkDerivation { +stdenv.mkDerivation rec { name = "bin_replace_string-${version}"; + version = "0.2"; src = fetchurl { sha256 = "1gnpddxwpsfrg4l76x5yplsvbcdbviybciqpn22yq3g3qgnr5c2a"; url = "ftp://ohnopub.net/mirror/bin_replace_string-0.2.tar.bz2"; }; + buildInputs = [ libelf ]; + nativeBuildInputs = [ txt2man ]; + + enableParallelBuilding = true; + meta = with stdenv.lib; { - inherit version; description = "Edit precompiled binaries"; longDescription = '' bin_replace_string edits C-style strings in precompiled binaries. This is @@ -25,9 +29,4 @@ stdenv.mkDerivation { platforms = platforms.linux; maintainers = with maintainers; [ nckx ]; }; - - buildInputs = [ libelf ]; - nativeBuildInputs = [ txt2man ]; - - enableParallelBuilding = true; } diff --git a/pkgs/development/tools/parsing/flexc++/default.nix b/pkgs/development/tools/parsing/flexc++/default.nix index 3cfd86f477e..e1426b3a1d4 100644 --- a/pkgs/development/tools/parsing/flexc++/default.nix +++ b/pkgs/development/tools/parsing/flexc++/default.nix @@ -1,8 +1,8 @@ { stdenv, fetchFromGitHub, bobcat, icmake, yodl }: -let version = "2.03.00"; in -stdenv.mkDerivation { +stdenv.mkDerivation rec { name = "flexc++-${version}"; + version = "2.03.00"; src = fetchFromGitHub { sha256 = "1knb5h6l71n5zi9xzml5f6v7wspbk7vrcaiy2div8bnj7na3z717"; @@ -11,20 +11,6 @@ stdenv.mkDerivation { owner = "fbb-git"; }; - meta = with stdenv.lib; { - inherit version; - description = "C++ tool for generating lexical scanners"; - longDescription = '' - Flexc++ was designed after `flex'. Flexc++ offers a cleaner class design - and requires simpler specification files than offered by flex's C++ - option. - ''; - homepage = https://fbb-git.github.io/flexcpp/; - license = licenses.gpl3; - platforms = platforms.linux; - maintainers = with maintainers; [ nckx ]; - }; - sourceRoot = "flexcpp-${version}-src/flexc++"; buildInputs = [ bobcat ]; @@ -48,4 +34,17 @@ stdenv.mkDerivation { ./build install skel ./build install std ''; + + meta = with stdenv.lib; { + description = "C++ tool for generating lexical scanners"; + longDescription = '' + Flexc++ was designed after `flex'. Flexc++ offers a cleaner class design + and requires simpler specification files than offered by flex's C++ + option. + ''; + homepage = https://fbb-git.github.io/flexcpp/; + license = licenses.gpl3; + platforms = platforms.linux; + maintainers = with maintainers; [ nckx ]; + }; } diff --git a/pkgs/games/2048-in-terminal/default.nix b/pkgs/games/2048-in-terminal/default.nix index cbf6a19b319..30e930c294a 100644 --- a/pkgs/games/2048-in-terminal/default.nix +++ b/pkgs/games/2048-in-terminal/default.nix @@ -1,8 +1,8 @@ { stdenv, fetchFromGitHub, ncurses }: -let version = "2015-01-15"; in stdenv.mkDerivation rec { name = "2048-in-terminal-${version}"; + version = "2015-01-15"; src = fetchFromGitHub { sha256 = "1fdfmyhh60sz0xbilxkh2y09lvbcs9lamk2jkjkhxhlhxknmnfgs"; @@ -21,7 +21,6 @@ stdenv.mkDerivation rec { installFlags = [ "DESTDIR=$(out)" ]; meta = with stdenv.lib; { - inherit version; inherit (src.meta) homepage; description = "Animated console version of the 2048 game"; license = licenses.mit; diff --git a/pkgs/games/soi/default.nix b/pkgs/games/soi/default.nix index 2e8a085ef47..7c4b2fe823c 100644 --- a/pkgs/games/soi/default.nix +++ b/pkgs/games/soi/default.nix @@ -1,9 +1,9 @@ { stdenv, fetchurl, cmake , boost, eigen2, lua, luabind, mesa, SDL }: -let version = "0.1.2"; in stdenv.mkDerivation rec { name = "soi-${version}"; + version = "0.1.2"; src = fetchurl { url = "mirror://sourceforge/project/soi/Spheres%20of%20Influence-${version}-Source.tar.bz2"; diff --git a/pkgs/misc/cups/drivers/samsung/default.nix b/pkgs/misc/cups/drivers/samsung/default.nix index b78104a7ddc..27d21f86285 100644 --- a/pkgs/misc/cups/drivers/samsung/default.nix +++ b/pkgs/misc/cups/drivers/samsung/default.nix @@ -11,13 +11,13 @@ # } # (This advice was tested on 2010 August 2.) -{stdenv, fetchurl, cups, gcc, ghostscript, glibc, patchelf}: +{ stdenv, fetchurl, cups, gcc, ghostscript, glibc, patchelf }: # Do not bump lightly! Visit # to see what will break when upgrading. Consider a new versioned attribute. -let version = "4.00.39"; in -stdenv.mkDerivation { +stdenv.mkDerivation rec { name = "samsung-UnifiedLinuxDriver-${version}"; + version = "4.00.39"; src = fetchurl { url = "http://www.bchemnet.com/suldr/driver/UnifiedLinuxDriver-${version}.tar.gz"; diff --git a/pkgs/os-specific/linux/crda/default.nix b/pkgs/os-specific/linux/crda/default.nix index 488a6ce1a0f..d28ae6f5098 100644 --- a/pkgs/os-specific/linux/crda/default.nix +++ b/pkgs/os-specific/linux/crda/default.nix @@ -1,8 +1,8 @@ { stdenv, fetchurl, libgcrypt, libnl, pkgconfig, pythonPackages, wireless-regdb }: -let version = "3.18"; in -stdenv.mkDerivation { +stdenv.mkDerivation rec { name = "crda-${version}"; + version = "3.18"; src = fetchurl { sha256 = "1gydiqgb08d9gbx4l6gv98zg3pljc984m50hmn3ysxcbkxkvkz23"; @@ -36,7 +36,6 @@ stdenv.mkDerivation { checkTarget = "verify"; meta = with stdenv.lib; { - inherit version; description = "Linux wireless Central Regulatory Domain Agent"; longDescription = '' CRDA acts as the udev helper for communication between the kernel and diff --git a/pkgs/os-specific/linux/fatrace/default.nix b/pkgs/os-specific/linux/fatrace/default.nix index 3a2be543582..ca864091d4b 100644 --- a/pkgs/os-specific/linux/fatrace/default.nix +++ b/pkgs/os-specific/linux/fatrace/default.nix @@ -1,8 +1,8 @@ { stdenv, fetchurl, python3, which }: -let version = "0.11"; in stdenv.mkDerivation rec { name = "fatrace-${version}"; + version = "0.11"; src = fetchurl { url = "http://launchpad.net/fatrace/trunk/${version}/+download/${name}.tar.bz2"; @@ -19,7 +19,6 @@ stdenv.mkDerivation rec { makeFlags = [ "PREFIX=$(out)" ]; meta = with stdenv.lib; { - inherit version; description = "Report system-wide file access events"; homepage = https://launchpad.net/fatrace/; license = licenses.gpl3Plus; diff --git a/pkgs/os-specific/linux/firmware/b43-firmware/6.30.163.46.nix b/pkgs/os-specific/linux/firmware/b43-firmware/6.30.163.46.nix index 7afd464620d..4f09410c75e 100644 --- a/pkgs/os-specific/linux/firmware/b43-firmware/6.30.163.46.nix +++ b/pkgs/os-specific/linux/firmware/b43-firmware/6.30.163.46.nix @@ -1,9 +1,8 @@ { stdenv, fetchurl, b43FirmwareCutter }: -let version = "6.30.163.46"; in - -stdenv.mkDerivation { +stdenv.mkDerivation rec { name = "b43-firmware-${version}"; + version = "6.30.163.46"; src = fetchurl { url = "http://www.lwfinger.com/b43-firmware/broadcom-wl-${version}.tar.bz2"; diff --git a/pkgs/os-specific/linux/freefall/default.nix b/pkgs/os-specific/linux/freefall/default.nix index e2aa079240a..590b6b61dd3 100644 --- a/pkgs/os-specific/linux/freefall/default.nix +++ b/pkgs/os-specific/linux/freefall/default.nix @@ -1,8 +1,8 @@ { stdenv, fetchurl }: -let version = "4.3"; in -stdenv.mkDerivation { +stdenv.mkDerivation rec { name = "freefall-${version}"; + version = "4.3"; src = fetchurl { sha256 = "1bpkr45i4yzp32p0vpnz8mlv9lk4q2q9awf1kg9khg4a9g42qqja"; diff --git a/pkgs/os-specific/linux/ftop/default.nix b/pkgs/os-specific/linux/ftop/default.nix index 022fc33a206..1ca7d43b6a7 100644 --- a/pkgs/os-specific/linux/ftop/default.nix +++ b/pkgs/os-specific/linux/ftop/default.nix @@ -1,8 +1,8 @@ { stdenv, fetchurl, ncurses }: -let version = "1.0"; in stdenv.mkDerivation rec { name = "ftop-${version}"; + version = "1.0"; src = fetchurl { url = "http://ftop.googlecode.com/files/${name}.tar.bz2"; @@ -22,7 +22,6 @@ stdenv.mkDerivation rec { ''; meta = with stdenv.lib; { - inherit version; description = "Show progress of open files and file systems"; homepage = https://code.google.com/p/ftop/; license = licenses.gpl3Plus; diff --git a/pkgs/os-specific/linux/kexectools/default.nix b/pkgs/os-specific/linux/kexectools/default.nix index 5c6114040ff..2199524154d 100644 --- a/pkgs/os-specific/linux/kexectools/default.nix +++ b/pkgs/os-specific/linux/kexectools/default.nix @@ -1,8 +1,8 @@ { stdenv, fetchurl, zlib }: -let version = "2.0.11"; in stdenv.mkDerivation rec { name = "kexec-tools-${version}"; + version = "2.0.11"; src = fetchurl { urls = [ @@ -15,7 +15,6 @@ stdenv.mkDerivation rec { buildInputs = [ zlib ]; meta = with stdenv.lib; { - inherit version; homepage = http://horms.net/projects/kexec/kexec-tools; description = "Tools related to the kexec Linux feature"; platforms = platforms.linux; diff --git a/pkgs/os-specific/linux/mcelog/default.nix b/pkgs/os-specific/linux/mcelog/default.nix index a6818ae86b9..113d59d641d 100644 --- a/pkgs/os-specific/linux/mcelog/default.nix +++ b/pkgs/os-specific/linux/mcelog/default.nix @@ -1,8 +1,8 @@ { stdenv, fetchFromGitHub }: -let version = "129"; in -stdenv.mkDerivation { +stdenv.mkDerivation rec { name = "mcelog-${version}"; + version = "129"; src = fetchFromGitHub { sha256 = "143xh5zvgax88yhg6mg6img64nrda85yybf76fgsk7a8gc57ghyk"; @@ -25,7 +25,6 @@ stdenv.mkDerivation { installFlags = [ "DESTDIR=$(out)" "prefix=" "DOCDIR=/share/doc" ]; meta = with stdenv.lib; { - inherit version; description = "Log x86 machine checks: memory, IO, and CPU hardware errors"; longDescription = '' The mcelog daemon accounts memory and some other errors in various ways diff --git a/pkgs/os-specific/linux/radeontop/default.nix b/pkgs/os-specific/linux/radeontop/default.nix index b86486d4584..0ed76e790cc 100644 --- a/pkgs/os-specific/linux/radeontop/default.nix +++ b/pkgs/os-specific/linux/radeontop/default.nix @@ -1,8 +1,8 @@ { stdenv, fetchFromGitHub, pkgconfig, gettext, ncurses, libdrm, libpciaccess }: -let version = "2015-11-24"; in -stdenv.mkDerivation { +stdenv.mkDerivation rec { name = "radeontop-${version}"; + version = "2015-11-24"; src = fetchFromGitHub { sha256 = "0irwq6rps5mnban8cxbrm59wpyv4j80q3xdjm9fxvfpiyys2g2hz"; @@ -23,7 +23,6 @@ stdenv.mkDerivation { makeFlags = [ "PREFIX=$(out)" ]; meta = with stdenv.lib; { - inherit version; description = "Top-like tool for viewing AMD Radeon GPU utilization"; longDescription = '' View GPU utilization, both for the total activity percent and individual diff --git a/pkgs/os-specific/linux/uksmtools/default.nix b/pkgs/os-specific/linux/uksmtools/default.nix index 3e8b37a2faf..cd7c7527fe9 100644 --- a/pkgs/os-specific/linux/uksmtools/default.nix +++ b/pkgs/os-specific/linux/uksmtools/default.nix @@ -1,8 +1,8 @@ { stdenv, fetchgit, cmake }: -let version = "2015-09-25"; in -stdenv.mkDerivation { +stdenv.mkDerivation rec { name = "uksmtools-${version}"; + version = "2015-09-25"; # This project uses git submodules, which fetchFromGitHub doesn't support: src = fetchgit { @@ -18,7 +18,6 @@ stdenv.mkDerivation { doCheck = false; meta = with stdenv.lib; { - inherit version; description = "Tools to control Linux UKSM (Ultra Kernel Same-page Merging)"; homepage = https://github.com/pfactum/uksmtools/; license = licenses.gpl3Plus; diff --git a/pkgs/shells/mksh/default.nix b/pkgs/shells/mksh/default.nix index 4e1570a3838..dc5f437977c 100644 --- a/pkgs/shells/mksh/default.nix +++ b/pkgs/shells/mksh/default.nix @@ -1,8 +1,8 @@ { stdenv, fetchurl, groff }: -let version = "52"; in -stdenv.mkDerivation { +stdenv.mkDerivation rec { name = "mksh-${version}"; + version = "52"; src = fetchurl { urls = [ @@ -30,7 +30,6 @@ stdenv.mkDerivation { ''; meta = with stdenv.lib; { - inherit version; description = "MirBSD Korn Shell"; longDescription = '' The MirBSD Korn Shell is a DFSG-free and OSD-compliant (and OSI diff --git a/pkgs/tools/admin/nxproxy/default.nix b/pkgs/tools/admin/nxproxy/default.nix index 70e1b55984d..42bd284e73f 100644 --- a/pkgs/tools/admin/nxproxy/default.nix +++ b/pkgs/tools/admin/nxproxy/default.nix @@ -1,23 +1,14 @@ { stdenv, fetchurl, autoreconfHook, libxcomp }: -let version = "3.5.0.32"; in -stdenv.mkDerivation { +stdenv.mkDerivation rec { name = "nxproxy-${version}"; + version = "3.5.0.32"; src = fetchurl { sha256 = "02n5bdc1jsq999agb4w6dmdj5l2wlln2lka84qz6rpswwc59zaxm"; url = "http://code.x2go.org/releases/source/nx-libs/nx-libs-${version}-lite.tar.gz"; }; - meta = with stdenv.lib; { - inherit version; - description = "NX compression proxy"; - homepage = "http://wiki.x2go.org/doku.php/wiki:libs:nx-libs"; - license = licenses.gpl2; - platforms = platforms.linux; - maintainers = with maintainers; [ nckx ]; - }; - buildInputs = [ libxcomp ]; nativeBuildInputs = [ autoreconfHook ]; @@ -28,4 +19,12 @@ stdenv.mkDerivation { makeFlags = [ "exec_prefix=$(out)" ]; enableParallelBuilding = true; + + meta = with stdenv.lib; { + description = "NX compression proxy"; + homepage = "http://wiki.x2go.org/doku.php/wiki:libs:nx-libs"; + license = licenses.gpl2; + platforms = platforms.linux; + maintainers = with maintainers; [ nckx ]; + }; } diff --git a/pkgs/tools/cd-dvd/dvdisaster/default.nix b/pkgs/tools/cd-dvd/dvdisaster/default.nix index a98ce2088bd..7cb1bf7506d 100644 --- a/pkgs/tools/cd-dvd/dvdisaster/default.nix +++ b/pkgs/tools/cd-dvd/dvdisaster/default.nix @@ -3,9 +3,9 @@ , enableSoftening ? true }: -let version = "0.79.5"; in stdenv.mkDerivation rec { name = "dvdisaster-${version}"; + version = "0.79.5"; src = fetchurl { url = "http://dvdisaster.net/downloads/${name}.tar.bz2"; @@ -70,7 +70,6 @@ stdenv.mkDerivation rec { ''; meta = with stdenv.lib; { - inherit version; homepage = http://dvdisaster.net/; description = "Data loss/scratch/aging protection for CD/DVD media"; longDescription = '' diff --git a/pkgs/tools/compression/lz4/default.nix b/pkgs/tools/compression/lz4/default.nix index 13236da5ab4..8340ea3fe8b 100644 --- a/pkgs/tools/compression/lz4/default.nix +++ b/pkgs/tools/compression/lz4/default.nix @@ -1,8 +1,8 @@ { stdenv, fetchFromGitHub, valgrind }: -let version = "131"; in stdenv.mkDerivation rec { name = "lz4-${version}"; + version = "131"; src = fetchFromGitHub { sha256 = "1bhvcq8fxxsqnpg5qa6k3nsyhq0nl0iarh08sqzclww27hlpyay2"; @@ -23,7 +23,6 @@ stdenv.mkDerivation rec { patches = [ ./install-on-freebsd.patch ] ; meta = with stdenv.lib; { - inherit version; description = "Extremely fast compression algorithm"; longDescription = '' Very fast lossless compression algorithm, providing compression speed diff --git a/pkgs/tools/compression/zopfli/default.nix b/pkgs/tools/compression/zopfli/default.nix index 3c455ca5635..8aeeb3b9e51 100644 --- a/pkgs/tools/compression/zopfli/default.nix +++ b/pkgs/tools/compression/zopfli/default.nix @@ -1,8 +1,8 @@ { stdenv, fetchFromGitHub, fetchpatch }: -let version = "1.0.1"; in stdenv.mkDerivation rec { name = "zopfli-${version}"; + version = "1.0.1"; src = fetchFromGitHub { owner = "google"; @@ -45,7 +45,6 @@ stdenv.mkDerivation rec { ''; meta = with stdenv.lib; { - inherit version; inherit (src.meta) homepage; description = "Very good, but slow, deflate or zlib compression"; longDescription = '' diff --git a/pkgs/tools/filesystems/duff/default.nix b/pkgs/tools/filesystems/duff/default.nix index 1c4d068c4c1..078c80a8b70 100644 --- a/pkgs/tools/filesystems/duff/default.nix +++ b/pkgs/tools/filesystems/duff/default.nix @@ -1,10 +1,10 @@ { stdenv, fetchFromGitHub, autoreconfHook, gettext }: -# The last release (0.5.2) is more than 2 years old and lacks features like -D, -# limiting its usefulness. Upstream appears comatose if not dead. -let version = "2014-07-03"; in -stdenv.mkDerivation { +stdenv.mkDerivation rec { name = "duff-${version}"; + # The last release (0.5.2) is more than 2 years old and lacks features like -D, + # limiting its usefulness. Upstream appears comatose if not dead. + version = "2014-07-03"; src = fetchFromGitHub { sha256 = "1k2dx38pjzc5d624vw1cs5ipj9fprsm5vqv55agksc29m63lswnx"; @@ -28,7 +28,6 @@ stdenv.mkDerivation { enableParallelBuilding = true; meta = with stdenv.lib; { - inherit version; description = "Quickly find duplicate files"; longDescription = '' Duff is a Unix command-line utility for quickly finding duplicates in diff --git a/pkgs/tools/filesystems/encfs/default.nix b/pkgs/tools/filesystems/encfs/default.nix index b21054e478d..158050f6291 100644 --- a/pkgs/tools/filesystems/encfs/default.nix +++ b/pkgs/tools/filesystems/encfs/default.nix @@ -1,9 +1,9 @@ { stdenv, fetchFromGitHub, autoreconfHook, boost, fuse, openssl, perl , pkgconfig, rlog }: -let version = "1.8.1"; in -stdenv.mkDerivation { +stdenv.mkDerivation rec { name = "encfs-${version}"; + version = "1.8.1"; src = fetchFromGitHub { sha256 = "1cxihqwpnqbzy8qz0134199pwfnd7ikr2835p5p1yzqnl203wcdb"; diff --git a/pkgs/tools/filesystems/exfat/default.nix b/pkgs/tools/filesystems/exfat/default.nix index 507c5e7a6c0..7c483c9258a 100644 --- a/pkgs/tools/filesystems/exfat/default.nix +++ b/pkgs/tools/filesystems/exfat/default.nix @@ -1,8 +1,8 @@ { stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, fuse }: -let version = "1.2.3"; in stdenv.mkDerivation rec { name = "exfat-${version}"; + version = "1.2.3"; src = fetchFromGitHub { sha256 = "147s11sqmn5flbvz2hwpl6kdfqi2gnm1c2nsn5fxygyw7qyhpzda"; @@ -15,7 +15,6 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ autoreconfHook pkgconfig ]; meta = with stdenv.lib; { - inherit version; inherit (src.meta) homepage; description = "Free exFAT file system implementation"; platforms = platforms.linux; diff --git a/pkgs/tools/filesystems/gpart/default.nix b/pkgs/tools/filesystems/gpart/default.nix index 359ef16c2b8..dfa6fe3234c 100644 --- a/pkgs/tools/filesystems/gpart/default.nix +++ b/pkgs/tools/filesystems/gpart/default.nix @@ -1,8 +1,8 @@ { stdenv, fetchFromGitHub, autoreconfHook }: -let version = "0.3"; in stdenv.mkDerivation rec { name = "gpart-${version}"; + version = "0.3"; # GitHub repository 'collating patches for gpart from all distributions': src = fetchFromGitHub { @@ -19,7 +19,6 @@ stdenv.mkDerivation rec { doCheck = true; meta = with stdenv.lib; { - inherit version; inherit (src.meta) homepage; description = "Guess PC-type hard disk partitions"; longDescription = '' diff --git a/pkgs/tools/filesystems/mp3fs/default.nix b/pkgs/tools/filesystems/mp3fs/default.nix index 3b6b3c919cd..77207cb8b3a 100644 --- a/pkgs/tools/filesystems/mp3fs/default.nix +++ b/pkgs/tools/filesystems/mp3fs/default.nix @@ -1,8 +1,8 @@ { stdenv, fetchurl, flac, fuse, lame, libid3tag, pkgconfig }: -let version = "0.91"; in stdenv.mkDerivation rec { name = "mp3fs-${version}"; + version = "0.91"; src = fetchurl { url = "https://github.com/khenriks/mp3fs/releases/download/v${version}/${name}.tar.gz"; diff --git a/pkgs/tools/misc/clex/default.nix b/pkgs/tools/misc/clex/default.nix index 996254a54a2..b9e3fc179d5 100644 --- a/pkgs/tools/misc/clex/default.nix +++ b/pkgs/tools/misc/clex/default.nix @@ -1,14 +1,18 @@ { stdenv, fetchurl, ncurses }: -let version = "4.6.patch6"; in stdenv.mkDerivation rec { name = "clex-${version}"; + version = "4.6.patch6"; src = fetchurl { sha256 = "0bqa2hc9721d62cfsy5c7a5pzgh9b4px7g4q60xlybkwll19qbbp"; url = "${meta.homepage}/download/${name}.tar.gz"; }; + buildInputs = [ ncurses ]; + + enableParallelBuilding = true; + meta = with stdenv.lib; { description = "File manager with full-screen terminal interface"; longDescription = '' @@ -23,8 +27,4 @@ stdenv.mkDerivation rec { platforms = platforms.linux; maintainers = with maintainers; [ nckx ]; }; - - buildInputs = [ ncurses ]; - - enableParallelBuilding = true; } diff --git a/pkgs/tools/misc/ipad_charge/default.nix b/pkgs/tools/misc/ipad_charge/default.nix index 73fee38cbf2..9fbc915ad2e 100644 --- a/pkgs/tools/misc/ipad_charge/default.nix +++ b/pkgs/tools/misc/ipad_charge/default.nix @@ -1,8 +1,8 @@ { stdenv, fetchFromGitHub, libusb1 }: -let version = "2015-02-03"; in stdenv.mkDerivation rec { name = "ipad_charge-${version}"; + version = "2015-02-03"; src = fetchFromGitHub { sha256 = "0f40hqx1dbqpwrhyf42h5982jwqv8j5zp5hwwakz6600hyqvnnz7"; @@ -27,7 +27,6 @@ stdenv.mkDerivation rec { ''; meta = with stdenv.lib; { - inherit version; inherit (src.meta) homepage; description = "Apple device USB charging utility for Linux"; longDescription = '' diff --git a/pkgs/tools/misc/ms-sys/default.nix b/pkgs/tools/misc/ms-sys/default.nix index f9512b09ce6..c0b1de6c1e8 100644 --- a/pkgs/tools/misc/ms-sys/default.nix +++ b/pkgs/tools/misc/ms-sys/default.nix @@ -1,8 +1,8 @@ { stdenv, fetchurl, gettext }: -let version = "2.5.2"; in stdenv.mkDerivation rec { name = "ms-sys-${version}"; + version = "2.5.2"; src = fetchurl { url = "mirror://sourceforge/ms-sys/${name}.tar.gz"; @@ -16,7 +16,6 @@ stdenv.mkDerivation rec { makeFlags = [ "PREFIX=$(out)" ]; meta = with stdenv.lib; { - inherit version; description = "A program for writing Microsoft compatible boot records"; homepage = http://ms-sys.sourceforge.net/; license = licenses.gpl2Plus; diff --git a/pkgs/tools/misc/tldr/default.nix b/pkgs/tools/misc/tldr/default.nix index 46dbc2a2a22..f223a97520b 100644 --- a/pkgs/tools/misc/tldr/default.nix +++ b/pkgs/tools/misc/tldr/default.nix @@ -1,8 +1,8 @@ { stdenv, fetchFromGitHub, clang, curl, libzip, pkgconfig }: -let version = "1.1.0"; in -stdenv.mkDerivation { +stdenv.mkDerivation rec { name = "tldr-${version}"; + version = "1.1.0"; src = fetchFromGitHub { sha256 = "0hxkrzp5njhy7c19v8i3svcb148f1jni7dlv36gc1nmcrz5izsiz"; @@ -23,7 +23,6 @@ stdenv.mkDerivation { ''; meta = with stdenv.lib; { - inherit version; description = "Simplified and community-driven man pages"; longDescription = '' tldr pages gives common use cases for commands, so you don't need to hunt diff --git a/pkgs/tools/networking/dhcping/default.nix b/pkgs/tools/networking/dhcping/default.nix index 53d87b2e3fa..19c2383c1c2 100644 --- a/pkgs/tools/networking/dhcping/default.nix +++ b/pkgs/tools/networking/dhcping/default.nix @@ -1,8 +1,8 @@ { stdenv, fetchurl }: -let version = "1.2"; in -stdenv.mkDerivation { +stdenv.mkDerivation rec { name = "dhcping-${version}"; + version = "1.2"; src = fetchurl { sha256 = "0sk4sg3hn88n44dxikipf3ggfj3ixrp22asb7nry9p0bkfaqdvrj"; @@ -14,7 +14,6 @@ stdenv.mkDerivation { doCheck = true; meta = with stdenv.lib; { - inherit version; description = "Send DHCP request to find out if a DHCP server is running"; longDescription = '' dhcping sends either a DHCPREQUEST or DHCPINFORM packet to the server @@ -31,4 +30,4 @@ stdenv.mkDerivation { platforms = platforms.linux; maintainers = with maintainers; [ nckx ]; }; - } +} diff --git a/pkgs/tools/networking/hans/default.nix b/pkgs/tools/networking/hans/default.nix index aecc0bb63fa..0e838a896cb 100644 --- a/pkgs/tools/networking/hans/default.nix +++ b/pkgs/tools/networking/hans/default.nix @@ -1,8 +1,8 @@ { stdenv, fetchFromGitHub, nettools }: -let version = "0.4.4"; in -stdenv.mkDerivation { +stdenv.mkDerivation rec { name = "hans-${version}"; + version = "0.4.4"; src = fetchFromGitHub { sha256 = "1xskffmmdmg1whlrl5wpkv9z29vh0igrbmsz0b45s9v0761a7kis"; @@ -11,21 +11,6 @@ stdenv.mkDerivation { owner = "friedrich"; }; - meta = with stdenv.lib; { - inherit version; - description = "Tunnel IPv4 over ICMP"; - longDescription = '' - Hans makes it possible to tunnel IPv4 through ICMP echo packets, so you - could call it a ping tunnel. This can be useful when you find yourself in - the situation that your Internet access is firewalled, but pings are - allowed. - ''; - homepage = http://code.gerade.org/hans/; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ nckx ]; - }; - buildInputs = [ nettools ]; postPatch = '' @@ -37,4 +22,18 @@ stdenv.mkDerivation { installPhase = '' install -D -m0755 hans $out/bin/hans ''; + + meta = with stdenv.lib; { + description = "Tunnel IPv4 over ICMP"; + longDescription = '' + Hans makes it possible to tunnel IPv4 through ICMP echo packets, so you + could call it a ping tunnel. This can be useful when you find yourself in + the situation that your Internet access is firewalled, but pings are + allowed. + ''; + homepage = http://code.gerade.org/hans/; + license = licenses.gpl3Plus; + platforms = platforms.linux; + maintainers = with maintainers; [ nckx ]; + }; } diff --git a/pkgs/tools/networking/ip2location/default.nix b/pkgs/tools/networking/ip2location/default.nix index 18fd2d12131..22eb31384a1 100644 --- a/pkgs/tools/networking/ip2location/default.nix +++ b/pkgs/tools/networking/ip2location/default.nix @@ -1,8 +1,8 @@ { stdenv, fetchurl }: -let version = "7.0.0"; in -stdenv.mkDerivation { +stdenv.mkDerivation rec { name = "ip2location-${version}"; + version = "7.0.0"; src = fetchurl { sha256 = "05zbc02z7vm19byafi05i1rnkxc6yrfkhnm30ly68zzyipkmzx1l"; @@ -14,7 +14,6 @@ stdenv.mkDerivation { doCheck = true; meta = with stdenv.lib; { - inherit version; description = "Look up locations of host names and IP addresses"; longDescription = '' A command-line tool to find the country, region, city,coordinates, diff --git a/pkgs/tools/networking/ipv6calc/default.nix b/pkgs/tools/networking/ipv6calc/default.nix index a7c844932c9..e41b65d3d25 100644 --- a/pkgs/tools/networking/ipv6calc/default.nix +++ b/pkgs/tools/networking/ipv6calc/default.nix @@ -2,9 +2,9 @@ , geoip ? null, geolite-legacy ? null , ip2location-database ? null }: -let version = "0.99.1"; in stdenv.mkDerivation rec { name = "ipv6calc-${version}"; + version = "0.99.1"; src = fetchurl { url = "ftp://ftp.deepspace6.net/pub/ds6/sources/ipv6calc/${name}.tar.gz"; @@ -39,7 +39,6 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; meta = with stdenv.lib; { - inherit version; description = "Calculate/manipulate (not only) IPv6 addresses"; longDescription = '' ipv6calc is a small utility to manipulate (not only) IPv6 addresses and diff --git a/pkgs/tools/networking/netsniff-ng/default.nix b/pkgs/tools/networking/netsniff-ng/default.nix index 535a96c1db7..b83b7927679 100644 --- a/pkgs/tools/networking/netsniff-ng/default.nix +++ b/pkgs/tools/networking/netsniff-ng/default.nix @@ -2,9 +2,9 @@ , libnetfilter_conntrack, libnl, libpcap, libsodium, liburcu, ncurses, perl , pkgconfig, zlib }: -let version = "0.6.0"; in -stdenv.mkDerivation { +stdenv.mkDerivation rec { name = "netsniff-ng-${version}"; + version = "0.6.0"; # Upstream recommends and supports git src = fetchFromGitHub rec { @@ -41,7 +41,6 @@ stdenv.mkDerivation { ''; meta = with stdenv.lib; { - inherit version; description = "Swiss army knife for daily Linux network plumbing"; longDescription = '' netsniff-ng is a free Linux networking toolkit. Its gain of performance diff --git a/pkgs/tools/networking/pcapc/default.nix b/pkgs/tools/networking/pcapc/default.nix index 7da123a377b..66028a973b3 100644 --- a/pkgs/tools/networking/pcapc/default.nix +++ b/pkgs/tools/networking/pcapc/default.nix @@ -1,8 +1,8 @@ { stdenv, fetchFromGitHub, libpcap }: -let version = "2015-03-06"; in stdenv.mkDerivation rec { name = "pcapc-${version}"; + version = "2015-03-06"; src = fetchFromGitHub { sha256 = "02j45wmxy8qcji0giwx3364pbqb6849s8y0xfvzx40g98mssl027"; @@ -24,7 +24,6 @@ stdenv.mkDerivation rec { ''; meta = with stdenv.lib; { - inherit version; inherit (src.meta) homepage; description = "Compile libpcap filter expressions into BPF opcodes"; license = licenses.gpl3; diff --git a/pkgs/tools/networking/pingtcp/default.nix b/pkgs/tools/networking/pingtcp/default.nix index 784639b788c..4d99eaaeff6 100644 --- a/pkgs/tools/networking/pingtcp/default.nix +++ b/pkgs/tools/networking/pingtcp/default.nix @@ -1,8 +1,8 @@ { stdenv, fetchgit, cmake }: -let version = "0.0.3"; in -stdenv.mkDerivation { +stdenv.mkDerivation rec { name = "pingtcp-${version}"; + version = "0.0.3"; # This project uses git submodules, which fetchFromGitHub doesn't support: src = fetchgit { @@ -27,7 +27,6 @@ stdenv.mkDerivation { ''; meta = with stdenv.lib; { - inherit version; description = "Measure TCP handshake time"; homepage = https://github.com/LanetNetwork/pingtcp; license = licenses.gpl3; diff --git a/pkgs/tools/package-management/dpkg/default.nix b/pkgs/tools/package-management/dpkg/default.nix index 7b4486a8d86..f65b25d119d 100644 --- a/pkgs/tools/package-management/dpkg/default.nix +++ b/pkgs/tools/package-management/dpkg/default.nix @@ -1,9 +1,8 @@ { stdenv, fetchurl, perl, zlib, bzip2, xz, makeWrapper }: -let version = "1.18.4"; in - -stdenv.mkDerivation { +stdenv.mkDerivation rec { name = "dpkg-${version}"; + version = "1.18.4"; src = fetchurl { url = "mirror://debian/pool/main/d/dpkg/dpkg_${version}.tar.xz"; diff --git a/pkgs/tools/package-management/packagekit/default.nix b/pkgs/tools/package-management/packagekit/default.nix index b41afd35751..ae8e1b252c4 100644 --- a/pkgs/tools/package-management/packagekit/default.nix +++ b/pkgs/tools/package-management/packagekit/default.nix @@ -1,8 +1,8 @@ { stdenv, fetchurl, intltool, glib, pkgconfig, polkit, python, sqlite }: -let version = "1.0.8"; in -stdenv.mkDerivation { +stdenv.mkDerivation rec { name = "packagekit-${version}"; + version = "1.0.8"; src = fetchurl { sha256 = "1vaxn4kwdwx6p03n88k4pnbd2l6lb0cbxpcs88kjack1jml17c3l"; @@ -53,7 +53,6 @@ stdenv.mkDerivation { ''; meta = with stdenv.lib; { - inherit version; description = "System to facilitate installing and updating packages"; longDescription = '' PackageKit is a system designed to make installing and updating software diff --git a/pkgs/tools/security/eid-mw/default.nix b/pkgs/tools/security/eid-mw/default.nix index ff062ab5094..32cf4f9a4e2 100644 --- a/pkgs/tools/security/eid-mw/default.nix +++ b/pkgs/tools/security/eid-mw/default.nix @@ -1,9 +1,9 @@ { stdenv, fetchFromGitHub, autoreconfHook, gtk3, nssTools, pcsclite , pkgconfig }: -let version = "4.1.13"; in -stdenv.mkDerivation { +stdenv.mkDerivation rec { name = "eid-mw-${version}"; + version = "4.1.13"; src = fetchFromGitHub { sha256 = "1fkazhw6gs191w789fnp6mwnxrx9p38b3kh5bngb1ir0zhkgghkq"; @@ -35,7 +35,6 @@ stdenv.mkDerivation { ''; 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; diff --git a/pkgs/tools/security/eid-viewer/default.nix b/pkgs/tools/security/eid-viewer/default.nix index ac6dee4beaa..d1b29e137df 100644 --- a/pkgs/tools/security/eid-viewer/default.nix +++ b/pkgs/tools/security/eid-viewer/default.nix @@ -1,8 +1,8 @@ { stdenv, fetchurl, makeWrapper, jre, pcsclite }: -let version = "4.1.9"; in stdenv.mkDerivation rec { name = "eid-viewer-${version}"; + version = "4.1.9"; src = fetchurl { url = "https://downloads.services.belgium.be/eid/eid-viewer-${version}-v${version}.src.tar.gz"; @@ -29,7 +29,6 @@ stdenv.mkDerivation rec { doCheck = true; meta = with stdenv.lib; { - inherit version; description = "Belgian electronic identity card (eID) viewer"; homepage = http://eid.belgium.be/en/using_your_eid/installing_the_eid_software/linux/; license = licenses.lgpl3; diff --git a/pkgs/tools/system/foremost/default.nix b/pkgs/tools/system/foremost/default.nix index af28565f466..cfac8923779 100644 --- a/pkgs/tools/system/foremost/default.nix +++ b/pkgs/tools/system/foremost/default.nix @@ -1,8 +1,8 @@ { stdenv, fetchurl }: -let version = "1.5.7"; in stdenv.mkDerivation rec { name = "foremost-${version}"; + version = "1.5.7"; src = fetchurl { sha256 = "0d2zxw0ijg8cd3ksgm8cf8jg128zr5x7z779jar90g9f47pm882h"; @@ -20,7 +20,6 @@ stdenv.mkDerivation rec { ''; meta = with stdenv.lib; { - inherit version; description = "Recover files based on their contents"; longDescription = '' Foremost is a console program to recover files based on their headers, diff --git a/pkgs/tools/system/gptfdisk/default.nix b/pkgs/tools/system/gptfdisk/default.nix index 9306b0e84cc..264dbf1eb27 100644 --- a/pkgs/tools/system/gptfdisk/default.nix +++ b/pkgs/tools/system/gptfdisk/default.nix @@ -1,8 +1,8 @@ { fetchurl, stdenv, libuuid, popt, icu, ncurses }: -let version = "1.0.1"; in stdenv.mkDerivation rec { name = "gptfdisk-${version}"; + version = "1.0.1"; src = fetchurl { # http://www.rodsbooks.com/gdisk/${name}.tar.gz also works, but the home @@ -36,7 +36,6 @@ stdenv.mkDerivation rec { ''; meta = with stdenv.lib; { - inherit version; description = "Set of text-mode partitioning tools for Globally Unique Identifier (GUID) Partition Table (GPT) disks"; license = licenses.gpl2; homepage = http://www.rodsbooks.com/gdisk/; diff --git a/pkgs/tools/system/suid-chroot/default.nix b/pkgs/tools/system/suid-chroot/default.nix index 4aba9f48b76..3d4fe6e18a2 100644 --- a/pkgs/tools/system/suid-chroot/default.nix +++ b/pkgs/tools/system/suid-chroot/default.nix @@ -1,8 +1,8 @@ { stdenv, fetchurl }: -let version = "1.0.2"; in stdenv.mkDerivation rec { name = "suid-chroot-${version}"; + version = "1.0.2"; src = fetchurl { sha256 = "1a9xqhck0ikn8kfjk338h9v1yjn113gd83q0c50k78xa68xrnxjx"; @@ -14,7 +14,6 @@ stdenv.mkDerivation rec { ''; meta = with stdenv.lib; { - inherit version; description = "Setuid-safe wrapper for chroot"; license = licenses.gpl2Plus; maintainers = with maintainers; [ nckx ]; diff --git a/pkgs/tools/text/aha/default.nix b/pkgs/tools/text/aha/default.nix index 152a46cd50c..7eb1c022a95 100644 --- a/pkgs/tools/text/aha/default.nix +++ b/pkgs/tools/text/aha/default.nix @@ -1,8 +1,8 @@ { stdenv, fetchFromGitHub }: -let version = "0.4.8"; in -stdenv.mkDerivation { +stdenv.mkDerivation rec { name = "aha-${version}"; + version = "0.4.8"; src = fetchFromGitHub { sha256 = "1209rda6kc9x88b47y1035zs9lxk0x3qzsb87f8m5b55fdkgxqlj"; @@ -16,7 +16,6 @@ stdenv.mkDerivation { enableParallelBuilding = true; meta = with stdenv.lib; { - inherit version; description = "ANSI HTML Adapter"; longDescription = '' aha takes ANSI SGR-coloured input and produces W3C-conformant HTML code. From ac33b4724a84ef01f3d25a42e2b63f1a9d3e5cd6 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Mon, 25 Jan 2016 20:08:34 +0100 Subject: [PATCH 170/268] More version attribute tidying where maintainers |= nckx --- pkgs/applications/audio/dfasma/default.nix | 11 ++++------- pkgs/applications/graphics/sane/backends/generic.nix | 4 +--- pkgs/applications/misc/ocropus/default.nix | 7 +++---- pkgs/applications/misc/redshift/default.nix | 6 +++--- pkgs/data/misc/geolite-legacy/default.nix | 8 ++------ pkgs/development/libraries/cpp-netlib/default.nix | 6 +----- pkgs/development/libraries/libpsl/default.nix | 6 ++---- .../tools/build-managers/icmake/default.nix | 1 - pkgs/development/tools/misc/ccache/default.nix | 12 +++--------- pkgs/development/tools/parsing/lemon/default.nix | 6 ++---- pkgs/games/eduke32/default.nix | 3 +-- pkgs/misc/drivers/hplip/3.15.9.nix | 6 ++---- pkgs/misc/drivers/hplip/default.nix | 4 +--- pkgs/os-specific/linux/jfbview/default.nix | 5 ++--- pkgs/os-specific/linux/phc-intel/default.nix | 7 +++---- pkgs/servers/p910nd/default.nix | 7 ++----- pkgs/tools/compression/xdelta/default.nix | 5 ++--- pkgs/tools/compression/xdelta/unstable.nix | 5 ++--- pkgs/tools/filesystems/boxfs/default.nix | 5 ++--- pkgs/tools/networking/httping/default.nix | 2 -- pkgs/tools/networking/minissdpd/default.nix | 7 ++----- pkgs/tools/security/sshuttle/default.nix | 3 +-- pkgs/tools/system/stress-ng/default.nix | 7 ++----- 23 files changed, 43 insertions(+), 90 deletions(-) diff --git a/pkgs/applications/audio/dfasma/default.nix b/pkgs/applications/audio/dfasma/default.nix index 9be3fff6ecb..b2eda29ead5 100644 --- a/pkgs/applications/audio/dfasma/default.nix +++ b/pkgs/applications/audio/dfasma/default.nix @@ -2,10 +2,6 @@ let - version = "1.2.5"; - rev = "v${version}"; - sha256 = "0mgy2bkmyp7lvaqsr7hkndwdgjf26mlpsj6smrmn1vp0cqyrw72d"; - reaperFork = { src = fetchFromGitHub { sha256 = "07m2wf2gqyya95b65gawrnr4pvc9jyzmg6h8sinzgxlpskz93wwc"; @@ -30,11 +26,13 @@ let }; }; -in stdenv.mkDerivation { +in stdenv.mkDerivation rec { name = "dfasma-${version}"; + version = "1.2.5"; src = fetchFromGitHub { - inherit sha256 rev; + sha256 = "0mgy2bkmyp7lvaqsr7hkndwdgjf26mlpsj6smrmn1vp0cqyrw72d"; + rev = "v${version}"; repo = "dfasma"; owner = "gillesdegottex"; }; @@ -60,7 +58,6 @@ in stdenv.mkDerivation { ''; meta = with stdenv.lib; { - inherit version; description = "Analyse and compare audio files in time and frequency"; longDescription = '' DFasma is free open-source software to compare audio files by time and diff --git a/pkgs/applications/graphics/sane/backends/generic.nix b/pkgs/applications/graphics/sane/backends/generic.nix index b597250098f..8f46e647252 100644 --- a/pkgs/applications/graphics/sane/backends/generic.nix +++ b/pkgs/applications/graphics/sane/backends/generic.nix @@ -13,7 +13,7 @@ }: stdenv.mkDerivation { - inherit src; + inherit src version; name = "sane-backends-${version}"; @@ -56,8 +56,6 @@ stdenv.mkDerivation { '' + stdenv.lib.concatStrings (builtins.map installFirmware compatFirmware); meta = with stdenv.lib; { - inherit version; - description = "SANE (Scanner Access Now Easy) backends"; longDescription = '' Collection of open-source SANE backends (device drivers). diff --git a/pkgs/applications/misc/ocropus/default.nix b/pkgs/applications/misc/ocropus/default.nix index b53a928931b..0e6b13f9a28 100644 --- a/pkgs/applications/misc/ocropus/default.nix +++ b/pkgs/applications/misc/ocropus/default.nix @@ -2,11 +2,11 @@ let getmodel = name: sha256: { + inherit name; src = fetchurl { url = "http://www.tmbdev.net/ocropy/${name}"; inherit sha256; }; - inherit name; }; models = [ @@ -16,10 +16,10 @@ let "1wlwvxn91ilgmlri1hj81arl3mbzxc24ycdnkf5icq4hdi4c6y8b") ]; - version = "20150316"; in -pythonPackages.buildPythonPackage { +pythonPackages.buildPythonPackage rec { name = "ocropus-${version}"; + version = "20150316"; src = fetchFromGitHub { sha256 = "0m5bm2ah3p29c13vp7hz7rm058qnlm840zd8xv20byijhlz0447g"; @@ -49,7 +49,6 @@ pythonPackages.buildPythonPackage { ''; meta = with stdenv.lib; { - inherit version; description = "Open source document analysis and OCR system"; license = licenses.asl20; homepage = https://github.com/tmbdev/ocropy/; diff --git a/pkgs/applications/misc/redshift/default.nix b/pkgs/applications/misc/redshift/default.nix index abe25afda5f..e62deb9a348 100644 --- a/pkgs/applications/misc/redshift/default.nix +++ b/pkgs/applications/misc/redshift/default.nix @@ -7,13 +7,14 @@ }: let - version = "1.11"; mkFlag = flag: name: if flag then "--enable-${name}" else "--disable-${name}"; in -stdenv.mkDerivation { +stdenv.mkDerivation rec { name = "redshift-${version}"; + version = "1.11"; + src = fetchurl { sha256 = "0ngkwj7rg8nfk806w0sg443w6wjr91xdc0zisqfm5h2i77wm1qqh"; url = "https://github.com/jonls/redshift/releases/download/v${version}/redshift-${version}.tar.xz"; @@ -51,7 +52,6 @@ stdenv.mkDerivation { ''; meta = with stdenv.lib; { - inherit version; description = "Gradually change screen color temperature"; longDescription = '' The color temperature is set according to the position of the diff --git a/pkgs/data/misc/geolite-legacy/default.nix b/pkgs/data/misc/geolite-legacy/default.nix index 24f987f374c..eab577888d1 100644 --- a/pkgs/data/misc/geolite-legacy/default.nix +++ b/pkgs/data/misc/geolite-legacy/default.nix @@ -5,13 +5,10 @@ let inherit name sha256; url = "https://geolite.maxmind.com/download/geoip/database/${src}"; }; - - # 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 = "2016-01-25"; in -stdenv.mkDerivation { +stdenv.mkDerivation rec { name = "geolite-legacy-${version}"; + version = "2016-01-25"; srcGeoIP = fetchDB "GeoLiteCountry/GeoIP.dat.gz" "GeoIP.dat.gz" @@ -33,7 +30,6 @@ stdenv.mkDerivation { "1id60almra7mq4v86p37sfph8jrbdnc5pzxvy55wiyrvf6ydvk56"; meta = with stdenv.lib; { - inherit version; description = "GeoLite Legacy IP geolocation databases"; homepage = https://geolite.maxmind.com/download/geoip; license = licenses.cc-by-sa-30; diff --git a/pkgs/development/libraries/cpp-netlib/default.nix b/pkgs/development/libraries/cpp-netlib/default.nix index 685d095a818..64b223d4ebb 100644 --- a/pkgs/development/libraries/cpp-netlib/default.nix +++ b/pkgs/development/libraries/cpp-netlib/default.nix @@ -1,11 +1,8 @@ { stdenv, fetchurl, cmake, boost, openssl }: -let - version = "0.11.2"; -in - stdenv.mkDerivation rec { name = "cpp-netlib-${version}"; + version = "0.11.2"; src = fetchurl { url = "http://downloads.cpp-netlib.org/${version}/${name}-final.tar.bz2"; @@ -19,7 +16,6 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; meta = with stdenv.lib; { - inherit version; description = "A collection of open-source libraries for high level network programming"; homepage = http://cpp-netlib.org; license = licenses.boost; diff --git a/pkgs/development/libraries/libpsl/default.nix b/pkgs/development/libraries/libpsl/default.nix index a1beee602d7..1dc4c57e979 100644 --- a/pkgs/development/libraries/libpsl/default.nix +++ b/pkgs/development/libraries/libpsl/default.nix @@ -3,8 +3,6 @@ let - version = "${libVersion}-list-${listVersion}"; - listVersion = "2016-01-15"; listSources = fetchFromGitHub { sha256 = "1smn4fl0fhldy7gdn0k1diyghbxdxnr4cj921bjdl2i4wxas41g5"; @@ -15,8 +13,9 @@ let libVersion = "0.12.0"; -in stdenv.mkDerivation { +in stdenv.mkDerivation rec { name = "libpsl-${version}"; + version = "${libVersion}-list-${listVersion}"; src = fetchFromGitHub { sha256 = "13w3lc752az2swymg408f3w2lbqs0f2h5ri6d5jw1vv9z0ij9xlw"; @@ -54,7 +53,6 @@ in stdenv.mkDerivation { doCheck = true; meta = with stdenv.lib; { - inherit version; description = "C library for the Publix Suffix List"; longDescription = '' libpsl is a C library for the Publix Suffix List (PSL). A "public suffix" diff --git a/pkgs/development/tools/build-managers/icmake/default.nix b/pkgs/development/tools/build-managers/icmake/default.nix index 08e6a3b6559..b3788d7f324 100644 --- a/pkgs/development/tools/build-managers/icmake/default.nix +++ b/pkgs/development/tools/build-managers/icmake/default.nix @@ -30,7 +30,6 @@ stdenv.mkDerivation rec { ''; meta = with stdenv.lib; { - inherit version; description = "A program maintenance (make) utility using a C-like grammar"; homepage = https://fbb-git.github.io/icmake/; license = licenses.gpl3; diff --git a/pkgs/development/tools/misc/ccache/default.nix b/pkgs/development/tools/misc/ccache/default.nix index 29fe621d676..4a278e052fa 100644 --- a/pkgs/development/tools/misc/ccache/default.nix +++ b/pkgs/development/tools/misc/ccache/default.nix @@ -1,15 +1,11 @@ { stdenv, fetchurl, fetchpatch, runCommand, gcc, zlib }: -let +let ccache = stdenv.mkDerivation rec { name = "ccache-${version}"; version = "3.2.4"; - sha256 = "0pga3hvd80f2p7mz88jmmbwzxh4vn5ihyjx5f6na8y2fclzsjg8w"; - ccache = -stdenv.mkDerivation { - inherit name; src = fetchurl { - inherit sha256; + sha256 = "0pga3hvd80f2p7mz88jmmbwzxh4vn5ihyjx5f6na8y2fclzsjg8w"; url = "mirror://samba/ccache/${name}.tar.xz"; }; @@ -65,7 +61,6 @@ stdenv.mkDerivation { }; meta = with stdenv.lib; { - inherit version; description = "Compiler cache for fast recompilation of C/C++ code"; homepage = http://ccache.samba.org/; downloadPage = https://ccache.samba.org/download.html; @@ -73,5 +68,4 @@ stdenv.mkDerivation { maintainers = with maintainers; [ nckx ]; }; }; -in -ccache +in ccache diff --git a/pkgs/development/tools/parsing/lemon/default.nix b/pkgs/development/tools/parsing/lemon/default.nix index 23d4ea911db..46aaa830512 100644 --- a/pkgs/development/tools/parsing/lemon/default.nix +++ b/pkgs/development/tools/parsing/lemon/default.nix @@ -2,8 +2,6 @@ let - version = "1.0"; - srcs = { lemon = fetchurl { sha256 = "1grm95m2cnc61zim332g7z8nchmcy91ljf50k13lm421v0ygyyv6"; @@ -17,8 +15,9 @@ let }; }; -in stdenv.mkDerivation { +in stdenv.mkDerivation rec { name = "lemon-${version}"; + version = "1.0"; phases = [ "buildPhase" "installPhase" ]; @@ -32,7 +31,6 @@ in stdenv.mkDerivation { ''; meta = with stdenv.lib; { - inherit version; description = "An LALR(1) parser generator"; longDescription = '' The Lemon program is an LALR(1) parser generator that takes a diff --git a/pkgs/games/eduke32/default.nix b/pkgs/games/eduke32/default.nix index 048688fe033..beb2bb57908 100644 --- a/pkgs/games/eduke32/default.nix +++ b/pkgs/games/eduke32/default.nix @@ -4,9 +4,9 @@ let date = "20150420"; rev = "5160"; - version = "${date}-${rev}"; in stdenv.mkDerivation rec { name = "eduke32-${version}"; + version = "${date}-${rev}"; src = fetchurl { url = "http://dukeworld.duke4.net/eduke32/synthesis/${version}/eduke32_src_${version}.tar.xz"; @@ -66,7 +66,6 @@ in stdenv.mkDerivation rec { ''; meta = with stdenv.lib; { - inherit version; description = "Enhanched port of Duke Nukem 3D for various platforms"; license = licenses.gpl2Plus; homepage = http://eduke32.com; diff --git a/pkgs/misc/drivers/hplip/3.15.9.nix b/pkgs/misc/drivers/hplip/3.15.9.nix index 722615be46e..9cd5a789464 100644 --- a/pkgs/misc/drivers/hplip/3.15.9.nix +++ b/pkgs/misc/drivers/hplip/3.15.9.nix @@ -8,9 +8,8 @@ let - version = "3.15.9"; - name = "hplip-${version}"; + version = "3.15.9"; src = fetchurl { url = "mirror://sourceforge/hplip/${name}.tar.gz"; @@ -48,7 +47,7 @@ assert withPlugin -> builtins.elem hplipArch pluginArches || throw "HPLIP plugin not supported on ${stdenv.system}"; stdenv.mkDerivation { - inherit name src; + inherit name src version; buildInputs = [ libjpeg @@ -179,7 +178,6 @@ stdenv.mkDerivation { ''; meta = with stdenv.lib; { - inherit version; description = "Print, scan and fax HP drivers for Linux"; homepage = http://hplipopensource.com/; license = if withPlugin diff --git a/pkgs/misc/drivers/hplip/default.nix b/pkgs/misc/drivers/hplip/default.nix index 071ffe8c100..ebe8a4d19ab 100644 --- a/pkgs/misc/drivers/hplip/default.nix +++ b/pkgs/misc/drivers/hplip/default.nix @@ -8,9 +8,8 @@ let - version = "3.15.11"; - name = "hplip-${version}"; + version = "3.15.11"; src = fetchurl { url = "mirror://sourceforge/hplip/${name}.tar.gz"; @@ -179,7 +178,6 @@ stdenv.mkDerivation { ''; meta = with stdenv.lib; { - inherit version; description = "Print, scan and fax HP drivers for Linux"; homepage = http://hplipopensource.com/; license = if withPlugin diff --git a/pkgs/os-specific/linux/jfbview/default.nix b/pkgs/os-specific/linux/jfbview/default.nix index 467fed744ed..73ce1e7780a 100644 --- a/pkgs/os-specific/linux/jfbview/default.nix +++ b/pkgs/os-specific/linux/jfbview/default.nix @@ -2,11 +2,11 @@ , mujs, mupdf, ncurses, openjpeg, openssl }: let - version = "0.5.1"; binaries = [ "jfbpdf" "jfbview" "jpdfcat" "jpdfgrep" ]; in -stdenv.mkDerivation { +stdenv.mkDerivation rec { name = "jfbview-${version}"; + version = "0.5.1"; src = fetchFromGitHub { sha256 = "113bkf49q04k9rjps5l28ychmzsfjajp9cjhr433s9ld0972z01m"; @@ -27,7 +27,6 @@ stdenv.mkDerivation { ''; meta = with stdenv.lib; { - inherit version; description = "PDF and image viewer for the Linux framebuffer"; longDescription = '' A very fast PDF and image viewer for the Linux framebuffer with some diff --git a/pkgs/os-specific/linux/phc-intel/default.nix b/pkgs/os-specific/linux/phc-intel/default.nix index 4eed41254f9..2b86238b2df 100644 --- a/pkgs/os-specific/linux/phc-intel/default.nix +++ b/pkgs/os-specific/linux/phc-intel/default.nix @@ -1,7 +1,7 @@ { stdenv, fetchurl, kernel, which }: assert stdenv.isLinux; -# Don't bother with older versions, though some would probably work: +# Don't bother with older versions, though some might even work: assert stdenv.lib.versionAtLeast kernel.version "4.3"; # Disable on grsecurity kernels, which break module building: assert !kernel.features ? grsecurity; @@ -9,9 +9,9 @@ assert !kernel.features ? grsecurity; let release = "0.4.0"; revbump = "rev19"; # don't forget to change forum download id... - version = "${release}-${revbump}"; -in stdenv.mkDerivation { +in stdenv.mkDerivation rec { name = "linux-phc-intel-${version}-${kernel.version}"; + version = "${release}-${revbump}"; src = fetchurl { sha256 = "1apvjp2rpaf3acjvsxgk6xiwrx4n9p565gxvra05pvicwikfiqa8"; @@ -38,7 +38,6 @@ in stdenv.mkDerivation { ''; meta = with stdenv.lib; { - inherit version; description = "Undervolting kernel driver for Intel processors"; longDescription = '' PHC is a Linux kernel patch to undervolt processors. This can divide the diff --git a/pkgs/servers/p910nd/default.nix b/pkgs/servers/p910nd/default.nix index 150bf196b0d..0f7cc19339d 100644 --- a/pkgs/servers/p910nd/default.nix +++ b/pkgs/servers/p910nd/default.nix @@ -1,10 +1,8 @@ { stdenv, fetchurl }: -let - version = "0.97"; +stdenv.mkDerivation rec { name = "p910nd-${version}"; -in stdenv.mkDerivation { - inherit name; + version = "0.97"; src = fetchurl { sha256 = "0vy2qf386dif1nqznmy3j953mq7c4lk6j2hgyzkbmfi4msiq1jaa"; @@ -27,7 +25,6 @@ in stdenv.mkDerivation { ''; meta = with stdenv.lib; { - inherit version; description = "Small printer daemon passing jobs directly to the printer"; longDescription = '' p910nd is a small printer daemon intended for diskless platforms that diff --git a/pkgs/tools/compression/xdelta/default.nix b/pkgs/tools/compression/xdelta/default.nix index 396099df41c..8bc5e464ee7 100644 --- a/pkgs/tools/compression/xdelta/default.nix +++ b/pkgs/tools/compression/xdelta/default.nix @@ -5,12 +5,12 @@ assert lzmaSupport -> xz != null; let - version = "3.0.11"; mkWith = flag: name: if flag then "--with-${name}" else "--without-${name}"; -in stdenv.mkDerivation { +in stdenv.mkDerivation rec { name = "xdelta-${version}"; + version = "3.0.11"; src = fetchFromGitHub { sha256 = "1c7xym7xr26phyf4wb9hh2w88ybzbzh2w3h1kyqq3da0ndidmf2r"; @@ -48,7 +48,6 @@ in stdenv.mkDerivation { ''; meta = with stdenv.lib; { - inherit version; description = "Binary differential compression in VCDIFF (RFC 3284) format"; longDescription = '' xdelta is a command line program for delta encoding, which generates two diff --git a/pkgs/tools/compression/xdelta/unstable.nix b/pkgs/tools/compression/xdelta/unstable.nix index a19fb4de68a..dd7277c4e8f 100644 --- a/pkgs/tools/compression/xdelta/unstable.nix +++ b/pkgs/tools/compression/xdelta/unstable.nix @@ -5,12 +5,12 @@ assert lzmaSupport -> xz != null; let - version = "3.1.0"; mkWith = flag: name: if flag then "--with-${name}" else "--without-${name}"; -in stdenv.mkDerivation { +in stdenv.mkDerivation rec { name = "xdelta-${version}"; + version = "3.1.0"; src = fetchFromGitHub { sha256 = "09mmsalc7dwlvgrda56s2k927rpl3a5dzfa88aslkqcjnr790wjy"; @@ -52,7 +52,6 @@ in stdenv.mkDerivation { ''; meta = with stdenv.lib; { - inherit version; description = "Binary differential compression in VCDIFF (RFC 3284) format"; longDescription = '' xdelta is a command line program for delta encoding, which generates two diff --git a/pkgs/tools/filesystems/boxfs/default.nix b/pkgs/tools/filesystems/boxfs/default.nix index 3c8c1b6e180..99a118160b7 100644 --- a/pkgs/tools/filesystems/boxfs/default.nix +++ b/pkgs/tools/filesystems/boxfs/default.nix @@ -1,7 +1,6 @@ { stdenv, fetchFromGitHub, curl, fuse, libxml2, pkgconfig }: let - version = "2-20150109"; srcs = { boxfs2 = fetchFromGitHub { sha256 = "10af1l3sjnh25shmq5gdnpyqk4vrq7i1zklv4csf1n2nrahln8j8"; @@ -22,8 +21,9 @@ let owner = "vincenthz"; }; }; -in stdenv.mkDerivation { +in stdenv.mkDerivation rec { name = "boxfs-${version}"; + version = "2-20150109"; src = srcs.boxfs2; @@ -45,7 +45,6 @@ in stdenv.mkDerivation { ''; meta = with stdenv.lib; { - inherit version; description = "FUSE file system for box.com accounts"; longDescription = '' Store files on box.com (an account is required). The first time you run diff --git a/pkgs/tools/networking/httping/default.nix b/pkgs/tools/networking/httping/default.nix index 9b1de33cf6d..00f7bde429f 100644 --- a/pkgs/tools/networking/httping/default.nix +++ b/pkgs/tools/networking/httping/default.nix @@ -3,7 +3,6 @@ stdenv.mkDerivation rec { name = "httping-${version}"; - version = "2.4"; src = fetchurl { @@ -20,7 +19,6 @@ stdenv.mkDerivation rec { ]; meta = with stdenv.lib; { - inherit version; homepage = http://www.vanheusden.com/httping; description = "ping with HTTP requests"; longDescription = '' diff --git a/pkgs/tools/networking/minissdpd/default.nix b/pkgs/tools/networking/minissdpd/default.nix index 92b6d9ff9b5..a414b6f092e 100644 --- a/pkgs/tools/networking/minissdpd/default.nix +++ b/pkgs/tools/networking/minissdpd/default.nix @@ -1,10 +1,8 @@ { stdenv, fetchurl, libnfnetlink }: -let - version = "1.5.20160119"; +stdenv.mkDerivation rec { name = "minissdpd-${version}"; -in stdenv.mkDerivation { - inherit name; + version = "1.5.20160119"; src = fetchurl { sha256 = "0z0h2fqjlys9g08fbv0jg8l53h8cjlpdk45z4g71kwdk1m9ld8r2"; @@ -21,7 +19,6 @@ in stdenv.mkDerivation { doCheck = true; meta = with stdenv.lib; { - inherit version; description = "Small daemon to speed up UPnP device discoveries"; longDescription = '' MiniSSDPd receives NOTIFY packets and stores (caches) that information diff --git a/pkgs/tools/security/sshuttle/default.nix b/pkgs/tools/security/sshuttle/default.nix index 62d3d2613cc..b7cefdd86ea 100644 --- a/pkgs/tools/security/sshuttle/default.nix +++ b/pkgs/tools/security/sshuttle/default.nix @@ -2,8 +2,8 @@ , coreutils, iptables, nettools, openssh, procps }: pythonPackages.buildPythonPackage rec { - version = "0.76"; name = "sshuttle-${version}"; + version = "0.76"; src = fetchurl { sha256 = "1q0hr0vhdvv23cw5dqndsmf61283mvs6b14662ci00xj6zp5v48b"; @@ -26,7 +26,6 @@ pythonPackages.buildPythonPackage rec { ''; meta = with stdenv.lib; { - inherit version; homepage = https://github.com/sshuttle/sshuttle/; description = "Transparent proxy server that works as a poor man's VPN"; longDescription = '' diff --git a/pkgs/tools/system/stress-ng/default.nix b/pkgs/tools/system/stress-ng/default.nix index 12c25078839..a973d143fa9 100644 --- a/pkgs/tools/system/stress-ng/default.nix +++ b/pkgs/tools/system/stress-ng/default.nix @@ -1,10 +1,8 @@ { stdenv, fetchurl, attr, keyutils }: -let - version = "0.05.00"; +stdenv.mkDerivation rec { name = "stress-ng-${version}"; -in stdenv.mkDerivation { - inherit name; + version = "0.05.00"; src = fetchurl { sha256 = "0ppri86z6fj48nm5l0x1r8mh7mwaf7bvhmi10jz6a8w7apnc181w"; @@ -22,7 +20,6 @@ in stdenv.mkDerivation { installFlags = [ "DESTDIR=$(out)" ]; meta = with stdenv.lib; { - inherit version; description = "Stress test a computer system"; longDescription = '' Stress test a system in various selectable ways, exercising both various From 5009b4a8cf7fd3e5468d2bd634c04103c49fe703 Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Mon, 25 Jan 2016 12:33:01 -0800 Subject: [PATCH 171/268] coq_8_5: 8.5rc1 -> 8.5 --- pkgs/applications/science/logic/coq/8.5.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/science/logic/coq/8.5.nix b/pkgs/applications/science/logic/coq/8.5.nix index df888cf5c79..104fb02fc45 100644 --- a/pkgs/applications/science/logic/coq/8.5.nix +++ b/pkgs/applications/science/logic/coq/8.5.nix @@ -6,7 +6,7 @@ {stdenv, fetchurl, writeText, pkgconfig, ocaml, findlib, camlp5, ncurses, lablgtk ? null, csdp ? null}: let - version = "8.5rc1"; + version = "8.5"; coq-version = "8.5"; buildIde = lablgtk != null; ideFlags = if buildIde then "-lablgtkdir ${lablgtk}/lib/ocaml/*/site-lib/lablgtk2 -coqide opt" else ""; @@ -23,8 +23,8 @@ stdenv.mkDerivation { inherit ocaml camlp5; src = fetchurl { - url = https://coq.inria.fr/distrib/V8.5rc1/files/coq-8.5rc1.tar.gz; - sha256 = "0n8mb7di9iwg8dgy1xmivf2ajx8kqkrj9mafc32vicn2lbg16q2r"; + url = https://coq.inria.fr/distrib/V8.5/files/coq-8.5.tar.gz; + sha256 = "0gdfm6k5q1f8sz1xr9ijdkkvwqsb7v8prj21gmwv0z0yp6w2zac9"; }; buildInputs = [ pkgconfig ocaml findlib camlp5 ncurses lablgtk ]; From 9e56b18cde11df9807c3cafa8e47a18ff2de3441 Mon Sep 17 00:00:00 2001 From: Jascha Geerds Date: Mon, 25 Jan 2016 23:13:12 +0100 Subject: [PATCH 172/268] morituri: Add missing platforms attribute --- pkgs/applications/audio/morituri/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/applications/audio/morituri/default.nix b/pkgs/applications/audio/morituri/default.nix index 8ceb0fe3b36..2a4ec853cbc 100644 --- a/pkgs/applications/audio/morituri/default.nix +++ b/pkgs/applications/audio/morituri/default.nix @@ -48,5 +48,6 @@ stdenv.mkDerivation rec { description = "A CD ripper aiming for accuracy over speed"; maintainers = with maintainers; [ rycee jgeerds ]; license = licenses.gpl3Plus; + platforms = platforms.linux; }; } From 92cda7a6bb17948523feefece3c20e35bb213daa Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Tue, 12 Jan 2016 20:56:59 +0300 Subject: [PATCH 173/268] dwarf-fortress: 0.40.24 -> 0.42.05, split derivations This is a massive rework of the current dwarf_fortress package. The main reason for rework is to split game, its libraries and wrappers, enabling builds on Hydra and general maintainability. dfhack, dwarf-fortress-unfuck, dwarf-fortress-original and dwarf-fortress are now all separate derivations. All were updated to the latest versions supporting DF 0.42.04 (some things taken from development branches): dfhack: 20150927 -> 20160118 dwarf-fortress-unfuck: 0.40.24 -> 20160118 dwarf-fortress-original: 0.40.24 -> 0.42.05 dfhack got a patch for using more system libraries. Wrapper scripts were also redone -- now they support DF_DIR variable (for setting another data directory) and try to save more space by means of symlinking. They now try to be more smart, updating those directories that were not touched by user automatically. All the new packages now reside in dwarf-fortress-packages. dwarf_fortress was renamed into dwarf-fortress per our conventions, old name is deprecated. Also duplicate dfhack derivation is removed. Also drop dwarfFortress.enableDFHack config option; it can be re-added later but now is deemed controversial. --- pkgs/games/dfhack/default.nix | 62 ----- pkgs/games/dwarf-fortress/default.nix | 222 +----------------- pkgs/games/dwarf-fortress/dfhack-run.in | 11 - pkgs/games/dwarf-fortress/dfhack/default.nix | 49 ++++ .../dfhack/use-system-libraries.patch | 138 +++++++++++ .../dwarf-fortress/dwarf-fortress-hacked.in | 13 - pkgs/games/dwarf-fortress/dwarf-fortress.in | 14 -- pkgs/games/dwarf-fortress/export-libs.sh.in | 12 - .../games/dwarf-fortress/export-workaround.sh | 1 - pkgs/games/dwarf-fortress/game.nix | 52 ++++ .../install-df-data-content-to-home.sh | 4 - .../dwarf-fortress/install-df-data-to-home.sh | 12 - .../install-dfhack-data-to-home.sh | 16 -- pkgs/games/dwarf-fortress/unfuck.nix | 41 ++++ pkgs/games/dwarf-fortress/wrapper/default.nix | 47 ++++ pkgs/games/dwarf-fortress/wrapper/dfhack.in | 17 ++ .../wrapper/dwarf-fortress-init.in | 43 ++++ .../dwarf-fortress/wrapper/dwarf-fortress.in | 6 + pkgs/top-level/all-packages.nix | 15 +- 19 files changed, 409 insertions(+), 366 deletions(-) delete mode 100644 pkgs/games/dfhack/default.nix delete mode 100644 pkgs/games/dwarf-fortress/dfhack-run.in create mode 100644 pkgs/games/dwarf-fortress/dfhack/default.nix create mode 100644 pkgs/games/dwarf-fortress/dfhack/use-system-libraries.patch delete mode 100644 pkgs/games/dwarf-fortress/dwarf-fortress-hacked.in delete mode 100644 pkgs/games/dwarf-fortress/dwarf-fortress.in delete mode 100644 pkgs/games/dwarf-fortress/export-libs.sh.in delete mode 100644 pkgs/games/dwarf-fortress/export-workaround.sh create mode 100644 pkgs/games/dwarf-fortress/game.nix delete mode 100644 pkgs/games/dwarf-fortress/install-df-data-content-to-home.sh delete mode 100644 pkgs/games/dwarf-fortress/install-df-data-to-home.sh delete mode 100644 pkgs/games/dwarf-fortress/install-dfhack-data-to-home.sh create mode 100644 pkgs/games/dwarf-fortress/unfuck.nix create mode 100644 pkgs/games/dwarf-fortress/wrapper/default.nix create mode 100644 pkgs/games/dwarf-fortress/wrapper/dfhack.in create mode 100644 pkgs/games/dwarf-fortress/wrapper/dwarf-fortress-init.in create mode 100644 pkgs/games/dwarf-fortress/wrapper/dwarf-fortress.in diff --git a/pkgs/games/dfhack/default.nix b/pkgs/games/dfhack/default.nix deleted file mode 100644 index 046f11545a5..00000000000 --- a/pkgs/games/dfhack/default.nix +++ /dev/null @@ -1,62 +0,0 @@ -{ stdenv, fetchgit, dwarf_fortress, cmake, zlib, perl, XMLLibXML, XMLLibXSLT -}: - -let - baseVersion = "40"; - patchVersion = "24-r3"; - src = fetchgit { - url = "https://github.com/DFHack/dfhack.git"; - rev = "0849099f2083e100cae6f64940b4eff4c28ce2eb"; - sha256 = "0lnqrayi8hwfivkrxb7fw8lb6v95i04pskny1px7084n7nzvyv8b"; - }; - -in - -assert stdenv.system == "i686-linux"; -assert dwarf_fortress.name == "dwarf-fortress-0.40.24"; - -stdenv.mkDerivation rec { - name = "dfhack-0.${baseVersion}.${patchVersion}"; - - inherit baseVersion patchVersion src; - - buildInputs = [ cmake zlib perl XMLLibXML XMLLibXSLT ]; - - preConfigure = '' - export cmakeFlags="-DCMAKE_INSTALL_PREFIX=$prefix/dfhack $cmakeFlags" - export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:`pwd`/build/depends/protobuf - ''; - - installPhase = '' - mkdir -p $out/dfhack - make install - cp ../package/linux/dfhack $out/dfhack/ - mkdir -p $out/bin - cat > $out/bin/dfhack_install_dir < dfhack - # write md5sum of binary - sed -e s/c42f55948a448645d6609102ef6439e8/`md5sum ${dwarf_fortress}/share/df_linux/libs/Dwarf_Fortress | cut -f1 -d\ `/ $out/dfhack/hack/symbols.xml > hack/symbols.xml - - echo "DFHack installed successfully in \$1. To play, run ./dfhack in it." - - EOF - chmod +x $out/bin/dfhack_install_dir - ''; - - meta = { - description = "A Dwarf Fortress memory access library"; - homepage = https://github.com/DFHack/dfhack; - license = stdenv.lib.licenses.bsd2; - maintainers = with stdenv.lib.maintainers; [ robbinch ]; - }; -} diff --git a/pkgs/games/dwarf-fortress/default.nix b/pkgs/games/dwarf-fortress/default.nix index ad2733df079..d73f932ac03 100644 --- a/pkgs/games/dwarf-fortress/default.nix +++ b/pkgs/games/dwarf-fortress/default.nix @@ -1,217 +1,19 @@ -{ stdenv, fetchgit, fetchurl, cmake, glew, ncurses -, SDL, SDL_image, SDL_ttf, gtk2, glib -, mesa, openal, pango, atk, gdk_pixbuf, glibc, libsndfile -# begin dfhack-only parameters -, XMLLibXML -, XMLLibXSLT -, perl -, zlib -# end dfhack-only parameters -, enableDFHack ? false -}: +{ pkgs, pkgsi686Linux }: let - baseVersion = "40"; - patchVersion = "24"; - srcs = { - df_unfuck = fetchgit { - url = "https://github.com/svenstaro/dwarf_fortress_unfuck"; - rev = "39742d64d2886fb594d79e7cc4b98fb917f26811"; - sha256 = "19vwx6kpv1sf93bx5v8x47f7x2cgxsqk82v6j1a72sa3q7m5cpc7"; + callPackage = pkgs.newScope self; + callPackage_i686 = pkgsi686Linux.newScope self; + + self = { + dwarf-fortress-original = callPackage_i686 ./game.nix { }; + + dfhack = callPackage_i686 ./dfhack { + inherit (pkgsi686Linux.perlPackages) XMLLibXML XMLLibXSLT; }; - dfhack = fetchgit { - url = "https://github.com/DFHack/dfhack.git"; - rev = "0849099f2083e100cae6f64940b4eff4c28ce2eb"; - sha256 = "0lnqrayi8hwfivkrxb7fw8lb6v95i04pskny1px7084n7nzvyv8b"; - }; + dwarf-fortress-unfuck = callPackage_i686 ./unfuck.nix { }; - df = fetchurl { - url = "http://www.bay12games.com/dwarves/df_${baseVersion}_${patchVersion}_linux.tar.bz2"; - sha256 = "0d4jrs45qj89vq9mjg7fxxhis7zivvb0vzjpmkk274b778kccdys"; - }; + dwarf-fortress = callPackage ./wrapper { }; }; - dfHackWorksWithCurrentVersion = true; - dfHackEnabled = dfHackWorksWithCurrentVersion && enableDFHack; - -in - -assert stdenv.system == "i686-linux"; - -stdenv.mkDerivation rec { - name = "dwarf-fortress-0.${baseVersion}.${patchVersion}"; - - inherit baseVersion patchVersion; - - buildInputs = [ - SDL - SDL_image - SDL_ttf - gtk2 - glib - glew - mesa - ncurses - openal - glibc - libsndfile - pango - atk - cmake - gdk_pixbuf - XMLLibXML - XMLLibXSLT - perl - zlib - ]; - src = "${srcs.df_unfuck} ${srcs.df}" + stdenv.lib.optionalString dfHackEnabled " ${srcs.dfhack}"; - - sourceRoot = srcs.df_unfuck.name; - dfHackSourceRoot = srcs.dfhack.name; - - cmakeFlags = [ - "-DGTK2_GLIBCONFIG_INCLUDE_DIR=${glib}/lib/glib-2.0/include" - "-DGTK2_GDKCONFIG_INCLUDE_DIR=${gtk2}/lib/gtk-2.0/include" - ]; - - permission = ./df_permission; - dfHackTemplate = ./dwarf-fortress-hacked.in; - dfHackRunTemplate = ./dfhack-run.in; - dwarfFortressTemplate = ./dwarf-fortress.in; - installDfDataToHome = ./install-df-data-to-home.sh; - installDfhackDataToHome = ./install-dfhack-data-to-home.sh; - installDfDataContentToHome = ./install-df-data-content-to-home.sh; - exportLibsTemplate = ./export-libs.sh.in; - exportWorkaround = ./export-workaround.sh; - - postUnpack = stdenv.lib.optionalString dfHackEnabled '' - if [ "$dontMakeSourcesWritable" != 1 ]; then - chmod -R u+w "$dfHackSourceRoot" - fi - ''; - - preConfigure = stdenv.lib.optionalString dfHackEnabled '' - export cmakeFlags="-DCMAKE_INSTALL_PREFIX=$out/share/df_linux $cmakeFlags" - export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$(pwd)/build/depends/protobuf - ''; - - postConfigure = stdenv.lib.optionalString dfHackEnabled '' - if [ -z "$originalSourceRoot" ]; then - - originalSourceRoot=$sourceRoot - export sourceRoot=$dfHackSourceRoot - - pushd ../../$sourceRoot - - eval "''${configurePhase:-configurePhase}" - - popd - - export sourceRoot=$originalSourceRoot - unset originalSourceRoot - fi - ''; - - installPhase = '' - set -x - mkdir -p $out/bin - mkdir -p $out/share/df_linux - pushd ../../ - cp -r ./df_linux/* $out/share/df_linux - rm $out/share/df_linux/libs/lib* - - # Store the original hash - orig_hash=$(md5sum $out/share/df_linux/libs/Dwarf_Fortress | awk '{ print $1 }') - echo $orig_hash | cut -c1-8 > $out/share/df_linux/hash.md5.orig # for dwarf-therapist - echo $orig_hash > $out/share/df_linux/full-hash-orig.md5 # for dfhack - - cp -f ./${srcs.df_unfuck.name}/build/libgraphics.so $out/share/df_linux/libs/libgraphics.so - - cp $permission $out/share/df_linux/nix_permission - - # Placeholder files for hashes of patched binary - touch $out/share/df_linux/hash.md5.patched - touch $out/share/df_linux/full-hash-patched.md5 - - mkdir -p $out/share/df_linux/shell - cp $installDfDataToHome $out/share/df_linux/shell/install-df-data-to-home.sh - cp $installDfhackDataToHome $out/share/df_linux/shell/install-dfhack-data-to-home.sh - cp $installDfDataContentToHome $out/share/df_linux/shell/install-df-data-content-to-home.sh - cp $exportWorkaround $out/share/df_linux/shell/export-workaround.sh - substitute $exportLibsTemplate $out/share/df_linux/shell/export-libs.sh \ - --subst-var-by stdenv_cc ${stdenv.cc} \ - --subst-var-by SDL ${SDL} \ - --subst-var-by SDL_image ${SDL_image} \ - --subst-var-by SDL_ttf ${SDL_ttf} \ - --subst-var-by gtk2 ${gtk2} \ - --subst-var-by glib ${glib} \ - --subst-var-by libsndfile ${libsndfile} \ - --subst-var-by mesa ${mesa} \ - --subst-var-by openal ${openal} \ - --subst-var-by zlib ${zlib} \ - - substitute $dwarfFortressTemplate $out/bin/dwarf-fortress \ - --subst-var-by stdenv_shell ${stdenv.shell} \ - --subst-var prefix - - chmod 755 $out/bin/dwarf-fortress - - popd - '' + stdenv.lib.optionalString dfHackEnabled '' - - originalSourceRoot=$sourceRoot - export sourceRoot=$dfHackSourceRoot - - pushd ../../$sourceRoot/build - - mkdir -p $out/dfhack - - make install - - cp ../package/linux/dfhack $out/dfhack/ - - mkdir -p $out/bin - - substitute $dfHackTemplate $out/bin/dfhack \ - --subst-var-by stdenv_shell ${stdenv.shell} \ - --subst-var prefix - chmod 755 $out/bin/dfhack - - substitute $dfHackRunTemplate $out/bin/dfhack-run \ - --subst-var-by stdenv_shell ${stdenv.shell} \ - --subst-var prefix - chmod 755 $out/bin/dfhack-run - - popd - - export sourceRoot=$originalSourceRoot - unset originalSourceRoot - ''; - - fixupPhase = '' - # Fix rpath - patchelf --set-rpath "${stdenv.lib.makeLibraryPath [ stdenv.cc.cc stdenv.glibc ]}:$out/share/df_linux/libs" $out/share/df_linux/libs/Dwarf_Fortress - - patchelf --set-interpreter ${glibc}/lib/ld-linux.so.2 $out/share/df_linux/libs/Dwarf_Fortress - - # Store new hash - patched_hash=$(md5sum $out/share/df_linux/libs/Dwarf_Fortress | awk '{ print $1 }') - echo $patched_hash | cut -c1-8 > $out/share/df_linux/hash.md5.patched # for dwarf-therapist - echo $patched_hash > $out/share/df_linux/full-hash-patched.md5 # for dfhack - '' + stdenv.lib.optionalString dfHackEnabled '' - find $out/share/df_linux/hack \( \ - \( -type f -a -name "*.so*" \) -o \ - \( -type f -a -perm +0100 \) \ - \) -print -exec patchelf --shrink-rpath {} \; - - sed -i "s/$(cat $out/share/df_linux/full-hash-orig.md5)/$(cat $out/share/df_linux/full-hash-patched.md5)/" $out/share/df_linux/hack/symbols.xml - ''; - - meta = { - description = "A single-player fantasy game with a randomly generated adventure world"; - homepage = http://www.bay12games.com/dwarves; - license = stdenv.lib.licenses.unfreeRedistributable; - maintainers = with stdenv.lib.maintainers; [ a1russell robbinch roconnor the-kenny ]; - }; -} +in self diff --git a/pkgs/games/dwarf-fortress/dfhack-run.in b/pkgs/games/dwarf-fortress/dfhack-run.in deleted file mode 100644 index 590e5b25acf..00000000000 --- a/pkgs/games/dwarf-fortress/dfhack-run.in +++ /dev/null @@ -1,11 +0,0 @@ -#!@stdenv_shell@ - -data_dir=${XDG_DATA_HOME:-$HOME/.local/share}/df_linux -pkg_dir=@prefix@/share/df_linux - -. $pkg_dir/shell/install-df-data-to-home.sh -. $pkg_dir/shell/install-dfhack-data-to-home.sh -. $pkg_dir/shell/export-libs.sh - -cd "$data_dir" -exec ./dfhack-run "$@" diff --git a/pkgs/games/dwarf-fortress/dfhack/default.nix b/pkgs/games/dwarf-fortress/dfhack/default.nix new file mode 100644 index 00000000000..92b9d57da42 --- /dev/null +++ b/pkgs/games/dwarf-fortress/dfhack/default.nix @@ -0,0 +1,49 @@ +{ stdenv, fetchgit, cmake, writeScriptBin +, perl, XMLLibXML, XMLLibXSLT +, zlib +, jsoncpp, protobuf, tinyxml +}: + +let + rev = "f61ff9147e00f3c379ac0458e79eb556a5de1b68"; + dfVersion = "0.42.05"; + + fakegit = writeScriptBin "git" '' + #! ${stdenv.shell} + if [ "$*" = "describe --tags --long" ]; then + echo "${dfVersion}-unknown" + elif [ "$*" = "rev-parse HEAD" ]; then + echo "${rev}" + else + exit 1 + fi + ''; + +in stdenv.mkDerivation { + name = "dfhack-20160118"; + + # Beware of submodules + src = fetchgit { + url = "https://github.com/DFHack/dfhack"; + inherit rev; + sha256 = "1ah3cplp4mb9pq7rm1cmn8klfjxw3y2xfzy7734i81b3iwiwlpi4"; + }; + + patches = [ ./use-system-libraries.patch ]; + + nativeBuildInputs = [ cmake perl XMLLibXML XMLLibXSLT fakegit ]; + # we can't use native Lua; upstream uses private headers + buildInputs = [ zlib jsoncpp protobuf tinyxml ]; + + enableParallelBuilding = true; + + passthru = { inherit dfVersion; }; + + meta = with stdenv.lib; { + description = "Memory hacking library for Dwarf Fortress and a set of tools that use it"; + homepage = https://github.com/DFHack/dfhack/; + license = licenses.zlib; + platforms = [ "i686-linux" ]; + maintainers = with maintainers; [ robbinch a1russell abbradar ]; + }; +} diff --git a/pkgs/games/dwarf-fortress/dfhack/use-system-libraries.patch b/pkgs/games/dwarf-fortress/dfhack/use-system-libraries.patch new file mode 100644 index 00000000000..2ae3620fff6 --- /dev/null +++ b/pkgs/games/dwarf-fortress/dfhack/use-system-libraries.patch @@ -0,0 +1,138 @@ +From 1196fcb987b6aadb49075d817b3615bf8a6d7d51 Mon Sep 17 00:00:00 2001 +From: Nikolay Amiantov +Date: Wed, 6 Jan 2016 03:07:20 +0300 +Subject: [PATCH 2/2] Use as much system libraries as possible + +--- + CMakeLists.txt | 5 ----- + depends/CMakeLists.txt | 3 --- + library/CMakeLists.txt | 10 +++++----- + plugins/CMakeLists.txt | 4 ++-- + plugins/mapexport/CMakeLists.txt | 4 ++-- + plugins/stockpiles/CMakeLists.txt | 4 ++-- + 6 files changed, 11 insertions(+), 19 deletions(-) + +diff --git a/CMakeLists.txt b/CMakeLists.txt +index 1933390..d871df4 100644 +--- a/CMakeLists.txt ++++ b/CMakeLists.txt +@@ -152,8 +152,6 @@ ELSEIF(MSVC) + SET(CMAKE_CXX_FLAGS_RELWITHDEBINFO "${CMAKE_CXX_FLAGS_RELWITHDEBINFO} /Od") + ENDIF() + +-# use shared libraries for protobuf +-ADD_DEFINITIONS(-DPROTOBUF_USE_DLLS) + ADD_DEFINITIONS(-DLUA_BUILD_AS_DLL) + + if(APPLE) +@@ -173,11 +171,8 @@ if(NOT UNIX) + endif() + set(ZLIB_ROOT /usr/lib/i386-linux-gnu) + find_package(ZLIB REQUIRED) +-include_directories(depends/protobuf) + include_directories(depends/lua/include) + include_directories(depends/md5) +-include_directories(depends/jsoncpp) +-include_directories(depends/tinyxml) + include_directories(depends/tthread) + include_directories(${ZLIB_INCLUDE_DIRS}) + include_directories(depends/clsocket/src) +diff --git a/depends/CMakeLists.txt b/depends/CMakeLists.txt +index bf0345b..2a1a852 100644 +--- a/depends/CMakeLists.txt ++++ b/depends/CMakeLists.txt +@@ -1,10 +1,7 @@ + #list depends here. + add_subdirectory(lua) + add_subdirectory(md5) +-add_subdirectory(protobuf) +-add_subdirectory(tinyxml) + add_subdirectory(tthread) +-add_subdirectory(jsoncpp) + # build clsocket static and only as a dependency. Setting those options here overrides its own default settings. + OPTION(CLSOCKET_SHARED "Build clsocket lib as shared." OFF) + OPTION(CLSOCKET_DEP_ONLY "Build for use inside other CMake projects as dependency." ON) +diff --git a/library/CMakeLists.txt b/library/CMakeLists.txt +index 5071d9e..d346d1e 100644 +--- a/library/CMakeLists.txt ++++ b/library/CMakeLists.txt +@@ -203,10 +203,10 @@ LIST(APPEND PROJECT_SOURCES ${PROJECT_PROTO_SRCS}) + + ADD_CUSTOM_COMMAND( + OUTPUT ${PROJECT_PROTO_SRCS} ${PROJECT_PROTO_HDRS} +- COMMAND protoc-bin -I=${CMAKE_CURRENT_SOURCE_DIR}/proto/ ++ COMMAND protoc -I=${CMAKE_CURRENT_SOURCE_DIR}/proto/ + --cpp_out=dllexport_decl=DFHACK_EXPORT:${CMAKE_CURRENT_SOURCE_DIR}/proto/ + ${PROJECT_PROTOS} +- DEPENDS protoc-bin ${PROJECT_PROTOS} ++ DEPENDS ${PROJECT_PROTOS} + ) + + # Merge headers into sources +@@ -249,12 +249,12 @@ IF(UNIX) + ENDIF() + + IF(APPLE) +- SET(PROJECT_LIBS dl dfhack-md5 dfhack-tinyxml dfhack-tinythread) ++ SET(PROJECT_LIBS dl dfhack-md5 tinyxml dfhack-tinythread) + ELSEIF(UNIX) +- SET(PROJECT_LIBS rt dl dfhack-md5 dfhack-tinyxml dfhack-tinythread) ++ SET(PROJECT_LIBS rt dl dfhack-md5 tinyxml dfhack-tinythread) + ELSE(WIN32) + #FIXME: do we really need psapi? +- SET(PROJECT_LIBS psapi dfhack-md5 dfhack-tinyxml dfhack-tinythread) ++ SET(PROJECT_LIBS psapi dfhack-md5 tinyxml dfhack-tinythread) + ENDIF() + + ADD_LIBRARY(dfhack-version STATIC DFHackVersion.cpp) +diff --git a/plugins/CMakeLists.txt b/plugins/CMakeLists.txt +index 9781401..ece508c 100644 +--- a/plugins/CMakeLists.txt ++++ b/plugins/CMakeLists.txt +@@ -69,11 +69,11 @@ STRING(REPLACE ".proto" ".pb.h" PROJECT_PROTO_HDRS "${PROJECT_PROTOS}") + + ADD_CUSTOM_COMMAND( + OUTPUT ${PROJECT_PROTO_SRCS} ${PROJECT_PROTO_HDRS} +- COMMAND protoc-bin -I=${dfhack_SOURCE_DIR}/library/proto/ ++ COMMAND protoc -I=${dfhack_SOURCE_DIR}/library/proto/ + -I=${CMAKE_CURRENT_SOURCE_DIR}/proto/ + --cpp_out=${CMAKE_CURRENT_SOURCE_DIR}/proto/ + ${PROJECT_PROTOS} +- DEPENDS protoc-bin ${PROJECT_PROTOS} ++ DEPENDS ${PROJECT_PROTOS} + ) + add_custom_target(generate_proto DEPENDS ${PROJECT_PROTO_SRCS} ${PROJECT_PROTO_HDRS}) + +diff --git a/plugins/mapexport/CMakeLists.txt b/plugins/mapexport/CMakeLists.txt +index 429507a..7e2390a 100644 +--- a/plugins/mapexport/CMakeLists.txt ++++ b/plugins/mapexport/CMakeLists.txt +@@ -32,8 +32,8 @@ LIST(APPEND PROJECT_SRCS ${PROJECT_HDRS}) + #Generate sources from our proto files and store them in the source tree + ADD_CUSTOM_COMMAND( + OUTPUT ${PROJECT_PROTO_SRCS} ${PROJECT_PROTO_HDRS} +-COMMAND protoc-bin -I=${CMAKE_CURRENT_SOURCE_DIR}/proto/ --cpp_out=${CMAKE_CURRENT_SOURCE_DIR}/proto/ ${PROJECT_PROTOS} +-DEPENDS protoc-bin ${PROJECT_PROTOS} ++COMMAND protoc -I=${CMAKE_CURRENT_SOURCE_DIR}/proto/ --cpp_out=${CMAKE_CURRENT_SOURCE_DIR}/proto/ ${PROJECT_PROTOS} ++DEPENDS ${PROJECT_PROTOS} + ) + + IF(WIN32) +diff --git a/plugins/stockpiles/CMakeLists.txt b/plugins/stockpiles/CMakeLists.txt +index 713c3d6..dd2d4cb 100644 +--- a/plugins/stockpiles/CMakeLists.txt ++++ b/plugins/stockpiles/CMakeLists.txt +@@ -33,8 +33,8 @@ LIST(APPEND PROJECT_SRCS ${PROJECT_HDRS}) + #Generate sources from our proto files and store them in the source tree + ADD_CUSTOM_COMMAND( + OUTPUT ${PROJECT_PROTO_SRCS} ${PROJECT_PROTO_HDRS} +-COMMAND protoc-bin -I=${CMAKE_CURRENT_SOURCE_DIR}/proto/ --cpp_out=${CMAKE_CURRENT_SOURCE_DIR}/proto/ ${PROJECT_PROTOS} +-DEPENDS protoc-bin ${PROJECT_PROTOS} ++COMMAND protoc -I=${CMAKE_CURRENT_SOURCE_DIR}/proto/ --cpp_out=${CMAKE_CURRENT_SOURCE_DIR}/proto/ ${PROJECT_PROTOS} ++DEPENDS ${PROJECT_PROTOS} + ) + + IF(WIN32) +-- +2.6.3 + diff --git a/pkgs/games/dwarf-fortress/dwarf-fortress-hacked.in b/pkgs/games/dwarf-fortress/dwarf-fortress-hacked.in deleted file mode 100644 index 027720fc378..00000000000 --- a/pkgs/games/dwarf-fortress/dwarf-fortress-hacked.in +++ /dev/null @@ -1,13 +0,0 @@ -#!@stdenv_shell@ - -data_dir=${XDG_DATA_HOME:-$HOME/.local/share}/df_linux -pkg_dir=@prefix@/share/df_linux - -. $pkg_dir/shell/install-df-data-to-home.sh -. $pkg_dir/shell/install-dfhack-data-to-home.sh -. $pkg_dir/shell/install-df-data-content-to-home.sh -. $pkg_dir/shell/export-libs.sh -. $pkg_dir/shell/export-workaround.sh - -cd "$data_dir" -exec ./dfhack "$@" diff --git a/pkgs/games/dwarf-fortress/dwarf-fortress.in b/pkgs/games/dwarf-fortress/dwarf-fortress.in deleted file mode 100644 index db06d34efd0..00000000000 --- a/pkgs/games/dwarf-fortress/dwarf-fortress.in +++ /dev/null @@ -1,14 +0,0 @@ -#!@stdenv_shell@ - -set -ex - -data_dir=${XDG_DATA_HOME:-$HOME/.local/share}/df_linux -pkg_dir=@prefix@/share/df_linux - -. $pkg_dir/shell/install-df-data-to-home.sh -. $pkg_dir/shell/install-df-data-content-to-home.sh -. $pkg_dir/shell/export-libs.sh -. $pkg_dir/shell/export-workaround.sh - -cd $data_dir -$pkg_dir/libs/Dwarf_Fortress "$@" diff --git a/pkgs/games/dwarf-fortress/export-libs.sh.in b/pkgs/games/dwarf-fortress/export-libs.sh.in deleted file mode 100644 index 453295ca6dd..00000000000 --- a/pkgs/games/dwarf-fortress/export-libs.sh.in +++ /dev/null @@ -1,12 +0,0 @@ -export LD_LIBRARY_PATH=\ -@stdenv_cc@/lib:\ -@SDL@/lib:\ -@SDL_image@/lib/:\ -@SDL_ttf@/lib/:\ -@gtk2@/lib/:\ -@glib@/lib/:\ -@mesa@/lib/:\ -@openal@/lib/:\ -@libsndfile@/lib:\ -@zlib@/lib:\ -$data_dir/df_linux/libs/ diff --git a/pkgs/games/dwarf-fortress/export-workaround.sh b/pkgs/games/dwarf-fortress/export-workaround.sh deleted file mode 100644 index 716d171625c..00000000000 --- a/pkgs/games/dwarf-fortress/export-workaround.sh +++ /dev/null @@ -1 +0,0 @@ -export SDL_DISABLE_LOCK_KEYS=1 # Work around for bug in Debian/Ubuntu SDL patch. diff --git a/pkgs/games/dwarf-fortress/game.nix b/pkgs/games/dwarf-fortress/game.nix new file mode 100644 index 00000000000..06154e1e57a --- /dev/null +++ b/pkgs/games/dwarf-fortress/game.nix @@ -0,0 +1,52 @@ +{ stdenv, lib, fetchurl +, SDL, dwarf-fortress-unfuck +}: + +let + baseVersion = "42"; + patchVersion = "05"; + dfVersion = "0.${baseVersion}.${patchVersion}"; + libpath = lib.makeLibraryPath [ stdenv.cc.cc stdenv.glibc dwarf-fortress-unfuck SDL ]; + +in + +assert dwarf-fortress-unfuck.dfVersion == dfVersion; + +stdenv.mkDerivation { + name = "dwarf-fortress-original-${dfVersion}"; + + src = fetchurl { + url = "http://www.bay12games.com/dwarves/df_${baseVersion}_${patchVersion}_linux.tar.bz2"; + sha256 = "0g7r0v2lsqj9ryxh12q8yrk96bgs00rf2ncw228cwwqgmps3xcws"; + }; + + installPhase = '' + mkdir -p $out + cp -r * $out + rm $out/libs/lib* + + # Store the original hash + orig_hash=$(md5sum $out/libs/Dwarf_Fortress | awk '{ print $1 }') + echo $orig_hash | cut -c1-8 > $out/hash.md5.orig # for dwarf-therapist + echo $orig_hash > $out/full-hash-orig.md5 # for dfhack + + patchelf \ + --set-interpreter $(cat ${stdenv.cc}/nix-support/dynamic-linker) \ + --set-rpath "${libpath}" \ + $out/libs/Dwarf_Fortress + + # Store new hash + patched_hash=$(md5sum $out/libs/Dwarf_Fortress | awk '{ print $1 }') + echo $patched_hash | cut -c1-8 > $out/hash.md5.patched # for dwarf-therapist + echo $patched_hash > $out/full-hash-patched.md5 # for dfhack + ''; + + passthru = { inherit baseVersion patchVersion dfVersion; }; + + meta = { + description = "A single-player fantasy game with a randomly generated adventure world"; + homepage = http://www.bay12games.com/dwarves; + license = lib.licenses.unfreeRedistributable; + maintainers = with lib.maintainers; [ a1russell robbinch roconnor the-kenny abbradar ]; + }; +} diff --git a/pkgs/games/dwarf-fortress/install-df-data-content-to-home.sh b/pkgs/games/dwarf-fortress/install-df-data-content-to-home.sh deleted file mode 100644 index 600af677322..00000000000 --- a/pkgs/games/dwarf-fortress/install-df-data-content-to-home.sh +++ /dev/null @@ -1,4 +0,0 @@ -for link in announcement art dipscript help index initial_movies movies shader.fs shader.vs sound speech; do - cp -r $pkg_dir/data/$link "$data_dir/data/$link" - chmod -R u+rw "$data_dir/data/$link" -done diff --git a/pkgs/games/dwarf-fortress/install-df-data-to-home.sh b/pkgs/games/dwarf-fortress/install-df-data-to-home.sh deleted file mode 100644 index 42c8c464809..00000000000 --- a/pkgs/games/dwarf-fortress/install-df-data-to-home.sh +++ /dev/null @@ -1,12 +0,0 @@ -mkdir -p $data_dir -if [[ $(readlink $data_dir/raw) != "$pkg_dir/raw" ]]; then - rm -f $data_dir/raw - ln -s $pkg_dir/raw $data_dir/raw -fi -if [[ $(readlink $data_dir/libs) != "$pkg_dir/libs" ]]; then - rm -f $data_dir/libs - ln -s $pkg_dir/libs $data_dir/libs -fi -mkdir -p "$data_dir/data" -cp -rn $pkg_dir/data/init $data_dir/data/init -chmod -R u+rw $data_dir/data/init diff --git a/pkgs/games/dwarf-fortress/install-dfhack-data-to-home.sh b/pkgs/games/dwarf-fortress/install-dfhack-data-to-home.sh deleted file mode 100644 index 9d316fde949..00000000000 --- a/pkgs/games/dwarf-fortress/install-dfhack-data-to-home.sh +++ /dev/null @@ -1,16 +0,0 @@ -if [[ $(readlink $data_dir/hack) != "$pkg_dir/hack" ]]; then - rm -f $data_dir/hack - ln -s $pkg_dir/hack $data_dir/hack -fi -if [[ $(readlink $data_dir/dfhack) != "$pkg_dir/dfhack" ]]; then - rm -f $data_dir/dfhack - ln -s $pkg_dir/dfhack $data_dir/dfhack -fi -if [[ $(readlink $data_dir/dfhack.init-example) != "$pkg_dir/dfhack.init-example" ]]; then - rm -f $data_dir/dfhack.init-example - ln -s $pkg_dir/dfhack.init-example $data_dir/dfhack.init-example -fi -if [[ $(readlink $data_dir/dfhack-run) != "$pkg_dir/dfhack-run" ]]; then - rm -f $data_dir/dfhack-run - ln -s $pkg_dir/dfhack-run $data_dir/dfhack-run -fi diff --git a/pkgs/games/dwarf-fortress/unfuck.nix b/pkgs/games/dwarf-fortress/unfuck.nix new file mode 100644 index 00000000000..92f4a954330 --- /dev/null +++ b/pkgs/games/dwarf-fortress/unfuck.nix @@ -0,0 +1,41 @@ +{ stdenv, fetchgit, cmake +, mesa, SDL, SDL_image, SDL_ttf, glew, openalSoft +, ncurses, glib, gtk2, libsndfile +}: + +stdenv.mkDerivation { + name = "dwarf_fortress_unfuck-20160118"; + + src = fetchgit { + url = "https://github.com/svenstaro/dwarf_fortress_unfuck"; + rev = "9a796c6d3cd7d41784e9d1d22a837a1ee0ff8553"; + sha256 = "0ibxdn684zpk3v2gigardq6z9mydc2s9hns8hlxjyyyhnk1ar61g"; + }; + + cmakeFlags = [ + "-DGTK2_GLIBCONFIG_INCLUDE_DIR=${glib}/lib/glib-2.0/include" + "-DGTK2_GDKCONFIG_INCLUDE_DIR=${gtk2}/lib/gtk-2.0/include" + ]; + + nativeBuildInputs = [ cmake ]; + buildInputs = [ + mesa SDL SDL_image SDL_ttf glew openalSoft + ncurses gtk2 libsndfile + ]; + + installPhase = '' + install -D -m755 ../build/libgraphics.so $out/lib/libgraphics.so + ''; + + enableParallelBuilding = true; + + passthru.dfVersion = "0.42.05"; + + meta = with stdenv.lib; { + description = "Unfucked multimedia layer for Dwarf Fortress"; + homepage = https://github.com/svenstaro/dwarf_fortress_unfuck; + license = licenses.free; + platforms = [ "i686-linux" ]; + maintainers = with maintainers; [ abbradar ]; + }; +} diff --git a/pkgs/games/dwarf-fortress/wrapper/default.nix b/pkgs/games/dwarf-fortress/wrapper/default.nix new file mode 100644 index 00000000000..516cf347066 --- /dev/null +++ b/pkgs/games/dwarf-fortress/wrapper/default.nix @@ -0,0 +1,47 @@ +{ stdenv, lib, dwarf-fortress-original, substituteAll +, enableDFHack ? false, dfhack +}: + +assert enableDFHack -> (dfhack.dfVersion == dwarf-fortress-original.dfVersion); + +stdenv.mkDerivation rec { + name = "dwarf-fortress-${dwarf-fortress-original.dfVersion}"; + + runDF = ./dwarf-fortress.in; + runDFHack = ./dfhack.in; + dfInit = substituteAll { + name = "dwarf-fortress-init"; + src = ./dwarf-fortress-init.in; + dwarfFortress = dwarf-fortress-original; + }; + inherit dfhack; + df = dwarf-fortress-original; + + buildCommand = '' + mkdir -p $out/bin + + substitute $runDF $out/bin/dwarf-fortress \ + --subst-var-by stdenv_shell ${stdenv.shell} \ + --subst-var dfInit + chmod 755 $out/bin/dwarf-fortress + '' + lib.optionalString enableDFHack '' + mkdir -p $out/hack + substitute $dfhack/hack/symbols.xml $out/hack/symbols.xml \ + --replace $(cat $df/full-hash-orig.md5) $(cat $df/full-hash-patched.md5) + + substitute $runDFHack $out/bin/dfhack \ + --subst-var-by stdenv_shell ${stdenv.shell} \ + --subst-var dfInit \ + --subst-var dfhack \ + --subst-var-by dfhackWrapper $out + chmod 755 $out/bin/dfhack + ''; + + preferLocalBuild = true; + + meta = { + description = "A single-player fantasy game with a randomly generated adventure world"; + homepage = http://www.bay12games.com/dwarves; + maintainers = with lib.maintainers; [ a1russell robbinch roconnor the-kenny ]; + }; +} diff --git a/pkgs/games/dwarf-fortress/wrapper/dfhack.in b/pkgs/games/dwarf-fortress/wrapper/dfhack.in new file mode 100644 index 00000000000..af2afa57e9d --- /dev/null +++ b/pkgs/games/dwarf-fortress/wrapper/dfhack.in @@ -0,0 +1,17 @@ +#!@stdenv_shell@ -e + +hack_dir="@dfhack@" +hack_wrap_dir="@dfhackWrapper@" + +source @dfInit@ + +cd "$hack_dir" +for i in dfhack.init-example dfhack-config/default hack/!(symbols.xml|*.so|dfhack-run|binpatch); do + update_path "$hack_dir" "$i" +done + +update_path "$hack_wrap_dir" "hack/symbols.xml" + +cd "$DF_DIR" +LD_LIBRARY_PATH="$hack_dir/hack/libs:$hack_dir/hack:$LD_LIBRARY_PATH" \ + LD_PRELOAD=$hack_dir/hack/libdfhack.so exec $game_dir/libs/Dwarf_Fortress "$@" diff --git a/pkgs/games/dwarf-fortress/wrapper/dwarf-fortress-init.in b/pkgs/games/dwarf-fortress/wrapper/dwarf-fortress-init.in new file mode 100644 index 00000000000..ac59934f767 --- /dev/null +++ b/pkgs/games/dwarf-fortress/wrapper/dwarf-fortress-init.in @@ -0,0 +1,43 @@ +shopt -s extglob + +[ -z "$DF_DIR" ] && DF_DIR="${XDG_DATA_HOME:-$HOME/.local/share}/df_linux" +game_dir="@dwarfFortress@" + +update_path() { + local pkg_dir="$1" + local path="$2" + + mkdir -p "$DF_DIR/$(dirname "$path")" + # If user has replaced these data directories, let them stay. + if [ ! -e "$DF_DIR/$path" ] || [ -L "$DF_DIR/$path" ]; then + rm -f "$DF_DIR/$path" + ln -s "$pkg_dir/$path" "$DF_DIR/$path" + fi +} + +forcecopy_path() { + local pkg_dir="$1" + local path="$2" + + mkdir -p "$DF_DIR/$(dirname "$path")" + rm -rf "$DF_DIR/$path" + cp -rL --no-preserve=all "$pkg_dir/$path" "$DF_DIR/$path" +} + +mkdir -p "$DF_DIR" + +cat <&2 +Using $DF_DIR as Dwarf Fortress overlay directory. +If you do any changes in it, don't forget to clean it when updating the game version! +We try to detect changes based on data directories being symbolic links -- keep this in mind. + +EOF + +cd "$game_dir" +for i in data/init/* data/!(init|index|announcement) raw; do + update_path "$game_dir" "$i" +done + +forcecopy_path "$game_dir" data/index +# For some reason, it's needed to be writable... +forcecopy_path "$game_dir" data/announcement diff --git a/pkgs/games/dwarf-fortress/wrapper/dwarf-fortress.in b/pkgs/games/dwarf-fortress/wrapper/dwarf-fortress.in new file mode 100644 index 00000000000..28f89e8117e --- /dev/null +++ b/pkgs/games/dwarf-fortress/wrapper/dwarf-fortress.in @@ -0,0 +1,6 @@ +#!@stdenv_shell@ -e + +source @dfInit@ + +cd "$DF_DIR" +exec $game_dir/libs/Dwarf_Fortress "$@" diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index e9b96d00a74..41c8dadeffb 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -14104,21 +14104,13 @@ let cuyo = callPackage ../games/cuyo { }; - dfhack = callPackage_i686 ../games/dfhack { - inherit (pkgsi686Linux.perlPackages) XMLLibXML XMLLibXSLT; - }; - dhewm3 = callPackage ../games/dhewm3 {}; drumkv1 = callPackage ../applications/audio/drumkv1 { }; - dwarf_fortress = callPackage_i686 ../games/dwarf-fortress { - SDL_image = pkgsi686Linux.SDL_image.override { - libpng = pkgsi686Linux.libpng12; - }; - inherit (pkgsi686Linux.perlPackages) XMLLibXML XMLLibXSLT; - enableDFHack = config.dwarfFortress.enableDFHack or false; - }; + dwarf-fortress-packages = callPackage ../games/dwarf-fortress { }; + + dwarf-fortress = dwarf-fortress-packages.dwarf-fortress.override { }; dwarf-therapist = callPackage ../games/dwarf-therapist { }; @@ -15956,6 +15948,7 @@ aliases = with self; rec { aircrackng = aircrack-ng; # added 2016-01-14 quake3game = ioquake3; # added 2016-01-14 scim = sc-im; # added 2016-01-22 + dwarf_fortress = dwarf-fortress; # added 2016-01-23 }; tweakAlias = _n: alias: with lib; From fdae86fb4e3234441987d9164f6f5b7e2d15d0c3 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Tue, 12 Jan 2016 21:17:46 +0300 Subject: [PATCH 174/268] dwarf-therapist: 31.0.0 -> 36.0.0 --- pkgs/games/dwarf-fortress/default.nix | 8 ++++ .../dwarf-therapist/default.nix | 40 ++++++++++++++++ .../dwarf-therapist/wrapper.nix | 41 ++++++++++++++++ pkgs/games/dwarf-therapist/default.nix | 48 ------------------- pkgs/top-level/all-packages.nix | 2 +- 5 files changed, 90 insertions(+), 49 deletions(-) create mode 100644 pkgs/games/dwarf-fortress/dwarf-therapist/default.nix create mode 100644 pkgs/games/dwarf-fortress/dwarf-therapist/wrapper.nix delete mode 100644 pkgs/games/dwarf-therapist/default.nix diff --git a/pkgs/games/dwarf-fortress/default.nix b/pkgs/games/dwarf-fortress/default.nix index d73f932ac03..84b5f2b0f4b 100644 --- a/pkgs/games/dwarf-fortress/default.nix +++ b/pkgs/games/dwarf-fortress/default.nix @@ -14,6 +14,14 @@ let dwarf-fortress-unfuck = callPackage_i686 ./unfuck.nix { }; dwarf-fortress = callPackage ./wrapper { }; + + dwarf-therapist-original = callPackage ./dwarf-therapist { + texlive = pkgs.texlive.combine { + inherit (pkgs.texlive) scheme-basic float caption wrapfig adjmulticol sidecap preprint enumitem; + }; + }; + + dwarf-therapist = callPackage ./dwarf-therapist/wrapper.nix { }; }; in self diff --git a/pkgs/games/dwarf-fortress/dwarf-therapist/default.nix b/pkgs/games/dwarf-fortress/dwarf-therapist/default.nix new file mode 100644 index 00000000000..07714168e0e --- /dev/null +++ b/pkgs/games/dwarf-fortress/dwarf-therapist/default.nix @@ -0,0 +1,40 @@ +{ stdenv, fetchFromGitHub, coreutils, qt4, texlive }: + +let + version = "36.0.0"; +in +stdenv.mkDerivation { + name = "dwarf-therapist-original-${version}"; + + src = fetchFromGitHub { + owner = "splintermind"; + repo = "Dwarf-Therapist"; + rev = "v${version}"; + sha256 = "08xjawb25sibkkfqwd4mlq73dgmgc6lxbbd673rx7yhrsjh4z4h3"; + }; + + outputs = [ "out" "layouts" ]; + buildInputs = [ qt4 ]; + nativeBuildInputs = [ texlive ]; + + enableParallelBuilding = false; + + configurePhase = '' + qmake PREFIX=$out + ''; + + # Move layout files so they cannot be found by Therapist + postInstall = '' + mkdir -p $layouts + mv $out/share/dwarftherapist/memory_layouts/* $layouts + rmdir $out/share/dwarftherapist/memory_layouts + ''; + + meta = { + description = "Tool to manage dwarves in in a running game of Dwarf Fortress"; + maintainers = with stdenv.lib.maintainers; [ the-kenny abbradar ]; + license = stdenv.lib.licenses.mit; + platforms = stdenv.lib.platforms.linux; + homepage = https://code.google.com/r/splintermind-attributes/; + }; +} diff --git a/pkgs/games/dwarf-fortress/dwarf-therapist/wrapper.nix b/pkgs/games/dwarf-fortress/dwarf-therapist/wrapper.nix new file mode 100644 index 00000000000..6b138ac5102 --- /dev/null +++ b/pkgs/games/dwarf-fortress/dwarf-therapist/wrapper.nix @@ -0,0 +1,41 @@ +{ buildEnv, lib, dwarf-therapist-original, dwarf-fortress-original, makeWrapper }: + +let + df = dwarf-fortress-original; + dt = dwarf-therapist-original; + inifile = "linux/v0${df.baseVersion}.${df.patchVersion}.ini"; + dfHashFile = "${df}/hash.md5"; + +in buildEnv { + name = "dwarf-therapist-${lib.getVersion dt}"; + + paths = [ dt ]; + + buildInputs = [ makeWrapper ]; + + postBuild = '' + # DwarfTherapist assumes it's run in $out/share/dwarftherapist and + # therefore uses many relative paths. + rm $out/bin + mkdir $out/bin + makeWrapper ${dt}/bin/DwarfTherapist $out/bin/DwarfTherapist \ + --run "cd $out/share/dwarftherapist" + + # Fix checksum of memory access directives. We really need #4621 fixed! + recreate_dir() { + rm "$out/$1" + mkdir -p "$out/$1" + for i in "${dt}/$1/"*; do + ln -s "$i" "$out/$1" + done + } + + recreate_dir share + recreate_dir share/dwarftherapist + mkdir -p $out/share/dwarftherapist/memory_layouts/linux + substitute \ + ${dt.layouts}/${inifile} \ + $out/share/dwarftherapist/memory_layouts/${inifile} \ + --replace $(cat "${dfHashFile}.orig") $(cat "${dfHashFile}.patched") + ''; +} diff --git a/pkgs/games/dwarf-therapist/default.nix b/pkgs/games/dwarf-therapist/default.nix deleted file mode 100644 index 4e676bf5f9d..00000000000 --- a/pkgs/games/dwarf-therapist/default.nix +++ /dev/null @@ -1,48 +0,0 @@ -{ stdenv, coreutils, fetchgit, qt4, dwarf_fortress, bash, makeWrapper }: - -let - version = "31.0.0"; - df = dwarf_fortress; -in -stdenv.mkDerivation rec { - name = "dwarf-therapist-${version}"; - - src = fetchgit { - url = "https://github.com/splintermind/Dwarf-Therapist.git"; - rev = "refs/tags/v${version}"; - sha256 = "02d6k8c3vm401v04ln9q405njarx869jpfyf42lwskijrzjygk9x"; - }; - - # Needed for hashing - dfHashFile = "${df}/share/df_linux/hash.md5"; - - buildInputs = [ coreutils qt4 df makeWrapper ]; - enableParallelBuilding = false; - - configurePhase = '' - qmake PREFIX=$out - ''; - - postInstall = '' - # DwarfTherapist assumes it's run in $out/share/dwarftherapist and - # therefore uses many relative paths. - rm $out/bin/dwarftherapist - wrapProgram $out/bin/DwarfTherapist \ - --run "cd $out/share/dwarftherapist" - ''; - - postFixup = '' - # Fix checksum of memory access directives - substituteInPlace $out/share/dwarftherapist/memory_layouts/linux/v0${df.baseVersion}.${df.patchVersion}.ini \ - --replace $(cat "${dfHashFile}.orig") $(cat "${dfHashFile}.patched") - ''; - - meta = { - description = "Tool to manage dwarves in in a running game of Dwarf Fortress"; - maintainers = with stdenv.lib.maintainers; [ the-kenny ]; - license = stdenv.lib.licenses.mit; - platforms = stdenv.lib.platforms.linux; - hydraPlatforms = []; - homepage = https://code.google.com/r/splintermind-attributes/; - }; -} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 41c8dadeffb..c7aa0c8cc0b 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -14112,7 +14112,7 @@ let dwarf-fortress = dwarf-fortress-packages.dwarf-fortress.override { }; - dwarf-therapist = callPackage ../games/dwarf-therapist { }; + dwarf-therapist = dwarf-fortress-packages.dwarf-therapist; d1x_rebirth = callPackage ../games/d1x-rebirth { }; From 6c9dd963776d108ef05700fe843f1a285e3d7182 Mon Sep 17 00:00:00 2001 From: Adam Russell Date: Thu, 26 Nov 2015 21:26:44 -0600 Subject: [PATCH 175/268] dwarf-fortress: add phoebus --- pkgs/games/dwarf-fortress/themes/phoebus.nix | 36 ++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 pkgs/games/dwarf-fortress/themes/phoebus.nix diff --git a/pkgs/games/dwarf-fortress/themes/phoebus.nix b/pkgs/games/dwarf-fortress/themes/phoebus.nix new file mode 100644 index 00000000000..a26abf207d4 --- /dev/null +++ b/pkgs/games/dwarf-fortress/themes/phoebus.nix @@ -0,0 +1,36 @@ +{ dfBaseVersion +, dfPatchVersion +, fetchzip +, ... +}: + +let + + phoebusVersion = "00"; + phoebusFileName = "Phoebus_${dfBaseVersion}_${dfPatchVersion}v${phoebusVersion}"; + +in rec { + + src = fetchzip { + name = phoebusFileName; + url = "http://dffd.bay12games.com/download.php?id=2430&f=${phoebusFileName}.zip"; + sha256 = "0fb68r6fd7v67mbh2439ygqrmdk4pw94gd293fqxb9qg71ilrb6s"; + stripRoot = false; + }; + + sourceRoot = src.name; + + installPhase = '' + pushd ../../$themeSourceRoot + + cp data/init/phoebus/* $out/share/df_linux/data/init/ + cp -rT raw $out/share/df_linux/raw + mkdir -p $out/share/df_linux/data/config + cp data/config/* $out/share/df_linux/data/config/ + cp data/art/* $out/share/df_linux/data/art/ + + popd + ''; + +} + From 7fe01a7279a8a9630ac42b2c7c9dd291c4a7a9a9 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Wed, 20 Jan 2016 00:43:52 +0300 Subject: [PATCH 176/268] phoebus-theme: update for 0.42.05, make a derivation Also specify license, see https://github.com/fricy/Phoebus/issues/5 --- pkgs/games/dwarf-fortress/default.nix | 2 + pkgs/games/dwarf-fortress/themes/phoebus.nix | 51 +++++++++----------- 2 files changed, 26 insertions(+), 27 deletions(-) diff --git a/pkgs/games/dwarf-fortress/default.nix b/pkgs/games/dwarf-fortress/default.nix index 84b5f2b0f4b..317b532ecbe 100644 --- a/pkgs/games/dwarf-fortress/default.nix +++ b/pkgs/games/dwarf-fortress/default.nix @@ -22,6 +22,8 @@ let }; dwarf-therapist = callPackage ./dwarf-therapist/wrapper.nix { }; + + phoebus-theme = callPackage ./themes/phoebus.nix { }; }; in self diff --git a/pkgs/games/dwarf-fortress/themes/phoebus.nix b/pkgs/games/dwarf-fortress/themes/phoebus.nix index a26abf207d4..2183a6245c0 100644 --- a/pkgs/games/dwarf-fortress/themes/phoebus.nix +++ b/pkgs/games/dwarf-fortress/themes/phoebus.nix @@ -1,36 +1,33 @@ -{ dfBaseVersion -, dfPatchVersion -, fetchzip -, ... -}: +{ stdenv, fetchFromGitHub }: -let +# On upgrade check https://github.com/fricy/Phoebus/blob/master/manifest.json +# for compatibility information. - phoebusVersion = "00"; - phoebusFileName = "Phoebus_${dfBaseVersion}_${dfPatchVersion}v${phoebusVersion}"; +stdenv.mkDerivation { + name = "phoebus-theme-20160118"; -in rec { - - src = fetchzip { - name = phoebusFileName; - url = "http://dffd.bay12games.com/download.php?id=2430&f=${phoebusFileName}.zip"; - sha256 = "0fb68r6fd7v67mbh2439ygqrmdk4pw94gd293fqxb9qg71ilrb6s"; - stripRoot = false; + src = fetchFromGitHub { + owner = "fricy"; + repo = "Phoebus"; + rev = "2c5777b0f307b1d752a8a484c6a05b67531c84a9"; + sha256 = "0a5ixm181wz7crr3rpa2mh0drb371j5hvizqninvdnhah2mypz8v"; }; - sourceRoot = src.name; - installPhase = '' - pushd ../../$themeSourceRoot - - cp data/init/phoebus/* $out/share/df_linux/data/init/ - cp -rT raw $out/share/df_linux/raw - mkdir -p $out/share/df_linux/data/config - cp data/config/* $out/share/df_linux/data/config/ - cp data/art/* $out/share/df_linux/data/art/ - - popd + mkdir $out + cp -r data raw $out ''; -} + passthru.dfVersion = "0.42.05"; + preferLocalBuild = true; + + meta = with stdenv.lib; { + description = "Phoebus graphics set for Dwarf Fortress"; + homepage = "http://www.bay12forums.com/smf/index.php?topic=137096.0"; + platforms = platforms.all; + maintainers = with maintainers; [ a1russell abbradar ]; + # https://github.com/fricy/Phoebus/issues/5 + license = licenses.free; + }; +} From d3b642ce9ad056b60d8cfa576dd3fa800ec57ba4 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Wed, 20 Jan 2016 00:44:33 +0300 Subject: [PATCH 177/268] dwarf-fortress-wrapper: add themes support Theme can be specified either as a derivation or as a string, in which case it will be taken by name from a pre-defined set of themes available in nixpkgs. --- pkgs/games/dwarf-fortress/default.nix | 8 ++- pkgs/games/dwarf-fortress/wrapper/default.nix | 61 +++++++++++++------ pkgs/games/dwarf-fortress/wrapper/dfhack.in | 14 ++--- .../wrapper/dwarf-fortress-init.in | 20 +++--- .../dwarf-fortress/wrapper/dwarf-fortress.in | 2 +- 5 files changed, 61 insertions(+), 44 deletions(-) diff --git a/pkgs/games/dwarf-fortress/default.nix b/pkgs/games/dwarf-fortress/default.nix index 317b532ecbe..d91c110c34c 100644 --- a/pkgs/games/dwarf-fortress/default.nix +++ b/pkgs/games/dwarf-fortress/default.nix @@ -4,7 +4,7 @@ let callPackage = pkgs.newScope self; callPackage_i686 = pkgsi686Linux.newScope self; - self = { + self = rec { dwarf-fortress-original = callPackage_i686 ./game.nix { }; dfhack = callPackage_i686 ./dfhack { @@ -13,7 +13,11 @@ let dwarf-fortress-unfuck = callPackage_i686 ./unfuck.nix { }; - dwarf-fortress = callPackage ./wrapper { }; + dwarf-fortress = callPackage ./wrapper { + themes = { + "phoebus" = phoebus-theme; + }; + }; dwarf-therapist-original = callPackage ./dwarf-therapist { texlive = pkgs.texlive.combine { diff --git a/pkgs/games/dwarf-fortress/wrapper/default.nix b/pkgs/games/dwarf-fortress/wrapper/default.nix index 516cf347066..95ff0821d70 100644 --- a/pkgs/games/dwarf-fortress/wrapper/default.nix +++ b/pkgs/games/dwarf-fortress/wrapper/default.nix @@ -1,21 +1,54 @@ -{ stdenv, lib, dwarf-fortress-original, substituteAll +{ stdenv, lib, buildEnv, dwarf-fortress-original, substituteAll , enableDFHack ? false, dfhack +, themes ? {} +, theme ? null }: -assert enableDFHack -> (dfhack.dfVersion == dwarf-fortress-original.dfVersion); +let + ptheme = + if builtins.isString theme + then builtins.getAttr theme themes + else theme; + + # These are in inverse order for first packages to override the next ones. + pkgs = lib.optional (theme != null) ptheme + ++ lib.optional enableDFHack dfhack + ++ [ dwarf-fortress-original ]; + + env = buildEnv { + name = "dwarf-fortress-env-${dwarf-fortress-original.dfVersion}"; + paths = pkgs; + ignoreCollisions = true; + postBuild = lib.optionalString enableDFHack '' + # #4621 + if [ -L "$out/hack" ]; then + rm $out/hack + mkdir $out/hack + for i in ${dfhack}/hack/*; do + ln -s $i $out/hack + done + fi + rm $out/hack/symbols.xml + substitute ${dfhack}/hack/symbols.xml $out/hack/symbols.xml \ + --replace $(cat ${dwarf-fortress-original}/full-hash-orig.md5) \ + $(cat ${dwarf-fortress-original}/full-hash-patched.md5) + ''; + }; +in + +assert lib.all (x: x.dfVersion == dwarf-fortress-original.dfVersion) pkgs; stdenv.mkDerivation rec { name = "dwarf-fortress-${dwarf-fortress-original.dfVersion}"; - runDF = ./dwarf-fortress.in; - runDFHack = ./dfhack.in; dfInit = substituteAll { name = "dwarf-fortress-init"; src = ./dwarf-fortress-init.in; - dwarfFortress = dwarf-fortress-original; + inherit env; }; - inherit dfhack; - df = dwarf-fortress-original; + + runDF = ./dwarf-fortress.in; + runDFHack = ./dfhack.in; buildCommand = '' mkdir -p $out/bin @@ -25,23 +58,11 @@ stdenv.mkDerivation rec { --subst-var dfInit chmod 755 $out/bin/dwarf-fortress '' + lib.optionalString enableDFHack '' - mkdir -p $out/hack - substitute $dfhack/hack/symbols.xml $out/hack/symbols.xml \ - --replace $(cat $df/full-hash-orig.md5) $(cat $df/full-hash-patched.md5) - substitute $runDFHack $out/bin/dfhack \ --subst-var-by stdenv_shell ${stdenv.shell} \ - --subst-var dfInit \ - --subst-var dfhack \ - --subst-var-by dfhackWrapper $out + --subst-var dfInit chmod 755 $out/bin/dfhack ''; preferLocalBuild = true; - - meta = { - description = "A single-player fantasy game with a randomly generated adventure world"; - homepage = http://www.bay12games.com/dwarves; - maintainers = with lib.maintainers; [ a1russell robbinch roconnor the-kenny ]; - }; } diff --git a/pkgs/games/dwarf-fortress/wrapper/dfhack.in b/pkgs/games/dwarf-fortress/wrapper/dfhack.in index af2afa57e9d..d53769ca4b6 100644 --- a/pkgs/games/dwarf-fortress/wrapper/dfhack.in +++ b/pkgs/games/dwarf-fortress/wrapper/dfhack.in @@ -1,17 +1,11 @@ #!@stdenv_shell@ -e -hack_dir="@dfhack@" -hack_wrap_dir="@dfhackWrapper@" - source @dfInit@ -cd "$hack_dir" -for i in dfhack.init-example dfhack-config/default hack/!(symbols.xml|*.so|dfhack-run|binpatch); do - update_path "$hack_dir" "$i" +for i in dfhack.init-example dfhack-config/default hack/*; do + update_path "$i" done -update_path "$hack_wrap_dir" "hack/symbols.xml" - cd "$DF_DIR" -LD_LIBRARY_PATH="$hack_dir/hack/libs:$hack_dir/hack:$LD_LIBRARY_PATH" \ - LD_PRELOAD=$hack_dir/hack/libdfhack.so exec $game_dir/libs/Dwarf_Fortress "$@" +LD_LIBRARY_PATH="$env_dir/hack/libs:$env_dir/hack:$LD_LIBRARY_PATH" \ + LD_PRELOAD=$env_dir/hack/libdfhack.so exec $env_dir/libs/Dwarf_Fortress "$@" diff --git a/pkgs/games/dwarf-fortress/wrapper/dwarf-fortress-init.in b/pkgs/games/dwarf-fortress/wrapper/dwarf-fortress-init.in index ac59934f767..1fd6178895d 100644 --- a/pkgs/games/dwarf-fortress/wrapper/dwarf-fortress-init.in +++ b/pkgs/games/dwarf-fortress/wrapper/dwarf-fortress-init.in @@ -1,27 +1,25 @@ shopt -s extglob [ -z "$DF_DIR" ] && DF_DIR="${XDG_DATA_HOME:-$HOME/.local/share}/df_linux" -game_dir="@dwarfFortress@" +env_dir="@env@" update_path() { - local pkg_dir="$1" - local path="$2" + local path="$1" mkdir -p "$DF_DIR/$(dirname "$path")" # If user has replaced these data directories, let them stay. if [ ! -e "$DF_DIR/$path" ] || [ -L "$DF_DIR/$path" ]; then rm -f "$DF_DIR/$path" - ln -s "$pkg_dir/$path" "$DF_DIR/$path" + ln -s "$env_dir/$path" "$DF_DIR/$path" fi } forcecopy_path() { - local pkg_dir="$1" - local path="$2" + local path="$1" mkdir -p "$DF_DIR/$(dirname "$path")" rm -rf "$DF_DIR/$path" - cp -rL --no-preserve=all "$pkg_dir/$path" "$DF_DIR/$path" + cp -rL --no-preserve=all "$env_dir/$path" "$DF_DIR/$path" } mkdir -p "$DF_DIR" @@ -33,11 +31,11 @@ We try to detect changes based on data directories being symbolic links -- keep EOF -cd "$game_dir" +cd "$env_dir" for i in data/init/* data/!(init|index|announcement) raw; do - update_path "$game_dir" "$i" + update_path "$i" done -forcecopy_path "$game_dir" data/index +forcecopy_path data/index # For some reason, it's needed to be writable... -forcecopy_path "$game_dir" data/announcement +forcecopy_path data/announcement diff --git a/pkgs/games/dwarf-fortress/wrapper/dwarf-fortress.in b/pkgs/games/dwarf-fortress/wrapper/dwarf-fortress.in index 28f89e8117e..f405f1b0e39 100644 --- a/pkgs/games/dwarf-fortress/wrapper/dwarf-fortress.in +++ b/pkgs/games/dwarf-fortress/wrapper/dwarf-fortress.in @@ -3,4 +3,4 @@ source @dfInit@ cd "$DF_DIR" -exec $game_dir/libs/Dwarf_Fortress "$@" +exec "$env_dir/libs/Dwarf_Fortress" "$@" From 82a0dde83c1624dabd74a0bf39dd5f7504493f3f Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Sat, 23 Jan 2016 23:57:58 +0300 Subject: [PATCH 178/268] dwarf-fortress: remove short md5 sums --- pkgs/games/dwarf-fortress/dwarf-therapist/wrapper.nix | 4 +++- pkgs/games/dwarf-fortress/game.nix | 10 +++------- pkgs/games/dwarf-fortress/wrapper/default.nix | 4 ++-- 3 files changed, 8 insertions(+), 10 deletions(-) diff --git a/pkgs/games/dwarf-fortress/dwarf-therapist/wrapper.nix b/pkgs/games/dwarf-fortress/dwarf-therapist/wrapper.nix index 6b138ac5102..a16c1284a67 100644 --- a/pkgs/games/dwarf-fortress/dwarf-therapist/wrapper.nix +++ b/pkgs/games/dwarf-fortress/dwarf-therapist/wrapper.nix @@ -33,9 +33,11 @@ in buildEnv { recreate_dir share recreate_dir share/dwarftherapist mkdir -p $out/share/dwarftherapist/memory_layouts/linux + origmd5=$(cat "${dfHashFile}.orig" | cut -c1-8) + patchedmd5=$(cat "${dfHashFile}" | cut -c1-8) substitute \ ${dt.layouts}/${inifile} \ $out/share/dwarftherapist/memory_layouts/${inifile} \ - --replace $(cat "${dfHashFile}.orig") $(cat "${dfHashFile}.patched") + --replace "$origmd5" "$patchedmd5" ''; } diff --git a/pkgs/games/dwarf-fortress/game.nix b/pkgs/games/dwarf-fortress/game.nix index 06154e1e57a..7e0c1b34af7 100644 --- a/pkgs/games/dwarf-fortress/game.nix +++ b/pkgs/games/dwarf-fortress/game.nix @@ -26,19 +26,15 @@ stdenv.mkDerivation { rm $out/libs/lib* # Store the original hash - orig_hash=$(md5sum $out/libs/Dwarf_Fortress | awk '{ print $1 }') - echo $orig_hash | cut -c1-8 > $out/hash.md5.orig # for dwarf-therapist - echo $orig_hash > $out/full-hash-orig.md5 # for dfhack + md5sum $out/libs/Dwarf_Fortress | awk '{ print $1 }' > $out/hash.md5.orig patchelf \ --set-interpreter $(cat ${stdenv.cc}/nix-support/dynamic-linker) \ --set-rpath "${libpath}" \ $out/libs/Dwarf_Fortress - # Store new hash - patched_hash=$(md5sum $out/libs/Dwarf_Fortress | awk '{ print $1 }') - echo $patched_hash | cut -c1-8 > $out/hash.md5.patched # for dwarf-therapist - echo $patched_hash > $out/full-hash-patched.md5 # for dfhack + # Store the new hash + md5sum $out/libs/Dwarf_Fortress | awk '{ print $1 }' > $out/hash.md5 ''; passthru = { inherit baseVersion patchVersion dfVersion; }; diff --git a/pkgs/games/dwarf-fortress/wrapper/default.nix b/pkgs/games/dwarf-fortress/wrapper/default.nix index 95ff0821d70..5493cdb3faf 100644 --- a/pkgs/games/dwarf-fortress/wrapper/default.nix +++ b/pkgs/games/dwarf-fortress/wrapper/default.nix @@ -30,8 +30,8 @@ let fi rm $out/hack/symbols.xml substitute ${dfhack}/hack/symbols.xml $out/hack/symbols.xml \ - --replace $(cat ${dwarf-fortress-original}/full-hash-orig.md5) \ - $(cat ${dwarf-fortress-original}/full-hash-patched.md5) + --replace $(cat ${dwarf-fortress-original}/hash.md5.orig) \ + $(cat ${dwarf-fortress-original}/hash.md5) ''; }; in From 1bfe78be717728d9ff185e805a37454bd9d95956 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Tue, 26 Jan 2016 00:49:50 +0100 Subject: [PATCH 179/268] bashburn: init at 3.1.0 --- pkgs/tools/cd-dvd/bashburn/default.nix | 64 ++++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 + 2 files changed, 66 insertions(+) create mode 100644 pkgs/tools/cd-dvd/bashburn/default.nix diff --git a/pkgs/tools/cd-dvd/bashburn/default.nix b/pkgs/tools/cd-dvd/bashburn/default.nix new file mode 100644 index 00000000000..b188b6fb2b2 --- /dev/null +++ b/pkgs/tools/cd-dvd/bashburn/default.nix @@ -0,0 +1,64 @@ +{ stdenv, fetchurl, utillinux +, cdparanoia, cdrdao, dvdplusrwtools, flac, lame, mpg123, normalize +, vorbisTools, xorriso }: + +stdenv.mkDerivation rec { + name = "bashburn-${version}"; + version = "3.1.0"; + + src = fetchurl { + sha256 = "0g5va5rjdrvacanmqr6pbxk2rl565ahkfbsvxsp1jvhvxvhmv3dp"; + url = "http://bashburn.dose.se/index.php?s=file_download&id=25"; + name = "${name}.tar.gz"; + }; + + nativeBuildInputs = [ utillinux ]; + + postPatch = '' + for path in \ + BB_CDBURNCMD=${xorriso}/bin/"xorriso -as cdrecord" \ + BB_DVDBURNCMD=${dvdplusrwtools}/bin/growisofs \ + BB_ISOCMD=${xorriso}/bin/"xorriso -as mkisofs" \ + BB_DVDBLANK=${dvdplusrwtools}/bin/dvd+rw-format \ + BB_CDIMAGECMD=${cdrdao}/bin/cdrdao \ + BB_CDAUDIORIP=${cdparanoia}/bin/cdparanoia \ + BB_READCD=${xorriso}/bin/"xorriso -as mkisofs" \ + BB_MP3ENC=${lame}/bin/lame \ + BB_MP3DEC=${mpg123}/bin/mpg123 \ + BB_OGGENC=${vorbisTools}/bin/oggenc \ + BB_OGGDEC=${vorbisTools}/bin/oggdec \ + BB_FLACCMD=${flac}/bin/flac \ + BB_EJECT=${utillinux}/bin/eject \ + BB_NORMCMD=${normalize}/bin/normalize \ + ; do + echo $path + sed -i BashBurn.sh \ + -e "s,\(''${path%%=*}:\).*,\1 ''${path#*=}," + sed -i menus/advanced.sh \ + -e "s,\(''${path%%=*}|\).*\('.*\),\1''${path#*=}\2," + done + ''; + + installPhase = '' + sh Install.sh --prefix $out + ''; + + meta = with stdenv.lib; { + description = "bash script CD Burner Writer"; + longDescription = '' + It might not be the best looking application out there, but it works. + It’s simple, fast and small, and can handle most things you throw at it. + Currently (and with the right dependencies installed), BashBurn can: + - burn data CDs/DVDs (Including CDRWs) + - burn music CDs + - burn CD/DVD-images + - rip data/music CDs + - manipulate ISO-files + - and probably more... + ''; + homepage = http://bashburn.dose.se/; + license = licenses.gpl2Plus; + platforms = platforms.linux; + maintainers = with maintainers; [ nckx ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index c63448f4a3a..59c86b25a00 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -675,6 +675,8 @@ let barcode = callPackage ../tools/graphics/barcode {}; + bashburn = callPackage ../tools/cd-dvd/bashburn { }; + bashmount = callPackage ../tools/filesystems/bashmount {}; bc = callPackage ../tools/misc/bc { }; From 0c25292648b0f9172592169bc2d94272a28a0711 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Tue, 26 Jan 2016 00:53:13 +0100 Subject: [PATCH 180/268] vorbis-tools: rename from old-style vorbisTools --- pkgs/applications/audio/abcde/default.nix | 4 ++-- pkgs/applications/audio/mhwaveedit/default.nix | 4 ++-- pkgs/applications/editors/emacs-modes/emms/default.nix | 6 +++--- pkgs/applications/video/dvd-slideshow/default.nix | 4 ++-- pkgs/development/libraries/snack/default.nix | 6 +++--- pkgs/misc/solfege/default.nix | 4 ++-- pkgs/tools/cd-dvd/bashburn/default.nix | 6 +++--- pkgs/tools/cd-dvd/cuetools/default.nix | 4 ++-- pkgs/top-level/all-packages.nix | 3 ++- pkgs/top-level/python-packages.nix | 2 +- pkgs/top-level/release.nix | 2 +- 11 files changed, 23 insertions(+), 22 deletions(-) diff --git a/pkgs/applications/audio/abcde/default.nix b/pkgs/applications/audio/abcde/default.nix index eec1bdcf31c..2c02baf9918 100644 --- a/pkgs/applications/audio/abcde/default.nix +++ b/pkgs/applications/audio/abcde/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, libcdio, cddiscid, wget, bash, vorbisTools, id3v2, eyeD3 +{ stdenv, fetchurl, libcdio, cddiscid, wget, bash, vorbis-tools, id3v2, eyeD3 , lame, flac, eject, mkcue , perl, DigestSHA, MusicBrainz, MusicBrainzDiscID , makeWrapper }: @@ -50,7 +50,7 @@ in --replace '#!/usr/bin/perl' '#!${perl}/bin/perl' wrapProgram "$out/bin/abcde" --prefix PATH ":" \ - "$out/bin:${libcdio}/bin:${cddiscid}/bin:${wget}/bin:${vorbisTools}/bin:${id3v2}/bin:${eyeD3}/bin:${lame}/bin" + "$out/bin:${libcdio}/bin:${cddiscid}/bin:${wget}/bin:${vorbis-tools}/bin:${id3v2}/bin:${eyeD3}/bin:${lame}/bin" wrapProgram "$out/bin/cddb-tool" --prefix PATH ":" \ "${wget}/bin" diff --git a/pkgs/applications/audio/mhwaveedit/default.nix b/pkgs/applications/audio/mhwaveedit/default.nix index d640ddaeb94..26400ed61da 100644 --- a/pkgs/applications/audio/mhwaveedit/default.nix +++ b/pkgs/applications/audio/mhwaveedit/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchurl, makeWrapper, SDL , alsaLib, gtk, libjack2, ladspaH , ladspaPlugins, libsamplerate, libsndfile, pkgconfig, libpulseaudio, lame -, vorbisTools }: +, vorbis-tools }: stdenv.mkDerivation rec { name = "mhwaveedit-${version}"; @@ -19,7 +19,7 @@ stdenv.mkDerivation rec { postInstall = '' wrapProgram $out/bin/mhwaveedit \ --prefix PATH : ${lame}/bin/ \ - --prefix PATH : ${vorbisTools}/bin/ + --prefix PATH : ${vorbis-tools}/bin/ ''; meta = with stdenv.lib; { diff --git a/pkgs/applications/editors/emacs-modes/emms/default.nix b/pkgs/applications/editors/emacs-modes/emms/default.nix index 1e9843447d9..c873a7c0ca8 100644 --- a/pkgs/applications/editors/emacs-modes/emms/default.nix +++ b/pkgs/applications/editors/emacs-modes/emms/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, emacs, texinfo -, mpg321, vorbisTools, taglib, mp3info, alsaUtils }: +, mpg321, vorbis-tools, taglib, mp3info, alsaUtils }: # XXX: EMMS also supports Xine, MPlayer, Jack, etc. @@ -25,9 +25,9 @@ stdenv.mkDerivation rec { sed -i "emms-player-mpg321-remote.el" \ -e 's|emms-player-mpg321-remote-command[[:blank:]]\+"mpg321"|emms-player-mpg321-remote-command "${mpg321}/bin/mpg321"|g' sed -i "emms-player-simple.el" \ - -e 's|"ogg123"|"${vorbisTools}/bin/ogg123"|g' + -e 's|"ogg123"|"${vorbis-tools}/bin/ogg123"|g' sed -i "emms-info-ogginfo.el" \ - -e 's|emms-info-ogginfo-program-name[[:blank:]]\+"ogginfo"|emms-info-ogginfo-program-name "${vorbisTools}/bin/ogginfo"|g' + -e 's|emms-info-ogginfo-program-name[[:blank:]]\+"ogginfo"|emms-info-ogginfo-program-name "${vorbis-tools}/bin/ogginfo"|g' sed -i "emms-info-libtag.el" \ -e "s|\"emms-print-metadata\"|\"$out/bin/emms-print-metadata\"|g" sed -i "emms-volume-amixer.el" \ diff --git a/pkgs/applications/video/dvd-slideshow/default.nix b/pkgs/applications/video/dvd-slideshow/default.nix index a6197c2e6e1..fe95c2c6d7d 100644 --- a/pkgs/applications/video/dvd-slideshow/default.nix +++ b/pkgs/applications/video/dvd-slideshow/default.nix @@ -1,10 +1,10 @@ -{ stdenv, fetchurl, writeScript, cdrtools, dvdauthor, ffmpeg, imagemagick, lame, mjpegtools, sox, transcode, vorbisTools }: +{ stdenv, fetchurl, writeScript, cdrtools, dvdauthor, ffmpeg, imagemagick, lame, mjpegtools, sox, transcode, vorbis-tools }: let wrapper = writeScript "dvd-slideshow.sh" '' #!/bin/bash # wrapper script for dvd-slideshow programs - export PATH=${cdrtools}/bin:${dvdauthor}/bin:${ffmpeg}/bin:${imagemagick}/bin:${lame}/bin:${mjpegtools}/bin:${sox}/bin:${transcode}/bin:${vorbisTools}/bin:$PATH + export PATH=${cdrtools}/bin:${dvdauthor}/bin:${ffmpeg}/bin:${imagemagick}/bin:${lame}/bin:${mjpegtools}/bin:${sox}/bin:${transcode}/bin:${vorbis-tools}/bin:$PATH dir=`dirname "$0"` exe=`basename "$0"` diff --git a/pkgs/development/libraries/snack/default.nix b/pkgs/development/libraries/snack/default.nix index ef2db5ae5a6..c2fdc8036c7 100644 --- a/pkgs/development/libraries/snack/default.nix +++ b/pkgs/development/libraries/snack/default.nix @@ -1,6 +1,6 @@ -# alsaLib vorbisTools python can be made optional +# alsaLib vorbis-tools python can be made optional -{ stdenv, fetchurl, python, tcl, tk, vorbisTools, pkgconfig, xlibsWrapper }: +{ stdenv, fetchurl, python, tcl, tk, vorbis-tools, pkgconfig, xlibsWrapper }: stdenv.mkDerivation { name = "snack-2.2.10"; @@ -14,7 +14,7 @@ stdenv.mkDerivation { postUnpack = ''sourceRoot="$sourceRoot/unix"''; - buildInputs = [ python tcl tk vorbisTools pkgconfig xlibsWrapper ]; + buildInputs = [ python tcl tk vorbis-tools pkgconfig xlibsWrapper ]; postInstall = "aoeu"; diff --git a/pkgs/misc/solfege/default.nix b/pkgs/misc/solfege/default.nix index 9426684165d..db1c94d7a86 100644 --- a/pkgs/misc/solfege/default.nix +++ b/pkgs/misc/solfege/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchurl, pkgconfig, python, pygtk, gettext, texinfo , ghostscript, pysqlite, librsvg, gdk_pixbuf, txt2man, timidity, mpg123 -, alsaUtils, vorbisTools, csound, lilypond +, alsaUtils, vorbis-tools, csound, lilypond , makeWrapper }: @@ -20,7 +20,7 @@ stdenv.mkDerivation rec { sed -i -e 's|wav_player=.*|wav_player=${alsaUtils}/bin/aplay|' \ -e 's|midi_player=.*|midi_player=${timidity}/bin/timidity|' \ -e 's|mp3_player=.*|mp3_player=${mpg123}/bin/mpg123|' \ - -e 's|ogg_player=.*|ogg_player=${vorbisTools}/bin/ogg123|' \ + -e 's|ogg_player=.*|ogg_player=${vorbis-tools}/bin/ogg123|' \ -e 's|csound=.*|csound=${csound}/bin/csound|' \ -e 's|lilypond-book=.*|lilypond-book=${lilypond}/bin/lilypond-book|' \ default.config diff --git a/pkgs/tools/cd-dvd/bashburn/default.nix b/pkgs/tools/cd-dvd/bashburn/default.nix index b188b6fb2b2..5d4ed2414c7 100644 --- a/pkgs/tools/cd-dvd/bashburn/default.nix +++ b/pkgs/tools/cd-dvd/bashburn/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchurl, utillinux , cdparanoia, cdrdao, dvdplusrwtools, flac, lame, mpg123, normalize -, vorbisTools, xorriso }: +, vorbis-tools, xorriso }: stdenv.mkDerivation rec { name = "bashburn-${version}"; @@ -25,8 +25,8 @@ stdenv.mkDerivation rec { BB_READCD=${xorriso}/bin/"xorriso -as mkisofs" \ BB_MP3ENC=${lame}/bin/lame \ BB_MP3DEC=${mpg123}/bin/mpg123 \ - BB_OGGENC=${vorbisTools}/bin/oggenc \ - BB_OGGDEC=${vorbisTools}/bin/oggdec \ + BB_OGGENC=${vorbis-tools}/bin/oggenc \ + BB_OGGDEC=${vorbis-tools}/bin/oggdec \ BB_FLACCMD=${flac}/bin/flac \ BB_EJECT=${utillinux}/bin/eject \ BB_NORMCMD=${normalize}/bin/normalize \ diff --git a/pkgs/tools/cd-dvd/cuetools/default.nix b/pkgs/tools/cd-dvd/cuetools/default.nix index bf876d52d45..d600f280400 100644 --- a/pkgs/tools/cd-dvd/cuetools/default.nix +++ b/pkgs/tools/cd-dvd/cuetools/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, autoreconfHook -, bison, flac, flex, id3v2, vorbisTools +, bison, flac, flex, id3v2, vorbis-tools }: stdenv.mkDerivation rec { @@ -13,7 +13,7 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ autoreconfHook ]; - buildInputs = [ bison flac flex id3v2 vorbisTools ]; + buildInputs = [ bison flac flex id3v2 vorbis-tools ]; meta = with stdenv.lib; { description = "A set of utilities for working with cue files and toc files"; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 59c86b25a00..7a1714285e1 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -13657,7 +13657,7 @@ let VoiceOfFaust = callPackage ../applications/audio/VoiceOfFaust { }; - vorbisTools = callPackage ../applications/audio/vorbis-tools { }; + vorbis-tools = callPackage ../applications/audio/vorbis-tools { }; vue = callPackage ../applications/misc/vue { }; @@ -15973,6 +15973,7 @@ aliases = with self; rec { quake3game = ioquake3; # added 2016-01-14 scim = sc-im; # added 2016-01-22 dwarf_fortress = dwarf-fortress; # added 2016-01-23 + vorbisTools = vorbis-tools; # added 2016-01-26 }; tweakAlias = _n: alias: with lib; diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 9717ffda79b..d6bfce3c762 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -11278,7 +11278,7 @@ in modules // { }; # Needed for tests only - buildInputs = [ pkgs.faad2 pkgs.flac pkgs.vorbisTools pkgs.liboggz ]; + buildInputs = [ pkgs.faad2 pkgs.flac pkgs.vorbis-tools pkgs.liboggz ]; meta = { description = "Python multimedia tagging library"; diff --git a/pkgs/top-level/release.nix b/pkgs/top-level/release.nix index f9aa4dbc076..a555dcbf4fa 100644 --- a/pkgs/top-level/release.nix +++ b/pkgs/top-level/release.nix @@ -210,7 +210,7 @@ let vice = linux; vimHugeX = linux; vncrec = linux; - vorbisTools = linux; + vorbis-tools = linux; vsftpd = linux; w3m = all; weechat = linux; From f8fc5a4dbb179a2dd331f69e023232cadeabaea0 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Tue, 26 Jan 2016 01:05:44 +0100 Subject: [PATCH 181/268] samsung-u-l-d: rename from old-style name; use normal gcc Tested with a Samsung CLP-325. Here goes nothing. --- pkgs/top-level/all-packages.nix | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 7a1714285e1..d909f127b3f 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -15628,13 +15628,7 @@ let mfcj470dw = callPackage_i686 ../misc/cups/drivers/mfcj470dw { }; - samsungUnifiedLinuxDriver = callPackage ../misc/cups/drivers/samsung { - gcc = import ../development/compilers/gcc/4.4 { - inherit stdenv fetchurl gmp mpfr noSysDirs gettext which; - texinfo = texinfo4; - profiledCompiler = true; - }; - }; + samsung-unified-linux-driver = callPackage ../misc/cups/drivers/samsung { }; sane-backends = callPackage ../applications/graphics/sane/backends { gt68xxFirmware = config.sane.gt68xxFirmware or null; @@ -15973,6 +15967,7 @@ aliases = with self; rec { quake3game = ioquake3; # added 2016-01-14 scim = sc-im; # added 2016-01-22 dwarf_fortress = dwarf-fortress; # added 2016-01-23 + samsungUnifiedLinuxDriver = samsung-unified-linux-driver; # added 2016-01-25 vorbisTools = vorbis-tools; # added 2016-01-26 }; From ba43edc0fb1c6768ef5955e557aa70d089389a51 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Romildo=20Malaquias?= Date: Mon, 25 Jan 2016 22:45:02 -0200 Subject: [PATCH 182/268] jrePlugin: add versions 7 and 8 --- pkgs/top-level/all-packages.nix | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 5218e54c000..40910d40c2b 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -4289,7 +4289,13 @@ let oraclejre8psu = lowPrio (pkgs.oraclejdk8psu_distro false false); - jrePlugin = lowPrio (pkgs.jdkdistro false true); + jrePlugin = jre8Plugin; + + jre6Plugin = lowPrio (pkgs.jdkdistro false true); + + jre7Plugin = lowPrio (pkgs.oraclejdk7distro false true); + + jre8Plugin = lowPrio (pkgs.oraclejdk8distro false true); supportsJDK = system == "i686-linux" || From cb6beb1eb3d22d9a7b6e01dc784157c2ac34db67 Mon Sep 17 00:00:00 2001 From: Charles Strahan Date: Mon, 25 Jan 2016 20:16:12 -0500 Subject: [PATCH 183/268] ghcjs: build haddock documentation From building reflex-dom (which has quite a few dependencies), it would appear that building the documentation no longer fails. --- pkgs/development/haskell-modules/configuration-ghcjs.nix | 4 ---- 1 file changed, 4 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-ghcjs.nix b/pkgs/development/haskell-modules/configuration-ghcjs.nix index 9bea0519151..6e8c0be7d0d 100644 --- a/pkgs/development/haskell-modules/configuration-ghcjs.nix +++ b/pkgs/development/haskell-modules/configuration-ghcjs.nix @@ -14,10 +14,6 @@ self: super: { inherit (pkgs.haskell.packages.ghc7102) jailbreak-cabal alex happy gtk2hs-buildtools; - # Many packages fail with: - # haddock: internal error: expectJust getPackageDetails - mkDerivation = drv: super.mkDerivation (drv // { doHaddock = false; }); - # This is the list of packages that are built into a booted ghcjs installation # It can be generated with the command: # nix-shell -p haskell.packages.ghcjs.ghc --command "ghcjs-pkg list | sed -n 's/^ \(.*\)-\([0-9.]*\)$/\1_\2/ p' | sed 's/\./_/g' | sed 's/-\(.\)/\U\1/' | sed 's/^\([^_]*\)\(.*\)$/\1 = null;/'" From af911744fdbb10cc21d3267c09adc9a06c53d9f3 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Tue, 26 Jan 2016 04:05:02 +0100 Subject: [PATCH 184/268] samsung-unified-linux-driver: add 1.00.37 Very experimental. Probably very broken. Adds support for newer models but removes it for some older ones. Hence not the default yet, if ever. --- .../drivers/samsung/{ => 4.00.39}/builder.sh | 0 .../cups/drivers/samsung/4.00.39/default.nix | 40 ++++++++ pkgs/misc/cups/drivers/samsung/default.nix | 96 ++++++++++++++----- pkgs/top-level/all-packages.nix | 3 +- 4 files changed, 115 insertions(+), 24 deletions(-) rename pkgs/misc/cups/drivers/samsung/{ => 4.00.39}/builder.sh (100%) create mode 100644 pkgs/misc/cups/drivers/samsung/4.00.39/default.nix diff --git a/pkgs/misc/cups/drivers/samsung/builder.sh b/pkgs/misc/cups/drivers/samsung/4.00.39/builder.sh similarity index 100% rename from pkgs/misc/cups/drivers/samsung/builder.sh rename to pkgs/misc/cups/drivers/samsung/4.00.39/builder.sh diff --git a/pkgs/misc/cups/drivers/samsung/4.00.39/default.nix b/pkgs/misc/cups/drivers/samsung/4.00.39/default.nix new file mode 100644 index 00000000000..27d21f86285 --- /dev/null +++ b/pkgs/misc/cups/drivers/samsung/4.00.39/default.nix @@ -0,0 +1,40 @@ +# Tested on linux-x86_64. Might work on linux-i386. Probably won't work on anything else. + +# To use this driver in NixOS, add it to printing.drivers in configuration.nix. +# configuration.nix might look like this when you're done: +# { pkgs, ... }: { +# printing = { +# enable = true; +# drivers = [ pkgs.samsungUnifiedLinuxDriver ]; +# }; +# (more stuff) +# } +# (This advice was tested on 2010 August 2.) + +{ stdenv, fetchurl, cups, gcc, ghostscript, glibc, patchelf }: + +# Do not bump lightly! Visit +# to see what will break when upgrading. Consider a new versioned attribute. +stdenv.mkDerivation rec { + name = "samsung-UnifiedLinuxDriver-${version}"; + version = "4.00.39"; + + src = fetchurl { + url = "http://www.bchemnet.com/suldr/driver/UnifiedLinuxDriver-${version}.tar.gz"; + sha256 = "144b4xggbzjfq7ga5nza7nra2cf6qn63z5ls7ba1jybkx1vm369k"; + }; + + buildInputs = [ cups gcc ghostscript glibc patchelf ]; + + inherit cups gcc ghostscript glibc; + + builder = ./builder.sh; + + meta = with stdenv.lib; { + description = "Samsung's Linux printing drivers; includes binaries without source code"; + homepage = http://www.samsung.com/; + license = licenses.unfree; + platforms = platforms.linux; + maintainers = with maintainers; [ nckx ]; + }; +} diff --git a/pkgs/misc/cups/drivers/samsung/default.nix b/pkgs/misc/cups/drivers/samsung/default.nix index 27d21f86285..34b5f58aed5 100644 --- a/pkgs/misc/cups/drivers/samsung/default.nix +++ b/pkgs/misc/cups/drivers/samsung/default.nix @@ -1,39 +1,89 @@ -# Tested on linux-x86_64. Might work on linux-i386. Probably won't work on anything else. +{ stdenv, fetchurl, patchelf, cups, libusb, libxml2 }: -# To use this driver in NixOS, add it to printing.drivers in configuration.nix. -# configuration.nix might look like this when you're done: -# { pkgs, ... }: { -# printing = { -# enable = true; -# drivers = [ pkgs.samsungUnifiedLinuxDriver ]; -# }; -# (more stuff) -# } -# (This advice was tested on 2010 August 2.) +let -{ stdenv, fetchurl, cups, gcc, ghostscript, glibc, patchelf }: + arch = if stdenv.system == "x86_64-linux" + then "x86_64" + else "i386"; -# Do not bump lightly! Visit -# to see what will break when upgrading. Consider a new versioned attribute. -stdenv.mkDerivation rec { - name = "samsung-UnifiedLinuxDriver-${version}"; - version = "4.00.39"; +in stdenv.mkDerivation rec { + name = "samsung-unified-linux-driver-${version}"; + version = "1.00.37"; src = fetchurl { + sha256 = "0r66l9zp0p1qgakh4j08hynwsr4lsgq5yrpxyr0x4ldvl0z2b1bb"; url = "http://www.bchemnet.com/suldr/driver/UnifiedLinuxDriver-${version}.tar.gz"; - sha256 = "144b4xggbzjfq7ga5nza7nra2cf6qn63z5ls7ba1jybkx1vm369k"; }; - buildInputs = [ cups gcc ghostscript glibc patchelf ]; + nativeBuildInputs = [ patchelf ]; - inherit cups gcc ghostscript glibc; + phases = [ "unpackPhase" "installPhase" ]; - builder = ./builder.sh; + installPhase = '' + my_patchelf() { + opts=(); while [[ "$1" != - ]]; do opts+=( "$1" ); shift; done; shift + for binary in "$@"; do + echo "Patching ELF file: $binary" + patchelf "''${opts[@]}" $binary + ldd $binary | grep "not found" && exit 1 + done; true + } + + my_patchelf \ + --set-interpreter $(cat $NIX_CC/nix-support/dynamic-linker) \ + --set-rpath ${cups}/lib:$(cat $NIX_CC/nix-support/orig-cc)/lib:${stdenv.glibc}/lib \ + - ${arch}/{pstosecps,rastertospl,smfpnetdiscovery} + + mkdir -p $out/etc/sane.d/dll.d/ + install -m644 noarch/etc/smfp.conf $out/etc/sane.d + echo smfp >> $out/etc/sane.d/dll.d/smfp-scanner + + mkdir -p $out/lib + my_patchelf \ + --set-rpath $(cat $NIX_CC/nix-support/orig-cc)/lib:${stdenv.glibc}/lib \ + - ${arch}/libscmssc.so* + install -m755 ${arch}/libscmssc.so* $out/lib + + mkdir -p $out/lib/cups/backend + install -m755 ${arch}/smfpnetdiscovery $out/lib/cups/backend + + mkdir -p $out/lib/cups/filter + install -m755 ${arch}/{pstosecps,rastertospl} $out/lib/cups/filter + + mkdir -p $out/lib/sane + my_patchelf \ + --set-rpath $(cat $NIX_CC/nix-support/orig-cc)/lib:${stdenv.glibc}/lib:${libusb}/lib:${libxml2}/lib \ + - ${arch}/libsane-smfp.so* + install -m755 ${arch}/libsane-smfp.so* $out/lib/sane + ln -s libsane-smfp.so.1.0.1 $out/lib/sane/libsane-smfp.so.1 + ln -s libsane-smfp.so.1 $out/lib/sane/libsane-smfp.so + + mkdir -p $out/lib/udev/rules.d + ( + OEM_FILE=noarch/oem.conf + INSTALL_LOG_FILE=/dev/null + . noarch/scripting_utils + . noarch/package_utils + . noarch/scanner-script.pkg + fill_full_template noarch/etc/smfp.rules.in $out/lib/udev/rules.d/60_smfp_samsung.rules + ) + + mkdir -p $out/share/ppd + gzip -9 noarch/share/ppd/*.ppd + cp -R noarch/share/ppd $out/share/ppd/suld + + cp -R noarch/share/locale $out/share + rm -r $out/share/locale/*/*/install.mo + ''; meta = with stdenv.lib; { - description = "Samsung's Linux printing drivers; includes binaries without source code"; - homepage = http://www.samsung.com/; + description = "Unified Linux Driver for Samsung printers and scanners"; + homepage = http://www.bchemnet.com/suldr; + downloadPage = http://www.bchemnet.com/suldr/driver/; license = licenses.unfree; + + # Tested on linux-x86_64. Might work on linux-i386. + # Probably won't work on anything else. platforms = platforms.linux; maintainers = with maintainers; [ nckx ]; }; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index d909f127b3f..ecaab504e32 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -15628,7 +15628,8 @@ let mfcj470dw = callPackage_i686 ../misc/cups/drivers/mfcj470dw { }; - samsung-unified-linux-driver = callPackage ../misc/cups/drivers/samsung { }; + samsung-unified-linux-driver_1_00_37 = callPackage ../misc/cups/drivers/samsung { }; + samsung-unified-linux-driver = callPackage ../misc/cups/drivers/samsung/4.00.39 { }; sane-backends = callPackage ../applications/graphics/sane/backends { gt68xxFirmware = config.sane.gt68xxFirmware or null; From 663cbd16b8f1fde3ba773be529a227d1a46abdb3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Romildo=20Malaquias?= Date: Tue, 26 Jan 2016 01:19:18 -0200 Subject: [PATCH 185/268] jflex: 1.4.3 -> 1.6.1 --- .../libraries/java/jflex/builder.sh | 6 ----- .../libraries/java/jflex/default.nix | 25 +++++++++++++++---- 2 files changed, 20 insertions(+), 11 deletions(-) delete mode 100755 pkgs/development/libraries/java/jflex/builder.sh diff --git a/pkgs/development/libraries/java/jflex/builder.sh b/pkgs/development/libraries/java/jflex/builder.sh deleted file mode 100755 index d95feb5eeb4..00000000000 --- a/pkgs/development/libraries/java/jflex/builder.sh +++ /dev/null @@ -1,6 +0,0 @@ -set -e -source $stdenv/setup - -tar zxvf $src -mkdir -p $out -mv $name/* $out diff --git a/pkgs/development/libraries/java/jflex/default.nix b/pkgs/development/libraries/java/jflex/default.nix index 5e54e800f55..12f9995b56a 100644 --- a/pkgs/development/libraries/java/jflex/default.nix +++ b/pkgs/development/libraries/java/jflex/default.nix @@ -1,11 +1,26 @@ {stdenv, fetchurl} : -stdenv.mkDerivation { - name = "jflex-1.4.3"; - builder = ./builder.sh; +stdenv.mkDerivation rec { + name = "jflex-1.6.1"; src = fetchurl { - url = http://jflex.de/jflex-1.4.3.tar.gz; - sha256 = "0sm74sgjvw01fsiqr5q9ipbm8rfyihf6yn00dqymhyc3wmbhr517"; + url = "http://jflex.de/${name}.tar.gz"; + sha256 = "1h7q2vhb4s42g4pqz5xxxliagprray7i9krr6hyaz1mjlx7gnycq"; + }; + + sourceRoot = name; + + phases = [ "unpackPhase" "installPhase" ]; + + installPhase = '' + mkdir -p $out + cp -a * $out + patchShebangs $out + ''; + + meta = { + homepage = http://www.jflex.de/; + description = "Lexical analyzer generator for Java, written in Java"; + license = stdenv.lib.licenses.bsd3; }; } From efc359c23135ebccc2835b37513f01adf73e2dac Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Tue, 26 Jan 2016 06:12:23 +0100 Subject: [PATCH 186/268] lz4: be just a bit more reproducible --- pkgs/tools/compression/lz4/default.nix | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/compression/lz4/default.nix b/pkgs/tools/compression/lz4/default.nix index 8340ea3fe8b..cdc42e4b848 100644 --- a/pkgs/tools/compression/lz4/default.nix +++ b/pkgs/tools/compression/lz4/default.nix @@ -11,8 +11,17 @@ stdenv.mkDerivation rec { owner = "Cyan4973"; }; + patches = [ ./install-on-freebsd.patch ] ; + buildInputs = stdenv.lib.optional doCheck valgrind; + # An ever-changing __DATE__ isn't very reproducible, so we must override it. + # But rather than displaying "()" or 1970, let --version show useful info: + NIX_CFLAGS_COMPILE = [ + ''-D__DATE__="${stdenv.cc.cc.name}"'' + "-Wno-builtin-macro-redefined" + ]; + enableParallelBuilding = true; makeFlags = [ "PREFIX=$(out)" ]; @@ -20,8 +29,6 @@ stdenv.mkDerivation rec { doCheck = false; # tests take a very long time checkTarget = "test"; - patches = [ ./install-on-freebsd.patch ] ; - meta = with stdenv.lib; { description = "Extremely fast compression algorithm"; longDescription = '' From ba0dcb95ad6a11c8fa576f73832d42618279df99 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Tue, 26 Jan 2016 06:16:45 +0100 Subject: [PATCH 187/268] neovim: fix -configured evaluation --- pkgs/applications/editors/neovim/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/editors/neovim/default.nix b/pkgs/applications/editors/neovim/default.nix index dcb27451310..1b984c0ff9c 100644 --- a/pkgs/applications/editors/neovim/default.nix +++ b/pkgs/applications/editors/neovim/default.nix @@ -145,7 +145,7 @@ let }; in if (vimAlias == false && configure == null) then neovim else stdenv.mkDerivation { - name = "neovim-${version}-configured"; + name = "neovim-${neovim.version}-configured"; inherit (neovim) version; nativeBuildInputs = [ makeWrapper ]; From c95bd5d08594ddf26280e7998e7c762aa5f0b01b Mon Sep 17 00:00:00 2001 From: Tony White Date: Tue, 26 Jan 2016 06:17:32 +0000 Subject: [PATCH 188/268] sddm: add numlock switch - added numlock on boot switch - simply add : services.xserver.displayManager.sddm.autoNumlock = true; to configuration.nix and sddm will start with numlock enabled. --- nixos/modules/services/x11/display-managers/sddm.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/nixos/modules/services/x11/display-managers/sddm.nix b/nixos/modules/services/x11/display-managers/sddm.nix index bcac83aa738..4d61afe0eae 100644 --- a/nixos/modules/services/x11/display-managers/sddm.nix +++ b/nixos/modules/services/x11/display-managers/sddm.nix @@ -31,6 +31,9 @@ let [General] HaltCommand=${pkgs.systemd}/bin/systemctl poweroff RebootCommand=${pkgs.systemd}/bin/systemctl reboot + ${optionalString cfg.autoNumlock '' + Numlock=on + ''} [Theme] Current=${cfg.theme} @@ -110,6 +113,14 @@ in ''; }; + autoNumlock = mkOption { + type = types.bool; + default = false; + description = '' + Enable numlock at login. + ''; + }; + setupScript = mkOption { type = types.str; default = ""; From e8fc1ea94b7b33da61479aae6b3c645da8ad210f Mon Sep 17 00:00:00 2001 From: Prayag Verma Date: Tue, 26 Jan 2016 14:19:25 +0530 Subject: [PATCH 189/268] COPYING: Update year range to 2016 (close #12621) --- COPYING | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/COPYING b/COPYING index 0d5734a591c..0408a7e40b7 100644 --- a/COPYING +++ b/COPYING @@ -1,4 +1,4 @@ -Copyright (c) 2003-2015 Eelco Dolstra and the Nixpkgs/NixOS contributors +Copyright (c) 2003-2016 Eelco Dolstra and the Nixpkgs/NixOS contributors Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the From 62900b026b30f1639a676cb12f046f955073d49b Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Tue, 26 Jan 2016 14:01:40 +0100 Subject: [PATCH 190/268] haskell-nats: fix overrides for GHC versions prior to 7.10.x. Closes https://github.com/NixOS/nixpkgs/issues/12622. --- pkgs/development/haskell-modules/configuration-ghc-6.12.x.nix | 1 + pkgs/development/haskell-modules/configuration-ghc-7.0.x.nix | 1 + pkgs/development/haskell-modules/configuration-ghc-7.2.x.nix | 1 + pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix | 1 + pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix | 1 + pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix | 1 + 6 files changed, 6 insertions(+) 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 6d4e7a7bb25..322d7ea3093 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-6.12.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-6.12.x.nix @@ -89,6 +89,7 @@ self: super: { split = super.split_0_1_4_3; # Needs hashable on pre 7.10.x compilers. + nats_1 = addBuildDepend super.nats_1 self.hashable; nats = addBuildDepend super.nats self.hashable; # Needs void on pre 7.10.x compilers. 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 cc5d03f05f5..6147be8f0f4 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.0.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.0.x.nix @@ -68,6 +68,7 @@ self: super: { doctest = dontHaddock super.doctest; # Needs hashable on pre 7.10.x compilers. + nats_1 = addBuildDepend super.nats_1 self.hashable; nats = addBuildDepend super.nats self.hashable; # Newer versions require bytestring >=0.10. 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 51962f161fc..63aab9e4567 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.2.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.2.x.nix @@ -69,6 +69,7 @@ self: super: { doctest = dontHaddock super.doctest; # Needs hashable on pre 7.10.x compilers. + nats_1 = addBuildDepend super.nats_1 self.hashable; nats = addBuildDepend super.nats self.hashable; # Newer versions require bytestring >=0.10. 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 f1774c04a8f..da7008b63f1 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix @@ -74,6 +74,7 @@ self: super: { control-monad-free = super.control-monad-free_0_5_3; # Needs hashable on pre 7.10.x compilers. + nats_1 = addBuildDepend super.nats_1 self.hashable; nats = addBuildDepend super.nats self.hashable; # Test suite won't compile. 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 f89ffc4c7c1..5c0d09127b9 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix @@ -77,6 +77,7 @@ self: super: { control-monad-free = super.control-monad-free_0_5_3; # Needs hashable on pre 7.10.x compilers. + nats_1 = addBuildDepend super.nats_1 self.hashable; nats = addBuildDepend super.nats self.hashable; # https://github.com/magthe/sandi/issues/7 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 81c060a4c3e..81379ce9c37 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix @@ -112,6 +112,7 @@ self: super: { self.webkitgtk3-javascriptcore ]; # Needs hashable on pre 7.10.x compilers. + nats_1 = addBuildDepend super.nats_1 self.hashable; nats = addBuildDepend super.nats self.hashable; # needs mtl-compat to build with mtl 2.1.x From 5ff34bac8ce3e8fb6d617cb9ceb5419d4526ef55 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Tue, 26 Jan 2016 14:03:06 +0100 Subject: [PATCH 191/268] build-support/source-tarball.nix: fix syntax highlighting in Emacs --- pkgs/build-support/release/source-tarball.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/build-support/release/source-tarball.nix b/pkgs/build-support/release/source-tarball.nix index b50077975c1..376cd0e1d15 100644 --- a/pkgs/build-support/release/source-tarball.nix +++ b/pkgs/build-support/release/source-tarball.nix @@ -66,7 +66,7 @@ stdenv.mkDerivation ( KEEPBUILDDIR="$out/`basename $TMPDIR`" header "Copying build directory to $KEEPBUILDDIR" mkdir -p $KEEPBUILDDIR - cp -R $TMPDIR/* $KEEPBUILDDIR + cp -R "$TMPDIR/"* $KEEPBUILDDIR stopNest fi fi From 981e8d55824717960809179a47bfeb81c8c1ee70 Mon Sep 17 00:00:00 2001 From: Ollie Charles Date: Tue, 26 Jan 2016 14:43:22 +0000 Subject: [PATCH 192/268] audiofile: Fix build on darwin --- pkgs/development/libraries/audiofile/default.nix | 7 +++++-- pkgs/top-level/all-packages.nix | 4 +++- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/pkgs/development/libraries/audiofile/default.nix b/pkgs/development/libraries/audiofile/default.nix index 1fe6d7b15a8..c76115000cb 100644 --- a/pkgs/development/libraries/audiofile/default.nix +++ b/pkgs/development/libraries/audiofile/default.nix @@ -1,10 +1,13 @@ -{ stdenv, fetchurl, alsaLib }: +{ stdenv, fetchurl, alsaLib, AudioUnit, CoreServices }: stdenv.mkDerivation rec { name = "audiofile-0.3.6"; nativeBuildInputs = stdenv.lib.optional stdenv.isLinux alsaLib; + buildInputs = (stdenv.lib.optional stdenv.isDarwin CoreServices) ++ + (stdenv.lib.optional stdenv.isDarwin AudioUnit); + src = fetchurl { url = "http://audiofile.68k.org/${name}.tar.gz"; sha256 = "0rb927zknk9kmhprd8rdr4azql4gn2dp75a36iazx2xhkbqhvind"; @@ -14,7 +17,7 @@ stdenv.mkDerivation rec { meta = with stdenv.lib; { description = "Library for reading and writing audio files in various formats"; - homepage = http://www.68k.org/~michael/audiofile/; + homepage = http://www.68k.org/~michael/audiofile/; license = licenses.lgpl21Plus; maintainers = with maintainers; [ lovek323 ]; platforms = platforms.unix; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index ecaab504e32..96f91be7505 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -6195,7 +6195,9 @@ let aubio = callPackage ../development/libraries/aubio { }; - audiofile = callPackage ../development/libraries/audiofile { }; + audiofile = callPackage ../development/libraries/audiofile { + inherit (darwin.apple_sdk.frameworks) AudioUnit CoreServices; + }; babl = callPackage ../development/libraries/babl { }; From 2352e2589ea0de775ffb6b68e66964c694953ea9 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Mon, 18 Jan 2016 13:57:27 +0100 Subject: [PATCH 193/268] audit: Disable in containers This barfs: Jan 18 12:46:32 machine 522i0x9l80z7gw56iahxjjsdjp0xi10q-audit-start[506]: The audit system is disabled --- nixos/modules/security/audit.nix | 4 +++- nixos/modules/virtualisation/container-config.nix | 3 +++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/nixos/modules/security/audit.nix b/nixos/modules/security/audit.nix index 3aa31e07907..f223f52ec48 100644 --- a/nixos/modules/security/audit.nix +++ b/nixos/modules/security/audit.nix @@ -93,9 +93,11 @@ in { config = mkIf (cfg.enable == "lock" || cfg.enable) { systemd.services.audit = { - description = "pseudo-service representing the kernel audit state"; + description = "Kernel Auditing"; wantedBy = [ "basic.target" ]; + unitConfig.ConditionVirtualization = "!container"; + path = [ pkgs.audit ]; serviceConfig = { diff --git a/nixos/modules/virtualisation/container-config.nix b/nixos/modules/virtualisation/container-config.nix index c210c8d5f25..b4f9d8b6fc1 100644 --- a/nixos/modules/virtualisation/container-config.nix +++ b/nixos/modules/virtualisation/container-config.nix @@ -19,6 +19,9 @@ with lib; # Shut up warnings about not having a boot loader. system.build.installBootLoader = "${pkgs.coreutils}/bin/true"; + # Not supported in systemd-nspawn containers. + security.audit.enable = false; + }; } From 1d20ec0ff9b8b87a9ac66ce587cc45b2f9d884a3 Mon Sep 17 00:00:00 2001 From: Patrick Mahoney Date: Sun, 24 Jan 2016 23:21:07 -0600 Subject: [PATCH 194/268] mono: build on darwin --- pkgs/development/compilers/mono/default.nix | 10 ++++++---- pkgs/top-level/all-packages.nix | 5 ++++- 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/pkgs/development/compilers/mono/default.nix b/pkgs/development/compilers/mono/default.nix index a7a4d8da4ed..940089cafe9 100644 --- a/pkgs/development/compilers/mono/default.nix +++ b/pkgs/development/compilers/mono/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, bison, pkgconfig, glib, gettext, perl, libgdiplus, libX11, callPackage, ncurses, zlib, withLLVM ? false, cacert }: +{ stdenv, fetchurl, bison, pkgconfig, glib, gettext, perl, libgdiplus, libX11, callPackage, ncurses, zlib, withLLVM ? false, cacert, Foundation, libobjc }: let llvm = callPackage ./llvm.nix { }; @@ -14,10 +14,12 @@ stdenv.mkDerivation rec { buildInputs = [ bison pkgconfig glib gettext perl libgdiplus libX11 ncurses zlib - ]; + ] + ++ (stdenv.lib.optionals stdenv.isDarwin [ Foundation libobjc ]); + propagatedBuildInputs = [glib]; - NIX_LDFLAGS = "-lgcc_s" ; + NIX_LDFLAGS = if stdenv.isDarwin then "" else "-lgcc_s" ; # To overcome the bug https://bugzilla.novell.com/show_bug.cgi?id=644723 dontDisableStatic = true; @@ -68,7 +70,7 @@ stdenv.mkDerivation rec { meta = { homepage = http://mono-project.com/; description = "Cross platform, open source .NET development framework"; - platforms = with stdenv.lib.platforms; linux; + platforms = with stdenv.lib.platforms; darwin ++ linux; maintainers = with stdenv.lib.maintainers; [ viric thoughtpolice obadz ]; license = stdenv.lib.licenses.free; # Combination of LGPL/X11/GPL ? }; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 7801abec048..d354e635804 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -4369,7 +4369,10 @@ let mlton = callPackage ../development/compilers/mlton { }; - mono = callPackage ../development/compilers/mono {}; + mono = callPackage ../development/compilers/mono { + inherit (darwin) libobjc; + inherit (darwin.apple_sdk.frameworks) Foundation; + }; monoDLLFixer = callPackage ../build-support/mono-dll-fixer { }; From 7d2f8eca1beaae3b94c568707698c6d612b0d645 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Tue, 26 Jan 2016 16:48:28 +0100 Subject: [PATCH 195/268] Revert "lz4: be just a bit more reproducible" This reverts commit efc359c23135ebccc2835b37513f01adf73e2dac, as it is no longer needed. See: https://github.com/NixOS/nixpkgs/commit/efc359c23135ebccc2835b37513f01adf73e2dac#commitcomment-15680107 --- pkgs/tools/compression/lz4/default.nix | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/pkgs/tools/compression/lz4/default.nix b/pkgs/tools/compression/lz4/default.nix index cdc42e4b848..8340ea3fe8b 100644 --- a/pkgs/tools/compression/lz4/default.nix +++ b/pkgs/tools/compression/lz4/default.nix @@ -11,17 +11,8 @@ stdenv.mkDerivation rec { owner = "Cyan4973"; }; - patches = [ ./install-on-freebsd.patch ] ; - buildInputs = stdenv.lib.optional doCheck valgrind; - # An ever-changing __DATE__ isn't very reproducible, so we must override it. - # But rather than displaying "()" or 1970, let --version show useful info: - NIX_CFLAGS_COMPILE = [ - ''-D__DATE__="${stdenv.cc.cc.name}"'' - "-Wno-builtin-macro-redefined" - ]; - enableParallelBuilding = true; makeFlags = [ "PREFIX=$(out)" ]; @@ -29,6 +20,8 @@ stdenv.mkDerivation rec { doCheck = false; # tests take a very long time checkTarget = "test"; + patches = [ ./install-on-freebsd.patch ] ; + meta = with stdenv.lib; { description = "Extremely fast compression algorithm"; longDescription = '' From 42e53ba62c46d3f48440a5859f3530ba54fe25d8 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 26 Jan 2016 16:54:54 +0100 Subject: [PATCH 196/268] nix: 1.10 -> 1.11.1 --- pkgs/tools/package-management/nix/default.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/package-management/nix/default.nix b/pkgs/tools/package-management/nix/default.nix index b7b24078077..d615ac10646 100644 --- a/pkgs/tools/package-management/nix/default.nix +++ b/pkgs/tools/package-management/nix/default.nix @@ -89,13 +89,15 @@ in rec { nix = nixStable; nixStable = common rec { - name = "nix-1.10"; + name = "nix-1.11.1"; src = fetchurl { url = "http://nixos.org/releases/nix/${name}/${name}.tar.xz"; - sha256 = "5612ca7a549dd1ee20b208123e041aaa95a414a0e8f650ea88c672dc023d10f6"; + sha256 = "21a99b3d0afdbe10241aaf506738fd0a81ff868e3d7c666e3cb6b621a926ea7a"; }; }; + nixUnstable = nixStable; + /* nixUnstable = lib.lowPrio (common rec { name = "nix-1.11pre4379_786046c"; src = fetchurl { @@ -103,5 +105,6 @@ in rec { sha256 = "ff42c70697fce7ca6eade622a31e5fbe45aed0edf1204fb491b40df207a807d5"; }; }); + */ } From 137c15fa3b0b90a5256a3d6f61565c60cebb7b13 Mon Sep 17 00:00:00 2001 From: Christoph Hrdinka Date: Tue, 26 Jan 2016 17:43:49 +0100 Subject: [PATCH 197/268] goPackages.go-humanize: init at git-25.11.2015 --- pkgs/top-level/go-packages.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index a519233e3af..8d90ebf72fa 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -1413,6 +1413,13 @@ let sha256 = "14ph12krn5zlg00vh9g6g08lkfjxnpw46nzadrfb718yl1hgyk3g"; }; + go-humanize = buildFromGitHub { + rev = "8929fe90cee4b2cb9deb468b51fb34eba64d1bf0"; + owner = "dustin"; + repo = "go-humanize"; + sha256 = "1g155kxjh6hd3ibx41nbpj6f7h5bh54zgl9dr53xzg2xlxljgjy0"; + }; + go-ini = buildFromGitHub { rev = "a98ad7ee00ec53921f08832bc06ecf7fd600e6a1"; owner = "vaughan0"; From f562908040fb59cdd4c10e7dd51b2fa16c61c7e7 Mon Sep 17 00:00:00 2001 From: Christoph Hrdinka Date: Tue, 26 Jan 2016 17:45:20 +0100 Subject: [PATCH 198/268] goPackages.uilive: init at git-24.12.2015 --- pkgs/top-level/go-packages.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index 8d90ebf72fa..7f975ac5920 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -3416,6 +3416,13 @@ let sha256 = "0gkgkw04ndr5y7hrdy0r4v2drs5srwfcw2bs1gyas066hwl84xyw"; }; + uilive = buildFromGitHub { + rev = "1b9b73fa2b2cc24489b1aba4d29a82b12cd0a71f"; + owner = "gosuri"; + repo = "uilive"; + sha256 = "0669f21hd5cw74irrfakdpvxn608cd5xy6s2nyp5kgcy2ijrq4ab"; + }; + urlesc = buildFromGitHub { rev = "5fa9ff0392746aeae1c4b37fcc42c65afa7a9587"; owner = "opennota"; From 62227e1ca17a55c69b0c90a1bc88fc172d37dfdc Mon Sep 17 00:00:00 2001 From: Christoph Hrdinka Date: Tue, 26 Jan 2016 17:46:07 +0100 Subject: [PATCH 199/268] goPackages.uiprogress: init at git-24.12.2015 --- pkgs/top-level/go-packages.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index 7f975ac5920..e4fe7c8b809 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -3423,6 +3423,14 @@ let sha256 = "0669f21hd5cw74irrfakdpvxn608cd5xy6s2nyp5kgcy2ijrq4ab"; }; + uiprogress = buildFromGitHub { + buildInputs = [ uilive ]; + rev = "fd1c82df78a6c1f5ddbd3b6ec46407ea0acda1ad"; + owner = "gosuri"; + repo = "uiprogress"; + sha256 = "1s61vp2h6n1d8y1zqr2ca613ch5n18rx28waz6a8im94sgzzawp7"; + }; + urlesc = buildFromGitHub { rev = "5fa9ff0392746aeae1c4b37fcc42c65afa7a9587"; owner = "opennota"; From 7173d5d0fec36692548e39f97b8f6341c7eeee5b Mon Sep 17 00:00:00 2001 From: Christoph Hrdinka Date: Tue, 26 Jan 2016 17:47:44 +0100 Subject: [PATCH 200/268] goPackages.go-backblaze: init at git-13.12.2015 --- pkgs/top-level/go-packages.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index e4fe7c8b809..b53f7d52403 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -1228,6 +1228,15 @@ let propagatedBuildInputs = [ pretty ]; }; + go-backblaze = buildFromGitHub { + buildInputs = [ go-flags go-humanize uilive uiprogress ]; + goPackagePath = "gopkg.in/kothar/go-backblaze.v0"; + rev = "373819725fc560fa962c6cd883b533d2ebec4844"; + owner = "kothar"; + repo = "go-backblaze"; + sha256 = "1kmlwfnnfd4h46bb9pz2gw1hxqm1pzkwvidfmnc0zkrilaywk6fx"; + }; + go-bencode = buildGoPackage rec { version = "1.1.1"; name = "go-bencode-${version}"; From 890f000146eb499a9ab292ec875f7bf0c99701af Mon Sep 17 00:00:00 2001 From: Christoph Hrdinka Date: Tue, 26 Jan 2016 17:54:53 +0100 Subject: [PATCH 201/268] goPackages.git-annex-remote-b2: init at 0.2 --- .../version-management/git-and-tools/default.nix | 2 ++ pkgs/top-level/go-packages.nix | 8 ++++++++ 2 files changed, 10 insertions(+) diff --git a/pkgs/applications/version-management/git-and-tools/default.nix b/pkgs/applications/version-management/git-and-tools/default.nix index 1bf58195f5e..0aea48cb056 100644 --- a/pkgs/applications/version-management/git-and-tools/default.nix +++ b/pkgs/applications/version-management/git-and-tools/default.nix @@ -45,6 +45,8 @@ rec { git-annex = pkgs.haskellPackages.git-annex-with-assistant; gitAnnex = git-annex; + git-annex-remote-b2 = pkgs.goPackages.git-annex-remote-b2; + qgit = import ./qgit { inherit fetchurl stdenv; inherit (xorg) libXext libX11; diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index b53f7d52403..7a80200c60d 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -862,6 +862,14 @@ let subPackages = [ "./" ]; # don't try to build test fixtures }; + git-annex-remote-b2 = buildFromGitHub { + buildInputs = [ go go-backblaze ]; + owner = "encryptio"; + repo = "git-annex-remote-b2"; + rev = "v0.2"; + sha256 = "1139rzdvlj3hanqsccfinprvrzf4qjc5n4f0r21jp9j24yhjs6j2"; + }; + git-appraise = buildFromGitHub { rev = "v0.3"; owner = "google"; From cf40e86fb01959787ed99fe8528c97a5c3b4fec7 Mon Sep 17 00:00:00 2001 From: Rok Garbas Date: Tue, 26 Jan 2016 18:12:01 +0100 Subject: [PATCH 202/268] nginx: 1.8.0->1.8.1, 1.9.9->1.9.10 --- pkgs/servers/http/nginx/default.nix | 4 ++-- pkgs/servers/http/nginx/unstable.nix | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/servers/http/nginx/default.nix b/pkgs/servers/http/nginx/default.nix index f6b4771e951..6944a89477a 100644 --- a/pkgs/servers/http/nginx/default.nix +++ b/pkgs/servers/http/nginx/default.nix @@ -6,10 +6,10 @@ with stdenv.lib; let - version = "1.8.0"; + version = "1.8.1"; mainSrc = fetchurl { url = "http://nginx.org/download/nginx-${version}.tar.gz"; - sha256 = "1mgkkmmwkhmpn68sdvbd73ssv6lpqhh864fsyvc1ij4hk4is3k13"; + sha256 = "1dwpyw4pvhj68vxramqxm8f79pqz9lrm8mvifbn49h3615ikqjwg"; }; in diff --git a/pkgs/servers/http/nginx/unstable.nix b/pkgs/servers/http/nginx/unstable.nix index ae8245d5714..994a3a29480 100644 --- a/pkgs/servers/http/nginx/unstable.nix +++ b/pkgs/servers/http/nginx/unstable.nix @@ -7,10 +7,10 @@ with stdenv.lib; let - version = "1.9.9"; + version = "1.9.10"; mainSrc = fetchurl { url = "http://nginx.org/download/nginx-${version}.tar.gz"; - sha256 = "0wwd0q00pnkw4gjn3izjr63sndp7piyc5k5mbjm369f824mvnrny"; + sha256 = "1n9icvi9hq7gak21ixlhcyazjx2yjqlbws07i2habc6a8ildf57v"; }; in From 2817a53f2e2eb628e4555a64e8c4124103c0db47 Mon Sep 17 00:00:00 2001 From: Christoph Hrdinka Date: Tue, 26 Jan 2016 17:32:49 +0100 Subject: [PATCH 203/268] duplicity: 0.7.02 -> 0.7.06 --- pkgs/tools/backup/duplicity/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/backup/duplicity/default.nix b/pkgs/tools/backup/duplicity/default.nix index 556b9651200..ea58ca3f8c1 100644 --- a/pkgs/tools/backup/duplicity/default.nix +++ b/pkgs/tools/backup/duplicity/default.nix @@ -3,14 +3,14 @@ }: let - version = "0.7.02"; + version = "0.7.06"; in stdenv.mkDerivation { name = "duplicity-${version}"; src = fetchurl { url = "http://code.launchpad.net/duplicity/0.7-series/${version}/+download/duplicity-${version}.tar.gz"; - sha256 = "0fh3xl4xc7cpi7iam34qd0ndqp1641kfw2609yp40lr78fx65530"; + sha256 = "133zdi1rbiacvzjys7q3vjm7x84kmr51bsgs037rjhw9vdg5jx80"; }; installPhase = '' From 7bec7136c0759be8f1f6f9b556a6ccacd08359d4 Mon Sep 17 00:00:00 2001 From: Christoph Hrdinka Date: Tue, 26 Jan 2016 19:17:10 +0100 Subject: [PATCH 204/268] b2: init at git-26.01.2016 --- pkgs/tools/backup/b2/default.nix | 30 ++++++++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 32 insertions(+) create mode 100644 pkgs/tools/backup/b2/default.nix diff --git a/pkgs/tools/backup/b2/default.nix b/pkgs/tools/backup/b2/default.nix new file mode 100644 index 00000000000..15a48b76579 --- /dev/null +++ b/pkgs/tools/backup/b2/default.nix @@ -0,0 +1,30 @@ +{ fetchFromGitHub, pythonPackages, stdenv }: + +stdenv.mkDerivation rec { + name = "b2-${version}"; + version = "git-26.01.2016"; + + src = fetchFromGitHub { + owner = "Backblaze"; + repo = "B2_Command_Line_Tool"; + rev = "b3f06fd53eb1c9a07740b962284753cba413a7b8"; + sha256 = "0kn2lkh8hp6g8q88glyz03z1r8a47pqm91dc5w083i334swqkjp2"; + }; + + buildInputs = [ pythonPackages.wrapPython ]; + + installPhase = '' + mkdir -p $out/bin + cp b2 $out/bin + ''; + + postInstall = "wrapPythonPrograms"; + + meta = with stdenv.lib; { + homepage = https://github.com/Backblaze/B2_Command_Line_Tool; + description = "CLI for accessing Backblaze's B2 Cloud Storage"; + license = licenses.mit; + platforms = platforms.all; + maintainers = with maintainers; [ hrdinka ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 96f91be7505..bd370da16c8 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -972,6 +972,8 @@ let asynk = callPackage ../tools/networking/asynk { }; + b2 = callPackage ../tools/backup/b2 { }; + bacula = callPackage ../tools/backup/bacula { }; bareos = callPackage ../tools/backup/bareos { }; From 9c6f3dcbcc52bbfdc98fff6ac781431e3244010d Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Tue, 26 Jan 2016 22:35:34 +0100 Subject: [PATCH 205/268] cpuminer: 2.4.2 -> 2.4.3 --- pkgs/tools/misc/cpuminer/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/misc/cpuminer/default.nix b/pkgs/tools/misc/cpuminer/default.nix index 713c0a92329..67249161e84 100644 --- a/pkgs/tools/misc/cpuminer/default.nix +++ b/pkgs/tools/misc/cpuminer/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "cpuminer-${version}"; - version = "2.4.2"; + version = "2.4.3"; src = fetchurl { url = "mirror://sourceforge/cpuminer/pooler-${name}.tar.gz"; - sha256 = "1ds5yfxf25pd8y5z5gh689qb80m4dqw2dy3yx87hibnprlaiym0n"; + sha256 = "1p66v96pz3vk1khwlmc26fg2d06c001755rrkcdv5wh8zyg6wv99"; }; buildInputs = [ curl jansson ]; From 5bbf10409ee2d2a5a8304e440067da6ad7e0277c Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Wed, 27 Jan 2016 00:45:21 +0300 Subject: [PATCH 206/268] steam: actually propagate flags to the runtime, now from chrootenv wrapper Example: instead of (steamPackages.override { newStdcpp = true; }).steam-chrootenv (which wasn't working anyway) you now do just: steam.override { newStdcpp = true; } --- pkgs/games/steam/chrootenv.nix | 11 ++++++++--- pkgs/games/steam/default.nix | 10 ++-------- 2 files changed, 10 insertions(+), 11 deletions(-) diff --git a/pkgs/games/steam/chrootenv.nix b/pkgs/games/steam/chrootenv.nix index fc0e70e4354..e6652d2f023 100644 --- a/pkgs/games/steam/chrootenv.nix +++ b/pkgs/games/steam/chrootenv.nix @@ -1,6 +1,9 @@ { lib, buildFHSUserEnv, steam -, withJava ? false +, withJava ? false , withPrimus ? false +, nativeOnly ? false +, runtimeOnly ? false +, newStdcpp ? false }: buildFHSUserEnv { @@ -20,7 +23,7 @@ buildFHSUserEnv { # Needed by gdialog, including in the steam-runtime perl ] - ++ lib.optional withJava jdk + ++ lib.optional withJava jdk ++ lib.optional withPrimus primus ; @@ -38,7 +41,9 @@ buildFHSUserEnv { gst_all_1.gst-plugins-ugly libdrm - steamPackages.steam-runtime-wrapped + (steamPackages.steam-runtime-wrapped.override { + inherit nativeOnly runtimeOnly newStdcpp; + }) ]; extraBuildCommands = '' diff --git a/pkgs/games/steam/default.nix b/pkgs/games/steam/default.nix index dd02903dcb2..64f8cfe2c28 100644 --- a/pkgs/games/steam/default.nix +++ b/pkgs/games/steam/default.nix @@ -1,17 +1,11 @@ -{ pkgs, newScope -, nativeOnly ? false -, runtimeOnly ? false -, newStdcpp ? false -}: +{ pkgs, newScope }: let callPackage = newScope self; self = rec { steam-runtime = callPackage ./runtime.nix { }; - steam-runtime-wrapped = callPackage ./runtime-wrapped.nix { - inherit nativeOnly runtimeOnly newStdcpp; - }; + steam-runtime-wrapped = callPackage ./runtime-wrapped.nix { }; steam = callPackage ./steam.nix { }; steam-chrootenv = callPackage ./chrootenv.nix { }; steam-fonts = callPackage ./fonts.nix { }; From ed8b81e0df72978e0cbc09723895f9080c757239 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Wed, 27 Jan 2016 00:16:14 +0100 Subject: [PATCH 207/268] simplescreenrecorder: update to version 0.3.6 --- pkgs/applications/video/simplescreenrecorder/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/video/simplescreenrecorder/default.nix b/pkgs/applications/video/simplescreenrecorder/default.nix index 8560b83d5fa..a5fb122cf89 100644 --- a/pkgs/applications/video/simplescreenrecorder/default.nix +++ b/pkgs/applications/video/simplescreenrecorder/default.nix @@ -4,11 +4,11 @@ stdenv.mkDerivation rec { name = "simplescreenrecorder-${version}"; - version = "0.3.3"; + version = "0.3.6"; src = fetchurl { url = "https://github.com/MaartenBaert/ssr/archive/${version}.tar.gz"; - sha256 = "09mcmvqbzq2blv404pklv6fc8ci3a9090p42rdsgmlr775bdyxfb"; + sha256 = "1d89ncspjd8c4mckf0nb6y3hrxpv4rjpbj868pznhvfmdgr5nvql"; }; buildInputs = [ From 0d8c3e278be69719e945e2faac0ca159b5e9d2d7 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 22 Jan 2016 22:30:50 +0100 Subject: [PATCH 208/268] hackage-packages.nix: update Haskell package set This update was generated by hackage2nix v20151217-9-geddefc2 using the following inputs: - Nixpkgs: https://github.com/NixOS/nixpkgs/commit/066b92d429fc10e5288603162b130b335865da0b - Hackage: https://github.com/commercialhaskell/all-cabal-hashes/commit/e664cee71ef4400b3d1898d5468ec5f8592ffd87 - LTS Haskell: https://github.com/fpco/lts-haskell/commit/9b9c0dc0e337ee769438a8da43f3a7af0279b809 - Stackage Nightly: https://github.com/fpco/stackage-nightly/commit/c5293e6b9b6dc7eb2066f1cd685e8982149d1d94 --- .../haskell-modules/configuration-lts-0.0.nix | 15 + .../haskell-modules/configuration-lts-0.1.nix | 15 + .../haskell-modules/configuration-lts-0.2.nix | 15 + .../haskell-modules/configuration-lts-0.3.nix | 15 + .../haskell-modules/configuration-lts-0.4.nix | 15 + .../haskell-modules/configuration-lts-0.5.nix | 15 + .../haskell-modules/configuration-lts-0.6.nix | 16 + .../haskell-modules/configuration-lts-0.7.nix | 16 + .../haskell-modules/configuration-lts-1.0.nix | 16 + .../haskell-modules/configuration-lts-1.1.nix | 16 + .../configuration-lts-1.10.nix | 16 + .../configuration-lts-1.11.nix | 16 + .../configuration-lts-1.12.nix | 16 + .../configuration-lts-1.13.nix | 16 + .../configuration-lts-1.14.nix | 16 + .../configuration-lts-1.15.nix | 17 +- .../haskell-modules/configuration-lts-1.2.nix | 16 + .../haskell-modules/configuration-lts-1.4.nix | 16 + .../haskell-modules/configuration-lts-1.5.nix | 16 + .../haskell-modules/configuration-lts-1.7.nix | 16 + .../haskell-modules/configuration-lts-1.8.nix | 16 + .../haskell-modules/configuration-lts-1.9.nix | 16 + .../haskell-modules/configuration-lts-2.0.nix | 17 +- .../haskell-modules/configuration-lts-2.1.nix | 17 +- .../configuration-lts-2.10.nix | 17 +- .../configuration-lts-2.11.nix | 17 +- .../configuration-lts-2.12.nix | 17 +- .../configuration-lts-2.13.nix | 17 +- .../configuration-lts-2.14.nix | 17 +- .../configuration-lts-2.15.nix | 17 +- .../configuration-lts-2.16.nix | 17 +- .../configuration-lts-2.17.nix | 17 +- .../configuration-lts-2.18.nix | 17 +- .../configuration-lts-2.19.nix | 17 +- .../haskell-modules/configuration-lts-2.2.nix | 17 +- .../configuration-lts-2.20.nix | 17 +- .../configuration-lts-2.21.nix | 17 +- .../configuration-lts-2.22.nix | 17 +- .../haskell-modules/configuration-lts-2.3.nix | 17 +- .../haskell-modules/configuration-lts-2.4.nix | 17 +- .../haskell-modules/configuration-lts-2.5.nix | 17 +- .../haskell-modules/configuration-lts-2.6.nix | 17 +- .../haskell-modules/configuration-lts-2.7.nix | 17 +- .../haskell-modules/configuration-lts-2.8.nix | 17 +- .../haskell-modules/configuration-lts-2.9.nix | 17 +- .../haskell-modules/configuration-lts-3.0.nix | 22 +- .../haskell-modules/configuration-lts-3.1.nix | 22 +- .../configuration-lts-3.10.nix | 27 +- .../configuration-lts-3.11.nix | 27 +- .../configuration-lts-3.12.nix | 27 +- .../configuration-lts-3.13.nix | 27 +- .../configuration-lts-3.14.nix | 27 +- .../configuration-lts-3.15.nix | 28 +- .../configuration-lts-3.16.nix | 28 +- .../configuration-lts-3.17.nix | 29 +- .../configuration-lts-3.18.nix | 29 +- .../configuration-lts-3.19.nix | 29 +- .../haskell-modules/configuration-lts-3.2.nix | 22 +- .../configuration-lts-3.20.nix | 30 +- .../configuration-lts-3.21.nix | 31 +- .../configuration-lts-3.22.nix | 31 +- .../haskell-modules/configuration-lts-3.3.nix | 23 +- .../haskell-modules/configuration-lts-3.4.nix | 23 +- .../haskell-modules/configuration-lts-3.5.nix | 23 +- .../haskell-modules/configuration-lts-3.6.nix | 23 +- .../haskell-modules/configuration-lts-3.7.nix | 24 +- .../haskell-modules/configuration-lts-3.8.nix | 24 +- .../haskell-modules/configuration-lts-3.9.nix | 25 +- .../haskell-modules/configuration-lts-4.0.nix | 36 +- .../haskell-modules/configuration-lts-4.1.nix | 36 +- .../haskell-modules/configuration-lts-4.2.nix | 36 +- .../haskell-modules/configuration-lts-5.0.nix | 7558 +++++++++++++++++ .../haskell-modules/hackage-packages.nix | 1746 +++- 73 files changed, 10269 insertions(+), 482 deletions(-) create mode 100644 pkgs/development/haskell-modules/configuration-lts-5.0.nix diff --git a/pkgs/development/haskell-modules/configuration-lts-0.0.nix b/pkgs/development/haskell-modules/configuration-lts-0.0.nix index 4e3fda8b5d2..9cda25a9057 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.0.nix @@ -1576,6 +1576,7 @@ self: super: { "bdd" = dontDistribute super."bdd"; "bdelta" = dontDistribute super."bdelta"; "bdo" = dontDistribute super."bdo"; + "beam" = dontDistribute super."beam"; "beamable" = dontDistribute super."beamable"; "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; @@ -3680,6 +3681,13 @@ self: super: { "googleplus" = dontDistribute super."googleplus"; "googlepolyline" = dontDistribute super."googlepolyline"; "gopherbot" = dontDistribute super."gopherbot"; + "gore-and-ash" = dontDistribute super."gore-and-ash"; + "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; + "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; + "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; + "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; + "gore-and-ash-sync" = dontDistribute super."gore-and-ash-sync"; "gpah" = dontDistribute super."gpah"; "gpcsets" = dontDistribute super."gpcsets"; "gpolyline" = dontDistribute super."gpolyline"; @@ -4601,6 +4609,7 @@ self: super: { "hspec-experimental" = dontDistribute super."hspec-experimental"; "hspec-jenkins" = dontDistribute super."hspec-jenkins"; "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-megaparsec" = dontDistribute super."hspec-megaparsec"; "hspec-meta" = doDistribute super."hspec-meta_2_0_0"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; @@ -4798,6 +4807,7 @@ self: super: { "hyphenate" = dontDistribute super."hyphenate"; "hyphenation" = doDistribute super."hyphenation_0_4"; "hypher" = dontDistribute super."hypher"; + "hzaif" = dontDistribute super."hzaif"; "hzk" = dontDistribute super."hzk"; "hzulip" = dontDistribute super."hzulip"; "i18n" = dontDistribute super."i18n"; @@ -5578,6 +5588,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13"; "markdown-kate" = dontDistribute super."markdown-kate"; @@ -5935,6 +5946,7 @@ self: super: { "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; "nano-cryptr" = dontDistribute super."nano-cryptr"; + "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; "nano-md5" = dontDistribute super."nano-md5"; "nanoAgda" = dontDistribute super."nanoAgda"; @@ -6103,6 +6115,7 @@ self: super: { "null-canvas" = dontDistribute super."null-canvas"; "nullary" = dontDistribute super."nullary"; "number" = dontDistribute super."number"; + "number-length" = dontDistribute super."number-length"; "numbering" = dontDistribute super."numbering"; "numerals" = dontDistribute super."numerals"; "numerals-base" = dontDistribute super."numerals-base"; @@ -6489,6 +6502,7 @@ self: super: { "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; "plailude" = dontDistribute super."plailude"; + "plan-b" = dontDistribute super."plan-b"; "planar-graph" = dontDistribute super."planar-graph"; "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; @@ -7957,6 +7971,7 @@ self: super: { "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" = doDistribute super."temporary_1_2_0_3"; "temporary-resourcet" = dontDistribute super."temporary-resourcet"; "tempus" = dontDistribute super."tempus"; "tempus-fugit" = dontDistribute super."tempus-fugit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.1.nix b/pkgs/development/haskell-modules/configuration-lts-0.1.nix index a9ab5b58210..300a95e2c17 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.1.nix @@ -1576,6 +1576,7 @@ self: super: { "bdd" = dontDistribute super."bdd"; "bdelta" = dontDistribute super."bdelta"; "bdo" = dontDistribute super."bdo"; + "beam" = dontDistribute super."beam"; "beamable" = dontDistribute super."beamable"; "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; @@ -3680,6 +3681,13 @@ self: super: { "googleplus" = dontDistribute super."googleplus"; "googlepolyline" = dontDistribute super."googlepolyline"; "gopherbot" = dontDistribute super."gopherbot"; + "gore-and-ash" = dontDistribute super."gore-and-ash"; + "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; + "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; + "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; + "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; + "gore-and-ash-sync" = dontDistribute super."gore-and-ash-sync"; "gpah" = dontDistribute super."gpah"; "gpcsets" = dontDistribute super."gpcsets"; "gpolyline" = dontDistribute super."gpolyline"; @@ -4601,6 +4609,7 @@ self: super: { "hspec-experimental" = dontDistribute super."hspec-experimental"; "hspec-jenkins" = dontDistribute super."hspec-jenkins"; "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-megaparsec" = dontDistribute super."hspec-megaparsec"; "hspec-meta" = doDistribute super."hspec-meta_2_0_0"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; @@ -4798,6 +4807,7 @@ self: super: { "hyphenate" = dontDistribute super."hyphenate"; "hyphenation" = doDistribute super."hyphenation_0_4"; "hypher" = dontDistribute super."hypher"; + "hzaif" = dontDistribute super."hzaif"; "hzk" = dontDistribute super."hzk"; "hzulip" = dontDistribute super."hzulip"; "i18n" = dontDistribute super."i18n"; @@ -5578,6 +5588,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13"; "markdown-kate" = dontDistribute super."markdown-kate"; @@ -5935,6 +5946,7 @@ self: super: { "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; "nano-cryptr" = dontDistribute super."nano-cryptr"; + "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; "nano-md5" = dontDistribute super."nano-md5"; "nanoAgda" = dontDistribute super."nanoAgda"; @@ -6103,6 +6115,7 @@ self: super: { "null-canvas" = dontDistribute super."null-canvas"; "nullary" = dontDistribute super."nullary"; "number" = dontDistribute super."number"; + "number-length" = dontDistribute super."number-length"; "numbering" = dontDistribute super."numbering"; "numerals" = dontDistribute super."numerals"; "numerals-base" = dontDistribute super."numerals-base"; @@ -6489,6 +6502,7 @@ self: super: { "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; "plailude" = dontDistribute super."plailude"; + "plan-b" = dontDistribute super."plan-b"; "planar-graph" = dontDistribute super."planar-graph"; "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; @@ -7957,6 +7971,7 @@ self: super: { "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" = doDistribute super."temporary_1_2_0_3"; "temporary-resourcet" = dontDistribute super."temporary-resourcet"; "tempus" = dontDistribute super."tempus"; "tempus-fugit" = dontDistribute super."tempus-fugit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.2.nix b/pkgs/development/haskell-modules/configuration-lts-0.2.nix index 6818ecf8d0f..12c95ce49f9 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.2.nix @@ -1576,6 +1576,7 @@ self: super: { "bdd" = dontDistribute super."bdd"; "bdelta" = dontDistribute super."bdelta"; "bdo" = dontDistribute super."bdo"; + "beam" = dontDistribute super."beam"; "beamable" = dontDistribute super."beamable"; "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; @@ -3680,6 +3681,13 @@ self: super: { "googleplus" = dontDistribute super."googleplus"; "googlepolyline" = dontDistribute super."googlepolyline"; "gopherbot" = dontDistribute super."gopherbot"; + "gore-and-ash" = dontDistribute super."gore-and-ash"; + "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; + "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; + "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; + "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; + "gore-and-ash-sync" = dontDistribute super."gore-and-ash-sync"; "gpah" = dontDistribute super."gpah"; "gpcsets" = dontDistribute super."gpcsets"; "gpolyline" = dontDistribute super."gpolyline"; @@ -4601,6 +4609,7 @@ self: super: { "hspec-experimental" = dontDistribute super."hspec-experimental"; "hspec-jenkins" = dontDistribute super."hspec-jenkins"; "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-megaparsec" = dontDistribute super."hspec-megaparsec"; "hspec-meta" = doDistribute super."hspec-meta_2_0_0"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; @@ -4798,6 +4807,7 @@ self: super: { "hyphenate" = dontDistribute super."hyphenate"; "hyphenation" = doDistribute super."hyphenation_0_4"; "hypher" = dontDistribute super."hypher"; + "hzaif" = dontDistribute super."hzaif"; "hzk" = dontDistribute super."hzk"; "hzulip" = dontDistribute super."hzulip"; "i18n" = dontDistribute super."i18n"; @@ -5578,6 +5588,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13"; "markdown-kate" = dontDistribute super."markdown-kate"; @@ -5935,6 +5946,7 @@ self: super: { "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; "nano-cryptr" = dontDistribute super."nano-cryptr"; + "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; "nano-md5" = dontDistribute super."nano-md5"; "nanoAgda" = dontDistribute super."nanoAgda"; @@ -6103,6 +6115,7 @@ self: super: { "null-canvas" = dontDistribute super."null-canvas"; "nullary" = dontDistribute super."nullary"; "number" = dontDistribute super."number"; + "number-length" = dontDistribute super."number-length"; "numbering" = dontDistribute super."numbering"; "numerals" = dontDistribute super."numerals"; "numerals-base" = dontDistribute super."numerals-base"; @@ -6489,6 +6502,7 @@ self: super: { "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; "plailude" = dontDistribute super."plailude"; + "plan-b" = dontDistribute super."plan-b"; "planar-graph" = dontDistribute super."planar-graph"; "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; @@ -7957,6 +7971,7 @@ self: super: { "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" = doDistribute super."temporary_1_2_0_3"; "temporary-resourcet" = dontDistribute super."temporary-resourcet"; "tempus" = dontDistribute super."tempus"; "tempus-fugit" = dontDistribute super."tempus-fugit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.3.nix b/pkgs/development/haskell-modules/configuration-lts-0.3.nix index 295e11b60b2..6e5603e3a84 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.3.nix @@ -1576,6 +1576,7 @@ self: super: { "bdd" = dontDistribute super."bdd"; "bdelta" = dontDistribute super."bdelta"; "bdo" = dontDistribute super."bdo"; + "beam" = dontDistribute super."beam"; "beamable" = dontDistribute super."beamable"; "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; @@ -3680,6 +3681,13 @@ self: super: { "googleplus" = dontDistribute super."googleplus"; "googlepolyline" = dontDistribute super."googlepolyline"; "gopherbot" = dontDistribute super."gopherbot"; + "gore-and-ash" = dontDistribute super."gore-and-ash"; + "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; + "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; + "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; + "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; + "gore-and-ash-sync" = dontDistribute super."gore-and-ash-sync"; "gpah" = dontDistribute super."gpah"; "gpcsets" = dontDistribute super."gpcsets"; "gpolyline" = dontDistribute super."gpolyline"; @@ -4601,6 +4609,7 @@ self: super: { "hspec-experimental" = dontDistribute super."hspec-experimental"; "hspec-jenkins" = dontDistribute super."hspec-jenkins"; "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-megaparsec" = dontDistribute super."hspec-megaparsec"; "hspec-meta" = doDistribute super."hspec-meta_2_0_0"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; @@ -4798,6 +4807,7 @@ self: super: { "hyphenate" = dontDistribute super."hyphenate"; "hyphenation" = doDistribute super."hyphenation_0_4"; "hypher" = dontDistribute super."hypher"; + "hzaif" = dontDistribute super."hzaif"; "hzk" = dontDistribute super."hzk"; "hzulip" = dontDistribute super."hzulip"; "i18n" = dontDistribute super."i18n"; @@ -5578,6 +5588,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13"; "markdown-kate" = dontDistribute super."markdown-kate"; @@ -5935,6 +5946,7 @@ self: super: { "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; "nano-cryptr" = dontDistribute super."nano-cryptr"; + "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; "nano-md5" = dontDistribute super."nano-md5"; "nanoAgda" = dontDistribute super."nanoAgda"; @@ -6103,6 +6115,7 @@ self: super: { "null-canvas" = dontDistribute super."null-canvas"; "nullary" = dontDistribute super."nullary"; "number" = dontDistribute super."number"; + "number-length" = dontDistribute super."number-length"; "numbering" = dontDistribute super."numbering"; "numerals" = dontDistribute super."numerals"; "numerals-base" = dontDistribute super."numerals-base"; @@ -6489,6 +6502,7 @@ self: super: { "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; "plailude" = dontDistribute super."plailude"; + "plan-b" = dontDistribute super."plan-b"; "planar-graph" = dontDistribute super."planar-graph"; "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; @@ -7957,6 +7971,7 @@ self: super: { "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" = doDistribute super."temporary_1_2_0_3"; "temporary-resourcet" = dontDistribute super."temporary-resourcet"; "tempus" = dontDistribute super."tempus"; "tempus-fugit" = dontDistribute super."tempus-fugit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.4.nix b/pkgs/development/haskell-modules/configuration-lts-0.4.nix index 0334003db16..a69e82064c4 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.4.nix @@ -1576,6 +1576,7 @@ self: super: { "bdd" = dontDistribute super."bdd"; "bdelta" = dontDistribute super."bdelta"; "bdo" = dontDistribute super."bdo"; + "beam" = dontDistribute super."beam"; "beamable" = dontDistribute super."beamable"; "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; @@ -3679,6 +3680,13 @@ self: super: { "googleplus" = dontDistribute super."googleplus"; "googlepolyline" = dontDistribute super."googlepolyline"; "gopherbot" = dontDistribute super."gopherbot"; + "gore-and-ash" = dontDistribute super."gore-and-ash"; + "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; + "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; + "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; + "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; + "gore-and-ash-sync" = dontDistribute super."gore-and-ash-sync"; "gpah" = dontDistribute super."gpah"; "gpcsets" = dontDistribute super."gpcsets"; "gpolyline" = dontDistribute super."gpolyline"; @@ -4598,6 +4606,7 @@ self: super: { "hspec-experimental" = dontDistribute super."hspec-experimental"; "hspec-jenkins" = dontDistribute super."hspec-jenkins"; "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-megaparsec" = dontDistribute super."hspec-megaparsec"; "hspec-meta" = doDistribute super."hspec-meta_2_0_0"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; @@ -4795,6 +4804,7 @@ self: super: { "hyphenate" = dontDistribute super."hyphenate"; "hyphenation" = doDistribute super."hyphenation_0_4"; "hypher" = dontDistribute super."hypher"; + "hzaif" = dontDistribute super."hzaif"; "hzk" = dontDistribute super."hzk"; "hzulip" = dontDistribute super."hzulip"; "i18n" = dontDistribute super."i18n"; @@ -5575,6 +5585,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13"; "markdown-kate" = dontDistribute super."markdown-kate"; @@ -5932,6 +5943,7 @@ self: super: { "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; "nano-cryptr" = dontDistribute super."nano-cryptr"; + "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; "nano-md5" = dontDistribute super."nano-md5"; "nanoAgda" = dontDistribute super."nanoAgda"; @@ -6100,6 +6112,7 @@ self: super: { "null-canvas" = dontDistribute super."null-canvas"; "nullary" = dontDistribute super."nullary"; "number" = dontDistribute super."number"; + "number-length" = dontDistribute super."number-length"; "numbering" = dontDistribute super."numbering"; "numerals" = dontDistribute super."numerals"; "numerals-base" = dontDistribute super."numerals-base"; @@ -6486,6 +6499,7 @@ self: super: { "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; "plailude" = dontDistribute super."plailude"; + "plan-b" = dontDistribute super."plan-b"; "planar-graph" = dontDistribute super."planar-graph"; "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; @@ -7953,6 +7967,7 @@ self: super: { "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" = doDistribute super."temporary_1_2_0_3"; "temporary-resourcet" = dontDistribute super."temporary-resourcet"; "tempus" = dontDistribute super."tempus"; "tempus-fugit" = dontDistribute super."tempus-fugit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.5.nix b/pkgs/development/haskell-modules/configuration-lts-0.5.nix index 4042ab797b9..be91dee6bc6 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.5.nix @@ -1576,6 +1576,7 @@ self: super: { "bdd" = dontDistribute super."bdd"; "bdelta" = dontDistribute super."bdelta"; "bdo" = dontDistribute super."bdo"; + "beam" = dontDistribute super."beam"; "beamable" = dontDistribute super."beamable"; "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; @@ -3679,6 +3680,13 @@ self: super: { "googleplus" = dontDistribute super."googleplus"; "googlepolyline" = dontDistribute super."googlepolyline"; "gopherbot" = dontDistribute super."gopherbot"; + "gore-and-ash" = dontDistribute super."gore-and-ash"; + "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; + "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; + "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; + "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; + "gore-and-ash-sync" = dontDistribute super."gore-and-ash-sync"; "gpah" = dontDistribute super."gpah"; "gpcsets" = dontDistribute super."gpcsets"; "gpolyline" = dontDistribute super."gpolyline"; @@ -4598,6 +4606,7 @@ self: super: { "hspec-experimental" = dontDistribute super."hspec-experimental"; "hspec-jenkins" = dontDistribute super."hspec-jenkins"; "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-megaparsec" = dontDistribute super."hspec-megaparsec"; "hspec-meta" = doDistribute super."hspec-meta_2_0_0"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; @@ -4795,6 +4804,7 @@ self: super: { "hyphenate" = dontDistribute super."hyphenate"; "hyphenation" = doDistribute super."hyphenation_0_4"; "hypher" = dontDistribute super."hypher"; + "hzaif" = dontDistribute super."hzaif"; "hzk" = dontDistribute super."hzk"; "hzulip" = dontDistribute super."hzulip"; "i18n" = dontDistribute super."i18n"; @@ -5575,6 +5585,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13"; "markdown-kate" = dontDistribute super."markdown-kate"; @@ -5932,6 +5943,7 @@ self: super: { "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; "nano-cryptr" = dontDistribute super."nano-cryptr"; + "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; "nano-md5" = dontDistribute super."nano-md5"; "nanoAgda" = dontDistribute super."nanoAgda"; @@ -6100,6 +6112,7 @@ self: super: { "null-canvas" = dontDistribute super."null-canvas"; "nullary" = dontDistribute super."nullary"; "number" = dontDistribute super."number"; + "number-length" = dontDistribute super."number-length"; "numbering" = dontDistribute super."numbering"; "numerals" = dontDistribute super."numerals"; "numerals-base" = dontDistribute super."numerals-base"; @@ -6486,6 +6499,7 @@ self: super: { "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; "plailude" = dontDistribute super."plailude"; + "plan-b" = dontDistribute super."plan-b"; "planar-graph" = dontDistribute super."planar-graph"; "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; @@ -7953,6 +7967,7 @@ self: super: { "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" = doDistribute super."temporary_1_2_0_3"; "temporary-resourcet" = dontDistribute super."temporary-resourcet"; "tempus" = dontDistribute super."tempus"; "tempus-fugit" = dontDistribute super."tempus-fugit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.6.nix b/pkgs/development/haskell-modules/configuration-lts-0.6.nix index f1ef0fc4011..d62988266a9 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.6.nix @@ -1428,6 +1428,7 @@ self: super: { "astrds" = dontDistribute super."astrds"; "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; + "async" = doDistribute super."async_2_0_2"; "async-dejafu" = dontDistribute super."async-dejafu"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; @@ -1574,6 +1575,7 @@ self: super: { "bdd" = dontDistribute super."bdd"; "bdelta" = dontDistribute super."bdelta"; "bdo" = dontDistribute super."bdo"; + "beam" = dontDistribute super."beam"; "beamable" = dontDistribute super."beamable"; "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; @@ -3677,6 +3679,13 @@ self: super: { "googleplus" = dontDistribute super."googleplus"; "googlepolyline" = dontDistribute super."googlepolyline"; "gopherbot" = dontDistribute super."gopherbot"; + "gore-and-ash" = dontDistribute super."gore-and-ash"; + "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; + "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; + "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; + "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; + "gore-and-ash-sync" = dontDistribute super."gore-and-ash-sync"; "gpah" = dontDistribute super."gpah"; "gpcsets" = dontDistribute super."gpcsets"; "gpolyline" = dontDistribute super."gpolyline"; @@ -4595,6 +4604,7 @@ self: super: { "hspec-experimental" = dontDistribute super."hspec-experimental"; "hspec-jenkins" = dontDistribute super."hspec-jenkins"; "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-megaparsec" = dontDistribute super."hspec-megaparsec"; "hspec-meta" = doDistribute super."hspec-meta_2_0_0"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; @@ -4792,6 +4802,7 @@ self: super: { "hyphenate" = dontDistribute super."hyphenate"; "hyphenation" = doDistribute super."hyphenation_0_4"; "hypher" = dontDistribute super."hypher"; + "hzaif" = dontDistribute super."hzaif"; "hzk" = dontDistribute super."hzk"; "hzulip" = dontDistribute super."hzulip"; "i18n" = dontDistribute super."i18n"; @@ -5572,6 +5583,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13"; "markdown-kate" = dontDistribute super."markdown-kate"; @@ -5929,6 +5941,7 @@ self: super: { "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; "nano-cryptr" = dontDistribute super."nano-cryptr"; + "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; "nano-md5" = dontDistribute super."nano-md5"; "nanoAgda" = dontDistribute super."nanoAgda"; @@ -6096,6 +6109,7 @@ self: super: { "null-canvas" = dontDistribute super."null-canvas"; "nullary" = dontDistribute super."nullary"; "number" = dontDistribute super."number"; + "number-length" = dontDistribute super."number-length"; "numbering" = dontDistribute super."numbering"; "numerals" = dontDistribute super."numerals"; "numerals-base" = dontDistribute super."numerals-base"; @@ -6482,6 +6496,7 @@ self: super: { "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; "plailude" = dontDistribute super."plailude"; + "plan-b" = dontDistribute super."plan-b"; "planar-graph" = dontDistribute super."planar-graph"; "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; @@ -7948,6 +7963,7 @@ self: super: { "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" = doDistribute super."temporary_1_2_0_3"; "temporary-resourcet" = dontDistribute super."temporary-resourcet"; "tempus" = dontDistribute super."tempus"; "tempus-fugit" = dontDistribute super."tempus-fugit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.7.nix b/pkgs/development/haskell-modules/configuration-lts-0.7.nix index 56377c59a86..5e546e41bc2 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.7.nix @@ -1428,6 +1428,7 @@ self: super: { "astrds" = dontDistribute super."astrds"; "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; + "async" = doDistribute super."async_2_0_2"; "async-dejafu" = dontDistribute super."async-dejafu"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; @@ -1574,6 +1575,7 @@ self: super: { "bdd" = dontDistribute super."bdd"; "bdelta" = dontDistribute super."bdelta"; "bdo" = dontDistribute super."bdo"; + "beam" = dontDistribute super."beam"; "beamable" = dontDistribute super."beamable"; "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; @@ -3677,6 +3679,13 @@ self: super: { "googleplus" = dontDistribute super."googleplus"; "googlepolyline" = dontDistribute super."googlepolyline"; "gopherbot" = dontDistribute super."gopherbot"; + "gore-and-ash" = dontDistribute super."gore-and-ash"; + "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; + "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; + "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; + "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; + "gore-and-ash-sync" = dontDistribute super."gore-and-ash-sync"; "gpah" = dontDistribute super."gpah"; "gpcsets" = dontDistribute super."gpcsets"; "gpolyline" = dontDistribute super."gpolyline"; @@ -4595,6 +4604,7 @@ self: super: { "hspec-experimental" = dontDistribute super."hspec-experimental"; "hspec-jenkins" = dontDistribute super."hspec-jenkins"; "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-megaparsec" = dontDistribute super."hspec-megaparsec"; "hspec-meta" = doDistribute super."hspec-meta_2_0_0"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; @@ -4792,6 +4802,7 @@ self: super: { "hyphenate" = dontDistribute super."hyphenate"; "hyphenation" = doDistribute super."hyphenation_0_4"; "hypher" = dontDistribute super."hypher"; + "hzaif" = dontDistribute super."hzaif"; "hzk" = dontDistribute super."hzk"; "hzulip" = dontDistribute super."hzulip"; "i18n" = dontDistribute super."i18n"; @@ -5572,6 +5583,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13"; "markdown-kate" = dontDistribute super."markdown-kate"; @@ -5929,6 +5941,7 @@ self: super: { "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; "nano-cryptr" = dontDistribute super."nano-cryptr"; + "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; "nano-md5" = dontDistribute super."nano-md5"; "nanoAgda" = dontDistribute super."nanoAgda"; @@ -6096,6 +6109,7 @@ self: super: { "null-canvas" = dontDistribute super."null-canvas"; "nullary" = dontDistribute super."nullary"; "number" = dontDistribute super."number"; + "number-length" = dontDistribute super."number-length"; "numbering" = dontDistribute super."numbering"; "numerals" = dontDistribute super."numerals"; "numerals-base" = dontDistribute super."numerals-base"; @@ -6482,6 +6496,7 @@ self: super: { "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; "plailude" = dontDistribute super."plailude"; + "plan-b" = dontDistribute super."plan-b"; "planar-graph" = dontDistribute super."planar-graph"; "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; @@ -7948,6 +7963,7 @@ self: super: { "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" = doDistribute super."temporary_1_2_0_3"; "temporary-resourcet" = dontDistribute super."temporary-resourcet"; "tempus" = dontDistribute super."tempus"; "tempus-fugit" = dontDistribute super."tempus-fugit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.0.nix b/pkgs/development/haskell-modules/configuration-lts-1.0.nix index 4ddb79ea5c3..977351aaf2a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.0.nix @@ -1424,6 +1424,7 @@ self: super: { "astrds" = dontDistribute super."astrds"; "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; + "async" = doDistribute super."async_2_0_2"; "async-dejafu" = dontDistribute super."async-dejafu"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; @@ -1570,6 +1571,7 @@ self: super: { "bdd" = dontDistribute super."bdd"; "bdelta" = dontDistribute super."bdelta"; "bdo" = dontDistribute super."bdo"; + "beam" = dontDistribute super."beam"; "beamable" = dontDistribute super."beamable"; "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; @@ -3666,6 +3668,13 @@ self: super: { "googleplus" = dontDistribute super."googleplus"; "googlepolyline" = dontDistribute super."googlepolyline"; "gopherbot" = dontDistribute super."gopherbot"; + "gore-and-ash" = dontDistribute super."gore-and-ash"; + "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; + "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; + "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; + "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; + "gore-and-ash-sync" = dontDistribute super."gore-and-ash-sync"; "gpah" = dontDistribute super."gpah"; "gpcsets" = dontDistribute super."gpcsets"; "gpolyline" = dontDistribute super."gpolyline"; @@ -4583,6 +4592,7 @@ self: super: { "hspec-experimental" = dontDistribute super."hspec-experimental"; "hspec-jenkins" = dontDistribute super."hspec-jenkins"; "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-megaparsec" = dontDistribute super."hspec-megaparsec"; "hspec-meta" = doDistribute super."hspec-meta_2_0_0"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; @@ -4780,6 +4790,7 @@ self: super: { "hyphenate" = dontDistribute super."hyphenate"; "hyphenation" = doDistribute super."hyphenation_0_4"; "hypher" = dontDistribute super."hypher"; + "hzaif" = dontDistribute super."hzaif"; "hzk" = dontDistribute super."hzk"; "hzulip" = dontDistribute super."hzulip"; "i18n" = dontDistribute super."i18n"; @@ -5560,6 +5571,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13"; "markdown-kate" = dontDistribute super."markdown-kate"; @@ -5917,6 +5929,7 @@ self: super: { "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; "nano-cryptr" = dontDistribute super."nano-cryptr"; + "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; "nano-md5" = dontDistribute super."nano-md5"; "nanoAgda" = dontDistribute super."nanoAgda"; @@ -6084,6 +6097,7 @@ self: super: { "null-canvas" = dontDistribute super."null-canvas"; "nullary" = dontDistribute super."nullary"; "number" = dontDistribute super."number"; + "number-length" = dontDistribute super."number-length"; "numbering" = dontDistribute super."numbering"; "numerals" = dontDistribute super."numerals"; "numerals-base" = dontDistribute super."numerals-base"; @@ -6470,6 +6484,7 @@ self: super: { "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; "plailude" = dontDistribute super."plailude"; + "plan-b" = dontDistribute super."plan-b"; "planar-graph" = dontDistribute super."planar-graph"; "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; @@ -7934,6 +7949,7 @@ self: super: { "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" = doDistribute super."temporary_1_2_0_3"; "temporary-resourcet" = dontDistribute super."temporary-resourcet"; "tempus" = dontDistribute super."tempus"; "tempus-fugit" = dontDistribute super."tempus-fugit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.1.nix b/pkgs/development/haskell-modules/configuration-lts-1.1.nix index 3ff3228c11e..865b55aa960 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.1.nix @@ -1424,6 +1424,7 @@ self: super: { "astrds" = dontDistribute super."astrds"; "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; + "async" = doDistribute super."async_2_0_2"; "async-dejafu" = dontDistribute super."async-dejafu"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; @@ -1570,6 +1571,7 @@ self: super: { "bdd" = dontDistribute super."bdd"; "bdelta" = dontDistribute super."bdelta"; "bdo" = dontDistribute super."bdo"; + "beam" = dontDistribute super."beam"; "beamable" = dontDistribute super."beamable"; "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; @@ -3663,6 +3665,13 @@ self: super: { "googleplus" = dontDistribute super."googleplus"; "googlepolyline" = dontDistribute super."googlepolyline"; "gopherbot" = dontDistribute super."gopherbot"; + "gore-and-ash" = dontDistribute super."gore-and-ash"; + "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; + "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; + "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; + "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; + "gore-and-ash-sync" = dontDistribute super."gore-and-ash-sync"; "gpah" = dontDistribute super."gpah"; "gpcsets" = dontDistribute super."gpcsets"; "gpolyline" = dontDistribute super."gpolyline"; @@ -4577,6 +4586,7 @@ self: super: { "hspec-experimental" = dontDistribute super."hspec-experimental"; "hspec-jenkins" = dontDistribute super."hspec-jenkins"; "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-megaparsec" = dontDistribute super."hspec-megaparsec"; "hspec-meta" = doDistribute super."hspec-meta_2_0_0"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; @@ -4774,6 +4784,7 @@ self: super: { "hyphenate" = dontDistribute super."hyphenate"; "hyphenation" = doDistribute super."hyphenation_0_4"; "hypher" = dontDistribute super."hypher"; + "hzaif" = dontDistribute super."hzaif"; "hzk" = dontDistribute super."hzk"; "hzulip" = dontDistribute super."hzulip"; "i18n" = dontDistribute super."i18n"; @@ -5554,6 +5565,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_1"; "markdown-kate" = dontDistribute super."markdown-kate"; @@ -5910,6 +5922,7 @@ self: super: { "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; "nano-cryptr" = dontDistribute super."nano-cryptr"; + "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; "nano-md5" = dontDistribute super."nano-md5"; "nanoAgda" = dontDistribute super."nanoAgda"; @@ -6077,6 +6090,7 @@ self: super: { "null-canvas" = dontDistribute super."null-canvas"; "nullary" = dontDistribute super."nullary"; "number" = dontDistribute super."number"; + "number-length" = dontDistribute super."number-length"; "numbering" = dontDistribute super."numbering"; "numerals" = dontDistribute super."numerals"; "numerals-base" = dontDistribute super."numerals-base"; @@ -6463,6 +6477,7 @@ self: super: { "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; "plailude" = dontDistribute super."plailude"; + "plan-b" = dontDistribute super."plan-b"; "planar-graph" = dontDistribute super."planar-graph"; "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; @@ -7925,6 +7940,7 @@ self: super: { "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" = doDistribute super."temporary_1_2_0_3"; "temporary-resourcet" = dontDistribute super."temporary-resourcet"; "tempus" = dontDistribute super."tempus"; "tempus-fugit" = dontDistribute super."tempus-fugit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.10.nix b/pkgs/development/haskell-modules/configuration-lts-1.10.nix index 156834d1b01..a420ff8f774 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.10.nix @@ -1423,6 +1423,7 @@ self: super: { "astrds" = dontDistribute super."astrds"; "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; + "async" = doDistribute super."async_2_0_2"; "async-dejafu" = dontDistribute super."async-dejafu"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; @@ -1569,6 +1570,7 @@ self: super: { "bdd" = dontDistribute super."bdd"; "bdelta" = dontDistribute super."bdelta"; "bdo" = dontDistribute super."bdo"; + "beam" = dontDistribute super."beam"; "beamable" = dontDistribute super."beamable"; "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; @@ -3654,6 +3656,13 @@ self: super: { "googleplus" = dontDistribute super."googleplus"; "googlepolyline" = dontDistribute super."googlepolyline"; "gopherbot" = dontDistribute super."gopherbot"; + "gore-and-ash" = dontDistribute super."gore-and-ash"; + "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; + "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; + "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; + "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; + "gore-and-ash-sync" = dontDistribute super."gore-and-ash-sync"; "gpah" = dontDistribute super."gpah"; "gpcsets" = dontDistribute super."gpcsets"; "gpolyline" = dontDistribute super."gpolyline"; @@ -4566,6 +4575,7 @@ self: super: { "hspec-experimental" = dontDistribute super."hspec-experimental"; "hspec-jenkins" = dontDistribute super."hspec-jenkins"; "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-megaparsec" = dontDistribute super."hspec-megaparsec"; "hspec-meta" = doDistribute super."hspec-meta_2_0_0"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; @@ -4758,6 +4768,7 @@ self: super: { "hyphenate" = dontDistribute super."hyphenate"; "hyphenation" = doDistribute super."hyphenation_0_4_2"; "hypher" = dontDistribute super."hypher"; + "hzaif" = dontDistribute super."hzaif"; "hzk" = dontDistribute super."hzk"; "hzulip" = dontDistribute super."hzulip"; "i18n" = dontDistribute super."i18n"; @@ -5537,6 +5548,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_1"; "markdown-kate" = dontDistribute super."markdown-kate"; @@ -5892,6 +5904,7 @@ self: super: { "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; "nano-cryptr" = dontDistribute super."nano-cryptr"; + "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; "nano-md5" = dontDistribute super."nano-md5"; "nanoAgda" = dontDistribute super."nanoAgda"; @@ -6058,6 +6071,7 @@ self: super: { "null-canvas" = dontDistribute super."null-canvas"; "nullary" = dontDistribute super."nullary"; "number" = dontDistribute super."number"; + "number-length" = dontDistribute super."number-length"; "numbering" = dontDistribute super."numbering"; "numerals" = dontDistribute super."numerals"; "numerals-base" = dontDistribute super."numerals-base"; @@ -6443,6 +6457,7 @@ self: super: { "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; "plailude" = dontDistribute super."plailude"; + "plan-b" = dontDistribute super."plan-b"; "planar-graph" = dontDistribute super."planar-graph"; "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; @@ -7900,6 +7915,7 @@ self: super: { "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" = doDistribute super."temporary_1_2_0_3"; "temporary-resourcet" = dontDistribute super."temporary-resourcet"; "tempus" = dontDistribute super."tempus"; "tempus-fugit" = dontDistribute super."tempus-fugit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.11.nix b/pkgs/development/haskell-modules/configuration-lts-1.11.nix index 68580bd646a..28c5d043681 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.11.nix @@ -1423,6 +1423,7 @@ self: super: { "astrds" = dontDistribute super."astrds"; "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; + "async" = doDistribute super."async_2_0_2"; "async-dejafu" = dontDistribute super."async-dejafu"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; @@ -1569,6 +1570,7 @@ self: super: { "bdd" = dontDistribute super."bdd"; "bdelta" = dontDistribute super."bdelta"; "bdo" = dontDistribute super."bdo"; + "beam" = dontDistribute super."beam"; "beamable" = dontDistribute super."beamable"; "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; @@ -3653,6 +3655,13 @@ self: super: { "googleplus" = dontDistribute super."googleplus"; "googlepolyline" = dontDistribute super."googlepolyline"; "gopherbot" = dontDistribute super."gopherbot"; + "gore-and-ash" = dontDistribute super."gore-and-ash"; + "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; + "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; + "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; + "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; + "gore-and-ash-sync" = dontDistribute super."gore-and-ash-sync"; "gpah" = dontDistribute super."gpah"; "gpcsets" = dontDistribute super."gpcsets"; "gpolyline" = dontDistribute super."gpolyline"; @@ -4565,6 +4574,7 @@ self: super: { "hspec-experimental" = dontDistribute super."hspec-experimental"; "hspec-jenkins" = dontDistribute super."hspec-jenkins"; "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-megaparsec" = dontDistribute super."hspec-megaparsec"; "hspec-meta" = doDistribute super."hspec-meta_2_0_0"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; @@ -4756,6 +4766,7 @@ self: super: { "hyphenate" = dontDistribute super."hyphenate"; "hyphenation" = doDistribute super."hyphenation_0_4_2"; "hypher" = dontDistribute super."hypher"; + "hzaif" = dontDistribute super."hzaif"; "hzk" = dontDistribute super."hzk"; "hzulip" = dontDistribute super."hzulip"; "i18n" = dontDistribute super."i18n"; @@ -5533,6 +5544,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_1"; "markdown-kate" = dontDistribute super."markdown-kate"; @@ -5888,6 +5900,7 @@ self: super: { "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; "nano-cryptr" = dontDistribute super."nano-cryptr"; + "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; "nano-md5" = dontDistribute super."nano-md5"; "nanoAgda" = dontDistribute super."nanoAgda"; @@ -6054,6 +6067,7 @@ self: super: { "null-canvas" = dontDistribute super."null-canvas"; "nullary" = dontDistribute super."nullary"; "number" = dontDistribute super."number"; + "number-length" = dontDistribute super."number-length"; "numbering" = dontDistribute super."numbering"; "numerals" = dontDistribute super."numerals"; "numerals-base" = dontDistribute super."numerals-base"; @@ -6439,6 +6453,7 @@ self: super: { "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; "plailude" = dontDistribute super."plailude"; + "plan-b" = dontDistribute super."plan-b"; "planar-graph" = dontDistribute super."planar-graph"; "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; @@ -7896,6 +7911,7 @@ self: super: { "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" = doDistribute super."temporary_1_2_0_3"; "temporary-resourcet" = dontDistribute super."temporary-resourcet"; "tempus" = dontDistribute super."tempus"; "tempus-fugit" = dontDistribute super."tempus-fugit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.12.nix b/pkgs/development/haskell-modules/configuration-lts-1.12.nix index 94567fa0531..2f285e680dd 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.12.nix @@ -1423,6 +1423,7 @@ self: super: { "astrds" = dontDistribute super."astrds"; "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; + "async" = doDistribute super."async_2_0_2"; "async-dejafu" = dontDistribute super."async-dejafu"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; @@ -1569,6 +1570,7 @@ self: super: { "bdd" = dontDistribute super."bdd"; "bdelta" = dontDistribute super."bdelta"; "bdo" = dontDistribute super."bdo"; + "beam" = dontDistribute super."beam"; "beamable" = dontDistribute super."beamable"; "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; @@ -3653,6 +3655,13 @@ self: super: { "googleplus" = dontDistribute super."googleplus"; "googlepolyline" = dontDistribute super."googlepolyline"; "gopherbot" = dontDistribute super."gopherbot"; + "gore-and-ash" = dontDistribute super."gore-and-ash"; + "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; + "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; + "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; + "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; + "gore-and-ash-sync" = dontDistribute super."gore-and-ash-sync"; "gpah" = dontDistribute super."gpah"; "gpcsets" = dontDistribute super."gpcsets"; "gpolyline" = dontDistribute super."gpolyline"; @@ -4564,6 +4573,7 @@ self: super: { "hspec-experimental" = dontDistribute super."hspec-experimental"; "hspec-jenkins" = dontDistribute super."hspec-jenkins"; "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-megaparsec" = dontDistribute super."hspec-megaparsec"; "hspec-meta" = doDistribute super."hspec-meta_2_0_0"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; @@ -4755,6 +4765,7 @@ self: super: { "hyphenate" = dontDistribute super."hyphenate"; "hyphenation" = doDistribute super."hyphenation_0_4_2_1"; "hypher" = dontDistribute super."hypher"; + "hzaif" = dontDistribute super."hzaif"; "hzk" = dontDistribute super."hzk"; "hzulip" = dontDistribute super."hzulip"; "i18n" = dontDistribute super."i18n"; @@ -5532,6 +5543,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_1"; "markdown-kate" = dontDistribute super."markdown-kate"; @@ -5887,6 +5899,7 @@ self: super: { "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; "nano-cryptr" = dontDistribute super."nano-cryptr"; + "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; "nano-md5" = dontDistribute super."nano-md5"; "nanoAgda" = dontDistribute super."nanoAgda"; @@ -6053,6 +6066,7 @@ self: super: { "null-canvas" = dontDistribute super."null-canvas"; "nullary" = dontDistribute super."nullary"; "number" = dontDistribute super."number"; + "number-length" = dontDistribute super."number-length"; "numbering" = dontDistribute super."numbering"; "numerals" = dontDistribute super."numerals"; "numerals-base" = dontDistribute super."numerals-base"; @@ -6438,6 +6452,7 @@ self: super: { "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; "plailude" = dontDistribute super."plailude"; + "plan-b" = dontDistribute super."plan-b"; "planar-graph" = dontDistribute super."planar-graph"; "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; @@ -7895,6 +7910,7 @@ self: super: { "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" = doDistribute super."temporary_1_2_0_3"; "temporary-resourcet" = dontDistribute super."temporary-resourcet"; "tempus" = dontDistribute super."tempus"; "tempus-fugit" = dontDistribute super."tempus-fugit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.13.nix b/pkgs/development/haskell-modules/configuration-lts-1.13.nix index 0dca6ed6feb..01a2bf5d082 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.13.nix @@ -1423,6 +1423,7 @@ self: super: { "astrds" = dontDistribute super."astrds"; "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; + "async" = doDistribute super."async_2_0_2"; "async-dejafu" = dontDistribute super."async-dejafu"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; @@ -1569,6 +1570,7 @@ self: super: { "bdd" = dontDistribute super."bdd"; "bdelta" = dontDistribute super."bdelta"; "bdo" = dontDistribute super."bdo"; + "beam" = dontDistribute super."beam"; "beamable" = dontDistribute super."beamable"; "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; @@ -3653,6 +3655,13 @@ self: super: { "googleplus" = dontDistribute super."googleplus"; "googlepolyline" = dontDistribute super."googlepolyline"; "gopherbot" = dontDistribute super."gopherbot"; + "gore-and-ash" = dontDistribute super."gore-and-ash"; + "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; + "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; + "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; + "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; + "gore-and-ash-sync" = dontDistribute super."gore-and-ash-sync"; "gpah" = dontDistribute super."gpah"; "gpcsets" = dontDistribute super."gpcsets"; "gpolyline" = dontDistribute super."gpolyline"; @@ -4563,6 +4572,7 @@ self: super: { "hspec-experimental" = dontDistribute super."hspec-experimental"; "hspec-jenkins" = dontDistribute super."hspec-jenkins"; "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-megaparsec" = dontDistribute super."hspec-megaparsec"; "hspec-meta" = doDistribute super."hspec-meta_2_0_0"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; @@ -4754,6 +4764,7 @@ self: super: { "hyphenate" = dontDistribute super."hyphenate"; "hyphenation" = doDistribute super."hyphenation_0_4_2_1"; "hypher" = dontDistribute super."hypher"; + "hzaif" = dontDistribute super."hzaif"; "hzk" = dontDistribute super."hzk"; "hzulip" = dontDistribute super."hzulip"; "i18n" = dontDistribute super."i18n"; @@ -5531,6 +5542,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_1"; "markdown-kate" = dontDistribute super."markdown-kate"; @@ -5886,6 +5898,7 @@ self: super: { "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; "nano-cryptr" = dontDistribute super."nano-cryptr"; + "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; "nano-md5" = dontDistribute super."nano-md5"; "nanoAgda" = dontDistribute super."nanoAgda"; @@ -6052,6 +6065,7 @@ self: super: { "null-canvas" = dontDistribute super."null-canvas"; "nullary" = dontDistribute super."nullary"; "number" = dontDistribute super."number"; + "number-length" = dontDistribute super."number-length"; "numbering" = dontDistribute super."numbering"; "numerals" = dontDistribute super."numerals"; "numerals-base" = dontDistribute super."numerals-base"; @@ -6437,6 +6451,7 @@ self: super: { "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; "plailude" = dontDistribute super."plailude"; + "plan-b" = dontDistribute super."plan-b"; "planar-graph" = dontDistribute super."planar-graph"; "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; @@ -7893,6 +7908,7 @@ self: super: { "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" = doDistribute super."temporary_1_2_0_3"; "temporary-resourcet" = dontDistribute super."temporary-resourcet"; "tempus" = dontDistribute super."tempus"; "tempus-fugit" = dontDistribute super."tempus-fugit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.14.nix b/pkgs/development/haskell-modules/configuration-lts-1.14.nix index 25759fe1307..6a6e7ca8097 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.14.nix @@ -1422,6 +1422,7 @@ self: super: { "astrds" = dontDistribute super."astrds"; "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; + "async" = doDistribute super."async_2_0_2"; "async-dejafu" = dontDistribute super."async-dejafu"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; @@ -1567,6 +1568,7 @@ self: super: { "bdd" = dontDistribute super."bdd"; "bdelta" = dontDistribute super."bdelta"; "bdo" = dontDistribute super."bdo"; + "beam" = dontDistribute super."beam"; "beamable" = dontDistribute super."beamable"; "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; @@ -3650,6 +3652,13 @@ self: super: { "googleplus" = dontDistribute super."googleplus"; "googlepolyline" = dontDistribute super."googlepolyline"; "gopherbot" = dontDistribute super."gopherbot"; + "gore-and-ash" = dontDistribute super."gore-and-ash"; + "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; + "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; + "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; + "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; + "gore-and-ash-sync" = dontDistribute super."gore-and-ash-sync"; "gpah" = dontDistribute super."gpah"; "gpcsets" = dontDistribute super."gpcsets"; "gpolyline" = dontDistribute super."gpolyline"; @@ -4559,6 +4568,7 @@ self: super: { "hspec-experimental" = dontDistribute super."hspec-experimental"; "hspec-jenkins" = dontDistribute super."hspec-jenkins"; "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-megaparsec" = dontDistribute super."hspec-megaparsec"; "hspec-meta" = doDistribute super."hspec-meta_2_0_0"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; @@ -4750,6 +4760,7 @@ self: super: { "hyphenate" = dontDistribute super."hyphenate"; "hyphenation" = doDistribute super."hyphenation_0_4_2_1"; "hypher" = dontDistribute super."hypher"; + "hzaif" = dontDistribute super."hzaif"; "hzk" = dontDistribute super."hzk"; "hzulip" = dontDistribute super."hzulip"; "i18n" = dontDistribute super."i18n"; @@ -5526,6 +5537,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_1"; "markdown-kate" = dontDistribute super."markdown-kate"; @@ -5880,6 +5892,7 @@ self: super: { "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; "nano-cryptr" = dontDistribute super."nano-cryptr"; + "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; "nano-md5" = dontDistribute super."nano-md5"; "nanoAgda" = dontDistribute super."nanoAgda"; @@ -6046,6 +6059,7 @@ self: super: { "null-canvas" = dontDistribute super."null-canvas"; "nullary" = dontDistribute super."nullary"; "number" = dontDistribute super."number"; + "number-length" = dontDistribute super."number-length"; "numbering" = dontDistribute super."numbering"; "numerals" = dontDistribute super."numerals"; "numerals-base" = dontDistribute super."numerals-base"; @@ -6431,6 +6445,7 @@ self: super: { "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; "plailude" = dontDistribute super."plailude"; + "plan-b" = dontDistribute super."plan-b"; "planar-graph" = dontDistribute super."planar-graph"; "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; @@ -7886,6 +7901,7 @@ self: super: { "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" = doDistribute super."temporary_1_2_0_3"; "temporary-resourcet" = dontDistribute super."temporary-resourcet"; "tempus" = dontDistribute super."tempus"; "tempus-fugit" = dontDistribute super."tempus-fugit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.15.nix b/pkgs/development/haskell-modules/configuration-lts-1.15.nix index f03bbb95490..76f95bd450e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.15.nix @@ -1421,6 +1421,7 @@ self: super: { "astrds" = dontDistribute super."astrds"; "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; + "async" = doDistribute super."async_2_0_2"; "async-dejafu" = dontDistribute super."async-dejafu"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; @@ -1566,6 +1567,7 @@ self: super: { "bdd" = dontDistribute super."bdd"; "bdelta" = dontDistribute super."bdelta"; "bdo" = dontDistribute super."bdo"; + "beam" = dontDistribute super."beam"; "beamable" = dontDistribute super."beamable"; "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; @@ -3646,6 +3648,13 @@ self: super: { "googleplus" = dontDistribute super."googleplus"; "googlepolyline" = dontDistribute super."googlepolyline"; "gopherbot" = dontDistribute super."gopherbot"; + "gore-and-ash" = dontDistribute super."gore-and-ash"; + "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; + "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; + "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; + "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; + "gore-and-ash-sync" = dontDistribute super."gore-and-ash-sync"; "gpah" = dontDistribute super."gpah"; "gpcsets" = dontDistribute super."gpcsets"; "gpolyline" = dontDistribute super."gpolyline"; @@ -4555,6 +4564,7 @@ self: super: { "hspec-experimental" = dontDistribute super."hspec-experimental"; "hspec-jenkins" = dontDistribute super."hspec-jenkins"; "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-megaparsec" = dontDistribute super."hspec-megaparsec"; "hspec-meta" = doDistribute super."hspec-meta_2_0_0"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; @@ -4746,6 +4756,7 @@ self: super: { "hyphenate" = dontDistribute super."hyphenate"; "hyphenation" = doDistribute super."hyphenation_0_4_2_1"; "hypher" = dontDistribute super."hypher"; + "hzaif" = dontDistribute super."hzaif"; "hzk" = dontDistribute super."hzk"; "hzulip" = dontDistribute super."hzulip"; "i18n" = dontDistribute super."i18n"; @@ -5522,6 +5533,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_1"; "markdown-kate" = dontDistribute super."markdown-kate"; @@ -5874,6 +5886,7 @@ self: super: { "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; "nano-cryptr" = dontDistribute super."nano-cryptr"; + "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; "nano-md5" = dontDistribute super."nano-md5"; "nanoAgda" = dontDistribute super."nanoAgda"; @@ -6040,6 +6053,7 @@ self: super: { "null-canvas" = dontDistribute super."null-canvas"; "nullary" = dontDistribute super."nullary"; "number" = dontDistribute super."number"; + "number-length" = dontDistribute super."number-length"; "numbering" = dontDistribute super."numbering"; "numerals" = dontDistribute super."numerals"; "numerals-base" = dontDistribute super."numerals-base"; @@ -6425,6 +6439,7 @@ self: super: { "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; "plailude" = dontDistribute super."plailude"; + "plan-b" = dontDistribute super."plan-b"; "planar-graph" = dontDistribute super."planar-graph"; "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; @@ -6691,7 +6706,6 @@ self: super: { "quick-generator" = dontDistribute super."quick-generator"; "quick-schema" = dontDistribute super."quick-schema"; "quickcheck-assertions" = doDistribute super."quickcheck-assertions_0_1_1"; - "quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11"; "quickcheck-io" = doDistribute super."quickcheck-io_0_1_1"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; @@ -7877,6 +7891,7 @@ self: super: { "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" = doDistribute super."temporary_1_2_0_3"; "temporary-resourcet" = dontDistribute super."temporary-resourcet"; "tempus" = dontDistribute super."tempus"; "tempus-fugit" = dontDistribute super."tempus-fugit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.2.nix b/pkgs/development/haskell-modules/configuration-lts-1.2.nix index 0a3a26697eb..8ab51220e9a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.2.nix @@ -1424,6 +1424,7 @@ self: super: { "astrds" = dontDistribute super."astrds"; "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; + "async" = doDistribute super."async_2_0_2"; "async-dejafu" = dontDistribute super."async-dejafu"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; @@ -1570,6 +1571,7 @@ self: super: { "bdd" = dontDistribute super."bdd"; "bdelta" = dontDistribute super."bdelta"; "bdo" = dontDistribute super."bdo"; + "beam" = dontDistribute super."beam"; "beamable" = dontDistribute super."beamable"; "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; @@ -3660,6 +3662,13 @@ self: super: { "googleplus" = dontDistribute super."googleplus"; "googlepolyline" = dontDistribute super."googlepolyline"; "gopherbot" = dontDistribute super."gopherbot"; + "gore-and-ash" = dontDistribute super."gore-and-ash"; + "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; + "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; + "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; + "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; + "gore-and-ash-sync" = dontDistribute super."gore-and-ash-sync"; "gpah" = dontDistribute super."gpah"; "gpcsets" = dontDistribute super."gpcsets"; "gpolyline" = dontDistribute super."gpolyline"; @@ -4574,6 +4583,7 @@ self: super: { "hspec-experimental" = dontDistribute super."hspec-experimental"; "hspec-jenkins" = dontDistribute super."hspec-jenkins"; "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-megaparsec" = dontDistribute super."hspec-megaparsec"; "hspec-meta" = doDistribute super."hspec-meta_2_0_0"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; @@ -4771,6 +4781,7 @@ self: super: { "hyphenate" = dontDistribute super."hyphenate"; "hyphenation" = doDistribute super."hyphenation_0_4"; "hypher" = dontDistribute super."hypher"; + "hzaif" = dontDistribute super."hzaif"; "hzk" = dontDistribute super."hzk"; "hzulip" = dontDistribute super."hzulip"; "i18n" = dontDistribute super."i18n"; @@ -5551,6 +5562,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_1"; "markdown-kate" = dontDistribute super."markdown-kate"; @@ -5907,6 +5919,7 @@ self: super: { "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; "nano-cryptr" = dontDistribute super."nano-cryptr"; + "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; "nano-md5" = dontDistribute super."nano-md5"; "nanoAgda" = dontDistribute super."nanoAgda"; @@ -6074,6 +6087,7 @@ self: super: { "null-canvas" = dontDistribute super."null-canvas"; "nullary" = dontDistribute super."nullary"; "number" = dontDistribute super."number"; + "number-length" = dontDistribute super."number-length"; "numbering" = dontDistribute super."numbering"; "numerals" = dontDistribute super."numerals"; "numerals-base" = dontDistribute super."numerals-base"; @@ -6459,6 +6473,7 @@ self: super: { "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; "plailude" = dontDistribute super."plailude"; + "plan-b" = dontDistribute super."plan-b"; "planar-graph" = dontDistribute super."planar-graph"; "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; @@ -7919,6 +7934,7 @@ self: super: { "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" = doDistribute super."temporary_1_2_0_3"; "temporary-resourcet" = dontDistribute super."temporary-resourcet"; "tempus" = dontDistribute super."tempus"; "tempus-fugit" = dontDistribute super."tempus-fugit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.4.nix b/pkgs/development/haskell-modules/configuration-lts-1.4.nix index 11546e04a4a..e4dbbab7387 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.4.nix @@ -1423,6 +1423,7 @@ self: super: { "astrds" = dontDistribute super."astrds"; "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; + "async" = doDistribute super."async_2_0_2"; "async-dejafu" = dontDistribute super."async-dejafu"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; @@ -1569,6 +1570,7 @@ self: super: { "bdd" = dontDistribute super."bdd"; "bdelta" = dontDistribute super."bdelta"; "bdo" = dontDistribute super."bdo"; + "beam" = dontDistribute super."beam"; "beamable" = dontDistribute super."beamable"; "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; @@ -3658,6 +3660,13 @@ self: super: { "googleplus" = dontDistribute super."googleplus"; "googlepolyline" = dontDistribute super."googlepolyline"; "gopherbot" = dontDistribute super."gopherbot"; + "gore-and-ash" = dontDistribute super."gore-and-ash"; + "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; + "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; + "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; + "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; + "gore-and-ash-sync" = dontDistribute super."gore-and-ash-sync"; "gpah" = dontDistribute super."gpah"; "gpcsets" = dontDistribute super."gpcsets"; "gpolyline" = dontDistribute super."gpolyline"; @@ -4571,6 +4580,7 @@ self: super: { "hspec-experimental" = dontDistribute super."hspec-experimental"; "hspec-jenkins" = dontDistribute super."hspec-jenkins"; "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-megaparsec" = dontDistribute super."hspec-megaparsec"; "hspec-meta" = doDistribute super."hspec-meta_2_0_0"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; @@ -4768,6 +4778,7 @@ self: super: { "hyphenate" = dontDistribute super."hyphenate"; "hyphenation" = doDistribute super."hyphenation_0_4_1"; "hypher" = dontDistribute super."hypher"; + "hzaif" = dontDistribute super."hzaif"; "hzk" = dontDistribute super."hzk"; "hzulip" = dontDistribute super."hzulip"; "i18n" = dontDistribute super."i18n"; @@ -5548,6 +5559,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_1"; "markdown-kate" = dontDistribute super."markdown-kate"; @@ -5903,6 +5915,7 @@ self: super: { "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; "nano-cryptr" = dontDistribute super."nano-cryptr"; + "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; "nano-md5" = dontDistribute super."nano-md5"; "nanoAgda" = dontDistribute super."nanoAgda"; @@ -6070,6 +6083,7 @@ self: super: { "null-canvas" = dontDistribute super."null-canvas"; "nullary" = dontDistribute super."nullary"; "number" = dontDistribute super."number"; + "number-length" = dontDistribute super."number-length"; "numbering" = dontDistribute super."numbering"; "numerals" = dontDistribute super."numerals"; "numerals-base" = dontDistribute super."numerals-base"; @@ -6455,6 +6469,7 @@ self: super: { "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; "plailude" = dontDistribute super."plailude"; + "plan-b" = dontDistribute super."plan-b"; "planar-graph" = dontDistribute super."planar-graph"; "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; @@ -7914,6 +7929,7 @@ self: super: { "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" = doDistribute super."temporary_1_2_0_3"; "temporary-resourcet" = dontDistribute super."temporary-resourcet"; "tempus" = dontDistribute super."tempus"; "tempus-fugit" = dontDistribute super."tempus-fugit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.5.nix b/pkgs/development/haskell-modules/configuration-lts-1.5.nix index 974e9e05186..be2d731b3f3 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.5.nix @@ -1423,6 +1423,7 @@ self: super: { "astrds" = dontDistribute super."astrds"; "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; + "async" = doDistribute super."async_2_0_2"; "async-dejafu" = dontDistribute super."async-dejafu"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; @@ -1569,6 +1570,7 @@ self: super: { "bdd" = dontDistribute super."bdd"; "bdelta" = dontDistribute super."bdelta"; "bdo" = dontDistribute super."bdo"; + "beam" = dontDistribute super."beam"; "beamable" = dontDistribute super."beamable"; "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; @@ -3657,6 +3659,13 @@ self: super: { "googleplus" = dontDistribute super."googleplus"; "googlepolyline" = dontDistribute super."googlepolyline"; "gopherbot" = dontDistribute super."gopherbot"; + "gore-and-ash" = dontDistribute super."gore-and-ash"; + "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; + "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; + "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; + "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; + "gore-and-ash-sync" = dontDistribute super."gore-and-ash-sync"; "gpah" = dontDistribute super."gpah"; "gpcsets" = dontDistribute super."gpcsets"; "gpolyline" = dontDistribute super."gpolyline"; @@ -4570,6 +4579,7 @@ self: super: { "hspec-experimental" = dontDistribute super."hspec-experimental"; "hspec-jenkins" = dontDistribute super."hspec-jenkins"; "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-megaparsec" = dontDistribute super."hspec-megaparsec"; "hspec-meta" = doDistribute super."hspec-meta_2_0_0"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; @@ -4767,6 +4777,7 @@ self: super: { "hyphenate" = dontDistribute super."hyphenate"; "hyphenation" = doDistribute super."hyphenation_0_4_1"; "hypher" = dontDistribute super."hypher"; + "hzaif" = dontDistribute super."hzaif"; "hzk" = dontDistribute super."hzk"; "hzulip" = dontDistribute super."hzulip"; "i18n" = dontDistribute super."i18n"; @@ -5547,6 +5558,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_1"; "markdown-kate" = dontDistribute super."markdown-kate"; @@ -5902,6 +5914,7 @@ self: super: { "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; "nano-cryptr" = dontDistribute super."nano-cryptr"; + "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; "nano-md5" = dontDistribute super."nano-md5"; "nanoAgda" = dontDistribute super."nanoAgda"; @@ -6069,6 +6082,7 @@ self: super: { "null-canvas" = dontDistribute super."null-canvas"; "nullary" = dontDistribute super."nullary"; "number" = dontDistribute super."number"; + "number-length" = dontDistribute super."number-length"; "numbering" = dontDistribute super."numbering"; "numerals" = dontDistribute super."numerals"; "numerals-base" = dontDistribute super."numerals-base"; @@ -6454,6 +6468,7 @@ self: super: { "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; "plailude" = dontDistribute super."plailude"; + "plan-b" = dontDistribute super."plan-b"; "planar-graph" = dontDistribute super."planar-graph"; "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; @@ -7913,6 +7928,7 @@ self: super: { "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" = doDistribute super."temporary_1_2_0_3"; "temporary-resourcet" = dontDistribute super."temporary-resourcet"; "tempus" = dontDistribute super."tempus"; "tempus-fugit" = dontDistribute super."tempus-fugit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.7.nix b/pkgs/development/haskell-modules/configuration-lts-1.7.nix index 554ba8f0420..6617b79bd82 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.7.nix @@ -1423,6 +1423,7 @@ self: super: { "astrds" = dontDistribute super."astrds"; "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; + "async" = doDistribute super."async_2_0_2"; "async-dejafu" = dontDistribute super."async-dejafu"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; @@ -1569,6 +1570,7 @@ self: super: { "bdd" = dontDistribute super."bdd"; "bdelta" = dontDistribute super."bdelta"; "bdo" = dontDistribute super."bdo"; + "beam" = dontDistribute super."beam"; "beamable" = dontDistribute super."beamable"; "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; @@ -3657,6 +3659,13 @@ self: super: { "googleplus" = dontDistribute super."googleplus"; "googlepolyline" = dontDistribute super."googlepolyline"; "gopherbot" = dontDistribute super."gopherbot"; + "gore-and-ash" = dontDistribute super."gore-and-ash"; + "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; + "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; + "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; + "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; + "gore-and-ash-sync" = dontDistribute super."gore-and-ash-sync"; "gpah" = dontDistribute super."gpah"; "gpcsets" = dontDistribute super."gpcsets"; "gpolyline" = dontDistribute super."gpolyline"; @@ -4570,6 +4579,7 @@ self: super: { "hspec-experimental" = dontDistribute super."hspec-experimental"; "hspec-jenkins" = dontDistribute super."hspec-jenkins"; "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-megaparsec" = dontDistribute super."hspec-megaparsec"; "hspec-meta" = doDistribute super."hspec-meta_2_0_0"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; @@ -4762,6 +4772,7 @@ self: super: { "hyphenate" = dontDistribute super."hyphenate"; "hyphenation" = doDistribute super."hyphenation_0_4_2"; "hypher" = dontDistribute super."hypher"; + "hzaif" = dontDistribute super."hzaif"; "hzk" = dontDistribute super."hzk"; "hzulip" = dontDistribute super."hzulip"; "i18n" = dontDistribute super."i18n"; @@ -5542,6 +5553,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_1"; "markdown-kate" = dontDistribute super."markdown-kate"; @@ -5897,6 +5909,7 @@ self: super: { "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; "nano-cryptr" = dontDistribute super."nano-cryptr"; + "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; "nano-md5" = dontDistribute super."nano-md5"; "nanoAgda" = dontDistribute super."nanoAgda"; @@ -6064,6 +6077,7 @@ self: super: { "null-canvas" = dontDistribute super."null-canvas"; "nullary" = dontDistribute super."nullary"; "number" = dontDistribute super."number"; + "number-length" = dontDistribute super."number-length"; "numbering" = dontDistribute super."numbering"; "numerals" = dontDistribute super."numerals"; "numerals-base" = dontDistribute super."numerals-base"; @@ -6449,6 +6463,7 @@ self: super: { "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; "plailude" = dontDistribute super."plailude"; + "plan-b" = dontDistribute super."plan-b"; "planar-graph" = dontDistribute super."planar-graph"; "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; @@ -7908,6 +7923,7 @@ self: super: { "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" = doDistribute super."temporary_1_2_0_3"; "temporary-resourcet" = dontDistribute super."temporary-resourcet"; "tempus" = dontDistribute super."tempus"; "tempus-fugit" = dontDistribute super."tempus-fugit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.8.nix b/pkgs/development/haskell-modules/configuration-lts-1.8.nix index d79f2da11d6..a9a8963aa99 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.8.nix @@ -1423,6 +1423,7 @@ self: super: { "astrds" = dontDistribute super."astrds"; "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; + "async" = doDistribute super."async_2_0_2"; "async-dejafu" = dontDistribute super."async-dejafu"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; @@ -1569,6 +1570,7 @@ self: super: { "bdd" = dontDistribute super."bdd"; "bdelta" = dontDistribute super."bdelta"; "bdo" = dontDistribute super."bdo"; + "beam" = dontDistribute super."beam"; "beamable" = dontDistribute super."beamable"; "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; @@ -3655,6 +3657,13 @@ self: super: { "googleplus" = dontDistribute super."googleplus"; "googlepolyline" = dontDistribute super."googlepolyline"; "gopherbot" = dontDistribute super."gopherbot"; + "gore-and-ash" = dontDistribute super."gore-and-ash"; + "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; + "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; + "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; + "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; + "gore-and-ash-sync" = dontDistribute super."gore-and-ash-sync"; "gpah" = dontDistribute super."gpah"; "gpcsets" = dontDistribute super."gpcsets"; "gpolyline" = dontDistribute super."gpolyline"; @@ -4567,6 +4576,7 @@ self: super: { "hspec-experimental" = dontDistribute super."hspec-experimental"; "hspec-jenkins" = dontDistribute super."hspec-jenkins"; "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-megaparsec" = dontDistribute super."hspec-megaparsec"; "hspec-meta" = doDistribute super."hspec-meta_2_0_0"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; @@ -4759,6 +4769,7 @@ self: super: { "hyphenate" = dontDistribute super."hyphenate"; "hyphenation" = doDistribute super."hyphenation_0_4_2"; "hypher" = dontDistribute super."hypher"; + "hzaif" = dontDistribute super."hzaif"; "hzk" = dontDistribute super."hzk"; "hzulip" = dontDistribute super."hzulip"; "i18n" = dontDistribute super."i18n"; @@ -5538,6 +5549,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_1"; "markdown-kate" = dontDistribute super."markdown-kate"; @@ -5893,6 +5905,7 @@ self: super: { "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; "nano-cryptr" = dontDistribute super."nano-cryptr"; + "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; "nano-md5" = dontDistribute super."nano-md5"; "nanoAgda" = dontDistribute super."nanoAgda"; @@ -6060,6 +6073,7 @@ self: super: { "null-canvas" = dontDistribute super."null-canvas"; "nullary" = dontDistribute super."nullary"; "number" = dontDistribute super."number"; + "number-length" = dontDistribute super."number-length"; "numbering" = dontDistribute super."numbering"; "numerals" = dontDistribute super."numerals"; "numerals-base" = dontDistribute super."numerals-base"; @@ -6445,6 +6459,7 @@ self: super: { "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; "plailude" = dontDistribute super."plailude"; + "plan-b" = dontDistribute super."plan-b"; "planar-graph" = dontDistribute super."planar-graph"; "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; @@ -7904,6 +7919,7 @@ self: super: { "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" = doDistribute super."temporary_1_2_0_3"; "temporary-resourcet" = dontDistribute super."temporary-resourcet"; "tempus" = dontDistribute super."tempus"; "tempus-fugit" = dontDistribute super."tempus-fugit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.9.nix b/pkgs/development/haskell-modules/configuration-lts-1.9.nix index 64c8026b729..f14ff623409 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.9.nix @@ -1423,6 +1423,7 @@ self: super: { "astrds" = dontDistribute super."astrds"; "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; + "async" = doDistribute super."async_2_0_2"; "async-dejafu" = dontDistribute super."async-dejafu"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; @@ -1569,6 +1570,7 @@ self: super: { "bdd" = dontDistribute super."bdd"; "bdelta" = dontDistribute super."bdelta"; "bdo" = dontDistribute super."bdo"; + "beam" = dontDistribute super."beam"; "beamable" = dontDistribute super."beamable"; "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; @@ -3654,6 +3656,13 @@ self: super: { "googleplus" = dontDistribute super."googleplus"; "googlepolyline" = dontDistribute super."googlepolyline"; "gopherbot" = dontDistribute super."gopherbot"; + "gore-and-ash" = dontDistribute super."gore-and-ash"; + "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; + "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; + "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; + "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; + "gore-and-ash-sync" = dontDistribute super."gore-and-ash-sync"; "gpah" = dontDistribute super."gpah"; "gpcsets" = dontDistribute super."gpcsets"; "gpolyline" = dontDistribute super."gpolyline"; @@ -4566,6 +4575,7 @@ self: super: { "hspec-experimental" = dontDistribute super."hspec-experimental"; "hspec-jenkins" = dontDistribute super."hspec-jenkins"; "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-megaparsec" = dontDistribute super."hspec-megaparsec"; "hspec-meta" = doDistribute super."hspec-meta_2_0_0"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; @@ -4758,6 +4768,7 @@ self: super: { "hyphenate" = dontDistribute super."hyphenate"; "hyphenation" = doDistribute super."hyphenation_0_4_2"; "hypher" = dontDistribute super."hypher"; + "hzaif" = dontDistribute super."hzaif"; "hzk" = dontDistribute super."hzk"; "hzulip" = dontDistribute super."hzulip"; "i18n" = dontDistribute super."i18n"; @@ -5537,6 +5548,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_1"; "markdown-kate" = dontDistribute super."markdown-kate"; @@ -5892,6 +5904,7 @@ self: super: { "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; "nano-cryptr" = dontDistribute super."nano-cryptr"; + "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; "nano-md5" = dontDistribute super."nano-md5"; "nanoAgda" = dontDistribute super."nanoAgda"; @@ -6059,6 +6072,7 @@ self: super: { "null-canvas" = dontDistribute super."null-canvas"; "nullary" = dontDistribute super."nullary"; "number" = dontDistribute super."number"; + "number-length" = dontDistribute super."number-length"; "numbering" = dontDistribute super."numbering"; "numerals" = dontDistribute super."numerals"; "numerals-base" = dontDistribute super."numerals-base"; @@ -6444,6 +6458,7 @@ self: super: { "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; "plailude" = dontDistribute super."plailude"; + "plan-b" = dontDistribute super."plan-b"; "planar-graph" = dontDistribute super."planar-graph"; "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; @@ -7903,6 +7918,7 @@ self: super: { "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" = doDistribute super."temporary_1_2_0_3"; "temporary-resourcet" = dontDistribute super."temporary-resourcet"; "tempus" = dontDistribute super."tempus"; "tempus-fugit" = dontDistribute super."tempus-fugit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.0.nix b/pkgs/development/haskell-modules/configuration-lts-2.0.nix index 3a14233ea2e..94b073c821d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.0.nix @@ -1412,6 +1412,7 @@ self: super: { "astrds" = dontDistribute super."astrds"; "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; + "async" = doDistribute super."async_2_0_2"; "async-dejafu" = dontDistribute super."async-dejafu"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; @@ -1557,6 +1558,7 @@ self: super: { "bdd" = dontDistribute super."bdd"; "bdelta" = dontDistribute super."bdelta"; "bdo" = dontDistribute super."bdo"; + "beam" = dontDistribute super."beam"; "beamable" = dontDistribute super."beamable"; "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; @@ -3628,6 +3630,13 @@ self: super: { "googleplus" = dontDistribute super."googleplus"; "googlepolyline" = dontDistribute super."googlepolyline"; "gopherbot" = dontDistribute super."gopherbot"; + "gore-and-ash" = dontDistribute super."gore-and-ash"; + "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; + "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; + "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; + "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; + "gore-and-ash-sync" = dontDistribute super."gore-and-ash-sync"; "gpah" = dontDistribute super."gpah"; "gpcsets" = dontDistribute super."gpcsets"; "gpolyline" = dontDistribute super."gpolyline"; @@ -4531,6 +4540,7 @@ self: super: { "hspec-experimental" = dontDistribute super."hspec-experimental"; "hspec-jenkins" = dontDistribute super."hspec-jenkins"; "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-megaparsec" = dontDistribute super."hspec-megaparsec"; "hspec-meta" = doDistribute super."hspec-meta_2_1_5"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; @@ -4719,6 +4729,7 @@ self: super: { "hyphenate" = dontDistribute super."hyphenate"; "hyphenation" = doDistribute super."hyphenation_0_4_2_1"; "hypher" = dontDistribute super."hypher"; + "hzaif" = dontDistribute super."hzaif"; "hzk" = dontDistribute super."hzk"; "hzulip" = dontDistribute super."hzulip"; "i18n" = dontDistribute super."i18n"; @@ -5484,6 +5495,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_1"; "markdown-kate" = dontDistribute super."markdown-kate"; @@ -5827,6 +5839,7 @@ self: super: { "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; "nano-cryptr" = dontDistribute super."nano-cryptr"; + "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; "nano-md5" = dontDistribute super."nano-md5"; "nanoAgda" = dontDistribute super."nanoAgda"; @@ -5990,6 +6003,7 @@ self: super: { "null-canvas" = dontDistribute super."null-canvas"; "nullary" = dontDistribute super."nullary"; "number" = dontDistribute super."number"; + "number-length" = dontDistribute super."number-length"; "numbering" = dontDistribute super."numbering"; "numerals" = dontDistribute super."numerals"; "numerals-base" = dontDistribute super."numerals-base"; @@ -6372,6 +6386,7 @@ self: super: { "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; "plailude" = dontDistribute super."plailude"; + "plan-b" = dontDistribute super."plan-b"; "planar-graph" = dontDistribute super."planar-graph"; "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; @@ -6637,7 +6652,6 @@ self: super: { "queuelike" = dontDistribute super."queuelike"; "quick-generator" = dontDistribute super."quick-generator"; "quick-schema" = dontDistribute super."quick-schema"; - "quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11"; "quickcheck-io" = doDistribute super."quickcheck-io_0_1_1"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; @@ -7816,6 +7830,7 @@ self: super: { "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" = doDistribute super."temporary_1_2_0_3"; "temporary-resourcet" = dontDistribute super."temporary-resourcet"; "tempus" = dontDistribute super."tempus"; "tempus-fugit" = dontDistribute super."tempus-fugit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.1.nix b/pkgs/development/haskell-modules/configuration-lts-2.1.nix index 82b1a353a11..ddcf5efcae6 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.1.nix @@ -1412,6 +1412,7 @@ self: super: { "astrds" = dontDistribute super."astrds"; "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; + "async" = doDistribute super."async_2_0_2"; "async-dejafu" = dontDistribute super."async-dejafu"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; @@ -1557,6 +1558,7 @@ self: super: { "bdd" = dontDistribute super."bdd"; "bdelta" = dontDistribute super."bdelta"; "bdo" = dontDistribute super."bdo"; + "beam" = dontDistribute super."beam"; "beamable" = dontDistribute super."beamable"; "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; @@ -3627,6 +3629,13 @@ self: super: { "googleplus" = dontDistribute super."googleplus"; "googlepolyline" = dontDistribute super."googlepolyline"; "gopherbot" = dontDistribute super."gopherbot"; + "gore-and-ash" = dontDistribute super."gore-and-ash"; + "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; + "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; + "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; + "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; + "gore-and-ash-sync" = dontDistribute super."gore-and-ash-sync"; "gpah" = dontDistribute super."gpah"; "gpcsets" = dontDistribute super."gpcsets"; "gpolyline" = dontDistribute super."gpolyline"; @@ -4530,6 +4539,7 @@ self: super: { "hspec-experimental" = dontDistribute super."hspec-experimental"; "hspec-jenkins" = dontDistribute super."hspec-jenkins"; "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-megaparsec" = dontDistribute super."hspec-megaparsec"; "hspec-meta" = doDistribute super."hspec-meta_2_1_5"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; @@ -4718,6 +4728,7 @@ self: super: { "hyphenate" = dontDistribute super."hyphenate"; "hyphenation" = doDistribute super."hyphenation_0_4_2_1"; "hypher" = dontDistribute super."hypher"; + "hzaif" = dontDistribute super."hzaif"; "hzk" = dontDistribute super."hzk"; "hzulip" = dontDistribute super."hzulip"; "i18n" = dontDistribute super."i18n"; @@ -5483,6 +5494,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_1"; "markdown-kate" = dontDistribute super."markdown-kate"; @@ -5826,6 +5838,7 @@ self: super: { "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; "nano-cryptr" = dontDistribute super."nano-cryptr"; + "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; "nano-md5" = dontDistribute super."nano-md5"; "nanoAgda" = dontDistribute super."nanoAgda"; @@ -5989,6 +6002,7 @@ self: super: { "null-canvas" = dontDistribute super."null-canvas"; "nullary" = dontDistribute super."nullary"; "number" = dontDistribute super."number"; + "number-length" = dontDistribute super."number-length"; "numbering" = dontDistribute super."numbering"; "numerals" = dontDistribute super."numerals"; "numerals-base" = dontDistribute super."numerals-base"; @@ -6371,6 +6385,7 @@ self: super: { "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; "plailude" = dontDistribute super."plailude"; + "plan-b" = dontDistribute super."plan-b"; "planar-graph" = dontDistribute super."planar-graph"; "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; @@ -6636,7 +6651,6 @@ self: super: { "queuelike" = dontDistribute super."queuelike"; "quick-generator" = dontDistribute super."quick-generator"; "quick-schema" = dontDistribute super."quick-schema"; - "quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11"; "quickcheck-io" = doDistribute super."quickcheck-io_0_1_1"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; @@ -7815,6 +7829,7 @@ self: super: { "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" = doDistribute super."temporary_1_2_0_3"; "temporary-resourcet" = dontDistribute super."temporary-resourcet"; "tempus" = dontDistribute super."tempus"; "tempus-fugit" = dontDistribute super."tempus-fugit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.10.nix b/pkgs/development/haskell-modules/configuration-lts-2.10.nix index 5ebadb1e29b..c98889fa2aa 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.10.nix @@ -1407,6 +1407,7 @@ self: super: { "astrds" = dontDistribute super."astrds"; "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; + "async" = doDistribute super."async_2_0_2"; "async-dejafu" = dontDistribute super."async-dejafu"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; @@ -1549,6 +1550,7 @@ self: super: { "bdd" = dontDistribute super."bdd"; "bdelta" = dontDistribute super."bdelta"; "bdo" = dontDistribute super."bdo"; + "beam" = dontDistribute super."beam"; "beamable" = dontDistribute super."beamable"; "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; @@ -3608,6 +3610,13 @@ self: super: { "googleplus" = dontDistribute super."googleplus"; "googlepolyline" = dontDistribute super."googlepolyline"; "gopherbot" = dontDistribute super."gopherbot"; + "gore-and-ash" = dontDistribute super."gore-and-ash"; + "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; + "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; + "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; + "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; + "gore-and-ash-sync" = dontDistribute super."gore-and-ash-sync"; "gpah" = dontDistribute super."gpah"; "gpcsets" = dontDistribute super."gpcsets"; "gpolyline" = dontDistribute super."gpolyline"; @@ -4507,6 +4516,7 @@ self: super: { "hspec-experimental" = dontDistribute super."hspec-experimental"; "hspec-jenkins" = dontDistribute super."hspec-jenkins"; "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-megaparsec" = dontDistribute super."hspec-megaparsec"; "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; @@ -4692,6 +4702,7 @@ self: super: { "hyphenate" = dontDistribute super."hyphenate"; "hyphenation" = doDistribute super."hyphenation_0_4_2_1"; "hypher" = dontDistribute super."hypher"; + "hzaif" = dontDistribute super."hzaif"; "hzk" = dontDistribute super."hzk"; "hzulip" = dontDistribute super."hzulip"; "i18n" = dontDistribute super."i18n"; @@ -5451,6 +5462,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown-kate" = dontDistribute super."markdown-kate"; "markdown-pap" = dontDistribute super."markdown-pap"; @@ -5793,6 +5805,7 @@ self: super: { "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; "nano-cryptr" = dontDistribute super."nano-cryptr"; + "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; "nano-md5" = dontDistribute super."nano-md5"; "nanoAgda" = dontDistribute super."nanoAgda"; @@ -5954,6 +5967,7 @@ self: super: { "null-canvas" = dontDistribute super."null-canvas"; "nullary" = dontDistribute super."nullary"; "number" = dontDistribute super."number"; + "number-length" = dontDistribute super."number-length"; "numbering" = dontDistribute super."numbering"; "numerals" = dontDistribute super."numerals"; "numerals-base" = dontDistribute super."numerals-base"; @@ -6333,6 +6347,7 @@ self: super: { "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; "plailude" = dontDistribute super."plailude"; + "plan-b" = dontDistribute super."plan-b"; "planar-graph" = dontDistribute super."planar-graph"; "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; @@ -6596,7 +6611,6 @@ self: super: { "queuelike" = dontDistribute super."queuelike"; "quick-generator" = dontDistribute super."quick-generator"; "quick-schema" = dontDistribute super."quick-schema"; - "quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11"; "quickcheck-io" = doDistribute super."quickcheck-io_0_1_1"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; @@ -7765,6 +7779,7 @@ self: super: { "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" = doDistribute super."temporary_1_2_0_3"; "temporary-resourcet" = dontDistribute super."temporary-resourcet"; "tempus" = dontDistribute super."tempus"; "tempus-fugit" = dontDistribute super."tempus-fugit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.11.nix b/pkgs/development/haskell-modules/configuration-lts-2.11.nix index 623c5715254..472a9215257 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.11.nix @@ -1406,6 +1406,7 @@ self: super: { "astrds" = dontDistribute super."astrds"; "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; + "async" = doDistribute super."async_2_0_2"; "async-dejafu" = dontDistribute super."async-dejafu"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; @@ -1548,6 +1549,7 @@ self: super: { "bdd" = dontDistribute super."bdd"; "bdelta" = dontDistribute super."bdelta"; "bdo" = dontDistribute super."bdo"; + "beam" = dontDistribute super."beam"; "beamable" = dontDistribute super."beamable"; "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; @@ -3606,6 +3608,13 @@ self: super: { "googleplus" = dontDistribute super."googleplus"; "googlepolyline" = dontDistribute super."googlepolyline"; "gopherbot" = dontDistribute super."gopherbot"; + "gore-and-ash" = dontDistribute super."gore-and-ash"; + "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; + "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; + "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; + "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; + "gore-and-ash-sync" = dontDistribute super."gore-and-ash-sync"; "gpah" = dontDistribute super."gpah"; "gpcsets" = dontDistribute super."gpcsets"; "gpolyline" = dontDistribute super."gpolyline"; @@ -4504,6 +4513,7 @@ self: super: { "hspec-experimental" = dontDistribute super."hspec-experimental"; "hspec-jenkins" = dontDistribute super."hspec-jenkins"; "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-megaparsec" = dontDistribute super."hspec-megaparsec"; "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; @@ -4689,6 +4699,7 @@ self: super: { "hyphenate" = dontDistribute super."hyphenate"; "hyphenation" = doDistribute super."hyphenation_0_4_2_1"; "hypher" = dontDistribute super."hypher"; + "hzaif" = dontDistribute super."hzaif"; "hzk" = dontDistribute super."hzk"; "hzulip" = dontDistribute super."hzulip"; "i18n" = dontDistribute super."i18n"; @@ -5447,6 +5458,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown-kate" = dontDistribute super."markdown-kate"; "markdown-pap" = dontDistribute super."markdown-pap"; @@ -5788,6 +5800,7 @@ self: super: { "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; "nano-cryptr" = dontDistribute super."nano-cryptr"; + "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; "nano-md5" = dontDistribute super."nano-md5"; "nanoAgda" = dontDistribute super."nanoAgda"; @@ -5949,6 +5962,7 @@ self: super: { "null-canvas" = dontDistribute super."null-canvas"; "nullary" = dontDistribute super."nullary"; "number" = dontDistribute super."number"; + "number-length" = dontDistribute super."number-length"; "numbering" = dontDistribute super."numbering"; "numerals" = dontDistribute super."numerals"; "numerals-base" = dontDistribute super."numerals-base"; @@ -6327,6 +6341,7 @@ self: super: { "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; "plailude" = dontDistribute super."plailude"; + "plan-b" = dontDistribute super."plan-b"; "planar-graph" = dontDistribute super."planar-graph"; "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; @@ -6590,7 +6605,6 @@ self: super: { "queuelike" = dontDistribute super."queuelike"; "quick-generator" = dontDistribute super."quick-generator"; "quick-schema" = dontDistribute super."quick-schema"; - "quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11"; "quickcheck-io" = doDistribute super."quickcheck-io_0_1_1"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; @@ -7756,6 +7770,7 @@ self: super: { "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" = doDistribute super."temporary_1_2_0_3"; "temporary-resourcet" = dontDistribute super."temporary-resourcet"; "tempus" = dontDistribute super."tempus"; "tempus-fugit" = dontDistribute super."tempus-fugit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.12.nix b/pkgs/development/haskell-modules/configuration-lts-2.12.nix index 60498ad14a0..0a81ae1cdf5 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.12.nix @@ -1406,6 +1406,7 @@ self: super: { "astrds" = dontDistribute super."astrds"; "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; + "async" = doDistribute super."async_2_0_2"; "async-dejafu" = dontDistribute super."async-dejafu"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; @@ -1548,6 +1549,7 @@ self: super: { "bdd" = dontDistribute super."bdd"; "bdelta" = dontDistribute super."bdelta"; "bdo" = dontDistribute super."bdo"; + "beam" = dontDistribute super."beam"; "beamable" = dontDistribute super."beamable"; "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; @@ -3606,6 +3608,13 @@ self: super: { "googleplus" = dontDistribute super."googleplus"; "googlepolyline" = dontDistribute super."googlepolyline"; "gopherbot" = dontDistribute super."gopherbot"; + "gore-and-ash" = dontDistribute super."gore-and-ash"; + "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; + "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; + "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; + "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; + "gore-and-ash-sync" = dontDistribute super."gore-and-ash-sync"; "gpah" = dontDistribute super."gpah"; "gpcsets" = dontDistribute super."gpcsets"; "gpolyline" = dontDistribute super."gpolyline"; @@ -4504,6 +4513,7 @@ self: super: { "hspec-experimental" = dontDistribute super."hspec-experimental"; "hspec-jenkins" = dontDistribute super."hspec-jenkins"; "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-megaparsec" = dontDistribute super."hspec-megaparsec"; "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; @@ -4689,6 +4699,7 @@ self: super: { "hyphenate" = dontDistribute super."hyphenate"; "hyphenation" = doDistribute super."hyphenation_0_4_2_1"; "hypher" = dontDistribute super."hypher"; + "hzaif" = dontDistribute super."hzaif"; "hzk" = dontDistribute super."hzk"; "hzulip" = dontDistribute super."hzulip"; "i18n" = dontDistribute super."i18n"; @@ -5447,6 +5458,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown-kate" = dontDistribute super."markdown-kate"; "markdown-pap" = dontDistribute super."markdown-pap"; @@ -5788,6 +5800,7 @@ self: super: { "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; "nano-cryptr" = dontDistribute super."nano-cryptr"; + "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; "nano-md5" = dontDistribute super."nano-md5"; "nanoAgda" = dontDistribute super."nanoAgda"; @@ -5949,6 +5962,7 @@ self: super: { "null-canvas" = dontDistribute super."null-canvas"; "nullary" = dontDistribute super."nullary"; "number" = dontDistribute super."number"; + "number-length" = dontDistribute super."number-length"; "numbering" = dontDistribute super."numbering"; "numerals" = dontDistribute super."numerals"; "numerals-base" = dontDistribute super."numerals-base"; @@ -6327,6 +6341,7 @@ self: super: { "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; "plailude" = dontDistribute super."plailude"; + "plan-b" = dontDistribute super."plan-b"; "planar-graph" = dontDistribute super."planar-graph"; "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; @@ -6590,7 +6605,6 @@ self: super: { "queuelike" = dontDistribute super."queuelike"; "quick-generator" = dontDistribute super."quick-generator"; "quick-schema" = dontDistribute super."quick-schema"; - "quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11"; "quickcheck-io" = doDistribute super."quickcheck-io_0_1_1"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; @@ -7755,6 +7769,7 @@ self: super: { "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" = doDistribute super."temporary_1_2_0_3"; "temporary-resourcet" = dontDistribute super."temporary-resourcet"; "tempus" = dontDistribute super."tempus"; "tempus-fugit" = dontDistribute super."tempus-fugit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.13.nix b/pkgs/development/haskell-modules/configuration-lts-2.13.nix index 37ab6fddf3a..7c33ed9182e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.13.nix @@ -1406,6 +1406,7 @@ self: super: { "astrds" = dontDistribute super."astrds"; "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; + "async" = doDistribute super."async_2_0_2"; "async-dejafu" = dontDistribute super."async-dejafu"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; @@ -1548,6 +1549,7 @@ self: super: { "bdd" = dontDistribute super."bdd"; "bdelta" = dontDistribute super."bdelta"; "bdo" = dontDistribute super."bdo"; + "beam" = dontDistribute super."beam"; "beamable" = dontDistribute super."beamable"; "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; @@ -3606,6 +3608,13 @@ self: super: { "googleplus" = dontDistribute super."googleplus"; "googlepolyline" = dontDistribute super."googlepolyline"; "gopherbot" = dontDistribute super."gopherbot"; + "gore-and-ash" = dontDistribute super."gore-and-ash"; + "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; + "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; + "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; + "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; + "gore-and-ash-sync" = dontDistribute super."gore-and-ash-sync"; "gpah" = dontDistribute super."gpah"; "gpcsets" = dontDistribute super."gpcsets"; "gpolyline" = dontDistribute super."gpolyline"; @@ -4503,6 +4512,7 @@ self: super: { "hspec-experimental" = dontDistribute super."hspec-experimental"; "hspec-jenkins" = dontDistribute super."hspec-jenkins"; "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-megaparsec" = dontDistribute super."hspec-megaparsec"; "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; @@ -4688,6 +4698,7 @@ self: super: { "hyphenate" = dontDistribute super."hyphenate"; "hyphenation" = doDistribute super."hyphenation_0_4_2_1"; "hypher" = dontDistribute super."hypher"; + "hzaif" = dontDistribute super."hzaif"; "hzk" = dontDistribute super."hzk"; "hzulip" = dontDistribute super."hzulip"; "i18n" = dontDistribute super."i18n"; @@ -5445,6 +5456,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown-kate" = dontDistribute super."markdown-kate"; "markdown-pap" = dontDistribute super."markdown-pap"; @@ -5786,6 +5798,7 @@ self: super: { "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; "nano-cryptr" = dontDistribute super."nano-cryptr"; + "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; "nano-md5" = dontDistribute super."nano-md5"; "nanoAgda" = dontDistribute super."nanoAgda"; @@ -5947,6 +5960,7 @@ self: super: { "null-canvas" = dontDistribute super."null-canvas"; "nullary" = dontDistribute super."nullary"; "number" = dontDistribute super."number"; + "number-length" = dontDistribute super."number-length"; "numbering" = dontDistribute super."numbering"; "numerals" = dontDistribute super."numerals"; "numerals-base" = dontDistribute super."numerals-base"; @@ -6325,6 +6339,7 @@ self: super: { "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; "plailude" = dontDistribute super."plailude"; + "plan-b" = dontDistribute super."plan-b"; "planar-graph" = dontDistribute super."planar-graph"; "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; @@ -6588,7 +6603,6 @@ self: super: { "queuelike" = dontDistribute super."queuelike"; "quick-generator" = dontDistribute super."quick-generator"; "quick-schema" = dontDistribute super."quick-schema"; - "quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11"; "quickcheck-io" = doDistribute super."quickcheck-io_0_1_1"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; @@ -7753,6 +7767,7 @@ self: super: { "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" = doDistribute super."temporary_1_2_0_3"; "temporary-resourcet" = dontDistribute super."temporary-resourcet"; "tempus" = dontDistribute super."tempus"; "tempus-fugit" = dontDistribute super."tempus-fugit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.14.nix b/pkgs/development/haskell-modules/configuration-lts-2.14.nix index e5f971b07b8..16a9b422305 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.14.nix @@ -1405,6 +1405,7 @@ self: super: { "astrds" = dontDistribute super."astrds"; "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; + "async" = doDistribute super."async_2_0_2"; "async-dejafu" = dontDistribute super."async-dejafu"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; @@ -1547,6 +1548,7 @@ self: super: { "bdd" = dontDistribute super."bdd"; "bdelta" = dontDistribute super."bdelta"; "bdo" = dontDistribute super."bdo"; + "beam" = dontDistribute super."beam"; "beamable" = dontDistribute super."beamable"; "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; @@ -3604,6 +3606,13 @@ self: super: { "googleplus" = dontDistribute super."googleplus"; "googlepolyline" = dontDistribute super."googlepolyline"; "gopherbot" = dontDistribute super."gopherbot"; + "gore-and-ash" = dontDistribute super."gore-and-ash"; + "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; + "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; + "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; + "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; + "gore-and-ash-sync" = dontDistribute super."gore-and-ash-sync"; "gpah" = dontDistribute super."gpah"; "gpcsets" = dontDistribute super."gpcsets"; "gpolyline" = dontDistribute super."gpolyline"; @@ -4501,6 +4510,7 @@ self: super: { "hspec-experimental" = dontDistribute super."hspec-experimental"; "hspec-jenkins" = dontDistribute super."hspec-jenkins"; "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-megaparsec" = dontDistribute super."hspec-megaparsec"; "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; @@ -4685,6 +4695,7 @@ self: super: { "hyphenate" = dontDistribute super."hyphenate"; "hyphenation" = doDistribute super."hyphenation_0_4_2_1"; "hypher" = dontDistribute super."hypher"; + "hzaif" = dontDistribute super."hzaif"; "hzk" = dontDistribute super."hzk"; "hzulip" = dontDistribute super."hzulip"; "i18n" = dontDistribute super."i18n"; @@ -5442,6 +5453,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown-kate" = dontDistribute super."markdown-kate"; "markdown-pap" = dontDistribute super."markdown-pap"; @@ -5783,6 +5795,7 @@ self: super: { "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; "nano-cryptr" = dontDistribute super."nano-cryptr"; + "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; "nano-md5" = dontDistribute super."nano-md5"; "nanoAgda" = dontDistribute super."nanoAgda"; @@ -5944,6 +5957,7 @@ self: super: { "null-canvas" = dontDistribute super."null-canvas"; "nullary" = dontDistribute super."nullary"; "number" = dontDistribute super."number"; + "number-length" = dontDistribute super."number-length"; "numbering" = dontDistribute super."numbering"; "numerals" = dontDistribute super."numerals"; "numerals-base" = dontDistribute super."numerals-base"; @@ -6322,6 +6336,7 @@ self: super: { "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; "plailude" = dontDistribute super."plailude"; + "plan-b" = dontDistribute super."plan-b"; "planar-graph" = dontDistribute super."planar-graph"; "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; @@ -6585,7 +6600,6 @@ self: super: { "queuelike" = dontDistribute super."queuelike"; "quick-generator" = dontDistribute super."quick-generator"; "quick-schema" = dontDistribute super."quick-schema"; - "quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11"; "quickcheck-io" = doDistribute super."quickcheck-io_0_1_1"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; @@ -7749,6 +7763,7 @@ self: super: { "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" = doDistribute super."temporary_1_2_0_3"; "temporary-resourcet" = dontDistribute super."temporary-resourcet"; "tempus" = dontDistribute super."tempus"; "tempus-fugit" = dontDistribute super."tempus-fugit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.15.nix b/pkgs/development/haskell-modules/configuration-lts-2.15.nix index daf74d57f49..140483b7ade 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.15.nix @@ -1405,6 +1405,7 @@ self: super: { "astrds" = dontDistribute super."astrds"; "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; + "async" = doDistribute super."async_2_0_2"; "async-dejafu" = dontDistribute super."async-dejafu"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; @@ -1547,6 +1548,7 @@ self: super: { "bdd" = dontDistribute super."bdd"; "bdelta" = dontDistribute super."bdelta"; "bdo" = dontDistribute super."bdo"; + "beam" = dontDistribute super."beam"; "beamable" = dontDistribute super."beamable"; "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; @@ -3603,6 +3605,13 @@ self: super: { "googleplus" = dontDistribute super."googleplus"; "googlepolyline" = dontDistribute super."googlepolyline"; "gopherbot" = dontDistribute super."gopherbot"; + "gore-and-ash" = dontDistribute super."gore-and-ash"; + "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; + "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; + "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; + "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; + "gore-and-ash-sync" = dontDistribute super."gore-and-ash-sync"; "gpah" = dontDistribute super."gpah"; "gpcsets" = dontDistribute super."gpcsets"; "gpolyline" = dontDistribute super."gpolyline"; @@ -4500,6 +4509,7 @@ self: super: { "hspec-experimental" = dontDistribute super."hspec-experimental"; "hspec-jenkins" = dontDistribute super."hspec-jenkins"; "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-megaparsec" = dontDistribute super."hspec-megaparsec"; "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; @@ -4684,6 +4694,7 @@ self: super: { "hyphenate" = dontDistribute super."hyphenate"; "hyphenation" = doDistribute super."hyphenation_0_4_2_1"; "hypher" = dontDistribute super."hypher"; + "hzaif" = dontDistribute super."hzaif"; "hzk" = dontDistribute super."hzk"; "hzulip" = dontDistribute super."hzulip"; "i18n" = dontDistribute super."i18n"; @@ -5441,6 +5452,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown-kate" = dontDistribute super."markdown-kate"; "markdown-pap" = dontDistribute super."markdown-pap"; @@ -5781,6 +5793,7 @@ self: super: { "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; "nano-cryptr" = dontDistribute super."nano-cryptr"; + "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; "nano-md5" = dontDistribute super."nano-md5"; "nanoAgda" = dontDistribute super."nanoAgda"; @@ -5940,6 +5953,7 @@ self: super: { "null-canvas" = dontDistribute super."null-canvas"; "nullary" = dontDistribute super."nullary"; "number" = dontDistribute super."number"; + "number-length" = dontDistribute super."number-length"; "numbering" = dontDistribute super."numbering"; "numerals" = dontDistribute super."numerals"; "numerals-base" = dontDistribute super."numerals-base"; @@ -6318,6 +6332,7 @@ self: super: { "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; "plailude" = dontDistribute super."plailude"; + "plan-b" = dontDistribute super."plan-b"; "planar-graph" = dontDistribute super."planar-graph"; "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; @@ -6581,7 +6596,6 @@ self: super: { "queuelike" = dontDistribute super."queuelike"; "quick-generator" = dontDistribute super."quick-generator"; "quick-schema" = dontDistribute super."quick-schema"; - "quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11"; "quickcheck-io" = doDistribute super."quickcheck-io_0_1_1"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; @@ -7744,6 +7758,7 @@ self: super: { "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" = doDistribute super."temporary_1_2_0_3"; "temporary-resourcet" = dontDistribute super."temporary-resourcet"; "tempus" = dontDistribute super."tempus"; "tempus-fugit" = dontDistribute super."tempus-fugit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.16.nix b/pkgs/development/haskell-modules/configuration-lts-2.16.nix index 9d7781af7e7..0fcd9376f8e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.16.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.16.nix @@ -1404,6 +1404,7 @@ self: super: { "astrds" = dontDistribute super."astrds"; "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; + "async" = doDistribute super."async_2_0_2"; "async-dejafu" = dontDistribute super."async-dejafu"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; @@ -1546,6 +1547,7 @@ self: super: { "bdd" = dontDistribute super."bdd"; "bdelta" = dontDistribute super."bdelta"; "bdo" = dontDistribute super."bdo"; + "beam" = dontDistribute super."beam"; "beamable" = dontDistribute super."beamable"; "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; @@ -3598,6 +3600,13 @@ self: super: { "googleplus" = dontDistribute super."googleplus"; "googlepolyline" = dontDistribute super."googlepolyline"; "gopherbot" = dontDistribute super."gopherbot"; + "gore-and-ash" = dontDistribute super."gore-and-ash"; + "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; + "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; + "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; + "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; + "gore-and-ash-sync" = dontDistribute super."gore-and-ash-sync"; "gpah" = dontDistribute super."gpah"; "gpcsets" = dontDistribute super."gpcsets"; "gpolyline" = dontDistribute super."gpolyline"; @@ -4495,6 +4504,7 @@ self: super: { "hspec-experimental" = dontDistribute super."hspec-experimental"; "hspec-jenkins" = dontDistribute super."hspec-jenkins"; "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-megaparsec" = dontDistribute super."hspec-megaparsec"; "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; @@ -4679,6 +4689,7 @@ self: super: { "hyphenate" = dontDistribute super."hyphenate"; "hyphenation" = doDistribute super."hyphenation_0_4_2_1"; "hypher" = dontDistribute super."hypher"; + "hzaif" = dontDistribute super."hzaif"; "hzk" = dontDistribute super."hzk"; "hzulip" = dontDistribute super."hzulip"; "i18n" = dontDistribute super."i18n"; @@ -5435,6 +5446,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown-kate" = dontDistribute super."markdown-kate"; "markdown-pap" = dontDistribute super."markdown-pap"; @@ -5775,6 +5787,7 @@ self: super: { "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; "nano-cryptr" = dontDistribute super."nano-cryptr"; + "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; "nano-md5" = dontDistribute super."nano-md5"; "nanoAgda" = dontDistribute super."nanoAgda"; @@ -5934,6 +5947,7 @@ self: super: { "null-canvas" = dontDistribute super."null-canvas"; "nullary" = dontDistribute super."nullary"; "number" = dontDistribute super."number"; + "number-length" = dontDistribute super."number-length"; "numbering" = dontDistribute super."numbering"; "numerals" = dontDistribute super."numerals"; "numerals-base" = dontDistribute super."numerals-base"; @@ -6312,6 +6326,7 @@ self: super: { "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; "plailude" = dontDistribute super."plailude"; + "plan-b" = dontDistribute super."plan-b"; "planar-graph" = dontDistribute super."planar-graph"; "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; @@ -6575,7 +6590,6 @@ self: super: { "queuelike" = dontDistribute super."queuelike"; "quick-generator" = dontDistribute super."quick-generator"; "quick-schema" = dontDistribute super."quick-schema"; - "quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11"; "quickcheck-io" = doDistribute super."quickcheck-io_0_1_1"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; @@ -7738,6 +7752,7 @@ self: super: { "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" = doDistribute super."temporary_1_2_0_3"; "temporary-resourcet" = dontDistribute super."temporary-resourcet"; "tempus" = dontDistribute super."tempus"; "tempus-fugit" = dontDistribute super."tempus-fugit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.17.nix b/pkgs/development/haskell-modules/configuration-lts-2.17.nix index 994024d5298..94cf59753ec 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.17.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.17.nix @@ -1403,6 +1403,7 @@ self: super: { "astrds" = dontDistribute super."astrds"; "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; + "async" = doDistribute super."async_2_0_2"; "async-dejafu" = dontDistribute super."async-dejafu"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; @@ -1545,6 +1546,7 @@ self: super: { "bdd" = dontDistribute super."bdd"; "bdelta" = dontDistribute super."bdelta"; "bdo" = dontDistribute super."bdo"; + "beam" = dontDistribute super."beam"; "beamable" = dontDistribute super."beamable"; "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; @@ -3593,6 +3595,13 @@ self: super: { "googleplus" = dontDistribute super."googleplus"; "googlepolyline" = dontDistribute super."googlepolyline"; "gopherbot" = dontDistribute super."gopherbot"; + "gore-and-ash" = dontDistribute super."gore-and-ash"; + "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; + "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; + "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; + "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; + "gore-and-ash-sync" = dontDistribute super."gore-and-ash-sync"; "gpah" = dontDistribute super."gpah"; "gpcsets" = dontDistribute super."gpcsets"; "gpolyline" = dontDistribute super."gpolyline"; @@ -4490,6 +4499,7 @@ self: super: { "hspec-experimental" = dontDistribute super."hspec-experimental"; "hspec-jenkins" = dontDistribute super."hspec-jenkins"; "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-megaparsec" = dontDistribute super."hspec-megaparsec"; "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; @@ -4674,6 +4684,7 @@ self: super: { "hyphenate" = dontDistribute super."hyphenate"; "hyphenation" = doDistribute super."hyphenation_0_4_2_1"; "hypher" = dontDistribute super."hypher"; + "hzaif" = dontDistribute super."hzaif"; "hzk" = dontDistribute super."hzk"; "hzulip" = dontDistribute super."hzulip"; "i18n" = dontDistribute super."i18n"; @@ -5430,6 +5441,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown-kate" = dontDistribute super."markdown-kate"; "markdown-pap" = dontDistribute super."markdown-pap"; @@ -5770,6 +5782,7 @@ self: super: { "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; "nano-cryptr" = dontDistribute super."nano-cryptr"; + "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; "nano-md5" = dontDistribute super."nano-md5"; "nanoAgda" = dontDistribute super."nanoAgda"; @@ -5928,6 +5941,7 @@ self: super: { "null-canvas" = dontDistribute super."null-canvas"; "nullary" = dontDistribute super."nullary"; "number" = dontDistribute super."number"; + "number-length" = dontDistribute super."number-length"; "numbering" = dontDistribute super."numbering"; "numerals" = dontDistribute super."numerals"; "numerals-base" = dontDistribute super."numerals-base"; @@ -6306,6 +6320,7 @@ self: super: { "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; "plailude" = dontDistribute super."plailude"; + "plan-b" = dontDistribute super."plan-b"; "planar-graph" = dontDistribute super."planar-graph"; "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; @@ -6569,7 +6584,6 @@ self: super: { "queuelike" = dontDistribute super."queuelike"; "quick-generator" = dontDistribute super."quick-generator"; "quick-schema" = dontDistribute super."quick-schema"; - "quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11"; "quickcheck-io" = doDistribute super."quickcheck-io_0_1_1"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; @@ -7732,6 +7746,7 @@ self: super: { "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" = doDistribute super."temporary_1_2_0_3"; "temporary-resourcet" = dontDistribute super."temporary-resourcet"; "tempus" = dontDistribute super."tempus"; "tempus-fugit" = dontDistribute super."tempus-fugit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.18.nix b/pkgs/development/haskell-modules/configuration-lts-2.18.nix index ddbb61c0e6c..1426832df28 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.18.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.18.nix @@ -1403,6 +1403,7 @@ self: super: { "astrds" = dontDistribute super."astrds"; "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; + "async" = doDistribute super."async_2_0_2"; "async-dejafu" = dontDistribute super."async-dejafu"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; @@ -1545,6 +1546,7 @@ self: super: { "bdd" = dontDistribute super."bdd"; "bdelta" = dontDistribute super."bdelta"; "bdo" = dontDistribute super."bdo"; + "beam" = dontDistribute super."beam"; "beamable" = dontDistribute super."beamable"; "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; @@ -3591,6 +3593,13 @@ self: super: { "googleplus" = dontDistribute super."googleplus"; "googlepolyline" = dontDistribute super."googlepolyline"; "gopherbot" = dontDistribute super."gopherbot"; + "gore-and-ash" = dontDistribute super."gore-and-ash"; + "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; + "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; + "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; + "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; + "gore-and-ash-sync" = dontDistribute super."gore-and-ash-sync"; "gpah" = dontDistribute super."gpah"; "gpcsets" = dontDistribute super."gpcsets"; "gpolyline" = dontDistribute super."gpolyline"; @@ -4487,6 +4496,7 @@ self: super: { "hspec-experimental" = dontDistribute super."hspec-experimental"; "hspec-jenkins" = dontDistribute super."hspec-jenkins"; "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-megaparsec" = dontDistribute super."hspec-megaparsec"; "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; @@ -4671,6 +4681,7 @@ self: super: { "hyphenate" = dontDistribute super."hyphenate"; "hyphenation" = doDistribute super."hyphenation_0_4_2_1"; "hypher" = dontDistribute super."hypher"; + "hzaif" = dontDistribute super."hzaif"; "hzk" = dontDistribute super."hzk"; "hzulip" = dontDistribute super."hzulip"; "i18n" = dontDistribute super."i18n"; @@ -5427,6 +5438,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown-kate" = dontDistribute super."markdown-kate"; "markdown-pap" = dontDistribute super."markdown-pap"; @@ -5767,6 +5779,7 @@ self: super: { "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; "nano-cryptr" = dontDistribute super."nano-cryptr"; + "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; "nano-md5" = dontDistribute super."nano-md5"; "nanoAgda" = dontDistribute super."nanoAgda"; @@ -5924,6 +5937,7 @@ self: super: { "null-canvas" = dontDistribute super."null-canvas"; "nullary" = dontDistribute super."nullary"; "number" = dontDistribute super."number"; + "number-length" = dontDistribute super."number-length"; "numbering" = dontDistribute super."numbering"; "numerals" = dontDistribute super."numerals"; "numerals-base" = dontDistribute super."numerals-base"; @@ -6301,6 +6315,7 @@ self: super: { "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; "plailude" = dontDistribute super."plailude"; + "plan-b" = dontDistribute super."plan-b"; "planar-graph" = dontDistribute super."planar-graph"; "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; @@ -6564,7 +6579,6 @@ self: super: { "queuelike" = dontDistribute super."queuelike"; "quick-generator" = dontDistribute super."quick-generator"; "quick-schema" = dontDistribute super."quick-schema"; - "quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11"; "quickcheck-io" = doDistribute super."quickcheck-io_0_1_1"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; @@ -7726,6 +7740,7 @@ self: super: { "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" = doDistribute super."temporary_1_2_0_3"; "temporary-resourcet" = dontDistribute super."temporary-resourcet"; "tempus" = dontDistribute super."tempus"; "tempus-fugit" = dontDistribute super."tempus-fugit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.19.nix b/pkgs/development/haskell-modules/configuration-lts-2.19.nix index 0806b361a3a..9a009d2ceeb 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.19.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.19.nix @@ -1403,6 +1403,7 @@ self: super: { "astrds" = dontDistribute super."astrds"; "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; + "async" = doDistribute super."async_2_0_2"; "async-dejafu" = dontDistribute super."async-dejafu"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; @@ -1545,6 +1546,7 @@ self: super: { "bdd" = dontDistribute super."bdd"; "bdelta" = dontDistribute super."bdelta"; "bdo" = dontDistribute super."bdo"; + "beam" = dontDistribute super."beam"; "beamable" = dontDistribute super."beamable"; "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; @@ -3590,6 +3592,13 @@ self: super: { "googleplus" = dontDistribute super."googleplus"; "googlepolyline" = dontDistribute super."googlepolyline"; "gopherbot" = dontDistribute super."gopherbot"; + "gore-and-ash" = dontDistribute super."gore-and-ash"; + "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; + "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; + "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; + "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; + "gore-and-ash-sync" = dontDistribute super."gore-and-ash-sync"; "gpah" = dontDistribute super."gpah"; "gpcsets" = dontDistribute super."gpcsets"; "gpolyline" = dontDistribute super."gpolyline"; @@ -4486,6 +4495,7 @@ self: super: { "hspec-experimental" = dontDistribute super."hspec-experimental"; "hspec-jenkins" = dontDistribute super."hspec-jenkins"; "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-megaparsec" = dontDistribute super."hspec-megaparsec"; "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; @@ -4670,6 +4680,7 @@ self: super: { "hyphenate" = dontDistribute super."hyphenate"; "hyphenation" = doDistribute super."hyphenation_0_4_2_1"; "hypher" = dontDistribute super."hypher"; + "hzaif" = dontDistribute super."hzaif"; "hzk" = dontDistribute super."hzk"; "hzulip" = dontDistribute super."hzulip"; "i18n" = dontDistribute super."i18n"; @@ -5426,6 +5437,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown-kate" = dontDistribute super."markdown-kate"; "markdown-pap" = dontDistribute super."markdown-pap"; @@ -5764,6 +5776,7 @@ self: super: { "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; "nano-cryptr" = dontDistribute super."nano-cryptr"; + "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; "nano-md5" = dontDistribute super."nano-md5"; "nanoAgda" = dontDistribute super."nanoAgda"; @@ -5921,6 +5934,7 @@ self: super: { "null-canvas" = dontDistribute super."null-canvas"; "nullary" = dontDistribute super."nullary"; "number" = dontDistribute super."number"; + "number-length" = dontDistribute super."number-length"; "numbering" = dontDistribute super."numbering"; "numerals" = dontDistribute super."numerals"; "numerals-base" = dontDistribute super."numerals-base"; @@ -6298,6 +6312,7 @@ self: super: { "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; "plailude" = dontDistribute super."plailude"; + "plan-b" = dontDistribute super."plan-b"; "planar-graph" = dontDistribute super."planar-graph"; "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; @@ -6561,7 +6576,6 @@ self: super: { "queuelike" = dontDistribute super."queuelike"; "quick-generator" = dontDistribute super."quick-generator"; "quick-schema" = dontDistribute super."quick-schema"; - "quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11"; "quickcheck-io" = doDistribute super."quickcheck-io_0_1_1"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; @@ -7721,6 +7735,7 @@ self: super: { "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" = doDistribute super."temporary_1_2_0_3"; "temporary-resourcet" = dontDistribute super."temporary-resourcet"; "tempus" = dontDistribute super."tempus"; "tempus-fugit" = dontDistribute super."tempus-fugit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.2.nix b/pkgs/development/haskell-modules/configuration-lts-2.2.nix index a9525906dda..534c29e8325 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.2.nix @@ -1411,6 +1411,7 @@ self: super: { "astrds" = dontDistribute super."astrds"; "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; + "async" = doDistribute super."async_2_0_2"; "async-dejafu" = dontDistribute super."async-dejafu"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; @@ -1556,6 +1557,7 @@ self: super: { "bdd" = dontDistribute super."bdd"; "bdelta" = dontDistribute super."bdelta"; "bdo" = dontDistribute super."bdo"; + "beam" = dontDistribute super."beam"; "beamable" = dontDistribute super."beamable"; "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; @@ -3624,6 +3626,13 @@ self: super: { "googleplus" = dontDistribute super."googleplus"; "googlepolyline" = dontDistribute super."googlepolyline"; "gopherbot" = dontDistribute super."gopherbot"; + "gore-and-ash" = dontDistribute super."gore-and-ash"; + "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; + "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; + "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; + "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; + "gore-and-ash-sync" = dontDistribute super."gore-and-ash-sync"; "gpah" = dontDistribute super."gpah"; "gpcsets" = dontDistribute super."gpcsets"; "gpolyline" = dontDistribute super."gpolyline"; @@ -4527,6 +4536,7 @@ self: super: { "hspec-experimental" = dontDistribute super."hspec-experimental"; "hspec-jenkins" = dontDistribute super."hspec-jenkins"; "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-megaparsec" = dontDistribute super."hspec-megaparsec"; "hspec-meta" = doDistribute super."hspec-meta_2_1_5"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; @@ -4715,6 +4725,7 @@ self: super: { "hyphenate" = dontDistribute super."hyphenate"; "hyphenation" = doDistribute super."hyphenation_0_4_2_1"; "hypher" = dontDistribute super."hypher"; + "hzaif" = dontDistribute super."hzaif"; "hzk" = dontDistribute super."hzk"; "hzulip" = dontDistribute super."hzulip"; "i18n" = dontDistribute super."i18n"; @@ -5480,6 +5491,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_1"; "markdown-kate" = dontDistribute super."markdown-kate"; @@ -5823,6 +5835,7 @@ self: super: { "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; "nano-cryptr" = dontDistribute super."nano-cryptr"; + "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; "nano-md5" = dontDistribute super."nano-md5"; "nanoAgda" = dontDistribute super."nanoAgda"; @@ -5986,6 +5999,7 @@ self: super: { "null-canvas" = dontDistribute super."null-canvas"; "nullary" = dontDistribute super."nullary"; "number" = dontDistribute super."number"; + "number-length" = dontDistribute super."number-length"; "numbering" = dontDistribute super."numbering"; "numerals" = dontDistribute super."numerals"; "numerals-base" = dontDistribute super."numerals-base"; @@ -6368,6 +6382,7 @@ self: super: { "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; "plailude" = dontDistribute super."plailude"; + "plan-b" = dontDistribute super."plan-b"; "planar-graph" = dontDistribute super."planar-graph"; "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; @@ -6633,7 +6648,6 @@ self: super: { "queuelike" = dontDistribute super."queuelike"; "quick-generator" = dontDistribute super."quick-generator"; "quick-schema" = dontDistribute super."quick-schema"; - "quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11"; "quickcheck-io" = doDistribute super."quickcheck-io_0_1_1"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; @@ -7812,6 +7826,7 @@ self: super: { "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" = doDistribute super."temporary_1_2_0_3"; "temporary-resourcet" = dontDistribute super."temporary-resourcet"; "tempus" = dontDistribute super."tempus"; "tempus-fugit" = dontDistribute super."tempus-fugit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.20.nix b/pkgs/development/haskell-modules/configuration-lts-2.20.nix index 6e027c87206..5016b16e2fa 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.20.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.20.nix @@ -1403,6 +1403,7 @@ self: super: { "astrds" = dontDistribute super."astrds"; "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; + "async" = doDistribute super."async_2_0_2"; "async-dejafu" = dontDistribute super."async-dejafu"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; @@ -1545,6 +1546,7 @@ self: super: { "bdd" = dontDistribute super."bdd"; "bdelta" = dontDistribute super."bdelta"; "bdo" = dontDistribute super."bdo"; + "beam" = dontDistribute super."beam"; "beamable" = dontDistribute super."beamable"; "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; @@ -3589,6 +3591,13 @@ self: super: { "googleplus" = dontDistribute super."googleplus"; "googlepolyline" = dontDistribute super."googlepolyline"; "gopherbot" = dontDistribute super."gopherbot"; + "gore-and-ash" = dontDistribute super."gore-and-ash"; + "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; + "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; + "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; + "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; + "gore-and-ash-sync" = dontDistribute super."gore-and-ash-sync"; "gpah" = dontDistribute super."gpah"; "gpcsets" = dontDistribute super."gpcsets"; "gpolyline" = dontDistribute super."gpolyline"; @@ -4485,6 +4494,7 @@ self: super: { "hspec-experimental" = dontDistribute super."hspec-experimental"; "hspec-jenkins" = dontDistribute super."hspec-jenkins"; "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-megaparsec" = dontDistribute super."hspec-megaparsec"; "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; @@ -4669,6 +4679,7 @@ self: super: { "hyphenate" = dontDistribute super."hyphenate"; "hyphenation" = doDistribute super."hyphenation_0_4_2_1"; "hypher" = dontDistribute super."hypher"; + "hzaif" = dontDistribute super."hzaif"; "hzk" = dontDistribute super."hzk"; "hzulip" = dontDistribute super."hzulip"; "i18n" = dontDistribute super."i18n"; @@ -5425,6 +5436,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown-kate" = dontDistribute super."markdown-kate"; "markdown-pap" = dontDistribute super."markdown-pap"; @@ -5763,6 +5775,7 @@ self: super: { "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; "nano-cryptr" = dontDistribute super."nano-cryptr"; + "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; "nano-md5" = dontDistribute super."nano-md5"; "nanoAgda" = dontDistribute super."nanoAgda"; @@ -5920,6 +5933,7 @@ self: super: { "null-canvas" = dontDistribute super."null-canvas"; "nullary" = dontDistribute super."nullary"; "number" = dontDistribute super."number"; + "number-length" = dontDistribute super."number-length"; "numbering" = dontDistribute super."numbering"; "numerals" = dontDistribute super."numerals"; "numerals-base" = dontDistribute super."numerals-base"; @@ -6296,6 +6310,7 @@ self: super: { "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; "plailude" = dontDistribute super."plailude"; + "plan-b" = dontDistribute super."plan-b"; "planar-graph" = dontDistribute super."planar-graph"; "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; @@ -6559,7 +6574,6 @@ self: super: { "queuelike" = dontDistribute super."queuelike"; "quick-generator" = dontDistribute super."quick-generator"; "quick-schema" = dontDistribute super."quick-schema"; - "quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11"; "quickcheck-io" = doDistribute super."quickcheck-io_0_1_1"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; @@ -7718,6 +7732,7 @@ self: super: { "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" = doDistribute super."temporary_1_2_0_3"; "temporary-resourcet" = dontDistribute super."temporary-resourcet"; "tempus" = dontDistribute super."tempus"; "tempus-fugit" = dontDistribute super."tempus-fugit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.21.nix b/pkgs/development/haskell-modules/configuration-lts-2.21.nix index dadf8a23dd4..0fbfc8cd3a3 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.21.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.21.nix @@ -1403,6 +1403,7 @@ self: super: { "astrds" = dontDistribute super."astrds"; "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; + "async" = doDistribute super."async_2_0_2"; "async-dejafu" = dontDistribute super."async-dejafu"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; @@ -1545,6 +1546,7 @@ self: super: { "bdd" = dontDistribute super."bdd"; "bdelta" = dontDistribute super."bdelta"; "bdo" = dontDistribute super."bdo"; + "beam" = dontDistribute super."beam"; "beamable" = dontDistribute super."beamable"; "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; @@ -3589,6 +3591,13 @@ self: super: { "googleplus" = dontDistribute super."googleplus"; "googlepolyline" = dontDistribute super."googlepolyline"; "gopherbot" = dontDistribute super."gopherbot"; + "gore-and-ash" = dontDistribute super."gore-and-ash"; + "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; + "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; + "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; + "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; + "gore-and-ash-sync" = dontDistribute super."gore-and-ash-sync"; "gpah" = dontDistribute super."gpah"; "gpcsets" = dontDistribute super."gpcsets"; "gpolyline" = dontDistribute super."gpolyline"; @@ -4485,6 +4494,7 @@ self: super: { "hspec-experimental" = dontDistribute super."hspec-experimental"; "hspec-jenkins" = dontDistribute super."hspec-jenkins"; "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-megaparsec" = dontDistribute super."hspec-megaparsec"; "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; @@ -4669,6 +4679,7 @@ self: super: { "hyphenate" = dontDistribute super."hyphenate"; "hyphenation" = doDistribute super."hyphenation_0_4_2_1"; "hypher" = dontDistribute super."hypher"; + "hzaif" = dontDistribute super."hzaif"; "hzk" = dontDistribute super."hzk"; "hzulip" = dontDistribute super."hzulip"; "i18n" = dontDistribute super."i18n"; @@ -5424,6 +5435,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown-kate" = dontDistribute super."markdown-kate"; "markdown-pap" = dontDistribute super."markdown-pap"; @@ -5762,6 +5774,7 @@ self: super: { "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; "nano-cryptr" = dontDistribute super."nano-cryptr"; + "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; "nano-md5" = dontDistribute super."nano-md5"; "nanoAgda" = dontDistribute super."nanoAgda"; @@ -5919,6 +5932,7 @@ self: super: { "null-canvas" = dontDistribute super."null-canvas"; "nullary" = dontDistribute super."nullary"; "number" = dontDistribute super."number"; + "number-length" = dontDistribute super."number-length"; "numbering" = dontDistribute super."numbering"; "numerals" = dontDistribute super."numerals"; "numerals-base" = dontDistribute super."numerals-base"; @@ -6295,6 +6309,7 @@ self: super: { "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; "plailude" = dontDistribute super."plailude"; + "plan-b" = dontDistribute super."plan-b"; "planar-graph" = dontDistribute super."planar-graph"; "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; @@ -6557,7 +6572,6 @@ self: super: { "queuelike" = dontDistribute super."queuelike"; "quick-generator" = dontDistribute super."quick-generator"; "quick-schema" = dontDistribute super."quick-schema"; - "quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11"; "quickcheck-io" = doDistribute super."quickcheck-io_0_1_1"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; @@ -7716,6 +7730,7 @@ self: super: { "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" = doDistribute super."temporary_1_2_0_3"; "temporary-resourcet" = dontDistribute super."temporary-resourcet"; "tempus" = dontDistribute super."tempus"; "tempus-fugit" = dontDistribute super."tempus-fugit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.22.nix b/pkgs/development/haskell-modules/configuration-lts-2.22.nix index e08526634eb..75fc329a187 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.22.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.22.nix @@ -1403,6 +1403,7 @@ self: super: { "astrds" = dontDistribute super."astrds"; "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; + "async" = doDistribute super."async_2_0_2"; "async-dejafu" = dontDistribute super."async-dejafu"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; @@ -1545,6 +1546,7 @@ self: super: { "bdd" = dontDistribute super."bdd"; "bdelta" = dontDistribute super."bdelta"; "bdo" = dontDistribute super."bdo"; + "beam" = dontDistribute super."beam"; "beamable" = dontDistribute super."beamable"; "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; @@ -3589,6 +3591,13 @@ self: super: { "googleplus" = dontDistribute super."googleplus"; "googlepolyline" = dontDistribute super."googlepolyline"; "gopherbot" = dontDistribute super."gopherbot"; + "gore-and-ash" = dontDistribute super."gore-and-ash"; + "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; + "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; + "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; + "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; + "gore-and-ash-sync" = dontDistribute super."gore-and-ash-sync"; "gpah" = dontDistribute super."gpah"; "gpcsets" = dontDistribute super."gpcsets"; "gpolyline" = dontDistribute super."gpolyline"; @@ -4484,6 +4493,7 @@ self: super: { "hspec-experimental" = dontDistribute super."hspec-experimental"; "hspec-jenkins" = dontDistribute super."hspec-jenkins"; "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-megaparsec" = dontDistribute super."hspec-megaparsec"; "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; @@ -4668,6 +4678,7 @@ self: super: { "hyphenate" = dontDistribute super."hyphenate"; "hyphenation" = doDistribute super."hyphenation_0_4_2_1"; "hypher" = dontDistribute super."hypher"; + "hzaif" = dontDistribute super."hzaif"; "hzk" = dontDistribute super."hzk"; "hzulip" = dontDistribute super."hzulip"; "i18n" = dontDistribute super."i18n"; @@ -5423,6 +5434,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown-kate" = dontDistribute super."markdown-kate"; "markdown-pap" = dontDistribute super."markdown-pap"; @@ -5760,6 +5772,7 @@ self: super: { "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; "nano-cryptr" = dontDistribute super."nano-cryptr"; + "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; "nano-md5" = dontDistribute super."nano-md5"; "nanoAgda" = dontDistribute super."nanoAgda"; @@ -5917,6 +5930,7 @@ self: super: { "null-canvas" = dontDistribute super."null-canvas"; "nullary" = dontDistribute super."nullary"; "number" = dontDistribute super."number"; + "number-length" = dontDistribute super."number-length"; "numbering" = dontDistribute super."numbering"; "numerals" = dontDistribute super."numerals"; "numerals-base" = dontDistribute super."numerals-base"; @@ -6293,6 +6307,7 @@ self: super: { "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; "plailude" = dontDistribute super."plailude"; + "plan-b" = dontDistribute super."plan-b"; "planar-graph" = dontDistribute super."planar-graph"; "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; @@ -6555,7 +6570,6 @@ self: super: { "queuelike" = dontDistribute super."queuelike"; "quick-generator" = dontDistribute super."quick-generator"; "quick-schema" = dontDistribute super."quick-schema"; - "quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11"; "quickcheck-io" = doDistribute super."quickcheck-io_0_1_1"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; @@ -7714,6 +7728,7 @@ self: super: { "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" = doDistribute super."temporary_1_2_0_3"; "temporary-resourcet" = dontDistribute super."temporary-resourcet"; "tempus" = dontDistribute super."tempus"; "tempus-fugit" = dontDistribute super."tempus-fugit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.3.nix b/pkgs/development/haskell-modules/configuration-lts-2.3.nix index a7b174ac697..e5d4da7183f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.3.nix @@ -1411,6 +1411,7 @@ self: super: { "astrds" = dontDistribute super."astrds"; "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; + "async" = doDistribute super."async_2_0_2"; "async-dejafu" = dontDistribute super."async-dejafu"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; @@ -1556,6 +1557,7 @@ self: super: { "bdd" = dontDistribute super."bdd"; "bdelta" = dontDistribute super."bdelta"; "bdo" = dontDistribute super."bdo"; + "beam" = dontDistribute super."beam"; "beamable" = dontDistribute super."beamable"; "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; @@ -3623,6 +3625,13 @@ self: super: { "googleplus" = dontDistribute super."googleplus"; "googlepolyline" = dontDistribute super."googlepolyline"; "gopherbot" = dontDistribute super."gopherbot"; + "gore-and-ash" = dontDistribute super."gore-and-ash"; + "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; + "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; + "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; + "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; + "gore-and-ash-sync" = dontDistribute super."gore-and-ash-sync"; "gpah" = dontDistribute super."gpah"; "gpcsets" = dontDistribute super."gpcsets"; "gpolyline" = dontDistribute super."gpolyline"; @@ -4526,6 +4535,7 @@ self: super: { "hspec-experimental" = dontDistribute super."hspec-experimental"; "hspec-jenkins" = dontDistribute super."hspec-jenkins"; "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-megaparsec" = dontDistribute super."hspec-megaparsec"; "hspec-meta" = doDistribute super."hspec-meta_2_1_5"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; @@ -4713,6 +4723,7 @@ self: super: { "hyphenate" = dontDistribute super."hyphenate"; "hyphenation" = doDistribute super."hyphenation_0_4_2_1"; "hypher" = dontDistribute super."hypher"; + "hzaif" = dontDistribute super."hzaif"; "hzk" = dontDistribute super."hzk"; "hzulip" = dontDistribute super."hzulip"; "i18n" = dontDistribute super."i18n"; @@ -5478,6 +5489,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_1"; "markdown-kate" = dontDistribute super."markdown-kate"; @@ -5821,6 +5833,7 @@ self: super: { "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; "nano-cryptr" = dontDistribute super."nano-cryptr"; + "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; "nano-md5" = dontDistribute super."nano-md5"; "nanoAgda" = dontDistribute super."nanoAgda"; @@ -5984,6 +5997,7 @@ self: super: { "null-canvas" = dontDistribute super."null-canvas"; "nullary" = dontDistribute super."nullary"; "number" = dontDistribute super."number"; + "number-length" = dontDistribute super."number-length"; "numbering" = dontDistribute super."numbering"; "numerals" = dontDistribute super."numerals"; "numerals-base" = dontDistribute super."numerals-base"; @@ -6366,6 +6380,7 @@ self: super: { "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; "plailude" = dontDistribute super."plailude"; + "plan-b" = dontDistribute super."plan-b"; "planar-graph" = dontDistribute super."planar-graph"; "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; @@ -6631,7 +6646,6 @@ self: super: { "queuelike" = dontDistribute super."queuelike"; "quick-generator" = dontDistribute super."quick-generator"; "quick-schema" = dontDistribute super."quick-schema"; - "quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11"; "quickcheck-io" = doDistribute super."quickcheck-io_0_1_1"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; @@ -7810,6 +7824,7 @@ self: super: { "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" = doDistribute super."temporary_1_2_0_3"; "temporary-resourcet" = dontDistribute super."temporary-resourcet"; "tempus" = dontDistribute super."tempus"; "tempus-fugit" = dontDistribute super."tempus-fugit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.4.nix b/pkgs/development/haskell-modules/configuration-lts-2.4.nix index bd91cd5d3ab..71121161455 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.4.nix @@ -1411,6 +1411,7 @@ self: super: { "astrds" = dontDistribute super."astrds"; "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; + "async" = doDistribute super."async_2_0_2"; "async-dejafu" = dontDistribute super."async-dejafu"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; @@ -1556,6 +1557,7 @@ self: super: { "bdd" = dontDistribute super."bdd"; "bdelta" = dontDistribute super."bdelta"; "bdo" = dontDistribute super."bdo"; + "beam" = dontDistribute super."beam"; "beamable" = dontDistribute super."beamable"; "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; @@ -3622,6 +3624,13 @@ self: super: { "googleplus" = dontDistribute super."googleplus"; "googlepolyline" = dontDistribute super."googlepolyline"; "gopherbot" = dontDistribute super."gopherbot"; + "gore-and-ash" = dontDistribute super."gore-and-ash"; + "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; + "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; + "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; + "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; + "gore-and-ash-sync" = dontDistribute super."gore-and-ash-sync"; "gpah" = dontDistribute super."gpah"; "gpcsets" = dontDistribute super."gpcsets"; "gpolyline" = dontDistribute super."gpolyline"; @@ -4525,6 +4534,7 @@ self: super: { "hspec-experimental" = dontDistribute super."hspec-experimental"; "hspec-jenkins" = dontDistribute super."hspec-jenkins"; "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-megaparsec" = dontDistribute super."hspec-megaparsec"; "hspec-meta" = doDistribute super."hspec-meta_2_1_5"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; @@ -4712,6 +4722,7 @@ self: super: { "hyphenate" = dontDistribute super."hyphenate"; "hyphenation" = doDistribute super."hyphenation_0_4_2_1"; "hypher" = dontDistribute super."hypher"; + "hzaif" = dontDistribute super."hzaif"; "hzk" = dontDistribute super."hzk"; "hzulip" = dontDistribute super."hzulip"; "i18n" = dontDistribute super."i18n"; @@ -5477,6 +5488,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_1"; "markdown-kate" = dontDistribute super."markdown-kate"; @@ -5819,6 +5831,7 @@ self: super: { "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; "nano-cryptr" = dontDistribute super."nano-cryptr"; + "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; "nano-md5" = dontDistribute super."nano-md5"; "nanoAgda" = dontDistribute super."nanoAgda"; @@ -5982,6 +5995,7 @@ self: super: { "null-canvas" = dontDistribute super."null-canvas"; "nullary" = dontDistribute super."nullary"; "number" = dontDistribute super."number"; + "number-length" = dontDistribute super."number-length"; "numbering" = dontDistribute super."numbering"; "numerals" = dontDistribute super."numerals"; "numerals-base" = dontDistribute super."numerals-base"; @@ -6362,6 +6376,7 @@ self: super: { "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; "plailude" = dontDistribute super."plailude"; + "plan-b" = dontDistribute super."plan-b"; "planar-graph" = dontDistribute super."planar-graph"; "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; @@ -6627,7 +6642,6 @@ self: super: { "queuelike" = dontDistribute super."queuelike"; "quick-generator" = dontDistribute super."quick-generator"; "quick-schema" = dontDistribute super."quick-schema"; - "quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11"; "quickcheck-io" = doDistribute super."quickcheck-io_0_1_1"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; @@ -7805,6 +7819,7 @@ self: super: { "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" = doDistribute super."temporary_1_2_0_3"; "temporary-resourcet" = dontDistribute super."temporary-resourcet"; "tempus" = dontDistribute super."tempus"; "tempus-fugit" = dontDistribute super."tempus-fugit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.5.nix b/pkgs/development/haskell-modules/configuration-lts-2.5.nix index 635a2891ed7..535b00d98b8 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.5.nix @@ -1411,6 +1411,7 @@ self: super: { "astrds" = dontDistribute super."astrds"; "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; + "async" = doDistribute super."async_2_0_2"; "async-dejafu" = dontDistribute super."async-dejafu"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; @@ -1556,6 +1557,7 @@ self: super: { "bdd" = dontDistribute super."bdd"; "bdelta" = dontDistribute super."bdelta"; "bdo" = dontDistribute super."bdo"; + "beam" = dontDistribute super."beam"; "beamable" = dontDistribute super."beamable"; "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; @@ -3621,6 +3623,13 @@ self: super: { "googleplus" = dontDistribute super."googleplus"; "googlepolyline" = dontDistribute super."googlepolyline"; "gopherbot" = dontDistribute super."gopherbot"; + "gore-and-ash" = dontDistribute super."gore-and-ash"; + "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; + "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; + "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; + "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; + "gore-and-ash-sync" = dontDistribute super."gore-and-ash-sync"; "gpah" = dontDistribute super."gpah"; "gpcsets" = dontDistribute super."gpcsets"; "gpolyline" = dontDistribute super."gpolyline"; @@ -4524,6 +4533,7 @@ self: super: { "hspec-experimental" = dontDistribute super."hspec-experimental"; "hspec-jenkins" = dontDistribute super."hspec-jenkins"; "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-megaparsec" = dontDistribute super."hspec-megaparsec"; "hspec-meta" = doDistribute super."hspec-meta_2_1_5"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; @@ -4711,6 +4721,7 @@ self: super: { "hyphenate" = dontDistribute super."hyphenate"; "hyphenation" = doDistribute super."hyphenation_0_4_2_1"; "hypher" = dontDistribute super."hypher"; + "hzaif" = dontDistribute super."hzaif"; "hzk" = dontDistribute super."hzk"; "hzulip" = dontDistribute super."hzulip"; "i18n" = dontDistribute super."i18n"; @@ -5475,6 +5486,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_1"; "markdown-kate" = dontDistribute super."markdown-kate"; @@ -5817,6 +5829,7 @@ self: super: { "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; "nano-cryptr" = dontDistribute super."nano-cryptr"; + "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; "nano-md5" = dontDistribute super."nano-md5"; "nanoAgda" = dontDistribute super."nanoAgda"; @@ -5980,6 +5993,7 @@ self: super: { "null-canvas" = dontDistribute super."null-canvas"; "nullary" = dontDistribute super."nullary"; "number" = dontDistribute super."number"; + "number-length" = dontDistribute super."number-length"; "numbering" = dontDistribute super."numbering"; "numerals" = dontDistribute super."numerals"; "numerals-base" = dontDistribute super."numerals-base"; @@ -6360,6 +6374,7 @@ self: super: { "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; "plailude" = dontDistribute super."plailude"; + "plan-b" = dontDistribute super."plan-b"; "planar-graph" = dontDistribute super."planar-graph"; "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; @@ -6625,7 +6640,6 @@ self: super: { "queuelike" = dontDistribute super."queuelike"; "quick-generator" = dontDistribute super."quick-generator"; "quick-schema" = dontDistribute super."quick-schema"; - "quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11"; "quickcheck-io" = doDistribute super."quickcheck-io_0_1_1"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; @@ -7803,6 +7817,7 @@ self: super: { "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" = doDistribute super."temporary_1_2_0_3"; "temporary-resourcet" = dontDistribute super."temporary-resourcet"; "tempus" = dontDistribute super."tempus"; "tempus-fugit" = dontDistribute super."tempus-fugit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.6.nix b/pkgs/development/haskell-modules/configuration-lts-2.6.nix index 8f980cca42f..b395091088a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.6.nix @@ -1409,6 +1409,7 @@ self: super: { "astrds" = dontDistribute super."astrds"; "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; + "async" = doDistribute super."async_2_0_2"; "async-dejafu" = dontDistribute super."async-dejafu"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; @@ -1553,6 +1554,7 @@ self: super: { "bdd" = dontDistribute super."bdd"; "bdelta" = dontDistribute super."bdelta"; "bdo" = dontDistribute super."bdo"; + "beam" = dontDistribute super."beam"; "beamable" = dontDistribute super."beamable"; "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; @@ -3618,6 +3620,13 @@ self: super: { "googleplus" = dontDistribute super."googleplus"; "googlepolyline" = dontDistribute super."googlepolyline"; "gopherbot" = dontDistribute super."gopherbot"; + "gore-and-ash" = dontDistribute super."gore-and-ash"; + "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; + "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; + "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; + "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; + "gore-and-ash-sync" = dontDistribute super."gore-and-ash-sync"; "gpah" = dontDistribute super."gpah"; "gpcsets" = dontDistribute super."gpcsets"; "gpolyline" = dontDistribute super."gpolyline"; @@ -4519,6 +4528,7 @@ self: super: { "hspec-experimental" = dontDistribute super."hspec-experimental"; "hspec-jenkins" = dontDistribute super."hspec-jenkins"; "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-megaparsec" = dontDistribute super."hspec-megaparsec"; "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; @@ -4706,6 +4716,7 @@ self: super: { "hyphenate" = dontDistribute super."hyphenate"; "hyphenation" = doDistribute super."hyphenation_0_4_2_1"; "hypher" = dontDistribute super."hypher"; + "hzaif" = dontDistribute super."hzaif"; "hzk" = dontDistribute super."hzk"; "hzulip" = dontDistribute super."hzulip"; "i18n" = dontDistribute super."i18n"; @@ -5470,6 +5481,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_1"; "markdown-kate" = dontDistribute super."markdown-kate"; @@ -5812,6 +5824,7 @@ self: super: { "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; "nano-cryptr" = dontDistribute super."nano-cryptr"; + "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; "nano-md5" = dontDistribute super."nano-md5"; "nanoAgda" = dontDistribute super."nanoAgda"; @@ -5974,6 +5987,7 @@ self: super: { "null-canvas" = dontDistribute super."null-canvas"; "nullary" = dontDistribute super."nullary"; "number" = dontDistribute super."number"; + "number-length" = dontDistribute super."number-length"; "numbering" = dontDistribute super."numbering"; "numerals" = dontDistribute super."numerals"; "numerals-base" = dontDistribute super."numerals-base"; @@ -6354,6 +6368,7 @@ self: super: { "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; "plailude" = dontDistribute super."plailude"; + "plan-b" = dontDistribute super."plan-b"; "planar-graph" = dontDistribute super."planar-graph"; "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; @@ -6619,7 +6634,6 @@ self: super: { "queuelike" = dontDistribute super."queuelike"; "quick-generator" = dontDistribute super."quick-generator"; "quick-schema" = dontDistribute super."quick-schema"; - "quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11"; "quickcheck-io" = doDistribute super."quickcheck-io_0_1_1"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; @@ -7797,6 +7811,7 @@ self: super: { "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" = doDistribute super."temporary_1_2_0_3"; "temporary-resourcet" = dontDistribute super."temporary-resourcet"; "tempus" = dontDistribute super."tempus"; "tempus-fugit" = dontDistribute super."tempus-fugit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.7.nix b/pkgs/development/haskell-modules/configuration-lts-2.7.nix index 374c8cb12a0..d6d8ea55305 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.7.nix @@ -1408,6 +1408,7 @@ self: super: { "astrds" = dontDistribute super."astrds"; "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; + "async" = doDistribute super."async_2_0_2"; "async-dejafu" = dontDistribute super."async-dejafu"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; @@ -1552,6 +1553,7 @@ self: super: { "bdd" = dontDistribute super."bdd"; "bdelta" = dontDistribute super."bdelta"; "bdo" = dontDistribute super."bdo"; + "beam" = dontDistribute super."beam"; "beamable" = dontDistribute super."beamable"; "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; @@ -3617,6 +3619,13 @@ self: super: { "googleplus" = dontDistribute super."googleplus"; "googlepolyline" = dontDistribute super."googlepolyline"; "gopherbot" = dontDistribute super."gopherbot"; + "gore-and-ash" = dontDistribute super."gore-and-ash"; + "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; + "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; + "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; + "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; + "gore-and-ash-sync" = dontDistribute super."gore-and-ash-sync"; "gpah" = dontDistribute super."gpah"; "gpcsets" = dontDistribute super."gpcsets"; "gpolyline" = dontDistribute super."gpolyline"; @@ -4518,6 +4527,7 @@ self: super: { "hspec-experimental" = dontDistribute super."hspec-experimental"; "hspec-jenkins" = dontDistribute super."hspec-jenkins"; "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-megaparsec" = dontDistribute super."hspec-megaparsec"; "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; @@ -4705,6 +4715,7 @@ self: super: { "hyphenate" = dontDistribute super."hyphenate"; "hyphenation" = doDistribute super."hyphenation_0_4_2_1"; "hypher" = dontDistribute super."hypher"; + "hzaif" = dontDistribute super."hzaif"; "hzk" = dontDistribute super."hzk"; "hzulip" = dontDistribute super."hzulip"; "i18n" = dontDistribute super."i18n"; @@ -5469,6 +5480,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_1"; "markdown-kate" = dontDistribute super."markdown-kate"; @@ -5812,6 +5824,7 @@ self: super: { "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; "nano-cryptr" = dontDistribute super."nano-cryptr"; + "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; "nano-md5" = dontDistribute super."nano-md5"; "nanoAgda" = dontDistribute super."nanoAgda"; @@ -5973,6 +5986,7 @@ self: super: { "null-canvas" = dontDistribute super."null-canvas"; "nullary" = dontDistribute super."nullary"; "number" = dontDistribute super."number"; + "number-length" = dontDistribute super."number-length"; "numbering" = dontDistribute super."numbering"; "numerals" = dontDistribute super."numerals"; "numerals-base" = dontDistribute super."numerals-base"; @@ -6353,6 +6367,7 @@ self: super: { "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; "plailude" = dontDistribute super."plailude"; + "plan-b" = dontDistribute super."plan-b"; "planar-graph" = dontDistribute super."planar-graph"; "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; @@ -6618,7 +6633,6 @@ self: super: { "queuelike" = dontDistribute super."queuelike"; "quick-generator" = dontDistribute super."quick-generator"; "quick-schema" = dontDistribute super."quick-schema"; - "quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11"; "quickcheck-io" = doDistribute super."quickcheck-io_0_1_1"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; @@ -7796,6 +7810,7 @@ self: super: { "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" = doDistribute super."temporary_1_2_0_3"; "temporary-resourcet" = dontDistribute super."temporary-resourcet"; "tempus" = dontDistribute super."tempus"; "tempus-fugit" = dontDistribute super."tempus-fugit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.8.nix b/pkgs/development/haskell-modules/configuration-lts-2.8.nix index 0f7c80b6b1c..1186a62ceec 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.8.nix @@ -1407,6 +1407,7 @@ self: super: { "astrds" = dontDistribute super."astrds"; "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; + "async" = doDistribute super."async_2_0_2"; "async-dejafu" = dontDistribute super."async-dejafu"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; @@ -1551,6 +1552,7 @@ self: super: { "bdd" = dontDistribute super."bdd"; "bdelta" = dontDistribute super."bdelta"; "bdo" = dontDistribute super."bdo"; + "beam" = dontDistribute super."beam"; "beamable" = dontDistribute super."beamable"; "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; @@ -3615,6 +3617,13 @@ self: super: { "googleplus" = dontDistribute super."googleplus"; "googlepolyline" = dontDistribute super."googlepolyline"; "gopherbot" = dontDistribute super."gopherbot"; + "gore-and-ash" = dontDistribute super."gore-and-ash"; + "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; + "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; + "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; + "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; + "gore-and-ash-sync" = dontDistribute super."gore-and-ash-sync"; "gpah" = dontDistribute super."gpah"; "gpcsets" = dontDistribute super."gpcsets"; "gpolyline" = dontDistribute super."gpolyline"; @@ -4516,6 +4525,7 @@ self: super: { "hspec-experimental" = dontDistribute super."hspec-experimental"; "hspec-jenkins" = dontDistribute super."hspec-jenkins"; "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-megaparsec" = dontDistribute super."hspec-megaparsec"; "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; @@ -4702,6 +4712,7 @@ self: super: { "hyphenate" = dontDistribute super."hyphenate"; "hyphenation" = doDistribute super."hyphenation_0_4_2_1"; "hypher" = dontDistribute super."hypher"; + "hzaif" = dontDistribute super."hzaif"; "hzk" = dontDistribute super."hzk"; "hzulip" = dontDistribute super."hzulip"; "i18n" = dontDistribute super."i18n"; @@ -5466,6 +5477,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_1"; "markdown-kate" = dontDistribute super."markdown-kate"; @@ -5809,6 +5821,7 @@ self: super: { "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; "nano-cryptr" = dontDistribute super."nano-cryptr"; + "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; "nano-md5" = dontDistribute super."nano-md5"; "nanoAgda" = dontDistribute super."nanoAgda"; @@ -5970,6 +5983,7 @@ self: super: { "null-canvas" = dontDistribute super."null-canvas"; "nullary" = dontDistribute super."nullary"; "number" = dontDistribute super."number"; + "number-length" = dontDistribute super."number-length"; "numbering" = dontDistribute super."numbering"; "numerals" = dontDistribute super."numerals"; "numerals-base" = dontDistribute super."numerals-base"; @@ -6350,6 +6364,7 @@ self: super: { "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; "plailude" = dontDistribute super."plailude"; + "plan-b" = dontDistribute super."plan-b"; "planar-graph" = dontDistribute super."planar-graph"; "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; @@ -6615,7 +6630,6 @@ self: super: { "queuelike" = dontDistribute super."queuelike"; "quick-generator" = dontDistribute super."quick-generator"; "quick-schema" = dontDistribute super."quick-schema"; - "quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11"; "quickcheck-io" = doDistribute super."quickcheck-io_0_1_1"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; @@ -7789,6 +7803,7 @@ self: super: { "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" = doDistribute super."temporary_1_2_0_3"; "temporary-resourcet" = dontDistribute super."temporary-resourcet"; "tempus" = dontDistribute super."tempus"; "tempus-fugit" = dontDistribute super."tempus-fugit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.9.nix b/pkgs/development/haskell-modules/configuration-lts-2.9.nix index 5fac6754c24..cbc857982ef 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.9.nix @@ -1407,6 +1407,7 @@ self: super: { "astrds" = dontDistribute super."astrds"; "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; + "async" = doDistribute super."async_2_0_2"; "async-dejafu" = dontDistribute super."async-dejafu"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; @@ -1549,6 +1550,7 @@ self: super: { "bdd" = dontDistribute super."bdd"; "bdelta" = dontDistribute super."bdelta"; "bdo" = dontDistribute super."bdo"; + "beam" = dontDistribute super."beam"; "beamable" = dontDistribute super."beamable"; "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; @@ -3610,6 +3612,13 @@ self: super: { "googleplus" = dontDistribute super."googleplus"; "googlepolyline" = dontDistribute super."googlepolyline"; "gopherbot" = dontDistribute super."gopherbot"; + "gore-and-ash" = dontDistribute super."gore-and-ash"; + "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; + "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; + "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; + "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; + "gore-and-ash-sync" = dontDistribute super."gore-and-ash-sync"; "gpah" = dontDistribute super."gpah"; "gpcsets" = dontDistribute super."gpcsets"; "gpolyline" = dontDistribute super."gpolyline"; @@ -4510,6 +4519,7 @@ self: super: { "hspec-experimental" = dontDistribute super."hspec-experimental"; "hspec-jenkins" = dontDistribute super."hspec-jenkins"; "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-megaparsec" = dontDistribute super."hspec-megaparsec"; "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; @@ -4695,6 +4705,7 @@ self: super: { "hyphenate" = dontDistribute super."hyphenate"; "hyphenation" = doDistribute super."hyphenation_0_4_2_1"; "hypher" = dontDistribute super."hypher"; + "hzaif" = dontDistribute super."hzaif"; "hzk" = dontDistribute super."hzk"; "hzulip" = dontDistribute super."hzulip"; "i18n" = dontDistribute super."i18n"; @@ -5458,6 +5469,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown-kate" = dontDistribute super."markdown-kate"; "markdown-pap" = dontDistribute super."markdown-pap"; @@ -5800,6 +5812,7 @@ self: super: { "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; "nano-cryptr" = dontDistribute super."nano-cryptr"; + "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; "nano-md5" = dontDistribute super."nano-md5"; "nanoAgda" = dontDistribute super."nanoAgda"; @@ -5961,6 +5974,7 @@ self: super: { "null-canvas" = dontDistribute super."null-canvas"; "nullary" = dontDistribute super."nullary"; "number" = dontDistribute super."number"; + "number-length" = dontDistribute super."number-length"; "numbering" = dontDistribute super."numbering"; "numerals" = dontDistribute super."numerals"; "numerals-base" = dontDistribute super."numerals-base"; @@ -6340,6 +6354,7 @@ self: super: { "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; "plailude" = dontDistribute super."plailude"; + "plan-b" = dontDistribute super."plan-b"; "planar-graph" = dontDistribute super."planar-graph"; "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; @@ -6605,7 +6620,6 @@ self: super: { "queuelike" = dontDistribute super."queuelike"; "quick-generator" = dontDistribute super."quick-generator"; "quick-schema" = dontDistribute super."quick-schema"; - "quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11"; "quickcheck-io" = doDistribute super."quickcheck-io_0_1_1"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; @@ -7775,6 +7789,7 @@ self: super: { "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" = doDistribute super."temporary_1_2_0_3"; "temporary-resourcet" = dontDistribute super."temporary-resourcet"; "tempus" = dontDistribute super."tempus"; "tempus-fugit" = dontDistribute super."tempus-fugit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.0.nix b/pkgs/development/haskell-modules/configuration-lts-3.0.nix index b9924f20fbd..afbede23b99 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.0.nix @@ -124,6 +124,7 @@ self: super: { "Bitly" = dontDistribute super."Bitly"; "Blobs" = dontDistribute super."Blobs"; "BlogLiterately" = doDistribute super."BlogLiterately_0_8_1_1"; + "BlogLiterately-diagrams" = doDistribute super."BlogLiterately-diagrams_0_2_0_1"; "BluePrintCSS" = dontDistribute super."BluePrintCSS"; "Blueprint" = dontDistribute super."Blueprint"; "Bookshelf" = dontDistribute super."Bookshelf"; @@ -1363,6 +1364,7 @@ self: super: { "astrds" = dontDistribute super."astrds"; "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; + "async" = doDistribute super."async_2_0_2"; "async-dejafu" = dontDistribute super."async-dejafu"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; @@ -1499,6 +1501,7 @@ self: super: { "bdd" = dontDistribute super."bdd"; "bdelta" = dontDistribute super."bdelta"; "bdo" = dontDistribute super."bdo"; + "beam" = dontDistribute super."beam"; "beamable" = dontDistribute super."beamable"; "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; @@ -3491,6 +3494,13 @@ self: super: { "googleplus" = dontDistribute super."googleplus"; "googlepolyline" = dontDistribute super."googlepolyline"; "gopherbot" = dontDistribute super."gopherbot"; + "gore-and-ash" = dontDistribute super."gore-and-ash"; + "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; + "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; + "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; + "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; + "gore-and-ash-sync" = dontDistribute super."gore-and-ash-sync"; "gpah" = dontDistribute super."gpah"; "gpcsets" = dontDistribute super."gpcsets"; "gpolyline" = dontDistribute super."gpolyline"; @@ -4371,6 +4381,7 @@ self: super: { "hspec-expectations-pretty-diff" = dontDistribute super."hspec-expectations-pretty-diff"; "hspec-experimental" = dontDistribute super."hspec-experimental"; "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-megaparsec" = dontDistribute super."hspec-megaparsec"; "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; @@ -4550,6 +4561,7 @@ self: super: { "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hypher" = dontDistribute super."hypher"; + "hzaif" = dontDistribute super."hzaif"; "hzk" = dontDistribute super."hzk"; "hzulip" = dontDistribute super."hzulip"; "i18n" = dontDistribute super."i18n"; @@ -5267,6 +5279,7 @@ self: super: { "mangopay" = doDistribute super."mangopay_1_11_4"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown-kate" = dontDistribute super."markdown-kate"; "markdown-pap" = dontDistribute super."markdown-pap"; @@ -5591,6 +5604,7 @@ self: super: { "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; "nano-cryptr" = dontDistribute super."nano-cryptr"; + "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; "nano-md5" = dontDistribute super."nano-md5"; "nanoAgda" = dontDistribute super."nanoAgda"; @@ -5746,6 +5760,7 @@ self: super: { "null-canvas" = dontDistribute super."null-canvas"; "nullary" = dontDistribute super."nullary"; "number" = dontDistribute super."number"; + "number-length" = dontDistribute super."number-length"; "numbering" = dontDistribute super."numbering"; "numerals" = dontDistribute super."numerals"; "numerals-base" = dontDistribute super."numerals-base"; @@ -6106,6 +6121,7 @@ self: super: { "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; "plailude" = dontDistribute super."plailude"; + "plan-b" = dontDistribute super."plan-b"; "planar-graph" = dontDistribute super."planar-graph"; "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; @@ -6367,7 +6383,6 @@ self: super: { "queuelike" = dontDistribute super."queuelike"; "quick-generator" = dontDistribute super."quick-generator"; "quick-schema" = dontDistribute super."quick-schema"; - "quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11"; "quickcheck-io" = doDistribute super."quickcheck-io_0_1_1"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; @@ -7503,6 +7518,7 @@ self: super: { "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" = doDistribute super."temporary_1_2_0_3"; "temporary-resourcet" = dontDistribute super."temporary-resourcet"; "tempus" = dontDistribute super."tempus"; "tempus-fugit" = dontDistribute super."tempus-fugit"; @@ -7959,6 +7975,10 @@ self: super: { "usb-iteratee" = dontDistribute super."usb-iteratee"; "usb-safe" = dontDistribute super."usb-safe"; "userid" = dontDistribute super."userid"; + "users" = doDistribute super."users_0_3_0_0"; + "users-persistent" = doDistribute super."users-persistent_0_3_0_0"; + "users-postgresql-simple" = doDistribute super."users-postgresql-simple_0_3_0_0"; + "users-test" = doDistribute super."users-test_0_3_0_0"; "utc" = dontDistribute super."utc"; "utf8-env" = dontDistribute super."utf8-env"; "utf8-prelude" = dontDistribute super."utf8-prelude"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.1.nix b/pkgs/development/haskell-modules/configuration-lts-3.1.nix index c81484ff3fb..b6ef780dd64 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.1.nix @@ -124,6 +124,7 @@ self: super: { "Bitly" = dontDistribute super."Bitly"; "Blobs" = dontDistribute super."Blobs"; "BlogLiterately" = doDistribute super."BlogLiterately_0_8_1_1"; + "BlogLiterately-diagrams" = doDistribute super."BlogLiterately-diagrams_0_2_0_1"; "BluePrintCSS" = dontDistribute super."BluePrintCSS"; "Blueprint" = dontDistribute super."Blueprint"; "Bookshelf" = dontDistribute super."Bookshelf"; @@ -1362,6 +1363,7 @@ self: super: { "astrds" = dontDistribute super."astrds"; "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; + "async" = doDistribute super."async_2_0_2"; "async-dejafu" = dontDistribute super."async-dejafu"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; @@ -1498,6 +1500,7 @@ self: super: { "bdd" = dontDistribute super."bdd"; "bdelta" = dontDistribute super."bdelta"; "bdo" = dontDistribute super."bdo"; + "beam" = dontDistribute super."beam"; "beamable" = dontDistribute super."beamable"; "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; @@ -3488,6 +3491,13 @@ self: super: { "googleplus" = dontDistribute super."googleplus"; "googlepolyline" = dontDistribute super."googlepolyline"; "gopherbot" = dontDistribute super."gopherbot"; + "gore-and-ash" = dontDistribute super."gore-and-ash"; + "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; + "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; + "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; + "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; + "gore-and-ash-sync" = dontDistribute super."gore-and-ash-sync"; "gpah" = dontDistribute super."gpah"; "gpcsets" = dontDistribute super."gpcsets"; "gpolyline" = dontDistribute super."gpolyline"; @@ -4368,6 +4378,7 @@ self: super: { "hspec-expectations-pretty-diff" = dontDistribute super."hspec-expectations-pretty-diff"; "hspec-experimental" = dontDistribute super."hspec-experimental"; "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-megaparsec" = dontDistribute super."hspec-megaparsec"; "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; @@ -4547,6 +4558,7 @@ self: super: { "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hypher" = dontDistribute super."hypher"; + "hzaif" = dontDistribute super."hzaif"; "hzk" = dontDistribute super."hzk"; "hzulip" = dontDistribute super."hzulip"; "i18n" = dontDistribute super."i18n"; @@ -5263,6 +5275,7 @@ self: super: { "mangopay" = doDistribute super."mangopay_1_11_4"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown-kate" = dontDistribute super."markdown-kate"; "markdown-pap" = dontDistribute super."markdown-pap"; @@ -5586,6 +5599,7 @@ self: super: { "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; "nano-cryptr" = dontDistribute super."nano-cryptr"; + "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; "nano-md5" = dontDistribute super."nano-md5"; "nanoAgda" = dontDistribute super."nanoAgda"; @@ -5741,6 +5755,7 @@ self: super: { "null-canvas" = dontDistribute super."null-canvas"; "nullary" = dontDistribute super."nullary"; "number" = dontDistribute super."number"; + "number-length" = dontDistribute super."number-length"; "numbering" = dontDistribute super."numbering"; "numerals" = dontDistribute super."numerals"; "numerals-base" = dontDistribute super."numerals-base"; @@ -6100,6 +6115,7 @@ self: super: { "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; "plailude" = dontDistribute super."plailude"; + "plan-b" = dontDistribute super."plan-b"; "planar-graph" = dontDistribute super."planar-graph"; "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; @@ -6361,7 +6377,6 @@ self: super: { "queuelike" = dontDistribute super."queuelike"; "quick-generator" = dontDistribute super."quick-generator"; "quick-schema" = dontDistribute super."quick-schema"; - "quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11"; "quickcheck-io" = doDistribute super."quickcheck-io_0_1_1"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; @@ -7496,6 +7511,7 @@ self: super: { "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" = doDistribute super."temporary_1_2_0_3"; "temporary-resourcet" = dontDistribute super."temporary-resourcet"; "tempus" = dontDistribute super."tempus"; "tempus-fugit" = dontDistribute super."tempus-fugit"; @@ -7952,6 +7968,10 @@ self: super: { "usb-iteratee" = dontDistribute super."usb-iteratee"; "usb-safe" = dontDistribute super."usb-safe"; "userid" = dontDistribute super."userid"; + "users" = doDistribute super."users_0_3_0_0"; + "users-persistent" = doDistribute super."users-persistent_0_3_0_0"; + "users-postgresql-simple" = doDistribute super."users-postgresql-simple_0_3_0_0"; + "users-test" = doDistribute super."users-test_0_3_0_0"; "utc" = dontDistribute super."utc"; "utf8-env" = dontDistribute super."utf8-env"; "utf8-prelude" = dontDistribute super."utf8-prelude"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.10.nix b/pkgs/development/haskell-modules/configuration-lts-3.10.nix index c9947c4a0ca..02f10dd4858 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.10.nix @@ -123,6 +123,8 @@ self: super: { "BitSyntax" = dontDistribute super."BitSyntax"; "Bitly" = dontDistribute super."Bitly"; "Blobs" = dontDistribute super."Blobs"; + "BlogLiterately" = doDistribute super."BlogLiterately_0_8_1_3"; + "BlogLiterately-diagrams" = doDistribute super."BlogLiterately-diagrams_0_2_0_1"; "BluePrintCSS" = dontDistribute super."BluePrintCSS"; "Blueprint" = dontDistribute super."Blueprint"; "Bookshelf" = dontDistribute super."Bookshelf"; @@ -1349,6 +1351,7 @@ self: super: { "astrds" = dontDistribute super."astrds"; "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; + "async" = doDistribute super."async_2_0_2"; "async-dejafu" = dontDistribute super."async-dejafu"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; @@ -1484,6 +1487,7 @@ self: super: { "bdd" = dontDistribute super."bdd"; "bdelta" = dontDistribute super."bdelta"; "bdo" = dontDistribute super."bdo"; + "beam" = dontDistribute super."beam"; "beamable" = dontDistribute super."beamable"; "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; @@ -1772,6 +1776,7 @@ self: super: { "cabal-nirvana" = dontDistribute super."cabal-nirvana"; "cabal-progdeps" = dontDistribute super."cabal-progdeps"; "cabal-query" = dontDistribute super."cabal-query"; + "cabal-rpm" = doDistribute super."cabal-rpm_0_9_8"; "cabal-scripts" = dontDistribute super."cabal-scripts"; "cabal-setup" = dontDistribute super."cabal-setup"; "cabal-sign" = dontDistribute super."cabal-sign"; @@ -1991,6 +1996,7 @@ self: super: { "clustertools" = dontDistribute super."clustertools"; "clutterhs" = dontDistribute super."clutterhs"; "cmaes" = dontDistribute super."cmaes"; + "cmark" = doDistribute super."cmark_0_4_1"; "cmath" = dontDistribute super."cmath"; "cmathml3" = dontDistribute super."cmathml3"; "cmd-item" = dontDistribute super."cmd-item"; @@ -2742,6 +2748,7 @@ self: super: { "empty" = dontDistribute super."empty"; "encoding" = dontDistribute super."encoding"; "endo" = dontDistribute super."endo"; + "engine-io" = doDistribute super."engine-io_1_2_11"; "engine-io-snap" = dontDistribute super."engine-io-snap"; "engine-io-wai" = dontDistribute super."engine-io-wai"; "engine-io-yesod" = dontDistribute super."engine-io-yesod"; @@ -3446,6 +3453,13 @@ self: super: { "googleplus" = dontDistribute super."googleplus"; "googlepolyline" = dontDistribute super."googlepolyline"; "gopherbot" = dontDistribute super."gopherbot"; + "gore-and-ash" = dontDistribute super."gore-and-ash"; + "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; + "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; + "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; + "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; + "gore-and-ash-sync" = dontDistribute super."gore-and-ash-sync"; "gpah" = dontDistribute super."gpah"; "gpcsets" = dontDistribute super."gpcsets"; "gpolyline" = dontDistribute super."gpolyline"; @@ -4319,6 +4333,7 @@ self: super: { "hspec-expectations-pretty-diff" = dontDistribute super."hspec-expectations-pretty-diff"; "hspec-experimental" = dontDistribute super."hspec-experimental"; "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-megaparsec" = dontDistribute super."hspec-megaparsec"; "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; @@ -4498,6 +4513,7 @@ self: super: { "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hypher" = dontDistribute super."hypher"; + "hzaif" = dontDistribute super."hzaif"; "hzk" = dontDistribute super."hzk"; "hzulip" = dontDistribute super."hzulip"; "i18n" = dontDistribute super."i18n"; @@ -5205,6 +5221,7 @@ self: super: { "mangopay" = doDistribute super."mangopay_1_11_5"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown-kate" = dontDistribute super."markdown-kate"; "markdown-pap" = dontDistribute super."markdown-pap"; @@ -5524,6 +5541,7 @@ self: super: { "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; "nano-cryptr" = dontDistribute super."nano-cryptr"; + "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; "nano-md5" = dontDistribute super."nano-md5"; "nanoAgda" = dontDistribute super."nanoAgda"; @@ -5677,6 +5695,7 @@ self: super: { "null-canvas" = dontDistribute super."null-canvas"; "nullary" = dontDistribute super."nullary"; "number" = dontDistribute super."number"; + "number-length" = dontDistribute super."number-length"; "numbering" = dontDistribute super."numbering"; "numerals" = dontDistribute super."numerals"; "numerals-base" = dontDistribute super."numerals-base"; @@ -5827,6 +5846,7 @@ self: super: { "pandoc-lens" = dontDistribute super."pandoc-lens"; "pandoc-placetable" = dontDistribute super."pandoc-placetable"; "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; + "pandoc-types" = doDistribute super."pandoc-types_1_12_4_7"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; "pango" = doDistribute super."pango_0_13_1_0"; "papillon" = dontDistribute super."papillon"; @@ -6030,6 +6050,7 @@ self: super: { "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; "plailude" = dontDistribute super."plailude"; + "plan-b" = dontDistribute super."plan-b"; "planar-graph" = dontDistribute super."planar-graph"; "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; @@ -6284,7 +6305,6 @@ self: super: { "queuelike" = dontDistribute super."queuelike"; "quick-generator" = dontDistribute super."quick-generator"; "quick-schema" = dontDistribute super."quick-schema"; - "quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb"; @@ -7401,6 +7421,7 @@ self: super: { "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" = doDistribute super."temporary_1_2_0_3"; "temporary-resourcet" = dontDistribute super."temporary-resourcet"; "tempus" = dontDistribute super."tempus"; "tempus-fugit" = dontDistribute super."tempus-fugit"; @@ -7853,6 +7874,10 @@ self: super: { "usb-iteratee" = dontDistribute super."usb-iteratee"; "usb-safe" = dontDistribute super."usb-safe"; "userid" = dontDistribute super."userid"; + "users" = doDistribute super."users_0_3_0_0"; + "users-persistent" = doDistribute super."users-persistent_0_3_0_0"; + "users-postgresql-simple" = doDistribute super."users-postgresql-simple_0_3_0_0"; + "users-test" = doDistribute super."users-test_0_3_0_0"; "utc" = dontDistribute super."utc"; "utf8-env" = dontDistribute super."utf8-env"; "utf8-prelude" = dontDistribute super."utf8-prelude"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.11.nix b/pkgs/development/haskell-modules/configuration-lts-3.11.nix index a2908fa2174..bbd0f94695a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.11.nix @@ -123,6 +123,8 @@ self: super: { "BitSyntax" = dontDistribute super."BitSyntax"; "Bitly" = dontDistribute super."Bitly"; "Blobs" = dontDistribute super."Blobs"; + "BlogLiterately" = doDistribute super."BlogLiterately_0_8_1_3"; + "BlogLiterately-diagrams" = doDistribute super."BlogLiterately-diagrams_0_2_0_1"; "BluePrintCSS" = dontDistribute super."BluePrintCSS"; "Blueprint" = dontDistribute super."Blueprint"; "Bookshelf" = dontDistribute super."Bookshelf"; @@ -1349,6 +1351,7 @@ self: super: { "astrds" = dontDistribute super."astrds"; "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; + "async" = doDistribute super."async_2_0_2"; "async-dejafu" = dontDistribute super."async-dejafu"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; @@ -1484,6 +1487,7 @@ self: super: { "bdd" = dontDistribute super."bdd"; "bdelta" = dontDistribute super."bdelta"; "bdo" = dontDistribute super."bdo"; + "beam" = dontDistribute super."beam"; "beamable" = dontDistribute super."beamable"; "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; @@ -1770,6 +1774,7 @@ self: super: { "cabal-nirvana" = dontDistribute super."cabal-nirvana"; "cabal-progdeps" = dontDistribute super."cabal-progdeps"; "cabal-query" = dontDistribute super."cabal-query"; + "cabal-rpm" = doDistribute super."cabal-rpm_0_9_8"; "cabal-scripts" = dontDistribute super."cabal-scripts"; "cabal-setup" = dontDistribute super."cabal-setup"; "cabal-sign" = dontDistribute super."cabal-sign"; @@ -1989,6 +1994,7 @@ self: super: { "clustertools" = dontDistribute super."clustertools"; "clutterhs" = dontDistribute super."clutterhs"; "cmaes" = dontDistribute super."cmaes"; + "cmark" = doDistribute super."cmark_0_4_1"; "cmath" = dontDistribute super."cmath"; "cmathml3" = dontDistribute super."cmathml3"; "cmd-item" = dontDistribute super."cmd-item"; @@ -2740,6 +2746,7 @@ self: super: { "empty" = dontDistribute super."empty"; "encoding" = dontDistribute super."encoding"; "endo" = dontDistribute super."endo"; + "engine-io" = doDistribute super."engine-io_1_2_11"; "engine-io-snap" = dontDistribute super."engine-io-snap"; "engine-io-wai" = dontDistribute super."engine-io-wai"; "engine-io-yesod" = dontDistribute super."engine-io-yesod"; @@ -3443,6 +3450,13 @@ self: super: { "googleplus" = dontDistribute super."googleplus"; "googlepolyline" = dontDistribute super."googlepolyline"; "gopherbot" = dontDistribute super."gopherbot"; + "gore-and-ash" = dontDistribute super."gore-and-ash"; + "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; + "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; + "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; + "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; + "gore-and-ash-sync" = dontDistribute super."gore-and-ash-sync"; "gpah" = dontDistribute super."gpah"; "gpcsets" = dontDistribute super."gpcsets"; "gpolyline" = dontDistribute super."gpolyline"; @@ -4316,6 +4330,7 @@ self: super: { "hspec-expectations-pretty-diff" = dontDistribute super."hspec-expectations-pretty-diff"; "hspec-experimental" = dontDistribute super."hspec-experimental"; "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-megaparsec" = dontDistribute super."hspec-megaparsec"; "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; @@ -4495,6 +4510,7 @@ self: super: { "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hypher" = dontDistribute super."hypher"; + "hzaif" = dontDistribute super."hzaif"; "hzk" = dontDistribute super."hzk"; "hzulip" = dontDistribute super."hzulip"; "i18n" = dontDistribute super."i18n"; @@ -5202,6 +5218,7 @@ self: super: { "mangopay" = doDistribute super."mangopay_1_11_5"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown-kate" = dontDistribute super."markdown-kate"; "markdown-pap" = dontDistribute super."markdown-pap"; @@ -5521,6 +5538,7 @@ self: super: { "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; "nano-cryptr" = dontDistribute super."nano-cryptr"; + "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; "nano-md5" = dontDistribute super."nano-md5"; "nanoAgda" = dontDistribute super."nanoAgda"; @@ -5674,6 +5692,7 @@ self: super: { "null-canvas" = dontDistribute super."null-canvas"; "nullary" = dontDistribute super."nullary"; "number" = dontDistribute super."number"; + "number-length" = dontDistribute super."number-length"; "numbering" = dontDistribute super."numbering"; "numerals" = dontDistribute super."numerals"; "numerals-base" = dontDistribute super."numerals-base"; @@ -5824,6 +5843,7 @@ self: super: { "pandoc-lens" = dontDistribute super."pandoc-lens"; "pandoc-placetable" = dontDistribute super."pandoc-placetable"; "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; + "pandoc-types" = doDistribute super."pandoc-types_1_12_4_7"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; "pango" = doDistribute super."pango_0_13_1_0"; "papillon" = dontDistribute super."papillon"; @@ -6026,6 +6046,7 @@ self: super: { "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; "plailude" = dontDistribute super."plailude"; + "plan-b" = dontDistribute super."plan-b"; "planar-graph" = dontDistribute super."planar-graph"; "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; @@ -6280,7 +6301,6 @@ self: super: { "queuelike" = dontDistribute super."queuelike"; "quick-generator" = dontDistribute super."quick-generator"; "quick-schema" = dontDistribute super."quick-schema"; - "quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb"; @@ -7396,6 +7416,7 @@ self: super: { "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" = doDistribute super."temporary_1_2_0_3"; "temporary-resourcet" = dontDistribute super."temporary-resourcet"; "tempus" = dontDistribute super."tempus"; "tempus-fugit" = dontDistribute super."tempus-fugit"; @@ -7848,6 +7869,10 @@ self: super: { "usb-iteratee" = dontDistribute super."usb-iteratee"; "usb-safe" = dontDistribute super."usb-safe"; "userid" = dontDistribute super."userid"; + "users" = doDistribute super."users_0_3_0_0"; + "users-persistent" = doDistribute super."users-persistent_0_3_0_0"; + "users-postgresql-simple" = doDistribute super."users-postgresql-simple_0_3_0_0"; + "users-test" = doDistribute super."users-test_0_3_0_0"; "utc" = dontDistribute super."utc"; "utf8-env" = dontDistribute super."utf8-env"; "utf8-prelude" = dontDistribute super."utf8-prelude"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.12.nix b/pkgs/development/haskell-modules/configuration-lts-3.12.nix index 84dc56c88d0..a6de95aeb09 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.12.nix @@ -123,6 +123,8 @@ self: super: { "BitSyntax" = dontDistribute super."BitSyntax"; "Bitly" = dontDistribute super."Bitly"; "Blobs" = dontDistribute super."Blobs"; + "BlogLiterately" = doDistribute super."BlogLiterately_0_8_1_3"; + "BlogLiterately-diagrams" = doDistribute super."BlogLiterately-diagrams_0_2_0_1"; "BluePrintCSS" = dontDistribute super."BluePrintCSS"; "Blueprint" = dontDistribute super."Blueprint"; "Bookshelf" = dontDistribute super."Bookshelf"; @@ -1348,6 +1350,7 @@ self: super: { "astrds" = dontDistribute super."astrds"; "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; + "async" = doDistribute super."async_2_0_2"; "async-dejafu" = dontDistribute super."async-dejafu"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; @@ -1483,6 +1486,7 @@ self: super: { "bdd" = dontDistribute super."bdd"; "bdelta" = dontDistribute super."bdelta"; "bdo" = dontDistribute super."bdo"; + "beam" = dontDistribute super."beam"; "beamable" = dontDistribute super."beamable"; "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; @@ -1769,6 +1773,7 @@ self: super: { "cabal-nirvana" = dontDistribute super."cabal-nirvana"; "cabal-progdeps" = dontDistribute super."cabal-progdeps"; "cabal-query" = dontDistribute super."cabal-query"; + "cabal-rpm" = doDistribute super."cabal-rpm_0_9_8"; "cabal-scripts" = dontDistribute super."cabal-scripts"; "cabal-setup" = dontDistribute super."cabal-setup"; "cabal-sign" = dontDistribute super."cabal-sign"; @@ -1984,6 +1989,7 @@ self: super: { "clustertools" = dontDistribute super."clustertools"; "clutterhs" = dontDistribute super."clutterhs"; "cmaes" = dontDistribute super."cmaes"; + "cmark" = doDistribute super."cmark_0_4_1"; "cmath" = dontDistribute super."cmath"; "cmathml3" = dontDistribute super."cmathml3"; "cmd-item" = dontDistribute super."cmd-item"; @@ -2735,6 +2741,7 @@ self: super: { "empty" = dontDistribute super."empty"; "encoding" = dontDistribute super."encoding"; "endo" = dontDistribute super."endo"; + "engine-io" = doDistribute super."engine-io_1_2_11"; "engine-io-snap" = dontDistribute super."engine-io-snap"; "engine-io-wai" = dontDistribute super."engine-io-wai"; "engine-io-yesod" = dontDistribute super."engine-io-yesod"; @@ -3437,6 +3444,13 @@ self: super: { "googleplus" = dontDistribute super."googleplus"; "googlepolyline" = dontDistribute super."googlepolyline"; "gopherbot" = dontDistribute super."gopherbot"; + "gore-and-ash" = dontDistribute super."gore-and-ash"; + "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; + "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; + "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; + "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; + "gore-and-ash-sync" = dontDistribute super."gore-and-ash-sync"; "gpah" = dontDistribute super."gpah"; "gpcsets" = dontDistribute super."gpcsets"; "gpolyline" = dontDistribute super."gpolyline"; @@ -4310,6 +4324,7 @@ self: super: { "hspec-expectations-pretty-diff" = dontDistribute super."hspec-expectations-pretty-diff"; "hspec-experimental" = dontDistribute super."hspec-experimental"; "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-megaparsec" = dontDistribute super."hspec-megaparsec"; "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; @@ -4489,6 +4504,7 @@ self: super: { "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hypher" = dontDistribute super."hypher"; + "hzaif" = dontDistribute super."hzaif"; "hzk" = dontDistribute super."hzk"; "hzulip" = dontDistribute super."hzulip"; "i18n" = dontDistribute super."i18n"; @@ -5196,6 +5212,7 @@ self: super: { "mangopay" = doDistribute super."mangopay_1_11_5"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown-kate" = dontDistribute super."markdown-kate"; "markdown-pap" = dontDistribute super."markdown-pap"; @@ -5515,6 +5532,7 @@ self: super: { "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; "nano-cryptr" = dontDistribute super."nano-cryptr"; + "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; "nano-md5" = dontDistribute super."nano-md5"; "nanoAgda" = dontDistribute super."nanoAgda"; @@ -5668,6 +5686,7 @@ self: super: { "null-canvas" = dontDistribute super."null-canvas"; "nullary" = dontDistribute super."nullary"; "number" = dontDistribute super."number"; + "number-length" = dontDistribute super."number-length"; "numbering" = dontDistribute super."numbering"; "numerals" = dontDistribute super."numerals"; "numerals-base" = dontDistribute super."numerals-base"; @@ -5818,6 +5837,7 @@ self: super: { "pandoc-lens" = dontDistribute super."pandoc-lens"; "pandoc-placetable" = dontDistribute super."pandoc-placetable"; "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; + "pandoc-types" = doDistribute super."pandoc-types_1_12_4_7"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; "pango" = doDistribute super."pango_0_13_1_0"; "papillon" = dontDistribute super."papillon"; @@ -6019,6 +6039,7 @@ self: super: { "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; "plailude" = dontDistribute super."plailude"; + "plan-b" = dontDistribute super."plan-b"; "planar-graph" = dontDistribute super."planar-graph"; "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; @@ -6273,7 +6294,6 @@ self: super: { "queuelike" = dontDistribute super."queuelike"; "quick-generator" = dontDistribute super."quick-generator"; "quick-schema" = dontDistribute super."quick-schema"; - "quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb"; @@ -7389,6 +7409,7 @@ self: super: { "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" = doDistribute super."temporary_1_2_0_3"; "temporary-resourcet" = dontDistribute super."temporary-resourcet"; "tempus" = dontDistribute super."tempus"; "tempus-fugit" = dontDistribute super."tempus-fugit"; @@ -7839,6 +7860,10 @@ self: super: { "usb-iteratee" = dontDistribute super."usb-iteratee"; "usb-safe" = dontDistribute super."usb-safe"; "userid" = dontDistribute super."userid"; + "users" = doDistribute super."users_0_3_0_0"; + "users-persistent" = doDistribute super."users-persistent_0_3_0_0"; + "users-postgresql-simple" = doDistribute super."users-postgresql-simple_0_3_0_0"; + "users-test" = doDistribute super."users-test_0_3_0_0"; "utc" = dontDistribute super."utc"; "utf8-env" = dontDistribute super."utf8-env"; "utf8-prelude" = dontDistribute super."utf8-prelude"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.13.nix b/pkgs/development/haskell-modules/configuration-lts-3.13.nix index 47528726e07..b556af7d18d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.13.nix @@ -123,6 +123,8 @@ self: super: { "BitSyntax" = dontDistribute super."BitSyntax"; "Bitly" = dontDistribute super."Bitly"; "Blobs" = dontDistribute super."Blobs"; + "BlogLiterately" = doDistribute super."BlogLiterately_0_8_1_3"; + "BlogLiterately-diagrams" = doDistribute super."BlogLiterately-diagrams_0_2_0_1"; "BluePrintCSS" = dontDistribute super."BluePrintCSS"; "Blueprint" = dontDistribute super."Blueprint"; "Bookshelf" = dontDistribute super."Bookshelf"; @@ -1348,6 +1350,7 @@ self: super: { "astrds" = dontDistribute super."astrds"; "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; + "async" = doDistribute super."async_2_0_2"; "async-dejafu" = dontDistribute super."async-dejafu"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; @@ -1483,6 +1486,7 @@ self: super: { "bdd" = dontDistribute super."bdd"; "bdelta" = dontDistribute super."bdelta"; "bdo" = dontDistribute super."bdo"; + "beam" = dontDistribute super."beam"; "beamable" = dontDistribute super."beamable"; "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; @@ -1769,6 +1773,7 @@ self: super: { "cabal-nirvana" = dontDistribute super."cabal-nirvana"; "cabal-progdeps" = dontDistribute super."cabal-progdeps"; "cabal-query" = dontDistribute super."cabal-query"; + "cabal-rpm" = doDistribute super."cabal-rpm_0_9_8"; "cabal-scripts" = dontDistribute super."cabal-scripts"; "cabal-setup" = dontDistribute super."cabal-setup"; "cabal-sign" = dontDistribute super."cabal-sign"; @@ -1984,6 +1989,7 @@ self: super: { "clustertools" = dontDistribute super."clustertools"; "clutterhs" = dontDistribute super."clutterhs"; "cmaes" = dontDistribute super."cmaes"; + "cmark" = doDistribute super."cmark_0_4_1"; "cmath" = dontDistribute super."cmath"; "cmathml3" = dontDistribute super."cmathml3"; "cmd-item" = dontDistribute super."cmd-item"; @@ -2735,6 +2741,7 @@ self: super: { "empty" = dontDistribute super."empty"; "encoding" = dontDistribute super."encoding"; "endo" = dontDistribute super."endo"; + "engine-io" = doDistribute super."engine-io_1_2_11"; "engine-io-snap" = dontDistribute super."engine-io-snap"; "engine-io-wai" = dontDistribute super."engine-io-wai"; "engine-io-yesod" = dontDistribute super."engine-io-yesod"; @@ -3437,6 +3444,13 @@ self: super: { "googleplus" = dontDistribute super."googleplus"; "googlepolyline" = dontDistribute super."googlepolyline"; "gopherbot" = dontDistribute super."gopherbot"; + "gore-and-ash" = dontDistribute super."gore-and-ash"; + "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; + "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; + "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; + "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; + "gore-and-ash-sync" = dontDistribute super."gore-and-ash-sync"; "gpah" = dontDistribute super."gpah"; "gpcsets" = dontDistribute super."gpcsets"; "gpolyline" = dontDistribute super."gpolyline"; @@ -4309,6 +4323,7 @@ self: super: { "hspec-expectations-pretty-diff" = dontDistribute super."hspec-expectations-pretty-diff"; "hspec-experimental" = dontDistribute super."hspec-experimental"; "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-megaparsec" = dontDistribute super."hspec-megaparsec"; "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; @@ -4488,6 +4503,7 @@ self: super: { "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hypher" = dontDistribute super."hypher"; + "hzaif" = dontDistribute super."hzaif"; "hzk" = dontDistribute super."hzk"; "hzulip" = dontDistribute super."hzulip"; "i18n" = dontDistribute super."i18n"; @@ -5194,6 +5210,7 @@ self: super: { "mangopay" = doDistribute super."mangopay_1_11_5"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown-kate" = dontDistribute super."markdown-kate"; "markdown-pap" = dontDistribute super."markdown-pap"; @@ -5513,6 +5530,7 @@ self: super: { "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; "nano-cryptr" = dontDistribute super."nano-cryptr"; + "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; "nano-md5" = dontDistribute super."nano-md5"; "nanoAgda" = dontDistribute super."nanoAgda"; @@ -5666,6 +5684,7 @@ self: super: { "null-canvas" = dontDistribute super."null-canvas"; "nullary" = dontDistribute super."nullary"; "number" = dontDistribute super."number"; + "number-length" = dontDistribute super."number-length"; "numbering" = dontDistribute super."numbering"; "numerals" = dontDistribute super."numerals"; "numerals-base" = dontDistribute super."numerals-base"; @@ -5816,6 +5835,7 @@ self: super: { "pandoc-lens" = dontDistribute super."pandoc-lens"; "pandoc-placetable" = dontDistribute super."pandoc-placetable"; "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; + "pandoc-types" = doDistribute super."pandoc-types_1_12_4_7"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; "pango" = doDistribute super."pango_0_13_1_0"; "papillon" = dontDistribute super."papillon"; @@ -6016,6 +6036,7 @@ self: super: { "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; "plailude" = dontDistribute super."plailude"; + "plan-b" = dontDistribute super."plan-b"; "planar-graph" = dontDistribute super."planar-graph"; "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; @@ -6270,7 +6291,6 @@ self: super: { "queuelike" = dontDistribute super."queuelike"; "quick-generator" = dontDistribute super."quick-generator"; "quick-schema" = dontDistribute super."quick-schema"; - "quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb"; @@ -7385,6 +7405,7 @@ self: super: { "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" = doDistribute super."temporary_1_2_0_3"; "temporary-resourcet" = dontDistribute super."temporary-resourcet"; "tempus" = dontDistribute super."tempus"; "tempus-fugit" = dontDistribute super."tempus-fugit"; @@ -7835,6 +7856,10 @@ self: super: { "usb-iteratee" = dontDistribute super."usb-iteratee"; "usb-safe" = dontDistribute super."usb-safe"; "userid" = dontDistribute super."userid"; + "users" = doDistribute super."users_0_3_0_0"; + "users-persistent" = doDistribute super."users-persistent_0_3_0_0"; + "users-postgresql-simple" = doDistribute super."users-postgresql-simple_0_3_0_0"; + "users-test" = doDistribute super."users-test_0_3_0_0"; "utc" = dontDistribute super."utc"; "utf8-env" = dontDistribute super."utf8-env"; "utf8-prelude" = dontDistribute super."utf8-prelude"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.14.nix b/pkgs/development/haskell-modules/configuration-lts-3.14.nix index 296fbd0b720..c1d6d27fe83 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.14.nix @@ -123,6 +123,8 @@ self: super: { "BitSyntax" = dontDistribute super."BitSyntax"; "Bitly" = dontDistribute super."Bitly"; "Blobs" = dontDistribute super."Blobs"; + "BlogLiterately" = doDistribute super."BlogLiterately_0_8_1_3"; + "BlogLiterately-diagrams" = doDistribute super."BlogLiterately-diagrams_0_2_0_1"; "BluePrintCSS" = dontDistribute super."BluePrintCSS"; "Blueprint" = dontDistribute super."Blueprint"; "Bookshelf" = dontDistribute super."Bookshelf"; @@ -1346,6 +1348,7 @@ self: super: { "astrds" = dontDistribute super."astrds"; "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; + "async" = doDistribute super."async_2_0_2"; "async-dejafu" = dontDistribute super."async-dejafu"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; @@ -1481,6 +1484,7 @@ self: super: { "bdd" = dontDistribute super."bdd"; "bdelta" = dontDistribute super."bdelta"; "bdo" = dontDistribute super."bdo"; + "beam" = dontDistribute super."beam"; "beamable" = dontDistribute super."beamable"; "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; @@ -1766,6 +1770,7 @@ self: super: { "cabal-nirvana" = dontDistribute super."cabal-nirvana"; "cabal-progdeps" = dontDistribute super."cabal-progdeps"; "cabal-query" = dontDistribute super."cabal-query"; + "cabal-rpm" = doDistribute super."cabal-rpm_0_9_8"; "cabal-scripts" = dontDistribute super."cabal-scripts"; "cabal-setup" = dontDistribute super."cabal-setup"; "cabal-sign" = dontDistribute super."cabal-sign"; @@ -1981,6 +1986,7 @@ self: super: { "clustertools" = dontDistribute super."clustertools"; "clutterhs" = dontDistribute super."clutterhs"; "cmaes" = dontDistribute super."cmaes"; + "cmark" = doDistribute super."cmark_0_4_1"; "cmath" = dontDistribute super."cmath"; "cmathml3" = dontDistribute super."cmathml3"; "cmd-item" = dontDistribute super."cmd-item"; @@ -2728,6 +2734,7 @@ self: super: { "empty" = dontDistribute super."empty"; "encoding" = dontDistribute super."encoding"; "endo" = dontDistribute super."endo"; + "engine-io" = doDistribute super."engine-io_1_2_11"; "engine-io-snap" = dontDistribute super."engine-io-snap"; "engine-io-wai" = dontDistribute super."engine-io-wai"; "engine-io-yesod" = dontDistribute super."engine-io-yesod"; @@ -3430,6 +3437,13 @@ self: super: { "googleplus" = dontDistribute super."googleplus"; "googlepolyline" = dontDistribute super."googlepolyline"; "gopherbot" = dontDistribute super."gopherbot"; + "gore-and-ash" = dontDistribute super."gore-and-ash"; + "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; + "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; + "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; + "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; + "gore-and-ash-sync" = dontDistribute super."gore-and-ash-sync"; "gpah" = dontDistribute super."gpah"; "gpcsets" = dontDistribute super."gpcsets"; "gpolyline" = dontDistribute super."gpolyline"; @@ -4302,6 +4316,7 @@ self: super: { "hspec-expectations-pretty-diff" = dontDistribute super."hspec-expectations-pretty-diff"; "hspec-experimental" = dontDistribute super."hspec-experimental"; "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-megaparsec" = dontDistribute super."hspec-megaparsec"; "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; @@ -4480,6 +4495,7 @@ self: super: { "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hypher" = dontDistribute super."hypher"; + "hzaif" = dontDistribute super."hzaif"; "hzk" = dontDistribute super."hzk"; "hzulip" = dontDistribute super."hzulip"; "i18n" = dontDistribute super."i18n"; @@ -5185,6 +5201,7 @@ self: super: { "mangopay" = doDistribute super."mangopay_1_11_5"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown-kate" = dontDistribute super."markdown-kate"; "markdown-pap" = dontDistribute super."markdown-pap"; @@ -5503,6 +5520,7 @@ self: super: { "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; "nano-cryptr" = dontDistribute super."nano-cryptr"; + "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; "nano-md5" = dontDistribute super."nano-md5"; "nanoAgda" = dontDistribute super."nanoAgda"; @@ -5656,6 +5674,7 @@ self: super: { "null-canvas" = dontDistribute super."null-canvas"; "nullary" = dontDistribute super."nullary"; "number" = dontDistribute super."number"; + "number-length" = dontDistribute super."number-length"; "numbering" = dontDistribute super."numbering"; "numerals" = dontDistribute super."numerals"; "numerals-base" = dontDistribute super."numerals-base"; @@ -5806,6 +5825,7 @@ self: super: { "pandoc-lens" = dontDistribute super."pandoc-lens"; "pandoc-placetable" = dontDistribute super."pandoc-placetable"; "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; + "pandoc-types" = doDistribute super."pandoc-types_1_12_4_7"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; "pango" = doDistribute super."pango_0_13_1_0"; "papillon" = dontDistribute super."papillon"; @@ -6006,6 +6026,7 @@ self: super: { "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; "plailude" = dontDistribute super."plailude"; + "plan-b" = dontDistribute super."plan-b"; "planar-graph" = dontDistribute super."planar-graph"; "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; @@ -6260,7 +6281,6 @@ self: super: { "queuelike" = dontDistribute super."queuelike"; "quick-generator" = dontDistribute super."quick-generator"; "quick-schema" = dontDistribute super."quick-schema"; - "quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb"; @@ -7375,6 +7395,7 @@ self: super: { "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" = doDistribute super."temporary_1_2_0_3"; "temporary-resourcet" = dontDistribute super."temporary-resourcet"; "tempus" = dontDistribute super."tempus"; "tempus-fugit" = dontDistribute super."tempus-fugit"; @@ -7825,6 +7846,10 @@ self: super: { "usb-iteratee" = dontDistribute super."usb-iteratee"; "usb-safe" = dontDistribute super."usb-safe"; "userid" = dontDistribute super."userid"; + "users" = doDistribute super."users_0_3_0_0"; + "users-persistent" = doDistribute super."users-persistent_0_3_0_0"; + "users-postgresql-simple" = doDistribute super."users-postgresql-simple_0_3_0_0"; + "users-test" = doDistribute super."users-test_0_3_0_0"; "utc" = dontDistribute super."utc"; "utf8-env" = dontDistribute super."utf8-env"; "utf8-prelude" = dontDistribute super."utf8-prelude"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.15.nix b/pkgs/development/haskell-modules/configuration-lts-3.15.nix index 62c422826bc..3fc3ebf8165 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.15.nix @@ -123,6 +123,8 @@ self: super: { "BitSyntax" = dontDistribute super."BitSyntax"; "Bitly" = dontDistribute super."Bitly"; "Blobs" = dontDistribute super."Blobs"; + "BlogLiterately" = doDistribute super."BlogLiterately_0_8_1_3"; + "BlogLiterately-diagrams" = doDistribute super."BlogLiterately-diagrams_0_2_0_1"; "BluePrintCSS" = dontDistribute super."BluePrintCSS"; "Blueprint" = dontDistribute super."Blueprint"; "Bookshelf" = dontDistribute super."Bookshelf"; @@ -1346,6 +1348,7 @@ self: super: { "astrds" = dontDistribute super."astrds"; "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; + "async" = doDistribute super."async_2_0_2"; "async-dejafu" = dontDistribute super."async-dejafu"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; @@ -1481,6 +1484,7 @@ self: super: { "bdd" = dontDistribute super."bdd"; "bdelta" = dontDistribute super."bdelta"; "bdo" = dontDistribute super."bdo"; + "beam" = dontDistribute super."beam"; "beamable" = dontDistribute super."beamable"; "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; @@ -1766,6 +1770,7 @@ self: super: { "cabal-nirvana" = dontDistribute super."cabal-nirvana"; "cabal-progdeps" = dontDistribute super."cabal-progdeps"; "cabal-query" = dontDistribute super."cabal-query"; + "cabal-rpm" = doDistribute super."cabal-rpm_0_9_8"; "cabal-scripts" = dontDistribute super."cabal-scripts"; "cabal-setup" = dontDistribute super."cabal-setup"; "cabal-sign" = dontDistribute super."cabal-sign"; @@ -1981,6 +1986,7 @@ self: super: { "clustertools" = dontDistribute super."clustertools"; "clutterhs" = dontDistribute super."clutterhs"; "cmaes" = dontDistribute super."cmaes"; + "cmark" = doDistribute super."cmark_0_4_1"; "cmath" = dontDistribute super."cmath"; "cmathml3" = dontDistribute super."cmathml3"; "cmd-item" = dontDistribute super."cmd-item"; @@ -2728,6 +2734,7 @@ self: super: { "empty" = dontDistribute super."empty"; "encoding" = dontDistribute super."encoding"; "endo" = dontDistribute super."endo"; + "engine-io" = doDistribute super."engine-io_1_2_11"; "engine-io-snap" = dontDistribute super."engine-io-snap"; "engine-io-wai" = dontDistribute super."engine-io-wai"; "engine-io-yesod" = dontDistribute super."engine-io-yesod"; @@ -3429,6 +3436,13 @@ self: super: { "googleplus" = dontDistribute super."googleplus"; "googlepolyline" = dontDistribute super."googlepolyline"; "gopherbot" = dontDistribute super."gopherbot"; + "gore-and-ash" = dontDistribute super."gore-and-ash"; + "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; + "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; + "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; + "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; + "gore-and-ash-sync" = dontDistribute super."gore-and-ash-sync"; "gpah" = dontDistribute super."gpah"; "gpcsets" = dontDistribute super."gpcsets"; "gpolyline" = dontDistribute super."gpolyline"; @@ -4299,6 +4313,7 @@ self: super: { "hspec-expectations-pretty-diff" = dontDistribute super."hspec-expectations-pretty-diff"; "hspec-experimental" = dontDistribute super."hspec-experimental"; "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-megaparsec" = dontDistribute super."hspec-megaparsec"; "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; @@ -4476,6 +4491,7 @@ self: super: { "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hypher" = dontDistribute super."hypher"; + "hzaif" = dontDistribute super."hzaif"; "hzk" = dontDistribute super."hzk"; "hzulip" = dontDistribute super."hzulip"; "i18n" = dontDistribute super."i18n"; @@ -5181,6 +5197,7 @@ self: super: { "mangopay" = doDistribute super."mangopay_1_11_5"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown-kate" = dontDistribute super."markdown-kate"; "markdown-pap" = dontDistribute super."markdown-pap"; @@ -5499,6 +5516,7 @@ self: super: { "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; "nano-cryptr" = dontDistribute super."nano-cryptr"; + "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; "nano-md5" = dontDistribute super."nano-md5"; "nanoAgda" = dontDistribute super."nanoAgda"; @@ -5652,6 +5670,7 @@ self: super: { "null-canvas" = dontDistribute super."null-canvas"; "nullary" = dontDistribute super."nullary"; "number" = dontDistribute super."number"; + "number-length" = dontDistribute super."number-length"; "numbering" = dontDistribute super."numbering"; "numerals" = dontDistribute super."numerals"; "numerals-base" = dontDistribute super."numerals-base"; @@ -5792,6 +5811,7 @@ self: super: { "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; + "pandoc" = doDistribute super."pandoc_1_15_2_1"; "pandoc-citeproc" = doDistribute super."pandoc-citeproc_0_7_4"; "pandoc-citeproc-preamble" = dontDistribute super."pandoc-citeproc-preamble"; "pandoc-crossref" = dontDistribute super."pandoc-crossref"; @@ -5801,6 +5821,7 @@ self: super: { "pandoc-lens" = dontDistribute super."pandoc-lens"; "pandoc-placetable" = dontDistribute super."pandoc-placetable"; "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; + "pandoc-types" = doDistribute super."pandoc-types_1_12_4_7"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; "pango" = doDistribute super."pango_0_13_1_0"; "papillon" = dontDistribute super."papillon"; @@ -6001,6 +6022,7 @@ self: super: { "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; "plailude" = dontDistribute super."plailude"; + "plan-b" = dontDistribute super."plan-b"; "planar-graph" = dontDistribute super."planar-graph"; "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; @@ -6254,7 +6276,6 @@ self: super: { "queuelike" = dontDistribute super."queuelike"; "quick-generator" = dontDistribute super."quick-generator"; "quick-schema" = dontDistribute super."quick-schema"; - "quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb"; @@ -7368,6 +7389,7 @@ self: super: { "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" = doDistribute super."temporary_1_2_0_3"; "temporary-resourcet" = dontDistribute super."temporary-resourcet"; "tempus" = dontDistribute super."tempus"; "tempus-fugit" = dontDistribute super."tempus-fugit"; @@ -7818,6 +7840,10 @@ self: super: { "usb-iteratee" = dontDistribute super."usb-iteratee"; "usb-safe" = dontDistribute super."usb-safe"; "userid" = dontDistribute super."userid"; + "users" = doDistribute super."users_0_3_0_0"; + "users-persistent" = doDistribute super."users-persistent_0_3_0_0"; + "users-postgresql-simple" = doDistribute super."users-postgresql-simple_0_3_0_0"; + "users-test" = doDistribute super."users-test_0_3_0_0"; "utc" = dontDistribute super."utc"; "utf8-env" = dontDistribute super."utf8-env"; "utf8-prelude" = dontDistribute super."utf8-prelude"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.16.nix b/pkgs/development/haskell-modules/configuration-lts-3.16.nix index 5bd2c57df75..7b3293b2895 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.16.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.16.nix @@ -123,6 +123,8 @@ self: super: { "BitSyntax" = dontDistribute super."BitSyntax"; "Bitly" = dontDistribute super."Bitly"; "Blobs" = dontDistribute super."Blobs"; + "BlogLiterately" = doDistribute super."BlogLiterately_0_8_1_3"; + "BlogLiterately-diagrams" = doDistribute super."BlogLiterately-diagrams_0_2_0_1"; "BluePrintCSS" = dontDistribute super."BluePrintCSS"; "Blueprint" = dontDistribute super."Blueprint"; "Bookshelf" = dontDistribute super."Bookshelf"; @@ -1345,6 +1347,7 @@ self: super: { "astrds" = dontDistribute super."astrds"; "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; + "async" = doDistribute super."async_2_0_2"; "async-dejafu" = dontDistribute super."async-dejafu"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; @@ -1479,6 +1482,7 @@ self: super: { "bdd" = dontDistribute super."bdd"; "bdelta" = dontDistribute super."bdelta"; "bdo" = dontDistribute super."bdo"; + "beam" = dontDistribute super."beam"; "beamable" = dontDistribute super."beamable"; "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; @@ -1764,6 +1768,7 @@ self: super: { "cabal-nirvana" = dontDistribute super."cabal-nirvana"; "cabal-progdeps" = dontDistribute super."cabal-progdeps"; "cabal-query" = dontDistribute super."cabal-query"; + "cabal-rpm" = doDistribute super."cabal-rpm_0_9_8"; "cabal-scripts" = dontDistribute super."cabal-scripts"; "cabal-setup" = dontDistribute super."cabal-setup"; "cabal-sign" = dontDistribute super."cabal-sign"; @@ -1979,6 +1984,7 @@ self: super: { "clustertools" = dontDistribute super."clustertools"; "clutterhs" = dontDistribute super."clutterhs"; "cmaes" = dontDistribute super."cmaes"; + "cmark" = doDistribute super."cmark_0_4_1"; "cmath" = dontDistribute super."cmath"; "cmathml3" = dontDistribute super."cmathml3"; "cmd-item" = dontDistribute super."cmd-item"; @@ -2726,6 +2732,7 @@ self: super: { "empty" = dontDistribute super."empty"; "encoding" = dontDistribute super."encoding"; "endo" = dontDistribute super."endo"; + "engine-io" = doDistribute super."engine-io_1_2_11"; "engine-io-snap" = dontDistribute super."engine-io-snap"; "engine-io-wai" = dontDistribute super."engine-io-wai"; "engine-io-yesod" = dontDistribute super."engine-io-yesod"; @@ -3426,6 +3433,13 @@ self: super: { "googleplus" = dontDistribute super."googleplus"; "googlepolyline" = dontDistribute super."googlepolyline"; "gopherbot" = dontDistribute super."gopherbot"; + "gore-and-ash" = dontDistribute super."gore-and-ash"; + "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; + "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; + "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; + "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; + "gore-and-ash-sync" = dontDistribute super."gore-and-ash-sync"; "gpah" = dontDistribute super."gpah"; "gpcsets" = dontDistribute super."gpcsets"; "gpolyline" = dontDistribute super."gpolyline"; @@ -4295,6 +4309,7 @@ self: super: { "hspec-expectations-pretty-diff" = dontDistribute super."hspec-expectations-pretty-diff"; "hspec-experimental" = dontDistribute super."hspec-experimental"; "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-megaparsec" = dontDistribute super."hspec-megaparsec"; "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; @@ -4472,6 +4487,7 @@ self: super: { "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hypher" = dontDistribute super."hypher"; + "hzaif" = dontDistribute super."hzaif"; "hzk" = dontDistribute super."hzk"; "hzulip" = dontDistribute super."hzulip"; "i18n" = dontDistribute super."i18n"; @@ -5176,6 +5192,7 @@ self: super: { "mangopay" = doDistribute super."mangopay_1_11_5"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown-kate" = dontDistribute super."markdown-kate"; "markdown-pap" = dontDistribute super."markdown-pap"; @@ -5493,6 +5510,7 @@ self: super: { "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; "nano-cryptr" = dontDistribute super."nano-cryptr"; + "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; "nano-md5" = dontDistribute super."nano-md5"; "nanoAgda" = dontDistribute super."nanoAgda"; @@ -5646,6 +5664,7 @@ self: super: { "null-canvas" = dontDistribute super."null-canvas"; "nullary" = dontDistribute super."nullary"; "number" = dontDistribute super."number"; + "number-length" = dontDistribute super."number-length"; "numbering" = dontDistribute super."numbering"; "numerals" = dontDistribute super."numerals"; "numerals-base" = dontDistribute super."numerals-base"; @@ -5786,6 +5805,7 @@ self: super: { "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; + "pandoc" = doDistribute super."pandoc_1_15_2_1"; "pandoc-citeproc" = doDistribute super."pandoc-citeproc_0_7_4"; "pandoc-citeproc-preamble" = dontDistribute super."pandoc-citeproc-preamble"; "pandoc-crossref" = dontDistribute super."pandoc-crossref"; @@ -5795,6 +5815,7 @@ self: super: { "pandoc-lens" = dontDistribute super."pandoc-lens"; "pandoc-placetable" = dontDistribute super."pandoc-placetable"; "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; + "pandoc-types" = doDistribute super."pandoc-types_1_12_4_7"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; "pango" = doDistribute super."pango_0_13_1_0"; "papillon" = dontDistribute super."papillon"; @@ -5994,6 +6015,7 @@ self: super: { "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; "plailude" = dontDistribute super."plailude"; + "plan-b" = dontDistribute super."plan-b"; "planar-graph" = dontDistribute super."planar-graph"; "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; @@ -6246,7 +6268,6 @@ self: super: { "queuelike" = dontDistribute super."queuelike"; "quick-generator" = dontDistribute super."quick-generator"; "quick-schema" = dontDistribute super."quick-schema"; - "quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb"; @@ -7355,6 +7376,7 @@ self: super: { "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" = doDistribute super."temporary_1_2_0_3"; "temporary-resourcet" = dontDistribute super."temporary-resourcet"; "tempus" = dontDistribute super."tempus"; "tempus-fugit" = dontDistribute super."tempus-fugit"; @@ -7804,6 +7826,10 @@ self: super: { "usb-iteratee" = dontDistribute super."usb-iteratee"; "usb-safe" = dontDistribute super."usb-safe"; "userid" = dontDistribute super."userid"; + "users" = doDistribute super."users_0_3_0_0"; + "users-persistent" = doDistribute super."users-persistent_0_3_0_0"; + "users-postgresql-simple" = doDistribute super."users-postgresql-simple_0_3_0_0"; + "users-test" = doDistribute super."users-test_0_3_0_0"; "utc" = dontDistribute super."utc"; "utf8-env" = dontDistribute super."utf8-env"; "utf8-prelude" = dontDistribute super."utf8-prelude"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.17.nix b/pkgs/development/haskell-modules/configuration-lts-3.17.nix index c0b0a8b92a1..186a88404c2 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.17.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.17.nix @@ -123,6 +123,8 @@ self: super: { "BitSyntax" = dontDistribute super."BitSyntax"; "Bitly" = dontDistribute super."Bitly"; "Blobs" = dontDistribute super."Blobs"; + "BlogLiterately" = doDistribute super."BlogLiterately_0_8_1_3"; + "BlogLiterately-diagrams" = doDistribute super."BlogLiterately-diagrams_0_2_0_1"; "BluePrintCSS" = dontDistribute super."BluePrintCSS"; "Blueprint" = dontDistribute super."Blueprint"; "Bookshelf" = dontDistribute super."Bookshelf"; @@ -566,6 +568,7 @@ self: super: { "Javav" = dontDistribute super."Javav"; "JsContracts" = dontDistribute super."JsContracts"; "JsonGrammar" = dontDistribute super."JsonGrammar"; + "JuicyPixels" = doDistribute super."JuicyPixels_3_2_6_4"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; "JuicyPixels-repa" = dontDistribute super."JuicyPixels-repa"; "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; @@ -1343,6 +1346,7 @@ self: super: { "astrds" = dontDistribute super."astrds"; "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; + "async" = doDistribute super."async_2_0_2"; "async-dejafu" = dontDistribute super."async-dejafu"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; @@ -1477,6 +1481,7 @@ self: super: { "bdd" = dontDistribute super."bdd"; "bdelta" = dontDistribute super."bdelta"; "bdo" = dontDistribute super."bdo"; + "beam" = dontDistribute super."beam"; "beamable" = dontDistribute super."beamable"; "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; @@ -1762,6 +1767,7 @@ self: super: { "cabal-nirvana" = dontDistribute super."cabal-nirvana"; "cabal-progdeps" = dontDistribute super."cabal-progdeps"; "cabal-query" = dontDistribute super."cabal-query"; + "cabal-rpm" = doDistribute super."cabal-rpm_0_9_8"; "cabal-scripts" = dontDistribute super."cabal-scripts"; "cabal-setup" = dontDistribute super."cabal-setup"; "cabal-sign" = dontDistribute super."cabal-sign"; @@ -1976,6 +1982,7 @@ self: super: { "clustertools" = dontDistribute super."clustertools"; "clutterhs" = dontDistribute super."clutterhs"; "cmaes" = dontDistribute super."cmaes"; + "cmark" = doDistribute super."cmark_0_4_1"; "cmath" = dontDistribute super."cmath"; "cmathml3" = dontDistribute super."cmathml3"; "cmd-item" = dontDistribute super."cmd-item"; @@ -2722,6 +2729,7 @@ self: super: { "empty" = dontDistribute super."empty"; "encoding" = dontDistribute super."encoding"; "endo" = dontDistribute super."endo"; + "engine-io" = doDistribute super."engine-io_1_2_11"; "engine-io-snap" = dontDistribute super."engine-io-snap"; "engine-io-wai" = dontDistribute super."engine-io-wai"; "engine-io-yesod" = dontDistribute super."engine-io-yesod"; @@ -3422,6 +3430,13 @@ self: super: { "googleplus" = dontDistribute super."googleplus"; "googlepolyline" = dontDistribute super."googlepolyline"; "gopherbot" = dontDistribute super."gopherbot"; + "gore-and-ash" = dontDistribute super."gore-and-ash"; + "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; + "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; + "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; + "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; + "gore-and-ash-sync" = dontDistribute super."gore-and-ash-sync"; "gpah" = dontDistribute super."gpah"; "gpcsets" = dontDistribute super."gpcsets"; "gpolyline" = dontDistribute super."gpolyline"; @@ -4290,6 +4305,7 @@ self: super: { "hspec-expectations-pretty-diff" = dontDistribute super."hspec-expectations-pretty-diff"; "hspec-experimental" = dontDistribute super."hspec-experimental"; "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-megaparsec" = dontDistribute super."hspec-megaparsec"; "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; @@ -4467,6 +4483,7 @@ self: super: { "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hypher" = dontDistribute super."hypher"; + "hzaif" = dontDistribute super."hzaif"; "hzk" = dontDistribute super."hzk"; "hzulip" = dontDistribute super."hzulip"; "i18n" = dontDistribute super."i18n"; @@ -5169,6 +5186,7 @@ self: super: { "mangopay" = doDistribute super."mangopay_1_11_5"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown-kate" = dontDistribute super."markdown-kate"; "markdown-pap" = dontDistribute super."markdown-pap"; @@ -5485,6 +5503,7 @@ self: super: { "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; "nano-cryptr" = dontDistribute super."nano-cryptr"; + "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; "nano-md5" = dontDistribute super."nano-md5"; "nanoAgda" = dontDistribute super."nanoAgda"; @@ -5638,6 +5657,7 @@ self: super: { "null-canvas" = dontDistribute super."null-canvas"; "nullary" = dontDistribute super."nullary"; "number" = dontDistribute super."number"; + "number-length" = dontDistribute super."number-length"; "numbering" = dontDistribute super."numbering"; "numerals" = dontDistribute super."numerals"; "numerals-base" = dontDistribute super."numerals-base"; @@ -5778,6 +5798,7 @@ self: super: { "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; + "pandoc" = doDistribute super."pandoc_1_15_2_1"; "pandoc-citeproc" = doDistribute super."pandoc-citeproc_0_7_4"; "pandoc-citeproc-preamble" = dontDistribute super."pandoc-citeproc-preamble"; "pandoc-crossref" = dontDistribute super."pandoc-crossref"; @@ -5787,6 +5808,7 @@ self: super: { "pandoc-lens" = dontDistribute super."pandoc-lens"; "pandoc-placetable" = dontDistribute super."pandoc-placetable"; "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; + "pandoc-types" = doDistribute super."pandoc-types_1_12_4_7"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; "pango" = doDistribute super."pango_0_13_1_0"; "papillon" = dontDistribute super."papillon"; @@ -5986,6 +6008,7 @@ self: super: { "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; "plailude" = dontDistribute super."plailude"; + "plan-b" = dontDistribute super."plan-b"; "planar-graph" = dontDistribute super."planar-graph"; "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; @@ -6238,7 +6261,6 @@ self: super: { "queuelike" = dontDistribute super."queuelike"; "quick-generator" = dontDistribute super."quick-generator"; "quick-schema" = dontDistribute super."quick-schema"; - "quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb"; @@ -7346,6 +7368,7 @@ self: super: { "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" = doDistribute super."temporary_1_2_0_3"; "temporary-resourcet" = dontDistribute super."temporary-resourcet"; "tempus" = dontDistribute super."tempus"; "tempus-fugit" = dontDistribute super."tempus-fugit"; @@ -7795,6 +7818,10 @@ self: super: { "usb-iteratee" = dontDistribute super."usb-iteratee"; "usb-safe" = dontDistribute super."usb-safe"; "userid" = dontDistribute super."userid"; + "users" = doDistribute super."users_0_3_0_0"; + "users-persistent" = doDistribute super."users-persistent_0_3_0_0"; + "users-postgresql-simple" = doDistribute super."users-postgresql-simple_0_3_0_0"; + "users-test" = doDistribute super."users-test_0_3_0_0"; "utc" = dontDistribute super."utc"; "utf8-env" = dontDistribute super."utf8-env"; "utf8-prelude" = dontDistribute super."utf8-prelude"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.18.nix b/pkgs/development/haskell-modules/configuration-lts-3.18.nix index 2ae19af57cd..beb24114b59 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.18.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.18.nix @@ -123,6 +123,8 @@ self: super: { "BitSyntax" = dontDistribute super."BitSyntax"; "Bitly" = dontDistribute super."Bitly"; "Blobs" = dontDistribute super."Blobs"; + "BlogLiterately" = doDistribute super."BlogLiterately_0_8_1_3"; + "BlogLiterately-diagrams" = doDistribute super."BlogLiterately-diagrams_0_2_0_1"; "BluePrintCSS" = dontDistribute super."BluePrintCSS"; "Blueprint" = dontDistribute super."Blueprint"; "Bookshelf" = dontDistribute super."Bookshelf"; @@ -566,6 +568,7 @@ self: super: { "Javav" = dontDistribute super."Javav"; "JsContracts" = dontDistribute super."JsContracts"; "JsonGrammar" = dontDistribute super."JsonGrammar"; + "JuicyPixels" = doDistribute super."JuicyPixels_3_2_6_4"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; "JuicyPixels-repa" = dontDistribute super."JuicyPixels-repa"; "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; @@ -1343,6 +1346,7 @@ self: super: { "astrds" = dontDistribute super."astrds"; "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; + "async" = doDistribute super."async_2_0_2"; "async-dejafu" = dontDistribute super."async-dejafu"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; @@ -1477,6 +1481,7 @@ self: super: { "bdd" = dontDistribute super."bdd"; "bdelta" = dontDistribute super."bdelta"; "bdo" = dontDistribute super."bdo"; + "beam" = dontDistribute super."beam"; "beamable" = dontDistribute super."beamable"; "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; @@ -1762,6 +1767,7 @@ self: super: { "cabal-nirvana" = dontDistribute super."cabal-nirvana"; "cabal-progdeps" = dontDistribute super."cabal-progdeps"; "cabal-query" = dontDistribute super."cabal-query"; + "cabal-rpm" = doDistribute super."cabal-rpm_0_9_8"; "cabal-scripts" = dontDistribute super."cabal-scripts"; "cabal-setup" = dontDistribute super."cabal-setup"; "cabal-sign" = dontDistribute super."cabal-sign"; @@ -1975,6 +1981,7 @@ self: super: { "clustertools" = dontDistribute super."clustertools"; "clutterhs" = dontDistribute super."clutterhs"; "cmaes" = dontDistribute super."cmaes"; + "cmark" = doDistribute super."cmark_0_4_1"; "cmath" = dontDistribute super."cmath"; "cmathml3" = dontDistribute super."cmathml3"; "cmd-item" = dontDistribute super."cmd-item"; @@ -2721,6 +2728,7 @@ self: super: { "empty" = dontDistribute super."empty"; "encoding" = dontDistribute super."encoding"; "endo" = dontDistribute super."endo"; + "engine-io" = doDistribute super."engine-io_1_2_11"; "engine-io-snap" = dontDistribute super."engine-io-snap"; "engine-io-wai" = dontDistribute super."engine-io-wai"; "engine-io-yesod" = dontDistribute super."engine-io-yesod"; @@ -3419,6 +3427,13 @@ self: super: { "googleplus" = dontDistribute super."googleplus"; "googlepolyline" = dontDistribute super."googlepolyline"; "gopherbot" = dontDistribute super."gopherbot"; + "gore-and-ash" = dontDistribute super."gore-and-ash"; + "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; + "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; + "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; + "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; + "gore-and-ash-sync" = dontDistribute super."gore-and-ash-sync"; "gpah" = dontDistribute super."gpah"; "gpcsets" = dontDistribute super."gpcsets"; "gpolyline" = dontDistribute super."gpolyline"; @@ -4283,6 +4298,7 @@ self: super: { "hspec-expectations-pretty-diff" = dontDistribute super."hspec-expectations-pretty-diff"; "hspec-experimental" = dontDistribute super."hspec-experimental"; "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-megaparsec" = dontDistribute super."hspec-megaparsec"; "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; @@ -4458,6 +4474,7 @@ self: super: { "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hypher" = dontDistribute super."hypher"; + "hzaif" = dontDistribute super."hzaif"; "hzk" = dontDistribute super."hzk"; "hzulip" = dontDistribute super."hzulip"; "i18n" = dontDistribute super."i18n"; @@ -5160,6 +5177,7 @@ self: super: { "mangopay" = doDistribute super."mangopay_1_11_5"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown-kate" = dontDistribute super."markdown-kate"; "markdown-pap" = dontDistribute super."markdown-pap"; @@ -5476,6 +5494,7 @@ self: super: { "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; "nano-cryptr" = dontDistribute super."nano-cryptr"; + "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; "nano-md5" = dontDistribute super."nano-md5"; "nanoAgda" = dontDistribute super."nanoAgda"; @@ -5629,6 +5648,7 @@ self: super: { "null-canvas" = dontDistribute super."null-canvas"; "nullary" = dontDistribute super."nullary"; "number" = dontDistribute super."number"; + "number-length" = dontDistribute super."number-length"; "numbering" = dontDistribute super."numbering"; "numerals" = dontDistribute super."numerals"; "numerals-base" = dontDistribute super."numerals-base"; @@ -5769,6 +5789,7 @@ self: super: { "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; + "pandoc" = doDistribute super."pandoc_1_15_2_1"; "pandoc-citeproc" = doDistribute super."pandoc-citeproc_0_7_4"; "pandoc-citeproc-preamble" = dontDistribute super."pandoc-citeproc-preamble"; "pandoc-crossref" = dontDistribute super."pandoc-crossref"; @@ -5778,6 +5799,7 @@ self: super: { "pandoc-lens" = dontDistribute super."pandoc-lens"; "pandoc-placetable" = dontDistribute super."pandoc-placetable"; "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; + "pandoc-types" = doDistribute super."pandoc-types_1_12_4_7"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; "papillon" = dontDistribute super."papillon"; "pappy" = dontDistribute super."pappy"; @@ -5976,6 +5998,7 @@ self: super: { "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; "plailude" = dontDistribute super."plailude"; + "plan-b" = dontDistribute super."plan-b"; "planar-graph" = dontDistribute super."planar-graph"; "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; @@ -6226,7 +6249,6 @@ self: super: { "queuelike" = dontDistribute super."queuelike"; "quick-generator" = dontDistribute super."quick-generator"; "quick-schema" = dontDistribute super."quick-schema"; - "quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb"; @@ -7333,6 +7355,7 @@ self: super: { "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" = doDistribute super."temporary_1_2_0_3"; "temporary-resourcet" = dontDistribute super."temporary-resourcet"; "tempus" = dontDistribute super."tempus"; "tempus-fugit" = dontDistribute super."tempus-fugit"; @@ -7780,6 +7803,10 @@ self: super: { "usb-iteratee" = dontDistribute super."usb-iteratee"; "usb-safe" = dontDistribute super."usb-safe"; "userid" = dontDistribute super."userid"; + "users" = doDistribute super."users_0_3_0_0"; + "users-persistent" = doDistribute super."users-persistent_0_3_0_0"; + "users-postgresql-simple" = doDistribute super."users-postgresql-simple_0_3_0_0"; + "users-test" = doDistribute super."users-test_0_3_0_0"; "utc" = dontDistribute super."utc"; "utf8-env" = dontDistribute super."utf8-env"; "utf8-prelude" = dontDistribute super."utf8-prelude"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.19.nix b/pkgs/development/haskell-modules/configuration-lts-3.19.nix index 736b8349409..b755da4a37f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.19.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.19.nix @@ -122,6 +122,8 @@ self: super: { "BitSyntax" = dontDistribute super."BitSyntax"; "Bitly" = dontDistribute super."Bitly"; "Blobs" = dontDistribute super."Blobs"; + "BlogLiterately" = doDistribute super."BlogLiterately_0_8_1_3"; + "BlogLiterately-diagrams" = doDistribute super."BlogLiterately-diagrams_0_2_0_1"; "BluePrintCSS" = dontDistribute super."BluePrintCSS"; "Blueprint" = dontDistribute super."Blueprint"; "Bookshelf" = dontDistribute super."Bookshelf"; @@ -565,6 +567,7 @@ self: super: { "Javav" = dontDistribute super."Javav"; "JsContracts" = dontDistribute super."JsContracts"; "JsonGrammar" = dontDistribute super."JsonGrammar"; + "JuicyPixels" = doDistribute super."JuicyPixels_3_2_6_4"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; "JuicyPixels-repa" = dontDistribute super."JuicyPixels-repa"; "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; @@ -1341,6 +1344,7 @@ self: super: { "astrds" = dontDistribute super."astrds"; "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; + "async" = doDistribute super."async_2_0_2"; "async-dejafu" = dontDistribute super."async-dejafu"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; @@ -1474,6 +1478,7 @@ self: super: { "bdd" = dontDistribute super."bdd"; "bdelta" = dontDistribute super."bdelta"; "bdo" = dontDistribute super."bdo"; + "beam" = dontDistribute super."beam"; "beamable" = dontDistribute super."beamable"; "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; @@ -1757,6 +1762,7 @@ self: super: { "cabal-nirvana" = dontDistribute super."cabal-nirvana"; "cabal-progdeps" = dontDistribute super."cabal-progdeps"; "cabal-query" = dontDistribute super."cabal-query"; + "cabal-rpm" = doDistribute super."cabal-rpm_0_9_8"; "cabal-scripts" = dontDistribute super."cabal-scripts"; "cabal-setup" = dontDistribute super."cabal-setup"; "cabal-sign" = dontDistribute super."cabal-sign"; @@ -1970,6 +1976,7 @@ self: super: { "clustertools" = dontDistribute super."clustertools"; "clutterhs" = dontDistribute super."clutterhs"; "cmaes" = dontDistribute super."cmaes"; + "cmark" = doDistribute super."cmark_0_4_1"; "cmath" = dontDistribute super."cmath"; "cmathml3" = dontDistribute super."cmathml3"; "cmd-item" = dontDistribute super."cmd-item"; @@ -2715,6 +2722,7 @@ self: super: { "empty" = dontDistribute super."empty"; "encoding" = dontDistribute super."encoding"; "endo" = dontDistribute super."endo"; + "engine-io" = doDistribute super."engine-io_1_2_11"; "engine-io-snap" = dontDistribute super."engine-io-snap"; "engine-io-wai" = dontDistribute super."engine-io-wai"; "engine-io-yesod" = dontDistribute super."engine-io-yesod"; @@ -3413,6 +3421,13 @@ self: super: { "googleplus" = dontDistribute super."googleplus"; "googlepolyline" = dontDistribute super."googlepolyline"; "gopherbot" = dontDistribute super."gopherbot"; + "gore-and-ash" = dontDistribute super."gore-and-ash"; + "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; + "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; + "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; + "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; + "gore-and-ash-sync" = dontDistribute super."gore-and-ash-sync"; "gpah" = dontDistribute super."gpah"; "gpcsets" = dontDistribute super."gpcsets"; "gpolyline" = dontDistribute super."gpolyline"; @@ -4274,6 +4289,7 @@ self: super: { "hspec-expectations-pretty-diff" = dontDistribute super."hspec-expectations-pretty-diff"; "hspec-experimental" = dontDistribute super."hspec-experimental"; "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-megaparsec" = dontDistribute super."hspec-megaparsec"; "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; @@ -4449,6 +4465,7 @@ self: super: { "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hypher" = dontDistribute super."hypher"; + "hzaif" = dontDistribute super."hzaif"; "hzk" = dontDistribute super."hzk"; "hzulip" = dontDistribute super."hzulip"; "i18n" = dontDistribute super."i18n"; @@ -5149,6 +5166,7 @@ self: super: { "mangopay" = doDistribute super."mangopay_1_11_5"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown-kate" = dontDistribute super."markdown-kate"; "markdown-pap" = dontDistribute super."markdown-pap"; @@ -5465,6 +5483,7 @@ self: super: { "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; "nano-cryptr" = dontDistribute super."nano-cryptr"; + "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; "nano-md5" = dontDistribute super."nano-md5"; "nanoAgda" = dontDistribute super."nanoAgda"; @@ -5617,6 +5636,7 @@ self: super: { "null-canvas" = dontDistribute super."null-canvas"; "nullary" = dontDistribute super."nullary"; "number" = dontDistribute super."number"; + "number-length" = dontDistribute super."number-length"; "numbering" = dontDistribute super."numbering"; "numerals" = dontDistribute super."numerals"; "numerals-base" = dontDistribute super."numerals-base"; @@ -5757,6 +5777,7 @@ self: super: { "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; + "pandoc" = doDistribute super."pandoc_1_15_2_1"; "pandoc-citeproc" = doDistribute super."pandoc-citeproc_0_7_4"; "pandoc-citeproc-preamble" = dontDistribute super."pandoc-citeproc-preamble"; "pandoc-crossref" = dontDistribute super."pandoc-crossref"; @@ -5766,6 +5787,7 @@ self: super: { "pandoc-lens" = dontDistribute super."pandoc-lens"; "pandoc-placetable" = dontDistribute super."pandoc-placetable"; "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; + "pandoc-types" = doDistribute super."pandoc-types_1_12_4_7"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; "papillon" = dontDistribute super."papillon"; "pappy" = dontDistribute super."pappy"; @@ -5962,6 +5984,7 @@ self: super: { "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; "plailude" = dontDistribute super."plailude"; + "plan-b" = dontDistribute super."plan-b"; "planar-graph" = dontDistribute super."planar-graph"; "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; @@ -6212,7 +6235,6 @@ self: super: { "queuelike" = dontDistribute super."queuelike"; "quick-generator" = dontDistribute super."quick-generator"; "quick-schema" = dontDistribute super."quick-schema"; - "quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb"; @@ -7317,6 +7339,7 @@ self: super: { "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" = doDistribute super."temporary_1_2_0_3"; "temporary-resourcet" = dontDistribute super."temporary-resourcet"; "tempus" = dontDistribute super."tempus"; "tempus-fugit" = dontDistribute super."tempus-fugit"; @@ -7764,6 +7787,10 @@ self: super: { "usb-iteratee" = dontDistribute super."usb-iteratee"; "usb-safe" = dontDistribute super."usb-safe"; "userid" = dontDistribute super."userid"; + "users" = doDistribute super."users_0_3_0_0"; + "users-persistent" = doDistribute super."users-persistent_0_3_0_0"; + "users-postgresql-simple" = doDistribute super."users-postgresql-simple_0_3_0_0"; + "users-test" = doDistribute super."users-test_0_3_0_0"; "utc" = dontDistribute super."utc"; "utf8-env" = dontDistribute super."utf8-env"; "utf8-prelude" = dontDistribute super."utf8-prelude"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.2.nix b/pkgs/development/haskell-modules/configuration-lts-3.2.nix index 32d91ba7c6a..7e32f849b6d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.2.nix @@ -124,6 +124,7 @@ self: super: { "Bitly" = dontDistribute super."Bitly"; "Blobs" = dontDistribute super."Blobs"; "BlogLiterately" = doDistribute super."BlogLiterately_0_8_1_1"; + "BlogLiterately-diagrams" = doDistribute super."BlogLiterately-diagrams_0_2_0_1"; "BluePrintCSS" = dontDistribute super."BluePrintCSS"; "Blueprint" = dontDistribute super."Blueprint"; "Bookshelf" = dontDistribute super."Bookshelf"; @@ -1359,6 +1360,7 @@ self: super: { "astrds" = dontDistribute super."astrds"; "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; + "async" = doDistribute super."async_2_0_2"; "async-dejafu" = dontDistribute super."async-dejafu"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; @@ -1495,6 +1497,7 @@ self: super: { "bdd" = dontDistribute super."bdd"; "bdelta" = dontDistribute super."bdelta"; "bdo" = dontDistribute super."bdo"; + "beam" = dontDistribute super."beam"; "beamable" = dontDistribute super."beamable"; "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; @@ -3483,6 +3486,13 @@ self: super: { "googleplus" = dontDistribute super."googleplus"; "googlepolyline" = dontDistribute super."googlepolyline"; "gopherbot" = dontDistribute super."gopherbot"; + "gore-and-ash" = dontDistribute super."gore-and-ash"; + "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; + "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; + "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; + "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; + "gore-and-ash-sync" = dontDistribute super."gore-and-ash-sync"; "gpah" = dontDistribute super."gpah"; "gpcsets" = dontDistribute super."gpcsets"; "gpolyline" = dontDistribute super."gpolyline"; @@ -4363,6 +4373,7 @@ self: super: { "hspec-expectations-pretty-diff" = dontDistribute super."hspec-expectations-pretty-diff"; "hspec-experimental" = dontDistribute super."hspec-experimental"; "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-megaparsec" = dontDistribute super."hspec-megaparsec"; "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; @@ -4542,6 +4553,7 @@ self: super: { "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hypher" = dontDistribute super."hypher"; + "hzaif" = dontDistribute super."hzaif"; "hzk" = dontDistribute super."hzk"; "hzulip" = dontDistribute super."hzulip"; "i18n" = dontDistribute super."i18n"; @@ -5256,6 +5268,7 @@ self: super: { "mangopay" = doDistribute super."mangopay_1_11_4"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown-kate" = dontDistribute super."markdown-kate"; "markdown-pap" = dontDistribute super."markdown-pap"; @@ -5579,6 +5592,7 @@ self: super: { "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; "nano-cryptr" = dontDistribute super."nano-cryptr"; + "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; "nano-md5" = dontDistribute super."nano-md5"; "nanoAgda" = dontDistribute super."nanoAgda"; @@ -5734,6 +5748,7 @@ self: super: { "null-canvas" = dontDistribute super."null-canvas"; "nullary" = dontDistribute super."nullary"; "number" = dontDistribute super."number"; + "number-length" = dontDistribute super."number-length"; "numbering" = dontDistribute super."numbering"; "numerals" = dontDistribute super."numerals"; "numerals-base" = dontDistribute super."numerals-base"; @@ -6092,6 +6107,7 @@ self: super: { "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; "plailude" = dontDistribute super."plailude"; + "plan-b" = dontDistribute super."plan-b"; "planar-graph" = dontDistribute super."planar-graph"; "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; @@ -6353,7 +6369,6 @@ self: super: { "queuelike" = dontDistribute super."queuelike"; "quick-generator" = dontDistribute super."quick-generator"; "quick-schema" = dontDistribute super."quick-schema"; - "quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb"; @@ -7484,6 +7499,7 @@ self: super: { "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" = doDistribute super."temporary_1_2_0_3"; "temporary-resourcet" = dontDistribute super."temporary-resourcet"; "tempus" = dontDistribute super."tempus"; "tempus-fugit" = dontDistribute super."tempus-fugit"; @@ -7940,6 +7956,10 @@ self: super: { "usb-iteratee" = dontDistribute super."usb-iteratee"; "usb-safe" = dontDistribute super."usb-safe"; "userid" = dontDistribute super."userid"; + "users" = doDistribute super."users_0_3_0_0"; + "users-persistent" = doDistribute super."users-persistent_0_3_0_0"; + "users-postgresql-simple" = doDistribute super."users-postgresql-simple_0_3_0_0"; + "users-test" = doDistribute super."users-test_0_3_0_0"; "utc" = dontDistribute super."utc"; "utf8-env" = dontDistribute super."utf8-env"; "utf8-prelude" = dontDistribute super."utf8-prelude"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.20.nix b/pkgs/development/haskell-modules/configuration-lts-3.20.nix index acb0e1c24b5..cc1db2819f2 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.20.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.20.nix @@ -122,6 +122,8 @@ self: super: { "BitSyntax" = dontDistribute super."BitSyntax"; "Bitly" = dontDistribute super."Bitly"; "Blobs" = dontDistribute super."Blobs"; + "BlogLiterately" = doDistribute super."BlogLiterately_0_8_1_3"; + "BlogLiterately-diagrams" = doDistribute super."BlogLiterately-diagrams_0_2_0_1"; "BluePrintCSS" = dontDistribute super."BluePrintCSS"; "Blueprint" = dontDistribute super."Blueprint"; "Bookshelf" = dontDistribute super."Bookshelf"; @@ -564,6 +566,7 @@ self: super: { "Javav" = dontDistribute super."Javav"; "JsContracts" = dontDistribute super."JsContracts"; "JsonGrammar" = dontDistribute super."JsonGrammar"; + "JuicyPixels" = doDistribute super."JuicyPixels_3_2_6_4"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; "JuicyPixels-repa" = dontDistribute super."JuicyPixels-repa"; "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; @@ -1339,6 +1342,7 @@ self: super: { "astrds" = dontDistribute super."astrds"; "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; + "async" = doDistribute super."async_2_0_2"; "async-dejafu" = dontDistribute super."async-dejafu"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; @@ -1472,6 +1476,7 @@ self: super: { "bdd" = dontDistribute super."bdd"; "bdelta" = dontDistribute super."bdelta"; "bdo" = dontDistribute super."bdo"; + "beam" = dontDistribute super."beam"; "beamable" = dontDistribute super."beamable"; "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; @@ -1514,6 +1519,7 @@ self: super: { "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; + "binary-orphans" = doDistribute super."binary-orphans_0_1_3_0"; "binary-parser" = dontDistribute super."binary-parser"; "binary-protocol" = dontDistribute super."binary-protocol"; "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq"; @@ -1753,6 +1759,7 @@ self: super: { "cabal-nirvana" = dontDistribute super."cabal-nirvana"; "cabal-progdeps" = dontDistribute super."cabal-progdeps"; "cabal-query" = dontDistribute super."cabal-query"; + "cabal-rpm" = doDistribute super."cabal-rpm_0_9_8"; "cabal-scripts" = dontDistribute super."cabal-scripts"; "cabal-setup" = dontDistribute super."cabal-setup"; "cabal-sign" = dontDistribute super."cabal-sign"; @@ -1966,6 +1973,7 @@ self: super: { "clustertools" = dontDistribute super."clustertools"; "clutterhs" = dontDistribute super."clutterhs"; "cmaes" = dontDistribute super."cmaes"; + "cmark" = doDistribute super."cmark_0_4_1"; "cmath" = dontDistribute super."cmath"; "cmathml3" = dontDistribute super."cmathml3"; "cmd-item" = dontDistribute super."cmd-item"; @@ -2711,6 +2719,7 @@ self: super: { "empty" = dontDistribute super."empty"; "encoding" = dontDistribute super."encoding"; "endo" = dontDistribute super."endo"; + "engine-io" = doDistribute super."engine-io_1_2_11"; "engine-io-snap" = dontDistribute super."engine-io-snap"; "engine-io-wai" = dontDistribute super."engine-io-wai"; "engine-io-yesod" = dontDistribute super."engine-io-yesod"; @@ -3409,6 +3418,13 @@ self: super: { "googleplus" = dontDistribute super."googleplus"; "googlepolyline" = dontDistribute super."googlepolyline"; "gopherbot" = dontDistribute super."gopherbot"; + "gore-and-ash" = dontDistribute super."gore-and-ash"; + "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; + "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; + "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; + "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; + "gore-and-ash-sync" = dontDistribute super."gore-and-ash-sync"; "gpah" = dontDistribute super."gpah"; "gpcsets" = dontDistribute super."gpcsets"; "gpolyline" = dontDistribute super."gpolyline"; @@ -4270,6 +4286,7 @@ self: super: { "hspec-expectations-pretty-diff" = dontDistribute super."hspec-expectations-pretty-diff"; "hspec-experimental" = dontDistribute super."hspec-experimental"; "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-megaparsec" = dontDistribute super."hspec-megaparsec"; "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; @@ -4445,6 +4462,7 @@ self: super: { "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hypher" = dontDistribute super."hypher"; + "hzaif" = dontDistribute super."hzaif"; "hzk" = dontDistribute super."hzk"; "hzulip" = dontDistribute super."hzulip"; "i18n" = dontDistribute super."i18n"; @@ -5144,6 +5162,7 @@ self: super: { "mangopay" = doDistribute super."mangopay_1_11_5"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown-kate" = dontDistribute super."markdown-kate"; "markdown-pap" = dontDistribute super."markdown-pap"; @@ -5460,6 +5479,7 @@ self: super: { "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; "nano-cryptr" = dontDistribute super."nano-cryptr"; + "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; "nano-md5" = dontDistribute super."nano-md5"; "nanoAgda" = dontDistribute super."nanoAgda"; @@ -5612,6 +5632,7 @@ self: super: { "null-canvas" = dontDistribute super."null-canvas"; "nullary" = dontDistribute super."nullary"; "number" = dontDistribute super."number"; + "number-length" = dontDistribute super."number-length"; "numbering" = dontDistribute super."numbering"; "numerals" = dontDistribute super."numerals"; "numerals-base" = dontDistribute super."numerals-base"; @@ -5752,6 +5773,7 @@ self: super: { "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; + "pandoc" = doDistribute super."pandoc_1_15_2_1"; "pandoc-citeproc" = doDistribute super."pandoc-citeproc_0_7_4"; "pandoc-citeproc-preamble" = dontDistribute super."pandoc-citeproc-preamble"; "pandoc-crossref" = dontDistribute super."pandoc-crossref"; @@ -5761,6 +5783,7 @@ self: super: { "pandoc-lens" = dontDistribute super."pandoc-lens"; "pandoc-placetable" = dontDistribute super."pandoc-placetable"; "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; + "pandoc-types" = doDistribute super."pandoc-types_1_12_4_7"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; "papillon" = dontDistribute super."papillon"; "pappy" = dontDistribute super."pappy"; @@ -5956,6 +5979,7 @@ self: super: { "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; "plailude" = dontDistribute super."plailude"; + "plan-b" = dontDistribute super."plan-b"; "planar-graph" = dontDistribute super."planar-graph"; "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; @@ -6206,7 +6230,6 @@ self: super: { "queuelike" = dontDistribute super."queuelike"; "quick-generator" = dontDistribute super."quick-generator"; "quick-schema" = dontDistribute super."quick-schema"; - "quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb"; @@ -7309,6 +7332,7 @@ self: super: { "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" = doDistribute super."temporary_1_2_0_3"; "temporary-resourcet" = dontDistribute super."temporary-resourcet"; "tempus" = dontDistribute super."tempus"; "tempus-fugit" = dontDistribute super."tempus-fugit"; @@ -7755,6 +7779,10 @@ self: super: { "usb-iteratee" = dontDistribute super."usb-iteratee"; "usb-safe" = dontDistribute super."usb-safe"; "userid" = dontDistribute super."userid"; + "users" = doDistribute super."users_0_3_0_0"; + "users-persistent" = doDistribute super."users-persistent_0_3_0_0"; + "users-postgresql-simple" = doDistribute super."users-postgresql-simple_0_3_0_0"; + "users-test" = doDistribute super."users-test_0_3_0_0"; "utc" = dontDistribute super."utc"; "utf8-env" = dontDistribute super."utf8-env"; "utf8-prelude" = dontDistribute super."utf8-prelude"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.21.nix b/pkgs/development/haskell-modules/configuration-lts-3.21.nix index 03242664366..f4798247856 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.21.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.21.nix @@ -122,6 +122,8 @@ self: super: { "BitSyntax" = dontDistribute super."BitSyntax"; "Bitly" = dontDistribute super."Bitly"; "Blobs" = dontDistribute super."Blobs"; + "BlogLiterately" = doDistribute super."BlogLiterately_0_8_1_3"; + "BlogLiterately-diagrams" = doDistribute super."BlogLiterately-diagrams_0_2_0_1"; "BluePrintCSS" = dontDistribute super."BluePrintCSS"; "Blueprint" = dontDistribute super."Blueprint"; "Bookshelf" = dontDistribute super."Bookshelf"; @@ -462,6 +464,7 @@ self: super: { "HSoundFile" = dontDistribute super."HSoundFile"; "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers"; "HSvm" = dontDistribute super."HSvm"; + "HTTP" = doDistribute super."HTTP_4000_2_23"; "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; @@ -563,6 +566,7 @@ self: super: { "Javav" = dontDistribute super."Javav"; "JsContracts" = dontDistribute super."JsContracts"; "JsonGrammar" = dontDistribute super."JsonGrammar"; + "JuicyPixels" = doDistribute super."JuicyPixels_3_2_6_4"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; "JuicyPixels-repa" = dontDistribute super."JuicyPixels-repa"; "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; @@ -1338,6 +1342,7 @@ self: super: { "astrds" = dontDistribute super."astrds"; "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; + "async" = doDistribute super."async_2_0_2"; "async-dejafu" = dontDistribute super."async-dejafu"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; @@ -1470,6 +1475,7 @@ self: super: { "bdd" = dontDistribute super."bdd"; "bdelta" = dontDistribute super."bdelta"; "bdo" = dontDistribute super."bdo"; + "beam" = dontDistribute super."beam"; "beamable" = dontDistribute super."beamable"; "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; @@ -1512,6 +1518,7 @@ self: super: { "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; + "binary-orphans" = doDistribute super."binary-orphans_0_1_3_0"; "binary-parser" = dontDistribute super."binary-parser"; "binary-protocol" = dontDistribute super."binary-protocol"; "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq"; @@ -1750,6 +1757,7 @@ self: super: { "cabal-nirvana" = dontDistribute super."cabal-nirvana"; "cabal-progdeps" = dontDistribute super."cabal-progdeps"; "cabal-query" = dontDistribute super."cabal-query"; + "cabal-rpm" = doDistribute super."cabal-rpm_0_9_8"; "cabal-scripts" = dontDistribute super."cabal-scripts"; "cabal-setup" = dontDistribute super."cabal-setup"; "cabal-sign" = dontDistribute super."cabal-sign"; @@ -1963,6 +1971,7 @@ self: super: { "clustertools" = dontDistribute super."clustertools"; "clutterhs" = dontDistribute super."clutterhs"; "cmaes" = dontDistribute super."cmaes"; + "cmark" = doDistribute super."cmark_0_4_1"; "cmath" = dontDistribute super."cmath"; "cmathml3" = dontDistribute super."cmathml3"; "cmd-item" = dontDistribute super."cmd-item"; @@ -2706,6 +2715,7 @@ self: super: { "empty" = dontDistribute super."empty"; "encoding" = dontDistribute super."encoding"; "endo" = dontDistribute super."endo"; + "engine-io" = doDistribute super."engine-io_1_2_11"; "engine-io-snap" = dontDistribute super."engine-io-snap"; "engine-io-wai" = dontDistribute super."engine-io-wai"; "engine-io-yesod" = dontDistribute super."engine-io-yesod"; @@ -3402,6 +3412,13 @@ self: super: { "googleplus" = dontDistribute super."googleplus"; "googlepolyline" = dontDistribute super."googlepolyline"; "gopherbot" = dontDistribute super."gopherbot"; + "gore-and-ash" = dontDistribute super."gore-and-ash"; + "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; + "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; + "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; + "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; + "gore-and-ash-sync" = dontDistribute super."gore-and-ash-sync"; "gpah" = dontDistribute super."gpah"; "gpcsets" = dontDistribute super."gpcsets"; "gpolyline" = dontDistribute super."gpolyline"; @@ -4262,6 +4279,7 @@ self: super: { "hspec-expectations-pretty-diff" = dontDistribute super."hspec-expectations-pretty-diff"; "hspec-experimental" = dontDistribute super."hspec-experimental"; "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-megaparsec" = dontDistribute super."hspec-megaparsec"; "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; @@ -4437,6 +4455,7 @@ self: super: { "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hypher" = dontDistribute super."hypher"; + "hzaif" = dontDistribute super."hzaif"; "hzk" = dontDistribute super."hzk"; "hzulip" = dontDistribute super."hzulip"; "i18n" = dontDistribute super."i18n"; @@ -5134,6 +5153,7 @@ self: super: { "mangopay" = doDistribute super."mangopay_1_11_5"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown-kate" = dontDistribute super."markdown-kate"; "markdown-pap" = dontDistribute super."markdown-pap"; @@ -5449,6 +5469,7 @@ self: super: { "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; "nano-cryptr" = dontDistribute super."nano-cryptr"; + "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; "nano-md5" = dontDistribute super."nano-md5"; "nanoAgda" = dontDistribute super."nanoAgda"; @@ -5601,6 +5622,7 @@ self: super: { "null-canvas" = dontDistribute super."null-canvas"; "nullary" = dontDistribute super."nullary"; "number" = dontDistribute super."number"; + "number-length" = dontDistribute super."number-length"; "numbering" = dontDistribute super."numbering"; "numerals" = dontDistribute super."numerals"; "numerals-base" = dontDistribute super."numerals-base"; @@ -5741,6 +5763,7 @@ self: super: { "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; + "pandoc" = doDistribute super."pandoc_1_15_2_1"; "pandoc-citeproc" = doDistribute super."pandoc-citeproc_0_7_4"; "pandoc-citeproc-preamble" = dontDistribute super."pandoc-citeproc-preamble"; "pandoc-crossref" = dontDistribute super."pandoc-crossref"; @@ -5750,6 +5773,7 @@ self: super: { "pandoc-lens" = dontDistribute super."pandoc-lens"; "pandoc-placetable" = dontDistribute super."pandoc-placetable"; "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; + "pandoc-types" = doDistribute super."pandoc-types_1_12_4_7"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; "papillon" = dontDistribute super."papillon"; "pappy" = dontDistribute super."pappy"; @@ -5943,6 +5967,7 @@ self: super: { "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; "plailude" = dontDistribute super."plailude"; + "plan-b" = dontDistribute super."plan-b"; "planar-graph" = dontDistribute super."planar-graph"; "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; @@ -6193,7 +6218,6 @@ self: super: { "queuelike" = dontDistribute super."queuelike"; "quick-generator" = dontDistribute super."quick-generator"; "quick-schema" = dontDistribute super."quick-schema"; - "quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb"; @@ -7284,6 +7308,7 @@ self: super: { "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" = doDistribute super."temporary_1_2_0_3"; "temporary-resourcet" = dontDistribute super."temporary-resourcet"; "tempus" = dontDistribute super."tempus"; "tempus-fugit" = dontDistribute super."tempus-fugit"; @@ -7729,6 +7754,10 @@ self: super: { "usb-iteratee" = dontDistribute super."usb-iteratee"; "usb-safe" = dontDistribute super."usb-safe"; "userid" = dontDistribute super."userid"; + "users" = doDistribute super."users_0_3_0_0"; + "users-persistent" = doDistribute super."users-persistent_0_3_0_0"; + "users-postgresql-simple" = doDistribute super."users-postgresql-simple_0_3_0_0"; + "users-test" = doDistribute super."users-test_0_3_0_0"; "utc" = dontDistribute super."utc"; "utf8-env" = dontDistribute super."utf8-env"; "utf8-prelude" = dontDistribute super."utf8-prelude"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.22.nix b/pkgs/development/haskell-modules/configuration-lts-3.22.nix index 4f35f7def84..5b6cb97c140 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.22.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.22.nix @@ -122,6 +122,8 @@ self: super: { "BitSyntax" = dontDistribute super."BitSyntax"; "Bitly" = dontDistribute super."Bitly"; "Blobs" = dontDistribute super."Blobs"; + "BlogLiterately" = doDistribute super."BlogLiterately_0_8_1_3"; + "BlogLiterately-diagrams" = doDistribute super."BlogLiterately-diagrams_0_2_0_1"; "BluePrintCSS" = dontDistribute super."BluePrintCSS"; "Blueprint" = dontDistribute super."Blueprint"; "Bookshelf" = dontDistribute super."Bookshelf"; @@ -462,6 +464,7 @@ self: super: { "HSoundFile" = dontDistribute super."HSoundFile"; "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers"; "HSvm" = dontDistribute super."HSvm"; + "HTTP" = doDistribute super."HTTP_4000_2_23"; "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; @@ -563,6 +566,7 @@ self: super: { "Javav" = dontDistribute super."Javav"; "JsContracts" = dontDistribute super."JsContracts"; "JsonGrammar" = dontDistribute super."JsonGrammar"; + "JuicyPixels" = doDistribute super."JuicyPixels_3_2_6_4"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; "JuicyPixels-repa" = dontDistribute super."JuicyPixels-repa"; "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; @@ -1338,6 +1342,7 @@ self: super: { "astrds" = dontDistribute super."astrds"; "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; + "async" = doDistribute super."async_2_0_2"; "async-dejafu" = dontDistribute super."async-dejafu"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; @@ -1470,6 +1475,7 @@ self: super: { "bdd" = dontDistribute super."bdd"; "bdelta" = dontDistribute super."bdelta"; "bdo" = dontDistribute super."bdo"; + "beam" = dontDistribute super."beam"; "beamable" = dontDistribute super."beamable"; "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; @@ -1512,6 +1518,7 @@ self: super: { "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; + "binary-orphans" = doDistribute super."binary-orphans_0_1_3_0"; "binary-parser" = dontDistribute super."binary-parser"; "binary-protocol" = dontDistribute super."binary-protocol"; "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq"; @@ -1750,6 +1757,7 @@ self: super: { "cabal-nirvana" = dontDistribute super."cabal-nirvana"; "cabal-progdeps" = dontDistribute super."cabal-progdeps"; "cabal-query" = dontDistribute super."cabal-query"; + "cabal-rpm" = doDistribute super."cabal-rpm_0_9_8"; "cabal-scripts" = dontDistribute super."cabal-scripts"; "cabal-setup" = dontDistribute super."cabal-setup"; "cabal-sign" = dontDistribute super."cabal-sign"; @@ -1963,6 +1971,7 @@ self: super: { "clustertools" = dontDistribute super."clustertools"; "clutterhs" = dontDistribute super."clutterhs"; "cmaes" = dontDistribute super."cmaes"; + "cmark" = doDistribute super."cmark_0_4_1"; "cmath" = dontDistribute super."cmath"; "cmathml3" = dontDistribute super."cmathml3"; "cmd-item" = dontDistribute super."cmd-item"; @@ -2706,6 +2715,7 @@ self: super: { "empty" = dontDistribute super."empty"; "encoding" = dontDistribute super."encoding"; "endo" = dontDistribute super."endo"; + "engine-io" = doDistribute super."engine-io_1_2_11"; "engine-io-snap" = dontDistribute super."engine-io-snap"; "engine-io-wai" = dontDistribute super."engine-io-wai"; "engine-io-yesod" = dontDistribute super."engine-io-yesod"; @@ -3400,6 +3410,13 @@ self: super: { "googleplus" = dontDistribute super."googleplus"; "googlepolyline" = dontDistribute super."googlepolyline"; "gopherbot" = dontDistribute super."gopherbot"; + "gore-and-ash" = dontDistribute super."gore-and-ash"; + "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; + "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; + "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; + "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; + "gore-and-ash-sync" = dontDistribute super."gore-and-ash-sync"; "gpah" = dontDistribute super."gpah"; "gpcsets" = dontDistribute super."gpcsets"; "gpolyline" = dontDistribute super."gpolyline"; @@ -4259,6 +4276,7 @@ self: super: { "hspec-expectations-pretty-diff" = dontDistribute super."hspec-expectations-pretty-diff"; "hspec-experimental" = dontDistribute super."hspec-experimental"; "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-megaparsec" = dontDistribute super."hspec-megaparsec"; "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; @@ -4434,6 +4452,7 @@ self: super: { "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hypher" = dontDistribute super."hypher"; + "hzaif" = dontDistribute super."hzaif"; "hzk" = dontDistribute super."hzk"; "hzulip" = dontDistribute super."hzulip"; "i18n" = dontDistribute super."i18n"; @@ -5128,6 +5147,7 @@ self: super: { "mangopay" = doDistribute super."mangopay_1_11_5"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown-kate" = dontDistribute super."markdown-kate"; "markdown-pap" = dontDistribute super."markdown-pap"; @@ -5443,6 +5463,7 @@ self: super: { "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; "nano-cryptr" = dontDistribute super."nano-cryptr"; + "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; "nano-md5" = dontDistribute super."nano-md5"; "nanoAgda" = dontDistribute super."nanoAgda"; @@ -5595,6 +5616,7 @@ self: super: { "null-canvas" = dontDistribute super."null-canvas"; "nullary" = dontDistribute super."nullary"; "number" = dontDistribute super."number"; + "number-length" = dontDistribute super."number-length"; "numbering" = dontDistribute super."numbering"; "numerals" = dontDistribute super."numerals"; "numerals-base" = dontDistribute super."numerals-base"; @@ -5735,6 +5757,7 @@ self: super: { "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; + "pandoc" = doDistribute super."pandoc_1_15_2_1"; "pandoc-citeproc" = doDistribute super."pandoc-citeproc_0_7_4"; "pandoc-citeproc-preamble" = dontDistribute super."pandoc-citeproc-preamble"; "pandoc-crossref" = dontDistribute super."pandoc-crossref"; @@ -5744,6 +5767,7 @@ self: super: { "pandoc-lens" = dontDistribute super."pandoc-lens"; "pandoc-placetable" = dontDistribute super."pandoc-placetable"; "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; + "pandoc-types" = doDistribute super."pandoc-types_1_12_4_7"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; "papillon" = dontDistribute super."papillon"; "pappy" = dontDistribute super."pappy"; @@ -5937,6 +5961,7 @@ self: super: { "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; "plailude" = dontDistribute super."plailude"; + "plan-b" = dontDistribute super."plan-b"; "planar-graph" = dontDistribute super."planar-graph"; "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; @@ -6187,7 +6212,6 @@ self: super: { "queuelike" = dontDistribute super."queuelike"; "quick-generator" = dontDistribute super."quick-generator"; "quick-schema" = dontDistribute super."quick-schema"; - "quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb"; @@ -7278,6 +7302,7 @@ self: super: { "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" = doDistribute super."temporary_1_2_0_3"; "temporary-resourcet" = dontDistribute super."temporary-resourcet"; "tempus" = dontDistribute super."tempus"; "tempus-fugit" = dontDistribute super."tempus-fugit"; @@ -7723,6 +7748,10 @@ self: super: { "usb-iteratee" = dontDistribute super."usb-iteratee"; "usb-safe" = dontDistribute super."usb-safe"; "userid" = dontDistribute super."userid"; + "users" = doDistribute super."users_0_3_0_0"; + "users-persistent" = doDistribute super."users-persistent_0_3_0_0"; + "users-postgresql-simple" = doDistribute super."users-postgresql-simple_0_3_0_0"; + "users-test" = doDistribute super."users-test_0_3_0_0"; "utc" = dontDistribute super."utc"; "utf8-env" = dontDistribute super."utf8-env"; "utf8-prelude" = dontDistribute super."utf8-prelude"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.3.nix b/pkgs/development/haskell-modules/configuration-lts-3.3.nix index 23ee3d7e7bb..fe69a6af07d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.3.nix @@ -124,6 +124,7 @@ self: super: { "Bitly" = dontDistribute super."Bitly"; "Blobs" = dontDistribute super."Blobs"; "BlogLiterately" = doDistribute super."BlogLiterately_0_8_1_1"; + "BlogLiterately-diagrams" = doDistribute super."BlogLiterately-diagrams_0_2_0_1"; "BluePrintCSS" = dontDistribute super."BluePrintCSS"; "Blueprint" = dontDistribute super."Blueprint"; "Bookshelf" = dontDistribute super."Bookshelf"; @@ -1358,6 +1359,7 @@ self: super: { "astrds" = dontDistribute super."astrds"; "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; + "async" = doDistribute super."async_2_0_2"; "async-dejafu" = dontDistribute super."async-dejafu"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; @@ -1494,6 +1496,7 @@ self: super: { "bdd" = dontDistribute super."bdd"; "bdelta" = dontDistribute super."bdelta"; "bdo" = dontDistribute super."bdo"; + "beam" = dontDistribute super."beam"; "beamable" = dontDistribute super."beamable"; "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; @@ -2007,6 +2010,7 @@ self: super: { "clustertools" = dontDistribute super."clustertools"; "clutterhs" = dontDistribute super."clutterhs"; "cmaes" = dontDistribute super."cmaes"; + "cmark" = doDistribute super."cmark_0_4_1"; "cmath" = dontDistribute super."cmath"; "cmathml3" = dontDistribute super."cmathml3"; "cmd-item" = dontDistribute super."cmd-item"; @@ -3478,6 +3482,13 @@ self: super: { "googleplus" = dontDistribute super."googleplus"; "googlepolyline" = dontDistribute super."googlepolyline"; "gopherbot" = dontDistribute super."gopherbot"; + "gore-and-ash" = dontDistribute super."gore-and-ash"; + "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; + "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; + "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; + "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; + "gore-and-ash-sync" = dontDistribute super."gore-and-ash-sync"; "gpah" = dontDistribute super."gpah"; "gpcsets" = dontDistribute super."gpcsets"; "gpolyline" = dontDistribute super."gpolyline"; @@ -4356,6 +4367,7 @@ self: super: { "hspec-expectations-pretty-diff" = dontDistribute super."hspec-expectations-pretty-diff"; "hspec-experimental" = dontDistribute super."hspec-experimental"; "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-megaparsec" = dontDistribute super."hspec-megaparsec"; "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; @@ -4535,6 +4547,7 @@ self: super: { "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hypher" = dontDistribute super."hypher"; + "hzaif" = dontDistribute super."hzaif"; "hzk" = dontDistribute super."hzk"; "hzulip" = dontDistribute super."hzulip"; "i18n" = dontDistribute super."i18n"; @@ -5249,6 +5262,7 @@ self: super: { "mangopay" = doDistribute super."mangopay_1_11_4"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown-kate" = dontDistribute super."markdown-kate"; "markdown-pap" = dontDistribute super."markdown-pap"; @@ -5572,6 +5586,7 @@ self: super: { "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; "nano-cryptr" = dontDistribute super."nano-cryptr"; + "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; "nano-md5" = dontDistribute super."nano-md5"; "nanoAgda" = dontDistribute super."nanoAgda"; @@ -5727,6 +5742,7 @@ self: super: { "null-canvas" = dontDistribute super."null-canvas"; "nullary" = dontDistribute super."nullary"; "number" = dontDistribute super."number"; + "number-length" = dontDistribute super."number-length"; "numbering" = dontDistribute super."numbering"; "numerals" = dontDistribute super."numerals"; "numerals-base" = dontDistribute super."numerals-base"; @@ -6085,6 +6101,7 @@ self: super: { "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; "plailude" = dontDistribute super."plailude"; + "plan-b" = dontDistribute super."plan-b"; "planar-graph" = dontDistribute super."planar-graph"; "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; @@ -6346,7 +6363,6 @@ self: super: { "queuelike" = dontDistribute super."queuelike"; "quick-generator" = dontDistribute super."quick-generator"; "quick-schema" = dontDistribute super."quick-schema"; - "quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb"; @@ -7474,6 +7490,7 @@ self: super: { "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" = doDistribute super."temporary_1_2_0_3"; "temporary-resourcet" = dontDistribute super."temporary-resourcet"; "tempus" = dontDistribute super."tempus"; "tempus-fugit" = dontDistribute super."tempus-fugit"; @@ -7930,6 +7947,10 @@ self: super: { "usb-iteratee" = dontDistribute super."usb-iteratee"; "usb-safe" = dontDistribute super."usb-safe"; "userid" = dontDistribute super."userid"; + "users" = doDistribute super."users_0_3_0_0"; + "users-persistent" = doDistribute super."users-persistent_0_3_0_0"; + "users-postgresql-simple" = doDistribute super."users-postgresql-simple_0_3_0_0"; + "users-test" = doDistribute super."users-test_0_3_0_0"; "utc" = dontDistribute super."utc"; "utf8-env" = dontDistribute super."utf8-env"; "utf8-prelude" = dontDistribute super."utf8-prelude"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.4.nix b/pkgs/development/haskell-modules/configuration-lts-3.4.nix index f3c454184d9..e204b466274 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.4.nix @@ -124,6 +124,7 @@ self: super: { "Bitly" = dontDistribute super."Bitly"; "Blobs" = dontDistribute super."Blobs"; "BlogLiterately" = doDistribute super."BlogLiterately_0_8_1_1"; + "BlogLiterately-diagrams" = doDistribute super."BlogLiterately-diagrams_0_2_0_1"; "BluePrintCSS" = dontDistribute super."BluePrintCSS"; "Blueprint" = dontDistribute super."Blueprint"; "Bookshelf" = dontDistribute super."Bookshelf"; @@ -1358,6 +1359,7 @@ self: super: { "astrds" = dontDistribute super."astrds"; "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; + "async" = doDistribute super."async_2_0_2"; "async-dejafu" = dontDistribute super."async-dejafu"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; @@ -1494,6 +1496,7 @@ self: super: { "bdd" = dontDistribute super."bdd"; "bdelta" = dontDistribute super."bdelta"; "bdo" = dontDistribute super."bdo"; + "beam" = dontDistribute super."beam"; "beamable" = dontDistribute super."beamable"; "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; @@ -2007,6 +2010,7 @@ self: super: { "clustertools" = dontDistribute super."clustertools"; "clutterhs" = dontDistribute super."clutterhs"; "cmaes" = dontDistribute super."cmaes"; + "cmark" = doDistribute super."cmark_0_4_1"; "cmath" = dontDistribute super."cmath"; "cmathml3" = dontDistribute super."cmathml3"; "cmd-item" = dontDistribute super."cmd-item"; @@ -3478,6 +3482,13 @@ self: super: { "googleplus" = dontDistribute super."googleplus"; "googlepolyline" = dontDistribute super."googlepolyline"; "gopherbot" = dontDistribute super."gopherbot"; + "gore-and-ash" = dontDistribute super."gore-and-ash"; + "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; + "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; + "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; + "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; + "gore-and-ash-sync" = dontDistribute super."gore-and-ash-sync"; "gpah" = dontDistribute super."gpah"; "gpcsets" = dontDistribute super."gpcsets"; "gpolyline" = dontDistribute super."gpolyline"; @@ -4356,6 +4367,7 @@ self: super: { "hspec-expectations-pretty-diff" = dontDistribute super."hspec-expectations-pretty-diff"; "hspec-experimental" = dontDistribute super."hspec-experimental"; "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-megaparsec" = dontDistribute super."hspec-megaparsec"; "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; @@ -4535,6 +4547,7 @@ self: super: { "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hypher" = dontDistribute super."hypher"; + "hzaif" = dontDistribute super."hzaif"; "hzk" = dontDistribute super."hzk"; "hzulip" = dontDistribute super."hzulip"; "i18n" = dontDistribute super."i18n"; @@ -5249,6 +5262,7 @@ self: super: { "mangopay" = doDistribute super."mangopay_1_11_4"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown-kate" = dontDistribute super."markdown-kate"; "markdown-pap" = dontDistribute super."markdown-pap"; @@ -5572,6 +5586,7 @@ self: super: { "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; "nano-cryptr" = dontDistribute super."nano-cryptr"; + "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; "nano-md5" = dontDistribute super."nano-md5"; "nanoAgda" = dontDistribute super."nanoAgda"; @@ -5727,6 +5742,7 @@ self: super: { "null-canvas" = dontDistribute super."null-canvas"; "nullary" = dontDistribute super."nullary"; "number" = dontDistribute super."number"; + "number-length" = dontDistribute super."number-length"; "numbering" = dontDistribute super."numbering"; "numerals" = dontDistribute super."numerals"; "numerals-base" = dontDistribute super."numerals-base"; @@ -6085,6 +6101,7 @@ self: super: { "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; "plailude" = dontDistribute super."plailude"; + "plan-b" = dontDistribute super."plan-b"; "planar-graph" = dontDistribute super."planar-graph"; "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; @@ -6346,7 +6363,6 @@ self: super: { "queuelike" = dontDistribute super."queuelike"; "quick-generator" = dontDistribute super."quick-generator"; "quick-schema" = dontDistribute super."quick-schema"; - "quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb"; @@ -7472,6 +7488,7 @@ self: super: { "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" = doDistribute super."temporary_1_2_0_3"; "temporary-resourcet" = dontDistribute super."temporary-resourcet"; "tempus" = dontDistribute super."tempus"; "tempus-fugit" = dontDistribute super."tempus-fugit"; @@ -7928,6 +7945,10 @@ self: super: { "usb-iteratee" = dontDistribute super."usb-iteratee"; "usb-safe" = dontDistribute super."usb-safe"; "userid" = dontDistribute super."userid"; + "users" = doDistribute super."users_0_3_0_0"; + "users-persistent" = doDistribute super."users-persistent_0_3_0_0"; + "users-postgresql-simple" = doDistribute super."users-postgresql-simple_0_3_0_0"; + "users-test" = doDistribute super."users-test_0_3_0_0"; "utc" = dontDistribute super."utc"; "utf8-env" = dontDistribute super."utf8-env"; "utf8-prelude" = dontDistribute super."utf8-prelude"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.5.nix b/pkgs/development/haskell-modules/configuration-lts-3.5.nix index c7dc33ed044..c8a7531a27d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.5.nix @@ -124,6 +124,7 @@ self: super: { "Bitly" = dontDistribute super."Bitly"; "Blobs" = dontDistribute super."Blobs"; "BlogLiterately" = doDistribute super."BlogLiterately_0_8_1_1"; + "BlogLiterately-diagrams" = doDistribute super."BlogLiterately-diagrams_0_2_0_1"; "BluePrintCSS" = dontDistribute super."BluePrintCSS"; "Blueprint" = dontDistribute super."Blueprint"; "Bookshelf" = dontDistribute super."Bookshelf"; @@ -1357,6 +1358,7 @@ self: super: { "astrds" = dontDistribute super."astrds"; "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; + "async" = doDistribute super."async_2_0_2"; "async-dejafu" = dontDistribute super."async-dejafu"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; @@ -1493,6 +1495,7 @@ self: super: { "bdd" = dontDistribute super."bdd"; "bdelta" = dontDistribute super."bdelta"; "bdo" = dontDistribute super."bdo"; + "beam" = dontDistribute super."beam"; "beamable" = dontDistribute super."beamable"; "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; @@ -2005,6 +2008,7 @@ self: super: { "clustertools" = dontDistribute super."clustertools"; "clutterhs" = dontDistribute super."clutterhs"; "cmaes" = dontDistribute super."cmaes"; + "cmark" = doDistribute super."cmark_0_4_1"; "cmath" = dontDistribute super."cmath"; "cmathml3" = dontDistribute super."cmathml3"; "cmd-item" = dontDistribute super."cmd-item"; @@ -3475,6 +3479,13 @@ self: super: { "googleplus" = dontDistribute super."googleplus"; "googlepolyline" = dontDistribute super."googlepolyline"; "gopherbot" = dontDistribute super."gopherbot"; + "gore-and-ash" = dontDistribute super."gore-and-ash"; + "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; + "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; + "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; + "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; + "gore-and-ash-sync" = dontDistribute super."gore-and-ash-sync"; "gpah" = dontDistribute super."gpah"; "gpcsets" = dontDistribute super."gpcsets"; "gpolyline" = dontDistribute super."gpolyline"; @@ -4350,6 +4361,7 @@ self: super: { "hspec-expectations-pretty-diff" = dontDistribute super."hspec-expectations-pretty-diff"; "hspec-experimental" = dontDistribute super."hspec-experimental"; "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-megaparsec" = dontDistribute super."hspec-megaparsec"; "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; @@ -4529,6 +4541,7 @@ self: super: { "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hypher" = dontDistribute super."hypher"; + "hzaif" = dontDistribute super."hzaif"; "hzk" = dontDistribute super."hzk"; "hzulip" = dontDistribute super."hzulip"; "i18n" = dontDistribute super."i18n"; @@ -5241,6 +5254,7 @@ self: super: { "mangopay" = doDistribute super."mangopay_1_11_4"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown-kate" = dontDistribute super."markdown-kate"; "markdown-pap" = dontDistribute super."markdown-pap"; @@ -5563,6 +5577,7 @@ self: super: { "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; "nano-cryptr" = dontDistribute super."nano-cryptr"; + "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; "nano-md5" = dontDistribute super."nano-md5"; "nanoAgda" = dontDistribute super."nanoAgda"; @@ -5718,6 +5733,7 @@ self: super: { "null-canvas" = dontDistribute super."null-canvas"; "nullary" = dontDistribute super."nullary"; "number" = dontDistribute super."number"; + "number-length" = dontDistribute super."number-length"; "numbering" = dontDistribute super."numbering"; "numerals" = dontDistribute super."numerals"; "numerals-base" = dontDistribute super."numerals-base"; @@ -6074,6 +6090,7 @@ self: super: { "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; "plailude" = dontDistribute super."plailude"; + "plan-b" = dontDistribute super."plan-b"; "planar-graph" = dontDistribute super."planar-graph"; "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; @@ -6334,7 +6351,6 @@ self: super: { "queuelike" = dontDistribute super."queuelike"; "quick-generator" = dontDistribute super."quick-generator"; "quick-schema" = dontDistribute super."quick-schema"; - "quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb"; @@ -7458,6 +7474,7 @@ self: super: { "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" = doDistribute super."temporary_1_2_0_3"; "temporary-resourcet" = dontDistribute super."temporary-resourcet"; "tempus" = dontDistribute super."tempus"; "tempus-fugit" = dontDistribute super."tempus-fugit"; @@ -7913,6 +7930,10 @@ self: super: { "usb-iteratee" = dontDistribute super."usb-iteratee"; "usb-safe" = dontDistribute super."usb-safe"; "userid" = dontDistribute super."userid"; + "users" = doDistribute super."users_0_3_0_0"; + "users-persistent" = doDistribute super."users-persistent_0_3_0_0"; + "users-postgresql-simple" = doDistribute super."users-postgresql-simple_0_3_0_0"; + "users-test" = doDistribute super."users-test_0_3_0_0"; "utc" = dontDistribute super."utc"; "utf8-env" = dontDistribute super."utf8-env"; "utf8-prelude" = dontDistribute super."utf8-prelude"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.6.nix b/pkgs/development/haskell-modules/configuration-lts-3.6.nix index d86b8a1b53a..5094fac6471 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.6.nix @@ -124,6 +124,7 @@ self: super: { "Bitly" = dontDistribute super."Bitly"; "Blobs" = dontDistribute super."Blobs"; "BlogLiterately" = doDistribute super."BlogLiterately_0_8_1_1"; + "BlogLiterately-diagrams" = doDistribute super."BlogLiterately-diagrams_0_2_0_1"; "BluePrintCSS" = dontDistribute super."BluePrintCSS"; "Blueprint" = dontDistribute super."Blueprint"; "Bookshelf" = dontDistribute super."Bookshelf"; @@ -1357,6 +1358,7 @@ self: super: { "astrds" = dontDistribute super."astrds"; "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; + "async" = doDistribute super."async_2_0_2"; "async-dejafu" = dontDistribute super."async-dejafu"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; @@ -1493,6 +1495,7 @@ self: super: { "bdd" = dontDistribute super."bdd"; "bdelta" = dontDistribute super."bdelta"; "bdo" = dontDistribute super."bdo"; + "beam" = dontDistribute super."beam"; "beamable" = dontDistribute super."beamable"; "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; @@ -2005,6 +2008,7 @@ self: super: { "clustertools" = dontDistribute super."clustertools"; "clutterhs" = dontDistribute super."clutterhs"; "cmaes" = dontDistribute super."cmaes"; + "cmark" = doDistribute super."cmark_0_4_1"; "cmath" = dontDistribute super."cmath"; "cmathml3" = dontDistribute super."cmathml3"; "cmd-item" = dontDistribute super."cmd-item"; @@ -3472,6 +3476,13 @@ self: super: { "googleplus" = dontDistribute super."googleplus"; "googlepolyline" = dontDistribute super."googlepolyline"; "gopherbot" = dontDistribute super."gopherbot"; + "gore-and-ash" = dontDistribute super."gore-and-ash"; + "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; + "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; + "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; + "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; + "gore-and-ash-sync" = dontDistribute super."gore-and-ash-sync"; "gpah" = dontDistribute super."gpah"; "gpcsets" = dontDistribute super."gpcsets"; "gpolyline" = dontDistribute super."gpolyline"; @@ -4347,6 +4358,7 @@ self: super: { "hspec-expectations-pretty-diff" = dontDistribute super."hspec-expectations-pretty-diff"; "hspec-experimental" = dontDistribute super."hspec-experimental"; "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-megaparsec" = dontDistribute super."hspec-megaparsec"; "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; @@ -4526,6 +4538,7 @@ self: super: { "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hypher" = dontDistribute super."hypher"; + "hzaif" = dontDistribute super."hzaif"; "hzk" = dontDistribute super."hzk"; "hzulip" = dontDistribute super."hzulip"; "i18n" = dontDistribute super."i18n"; @@ -5235,6 +5248,7 @@ self: super: { "mangopay" = doDistribute super."mangopay_1_11_4"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown-kate" = dontDistribute super."markdown-kate"; "markdown-pap" = dontDistribute super."markdown-pap"; @@ -5556,6 +5570,7 @@ self: super: { "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; "nano-cryptr" = dontDistribute super."nano-cryptr"; + "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; "nano-md5" = dontDistribute super."nano-md5"; "nanoAgda" = dontDistribute super."nanoAgda"; @@ -5711,6 +5726,7 @@ self: super: { "null-canvas" = dontDistribute super."null-canvas"; "nullary" = dontDistribute super."nullary"; "number" = dontDistribute super."number"; + "number-length" = dontDistribute super."number-length"; "numbering" = dontDistribute super."numbering"; "numerals" = dontDistribute super."numerals"; "numerals-base" = dontDistribute super."numerals-base"; @@ -6066,6 +6082,7 @@ self: super: { "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; "plailude" = dontDistribute super."plailude"; + "plan-b" = dontDistribute super."plan-b"; "planar-graph" = dontDistribute super."planar-graph"; "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; @@ -6326,7 +6343,6 @@ self: super: { "queuelike" = dontDistribute super."queuelike"; "quick-generator" = dontDistribute super."quick-generator"; "quick-schema" = dontDistribute super."quick-schema"; - "quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb"; @@ -7450,6 +7466,7 @@ self: super: { "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" = doDistribute super."temporary_1_2_0_3"; "temporary-resourcet" = dontDistribute super."temporary-resourcet"; "tempus" = dontDistribute super."tempus"; "tempus-fugit" = dontDistribute super."tempus-fugit"; @@ -7904,6 +7921,10 @@ self: super: { "usb-iteratee" = dontDistribute super."usb-iteratee"; "usb-safe" = dontDistribute super."usb-safe"; "userid" = dontDistribute super."userid"; + "users" = doDistribute super."users_0_3_0_0"; + "users-persistent" = doDistribute super."users-persistent_0_3_0_0"; + "users-postgresql-simple" = doDistribute super."users-postgresql-simple_0_3_0_0"; + "users-test" = doDistribute super."users-test_0_3_0_0"; "utc" = dontDistribute super."utc"; "utf8-env" = dontDistribute super."utf8-env"; "utf8-prelude" = dontDistribute super."utf8-prelude"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.7.nix b/pkgs/development/haskell-modules/configuration-lts-3.7.nix index 0e57de42429..89ac31497cc 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.7.nix @@ -124,6 +124,7 @@ self: super: { "Bitly" = dontDistribute super."Bitly"; "Blobs" = dontDistribute super."Blobs"; "BlogLiterately" = doDistribute super."BlogLiterately_0_8_1_2"; + "BlogLiterately-diagrams" = doDistribute super."BlogLiterately-diagrams_0_2_0_1"; "BluePrintCSS" = dontDistribute super."BluePrintCSS"; "Blueprint" = dontDistribute super."Blueprint"; "Bookshelf" = dontDistribute super."Bookshelf"; @@ -1354,6 +1355,7 @@ self: super: { "astrds" = dontDistribute super."astrds"; "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; + "async" = doDistribute super."async_2_0_2"; "async-dejafu" = dontDistribute super."async-dejafu"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; @@ -1490,6 +1492,7 @@ self: super: { "bdd" = dontDistribute super."bdd"; "bdelta" = dontDistribute super."bdelta"; "bdo" = dontDistribute super."bdo"; + "beam" = dontDistribute super."beam"; "beamable" = dontDistribute super."beamable"; "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; @@ -2002,6 +2005,7 @@ self: super: { "clustertools" = dontDistribute super."clustertools"; "clutterhs" = dontDistribute super."clutterhs"; "cmaes" = dontDistribute super."cmaes"; + "cmark" = doDistribute super."cmark_0_4_1"; "cmath" = dontDistribute super."cmath"; "cmathml3" = dontDistribute super."cmathml3"; "cmd-item" = dontDistribute super."cmd-item"; @@ -3467,6 +3471,13 @@ self: super: { "googleplus" = dontDistribute super."googleplus"; "googlepolyline" = dontDistribute super."googlepolyline"; "gopherbot" = dontDistribute super."gopherbot"; + "gore-and-ash" = dontDistribute super."gore-and-ash"; + "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; + "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; + "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; + "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; + "gore-and-ash-sync" = dontDistribute super."gore-and-ash-sync"; "gpah" = dontDistribute super."gpah"; "gpcsets" = dontDistribute super."gpcsets"; "gpolyline" = dontDistribute super."gpolyline"; @@ -4341,6 +4352,7 @@ self: super: { "hspec-expectations-pretty-diff" = dontDistribute super."hspec-expectations-pretty-diff"; "hspec-experimental" = dontDistribute super."hspec-experimental"; "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-megaparsec" = dontDistribute super."hspec-megaparsec"; "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; @@ -4520,6 +4532,7 @@ self: super: { "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hypher" = dontDistribute super."hypher"; + "hzaif" = dontDistribute super."hzaif"; "hzk" = dontDistribute super."hzk"; "hzulip" = dontDistribute super."hzulip"; "i18n" = dontDistribute super."i18n"; @@ -5228,6 +5241,7 @@ self: super: { "mangopay" = doDistribute super."mangopay_1_11_5"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown-kate" = dontDistribute super."markdown-kate"; "markdown-pap" = dontDistribute super."markdown-pap"; @@ -5549,6 +5563,7 @@ self: super: { "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; "nano-cryptr" = dontDistribute super."nano-cryptr"; + "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; "nano-md5" = dontDistribute super."nano-md5"; "nanoAgda" = dontDistribute super."nanoAgda"; @@ -5704,6 +5719,7 @@ self: super: { "null-canvas" = dontDistribute super."null-canvas"; "nullary" = dontDistribute super."nullary"; "number" = dontDistribute super."number"; + "number-length" = dontDistribute super."number-length"; "numbering" = dontDistribute super."numbering"; "numerals" = dontDistribute super."numerals"; "numerals-base" = dontDistribute super."numerals-base"; @@ -5855,6 +5871,7 @@ self: super: { "pandoc-lens" = dontDistribute super."pandoc-lens"; "pandoc-placetable" = dontDistribute super."pandoc-placetable"; "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; + "pandoc-types" = doDistribute super."pandoc-types_1_12_4_7"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; "pango" = doDistribute super."pango_0_13_1_0"; "papillon" = dontDistribute super."papillon"; @@ -6058,6 +6075,7 @@ self: super: { "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; "plailude" = dontDistribute super."plailude"; + "plan-b" = dontDistribute super."plan-b"; "planar-graph" = dontDistribute super."planar-graph"; "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; @@ -6315,7 +6333,6 @@ self: super: { "queuelike" = dontDistribute super."queuelike"; "quick-generator" = dontDistribute super."quick-generator"; "quick-schema" = dontDistribute super."quick-schema"; - "quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb"; @@ -7436,6 +7453,7 @@ self: super: { "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" = doDistribute super."temporary_1_2_0_3"; "temporary-resourcet" = dontDistribute super."temporary-resourcet"; "tempus" = dontDistribute super."tempus"; "tempus-fugit" = dontDistribute super."tempus-fugit"; @@ -7889,6 +7907,10 @@ self: super: { "usb-iteratee" = dontDistribute super."usb-iteratee"; "usb-safe" = dontDistribute super."usb-safe"; "userid" = dontDistribute super."userid"; + "users" = doDistribute super."users_0_3_0_0"; + "users-persistent" = doDistribute super."users-persistent_0_3_0_0"; + "users-postgresql-simple" = doDistribute super."users-postgresql-simple_0_3_0_0"; + "users-test" = doDistribute super."users-test_0_3_0_0"; "utc" = dontDistribute super."utc"; "utf8-env" = dontDistribute super."utf8-env"; "utf8-prelude" = dontDistribute super."utf8-prelude"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.8.nix b/pkgs/development/haskell-modules/configuration-lts-3.8.nix index f7e8e71727f..1a980f58741 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.8.nix @@ -124,6 +124,7 @@ self: super: { "Bitly" = dontDistribute super."Bitly"; "Blobs" = dontDistribute super."Blobs"; "BlogLiterately" = doDistribute super."BlogLiterately_0_8_1_2"; + "BlogLiterately-diagrams" = doDistribute super."BlogLiterately-diagrams_0_2_0_1"; "BluePrintCSS" = dontDistribute super."BluePrintCSS"; "Blueprint" = dontDistribute super."Blueprint"; "Bookshelf" = dontDistribute super."Bookshelf"; @@ -1354,6 +1355,7 @@ self: super: { "astrds" = dontDistribute super."astrds"; "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; + "async" = doDistribute super."async_2_0_2"; "async-dejafu" = dontDistribute super."async-dejafu"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; @@ -1490,6 +1492,7 @@ self: super: { "bdd" = dontDistribute super."bdd"; "bdelta" = dontDistribute super."bdelta"; "bdo" = dontDistribute super."bdo"; + "beam" = dontDistribute super."beam"; "beamable" = dontDistribute super."beamable"; "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; @@ -1999,6 +2002,7 @@ self: super: { "clustertools" = dontDistribute super."clustertools"; "clutterhs" = dontDistribute super."clutterhs"; "cmaes" = dontDistribute super."cmaes"; + "cmark" = doDistribute super."cmark_0_4_1"; "cmath" = dontDistribute super."cmath"; "cmathml3" = dontDistribute super."cmathml3"; "cmd-item" = dontDistribute super."cmd-item"; @@ -3459,6 +3463,13 @@ self: super: { "googleplus" = dontDistribute super."googleplus"; "googlepolyline" = dontDistribute super."googlepolyline"; "gopherbot" = dontDistribute super."gopherbot"; + "gore-and-ash" = dontDistribute super."gore-and-ash"; + "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; + "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; + "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; + "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; + "gore-and-ash-sync" = dontDistribute super."gore-and-ash-sync"; "gpah" = dontDistribute super."gpah"; "gpcsets" = dontDistribute super."gpcsets"; "gpolyline" = dontDistribute super."gpolyline"; @@ -4333,6 +4344,7 @@ self: super: { "hspec-expectations-pretty-diff" = dontDistribute super."hspec-expectations-pretty-diff"; "hspec-experimental" = dontDistribute super."hspec-experimental"; "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-megaparsec" = dontDistribute super."hspec-megaparsec"; "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; @@ -4512,6 +4524,7 @@ self: super: { "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hypher" = dontDistribute super."hypher"; + "hzaif" = dontDistribute super."hzaif"; "hzk" = dontDistribute super."hzk"; "hzulip" = dontDistribute super."hzulip"; "i18n" = dontDistribute super."i18n"; @@ -5219,6 +5232,7 @@ self: super: { "mangopay" = doDistribute super."mangopay_1_11_5"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown-kate" = dontDistribute super."markdown-kate"; "markdown-pap" = dontDistribute super."markdown-pap"; @@ -5539,6 +5553,7 @@ self: super: { "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; "nano-cryptr" = dontDistribute super."nano-cryptr"; + "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; "nano-md5" = dontDistribute super."nano-md5"; "nanoAgda" = dontDistribute super."nanoAgda"; @@ -5694,6 +5709,7 @@ self: super: { "null-canvas" = dontDistribute super."null-canvas"; "nullary" = dontDistribute super."nullary"; "number" = dontDistribute super."number"; + "number-length" = dontDistribute super."number-length"; "numbering" = dontDistribute super."numbering"; "numerals" = dontDistribute super."numerals"; "numerals-base" = dontDistribute super."numerals-base"; @@ -5845,6 +5861,7 @@ self: super: { "pandoc-lens" = dontDistribute super."pandoc-lens"; "pandoc-placetable" = dontDistribute super."pandoc-placetable"; "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; + "pandoc-types" = doDistribute super."pandoc-types_1_12_4_7"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; "pango" = doDistribute super."pango_0_13_1_0"; "papillon" = dontDistribute super."papillon"; @@ -6048,6 +6065,7 @@ self: super: { "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; "plailude" = dontDistribute super."plailude"; + "plan-b" = dontDistribute super."plan-b"; "planar-graph" = dontDistribute super."planar-graph"; "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; @@ -6303,7 +6321,6 @@ self: super: { "queuelike" = dontDistribute super."queuelike"; "quick-generator" = dontDistribute super."quick-generator"; "quick-schema" = dontDistribute super."quick-schema"; - "quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb"; @@ -7422,6 +7439,7 @@ self: super: { "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" = doDistribute super."temporary_1_2_0_3"; "temporary-resourcet" = dontDistribute super."temporary-resourcet"; "tempus" = dontDistribute super."tempus"; "tempus-fugit" = dontDistribute super."tempus-fugit"; @@ -7875,6 +7893,10 @@ self: super: { "usb-iteratee" = dontDistribute super."usb-iteratee"; "usb-safe" = dontDistribute super."usb-safe"; "userid" = dontDistribute super."userid"; + "users" = doDistribute super."users_0_3_0_0"; + "users-persistent" = doDistribute super."users-persistent_0_3_0_0"; + "users-postgresql-simple" = doDistribute super."users-postgresql-simple_0_3_0_0"; + "users-test" = doDistribute super."users-test_0_3_0_0"; "utc" = dontDistribute super."utc"; "utf8-env" = dontDistribute super."utf8-env"; "utf8-prelude" = dontDistribute super."utf8-prelude"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.9.nix b/pkgs/development/haskell-modules/configuration-lts-3.9.nix index 32d43a1a611..4f5197bb6c6 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.9.nix @@ -124,6 +124,7 @@ self: super: { "Bitly" = dontDistribute super."Bitly"; "Blobs" = dontDistribute super."Blobs"; "BlogLiterately" = doDistribute super."BlogLiterately_0_8_1_2"; + "BlogLiterately-diagrams" = doDistribute super."BlogLiterately-diagrams_0_2_0_1"; "BluePrintCSS" = dontDistribute super."BluePrintCSS"; "Blueprint" = dontDistribute super."Blueprint"; "Bookshelf" = dontDistribute super."Bookshelf"; @@ -1352,6 +1353,7 @@ self: super: { "astrds" = dontDistribute super."astrds"; "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; + "async" = doDistribute super."async_2_0_2"; "async-dejafu" = dontDistribute super."async-dejafu"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; @@ -1488,6 +1490,7 @@ self: super: { "bdd" = dontDistribute super."bdd"; "bdelta" = dontDistribute super."bdelta"; "bdo" = dontDistribute super."bdo"; + "beam" = dontDistribute super."beam"; "beamable" = dontDistribute super."beamable"; "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; @@ -1776,6 +1779,7 @@ self: super: { "cabal-nirvana" = dontDistribute super."cabal-nirvana"; "cabal-progdeps" = dontDistribute super."cabal-progdeps"; "cabal-query" = dontDistribute super."cabal-query"; + "cabal-rpm" = doDistribute super."cabal-rpm_0_9_8"; "cabal-scripts" = dontDistribute super."cabal-scripts"; "cabal-setup" = dontDistribute super."cabal-setup"; "cabal-sign" = dontDistribute super."cabal-sign"; @@ -1995,6 +1999,7 @@ self: super: { "clustertools" = dontDistribute super."clustertools"; "clutterhs" = dontDistribute super."clutterhs"; "cmaes" = dontDistribute super."cmaes"; + "cmark" = doDistribute super."cmark_0_4_1"; "cmath" = dontDistribute super."cmath"; "cmathml3" = dontDistribute super."cmathml3"; "cmd-item" = dontDistribute super."cmd-item"; @@ -3453,6 +3458,13 @@ self: super: { "googleplus" = dontDistribute super."googleplus"; "googlepolyline" = dontDistribute super."googlepolyline"; "gopherbot" = dontDistribute super."gopherbot"; + "gore-and-ash" = dontDistribute super."gore-and-ash"; + "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; + "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; + "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; + "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; + "gore-and-ash-sync" = dontDistribute super."gore-and-ash-sync"; "gpah" = dontDistribute super."gpah"; "gpcsets" = dontDistribute super."gpcsets"; "gpolyline" = dontDistribute super."gpolyline"; @@ -4327,6 +4339,7 @@ self: super: { "hspec-expectations-pretty-diff" = dontDistribute super."hspec-expectations-pretty-diff"; "hspec-experimental" = dontDistribute super."hspec-experimental"; "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-megaparsec" = dontDistribute super."hspec-megaparsec"; "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; @@ -4506,6 +4519,7 @@ self: super: { "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hypher" = dontDistribute super."hypher"; + "hzaif" = dontDistribute super."hzaif"; "hzk" = dontDistribute super."hzk"; "hzulip" = dontDistribute super."hzulip"; "i18n" = dontDistribute super."i18n"; @@ -5213,6 +5227,7 @@ self: super: { "mangopay" = doDistribute super."mangopay_1_11_5"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown-kate" = dontDistribute super."markdown-kate"; "markdown-pap" = dontDistribute super."markdown-pap"; @@ -5533,6 +5548,7 @@ self: super: { "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; "nano-cryptr" = dontDistribute super."nano-cryptr"; + "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; "nano-md5" = dontDistribute super."nano-md5"; "nanoAgda" = dontDistribute super."nanoAgda"; @@ -5688,6 +5704,7 @@ self: super: { "null-canvas" = dontDistribute super."null-canvas"; "nullary" = dontDistribute super."nullary"; "number" = dontDistribute super."number"; + "number-length" = dontDistribute super."number-length"; "numbering" = dontDistribute super."numbering"; "numerals" = dontDistribute super."numerals"; "numerals-base" = dontDistribute super."numerals-base"; @@ -5838,6 +5855,7 @@ self: super: { "pandoc-lens" = dontDistribute super."pandoc-lens"; "pandoc-placetable" = dontDistribute super."pandoc-placetable"; "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; + "pandoc-types" = doDistribute super."pandoc-types_1_12_4_7"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; "pango" = doDistribute super."pango_0_13_1_0"; "papillon" = dontDistribute super."papillon"; @@ -6041,6 +6059,7 @@ self: super: { "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; "plailude" = dontDistribute super."plailude"; + "plan-b" = dontDistribute super."plan-b"; "planar-graph" = dontDistribute super."planar-graph"; "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; @@ -6296,7 +6315,6 @@ self: super: { "queuelike" = dontDistribute super."queuelike"; "quick-generator" = dontDistribute super."quick-generator"; "quick-schema" = dontDistribute super."quick-schema"; - "quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb"; @@ -7415,6 +7433,7 @@ self: super: { "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" = doDistribute super."temporary_1_2_0_3"; "temporary-resourcet" = dontDistribute super."temporary-resourcet"; "tempus" = dontDistribute super."tempus"; "tempus-fugit" = dontDistribute super."tempus-fugit"; @@ -7868,6 +7887,10 @@ self: super: { "usb-iteratee" = dontDistribute super."usb-iteratee"; "usb-safe" = dontDistribute super."usb-safe"; "userid" = dontDistribute super."userid"; + "users" = doDistribute super."users_0_3_0_0"; + "users-persistent" = doDistribute super."users-persistent_0_3_0_0"; + "users-postgresql-simple" = doDistribute super."users-postgresql-simple_0_3_0_0"; + "users-test" = doDistribute super."users-test_0_3_0_0"; "utc" = dontDistribute super."utc"; "utf8-env" = dontDistribute super."utf8-env"; "utf8-prelude" = dontDistribute super."utf8-prelude"; diff --git a/pkgs/development/haskell-modules/configuration-lts-4.0.nix b/pkgs/development/haskell-modules/configuration-lts-4.0.nix index cb8f0729fe8..41d40d31cee 100644 --- a/pkgs/development/haskell-modules/configuration-lts-4.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-4.0.nix @@ -122,6 +122,8 @@ self: super: { "BitSyntax" = dontDistribute super."BitSyntax"; "Bitly" = dontDistribute super."Bitly"; "Blobs" = dontDistribute super."Blobs"; + "BlogLiterately" = doDistribute super."BlogLiterately_0_8_1_3"; + "BlogLiterately-diagrams" = doDistribute super."BlogLiterately-diagrams_0_2_0_1"; "BluePrintCSS" = dontDistribute super."BluePrintCSS"; "Blueprint" = dontDistribute super."Blueprint"; "Bookshelf" = dontDistribute super."Bookshelf"; @@ -451,6 +453,7 @@ self: super: { "HSoundFile" = dontDistribute super."HSoundFile"; "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers"; "HSvm" = dontDistribute super."HSvm"; + "HTTP" = doDistribute super."HTTP_4000_2_23"; "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; @@ -550,6 +553,7 @@ self: super: { "Javav" = dontDistribute super."Javav"; "JsContracts" = dontDistribute super."JsContracts"; "JsonGrammar" = dontDistribute super."JsonGrammar"; + "JuicyPixels" = doDistribute super."JuicyPixels_3_2_6_4"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; "JunkDB" = dontDistribute super."JunkDB"; "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; @@ -1243,6 +1247,7 @@ self: super: { "astrds" = dontDistribute super."astrds"; "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; + "async" = doDistribute super."async_2_0_2"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; "async-pool" = dontDistribute super."async-pool"; @@ -1369,6 +1374,7 @@ self: super: { "bdd" = dontDistribute super."bdd"; "bdelta" = dontDistribute super."bdelta"; "bdo" = dontDistribute super."bdo"; + "beam" = dontDistribute super."beam"; "beamable" = dontDistribute super."beamable"; "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; @@ -1409,6 +1415,7 @@ self: super: { "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; + "binary-orphans" = doDistribute super."binary-orphans_0_1_3_0"; "binary-protocol" = dontDistribute super."binary-protocol"; "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq"; "binary-search" = doDistribute super."binary-search_0_1"; @@ -1636,6 +1643,7 @@ self: super: { "cabal-nirvana" = dontDistribute super."cabal-nirvana"; "cabal-progdeps" = dontDistribute super."cabal-progdeps"; "cabal-query" = dontDistribute super."cabal-query"; + "cabal-rpm" = doDistribute super."cabal-rpm_0_9_8"; "cabal-scripts" = dontDistribute super."cabal-scripts"; "cabal-setup" = dontDistribute super."cabal-setup"; "cabal-sign" = dontDistribute super."cabal-sign"; @@ -1837,6 +1845,7 @@ self: super: { "clustertools" = dontDistribute super."clustertools"; "clutterhs" = dontDistribute super."clutterhs"; "cmaes" = dontDistribute super."cmaes"; + "cmark" = doDistribute super."cmark_0_4_1"; "cmath" = dontDistribute super."cmath"; "cmathml3" = dontDistribute super."cmathml3"; "cmd-item" = dontDistribute super."cmd-item"; @@ -2520,6 +2529,7 @@ self: super: { "elerea-sdl" = dontDistribute super."elerea-sdl"; "elevator" = dontDistribute super."elevator"; "elf" = dontDistribute super."elf"; + "elm-bridge" = doDistribute super."elm-bridge_0_1_0_0"; "elm-build-lib" = dontDistribute super."elm-build-lib"; "elm-compiler" = dontDistribute super."elm-compiler"; "elm-get" = dontDistribute super."elm-get"; @@ -2545,6 +2555,7 @@ self: super: { "empty" = dontDistribute super."empty"; "encoding" = dontDistribute super."encoding"; "endo" = dontDistribute super."endo"; + "engine-io" = doDistribute super."engine-io_1_2_11"; "engine-io-growler" = dontDistribute super."engine-io-growler"; "engine-io-snap" = dontDistribute super."engine-io-snap"; "engine-io-yesod" = doDistribute super."engine-io-yesod_1_0_3"; @@ -3216,6 +3227,13 @@ self: super: { "googleplus" = dontDistribute super."googleplus"; "googlepolyline" = dontDistribute super."googlepolyline"; "gopherbot" = dontDistribute super."gopherbot"; + "gore-and-ash" = dontDistribute super."gore-and-ash"; + "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; + "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; + "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; + "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; + "gore-and-ash-sync" = dontDistribute super."gore-and-ash-sync"; "gpah" = dontDistribute super."gpah"; "gpcsets" = dontDistribute super."gpcsets"; "gpolyline" = dontDistribute super."gpolyline"; @@ -3873,6 +3891,7 @@ self: super: { "hoovie" = dontDistribute super."hoovie"; "hopencc" = dontDistribute super."hopencc"; "hopencl" = dontDistribute super."hopencl"; + "hopenpgp-tools" = doDistribute super."hopenpgp-tools_0_16_3"; "hopfield" = dontDistribute super."hopfield"; "hopfield-networks" = dontDistribute super."hopfield-networks"; "hopfli" = dontDistribute super."hopfli"; @@ -4040,6 +4059,7 @@ self: super: { "hspec-expectations-pretty" = dontDistribute super."hspec-expectations-pretty"; "hspec-experimental" = dontDistribute super."hspec-experimental"; "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-megaparsec" = dontDistribute super."hspec-megaparsec"; "hspec-meta" = doDistribute super."hspec-meta_2_2_0"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; @@ -4197,6 +4217,7 @@ self: super: { "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hypher" = dontDistribute super."hypher"; + "hzaif" = dontDistribute super."hzaif"; "hzk" = dontDistribute super."hzk"; "i18n" = dontDistribute super."i18n"; "iCalendar" = dontDistribute super."iCalendar"; @@ -4875,6 +4896,7 @@ self: super: { "mandulia" = dontDistribute super."mandulia"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown-kate" = dontDistribute super."markdown-kate"; "markdown-pap" = dontDistribute super."markdown-pap"; @@ -5174,6 +5196,7 @@ self: super: { "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; "nano-cryptr" = dontDistribute super."nano-cryptr"; + "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; "nano-md5" = dontDistribute super."nano-md5"; "nanoAgda" = dontDistribute super."nanoAgda"; @@ -5316,6 +5339,7 @@ self: super: { "null-canvas" = dontDistribute super."null-canvas"; "nullary" = dontDistribute super."nullary"; "number" = dontDistribute super."number"; + "number-length" = dontDistribute super."number-length"; "numbering" = dontDistribute super."numbering"; "numerals" = dontDistribute super."numerals"; "numerals-base" = dontDistribute super."numerals-base"; @@ -5449,6 +5473,8 @@ self: super: { "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; + "pandoc" = doDistribute super."pandoc_1_15_2_1"; + "pandoc-citeproc" = doDistribute super."pandoc-citeproc_0_8_1_3"; "pandoc-citeproc-preamble" = dontDistribute super."pandoc-citeproc-preamble"; "pandoc-crossref" = dontDistribute super."pandoc-crossref"; "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; @@ -5457,6 +5483,7 @@ self: super: { "pandoc-lens" = dontDistribute super."pandoc-lens"; "pandoc-placetable" = dontDistribute super."pandoc-placetable"; "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; + "pandoc-types" = doDistribute super."pandoc-types_1_12_4_7"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; "papillon" = dontDistribute super."papillon"; "pappy" = dontDistribute super."pappy"; @@ -5633,6 +5660,7 @@ self: super: { "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; "plailude" = dontDistribute super."plailude"; + "plan-b" = dontDistribute super."plan-b"; "planar-graph" = dontDistribute super."planar-graph"; "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; @@ -5869,7 +5897,6 @@ self: super: { "queuelike" = dontDistribute super."queuelike"; "quick-generator" = dontDistribute super."quick-generator"; "quick-schema" = dontDistribute super."quick-schema"; - "quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb"; @@ -5925,6 +5952,7 @@ self: super: { "range-space" = dontDistribute super."range-space"; "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; + "rank1dynamic" = doDistribute super."rank1dynamic_0_3_1_0"; "rascal" = dontDistribute super."rascal"; "rate-limit" = dontDistribute super."rate-limit"; "ratio-int" = dontDistribute super."ratio-int"; @@ -6470,6 +6498,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = doDistribute super."slug_0_1_1"; "smallarray" = dontDistribute super."smallarray"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; "smallcheck-lens" = dontDistribute super."smallcheck-lens"; @@ -6894,6 +6923,7 @@ self: super: { "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" = doDistribute super."temporary_1_2_0_3"; "temporary-resourcet" = dontDistribute super."temporary-resourcet"; "tempus" = dontDistribute super."tempus"; "tempus-fugit" = dontDistribute super."tempus-fugit"; @@ -7313,6 +7343,10 @@ self: super: { "usb-id-database" = dontDistribute super."usb-id-database"; "usb-iteratee" = dontDistribute super."usb-iteratee"; "usb-safe" = dontDistribute super."usb-safe"; + "users" = doDistribute super."users_0_3_0_0"; + "users-persistent" = doDistribute super."users-persistent_0_3_0_0"; + "users-postgresql-simple" = doDistribute super."users-postgresql-simple_0_3_0_0"; + "users-test" = doDistribute super."users-test_0_3_0_0"; "utc" = dontDistribute super."utc"; "utf8-env" = dontDistribute super."utf8-env"; "utf8-prelude" = dontDistribute super."utf8-prelude"; diff --git a/pkgs/development/haskell-modules/configuration-lts-4.1.nix b/pkgs/development/haskell-modules/configuration-lts-4.1.nix index bf9a7ad51ca..ec7cbbf490f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-4.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-4.1.nix @@ -122,6 +122,8 @@ self: super: { "BitSyntax" = dontDistribute super."BitSyntax"; "Bitly" = dontDistribute super."Bitly"; "Blobs" = dontDistribute super."Blobs"; + "BlogLiterately" = doDistribute super."BlogLiterately_0_8_1_3"; + "BlogLiterately-diagrams" = doDistribute super."BlogLiterately-diagrams_0_2_0_1"; "BluePrintCSS" = dontDistribute super."BluePrintCSS"; "Blueprint" = dontDistribute super."Blueprint"; "Bookshelf" = dontDistribute super."Bookshelf"; @@ -451,6 +453,7 @@ self: super: { "HSoundFile" = dontDistribute super."HSoundFile"; "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers"; "HSvm" = dontDistribute super."HSvm"; + "HTTP" = doDistribute super."HTTP_4000_2_23"; "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; @@ -550,6 +553,7 @@ self: super: { "Javav" = dontDistribute super."Javav"; "JsContracts" = dontDistribute super."JsContracts"; "JsonGrammar" = dontDistribute super."JsonGrammar"; + "JuicyPixels" = doDistribute super."JuicyPixels_3_2_6_4"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; "JunkDB" = dontDistribute super."JunkDB"; "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; @@ -1241,6 +1245,7 @@ self: super: { "astrds" = dontDistribute super."astrds"; "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; + "async" = doDistribute super."async_2_0_2"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; "async-pool" = dontDistribute super."async-pool"; @@ -1367,6 +1372,7 @@ self: super: { "bdd" = dontDistribute super."bdd"; "bdelta" = dontDistribute super."bdelta"; "bdo" = dontDistribute super."bdo"; + "beam" = dontDistribute super."beam"; "beamable" = dontDistribute super."beamable"; "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; @@ -1407,6 +1413,7 @@ self: super: { "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; + "binary-orphans" = doDistribute super."binary-orphans_0_1_3_0"; "binary-protocol" = dontDistribute super."binary-protocol"; "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq"; "binary-search" = doDistribute super."binary-search_0_1"; @@ -1634,6 +1641,7 @@ self: super: { "cabal-nirvana" = dontDistribute super."cabal-nirvana"; "cabal-progdeps" = dontDistribute super."cabal-progdeps"; "cabal-query" = dontDistribute super."cabal-query"; + "cabal-rpm" = doDistribute super."cabal-rpm_0_9_8"; "cabal-scripts" = dontDistribute super."cabal-scripts"; "cabal-setup" = dontDistribute super."cabal-setup"; "cabal-sign" = dontDistribute super."cabal-sign"; @@ -1835,6 +1843,7 @@ self: super: { "clustertools" = dontDistribute super."clustertools"; "clutterhs" = dontDistribute super."clutterhs"; "cmaes" = dontDistribute super."cmaes"; + "cmark" = doDistribute super."cmark_0_4_1"; "cmath" = dontDistribute super."cmath"; "cmathml3" = dontDistribute super."cmathml3"; "cmd-item" = dontDistribute super."cmd-item"; @@ -2517,6 +2526,7 @@ self: super: { "elerea-sdl" = dontDistribute super."elerea-sdl"; "elevator" = dontDistribute super."elevator"; "elf" = dontDistribute super."elf"; + "elm-bridge" = doDistribute super."elm-bridge_0_1_0_0"; "elm-build-lib" = dontDistribute super."elm-build-lib"; "elm-compiler" = dontDistribute super."elm-compiler"; "elm-get" = dontDistribute super."elm-get"; @@ -2542,6 +2552,7 @@ self: super: { "empty" = dontDistribute super."empty"; "encoding" = dontDistribute super."encoding"; "endo" = dontDistribute super."endo"; + "engine-io" = doDistribute super."engine-io_1_2_11"; "engine-io-growler" = dontDistribute super."engine-io-growler"; "engine-io-snap" = dontDistribute super."engine-io-snap"; "engineering-units" = dontDistribute super."engineering-units"; @@ -3210,6 +3221,13 @@ self: super: { "googleplus" = dontDistribute super."googleplus"; "googlepolyline" = dontDistribute super."googlepolyline"; "gopherbot" = dontDistribute super."gopherbot"; + "gore-and-ash" = dontDistribute super."gore-and-ash"; + "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; + "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; + "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; + "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; + "gore-and-ash-sync" = dontDistribute super."gore-and-ash-sync"; "gpah" = dontDistribute super."gpah"; "gpcsets" = dontDistribute super."gpcsets"; "gpolyline" = dontDistribute super."gpolyline"; @@ -3866,6 +3884,7 @@ self: super: { "hoovie" = dontDistribute super."hoovie"; "hopencc" = dontDistribute super."hopencc"; "hopencl" = dontDistribute super."hopencl"; + "hopenpgp-tools" = doDistribute super."hopenpgp-tools_0_16_3"; "hopfield" = dontDistribute super."hopfield"; "hopfield-networks" = dontDistribute super."hopfield-networks"; "hopfli" = dontDistribute super."hopfli"; @@ -4033,6 +4052,7 @@ self: super: { "hspec-expectations-pretty" = dontDistribute super."hspec-expectations-pretty"; "hspec-experimental" = dontDistribute super."hspec-experimental"; "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-megaparsec" = dontDistribute super."hspec-megaparsec"; "hspec-meta" = doDistribute super."hspec-meta_2_2_0"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; @@ -4190,6 +4210,7 @@ self: super: { "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hypher" = dontDistribute super."hypher"; + "hzaif" = dontDistribute super."hzaif"; "hzk" = dontDistribute super."hzk"; "i18n" = dontDistribute super."i18n"; "iCalendar" = dontDistribute super."iCalendar"; @@ -4860,6 +4881,7 @@ self: super: { "mandulia" = dontDistribute super."mandulia"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown-kate" = dontDistribute super."markdown-kate"; "markdown-pap" = dontDistribute super."markdown-pap"; @@ -5159,6 +5181,7 @@ self: super: { "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; "nano-cryptr" = dontDistribute super."nano-cryptr"; + "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; "nano-md5" = dontDistribute super."nano-md5"; "nanoAgda" = dontDistribute super."nanoAgda"; @@ -5301,6 +5324,7 @@ self: super: { "null-canvas" = dontDistribute super."null-canvas"; "nullary" = dontDistribute super."nullary"; "number" = dontDistribute super."number"; + "number-length" = dontDistribute super."number-length"; "numbering" = dontDistribute super."numbering"; "numerals" = dontDistribute super."numerals"; "numerals-base" = dontDistribute super."numerals-base"; @@ -5434,6 +5458,8 @@ self: super: { "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; + "pandoc" = doDistribute super."pandoc_1_15_2_1"; + "pandoc-citeproc" = doDistribute super."pandoc-citeproc_0_8_1_3"; "pandoc-citeproc-preamble" = dontDistribute super."pandoc-citeproc-preamble"; "pandoc-crossref" = dontDistribute super."pandoc-crossref"; "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; @@ -5442,6 +5468,7 @@ self: super: { "pandoc-lens" = dontDistribute super."pandoc-lens"; "pandoc-placetable" = dontDistribute super."pandoc-placetable"; "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; + "pandoc-types" = doDistribute super."pandoc-types_1_12_4_7"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; "papillon" = dontDistribute super."papillon"; "pappy" = dontDistribute super."pappy"; @@ -5616,6 +5643,7 @@ self: super: { "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; "plailude" = dontDistribute super."plailude"; + "plan-b" = dontDistribute super."plan-b"; "planar-graph" = dontDistribute super."planar-graph"; "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; @@ -5852,7 +5880,6 @@ self: super: { "queuelike" = dontDistribute super."queuelike"; "quick-generator" = dontDistribute super."quick-generator"; "quick-schema" = dontDistribute super."quick-schema"; - "quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb"; @@ -5908,6 +5935,7 @@ self: super: { "range-space" = dontDistribute super."range-space"; "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; + "rank1dynamic" = doDistribute super."rank1dynamic_0_3_1_0"; "rascal" = dontDistribute super."rascal"; "rate-limit" = dontDistribute super."rate-limit"; "ratio-int" = dontDistribute super."ratio-int"; @@ -6452,6 +6480,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = doDistribute super."slug_0_1_1"; "smallarray" = dontDistribute super."smallarray"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; "smallcheck-lens" = dontDistribute super."smallcheck-lens"; @@ -6876,6 +6905,7 @@ self: super: { "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" = doDistribute super."temporary_1_2_0_3"; "temporary-resourcet" = dontDistribute super."temporary-resourcet"; "tempus" = dontDistribute super."tempus"; "tempus-fugit" = dontDistribute super."tempus-fugit"; @@ -7294,6 +7324,10 @@ self: super: { "usb-id-database" = dontDistribute super."usb-id-database"; "usb-iteratee" = dontDistribute super."usb-iteratee"; "usb-safe" = dontDistribute super."usb-safe"; + "users" = doDistribute super."users_0_3_0_0"; + "users-persistent" = doDistribute super."users-persistent_0_3_0_0"; + "users-postgresql-simple" = doDistribute super."users-postgresql-simple_0_3_0_0"; + "users-test" = doDistribute super."users-test_0_3_0_0"; "utc" = dontDistribute super."utc"; "utf8-env" = dontDistribute super."utf8-env"; "utf8-prelude" = dontDistribute super."utf8-prelude"; diff --git a/pkgs/development/haskell-modules/configuration-lts-4.2.nix b/pkgs/development/haskell-modules/configuration-lts-4.2.nix index 33edb1148d8..9ca6a8a3c8f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-4.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-4.2.nix @@ -122,6 +122,8 @@ self: super: { "BitSyntax" = dontDistribute super."BitSyntax"; "Bitly" = dontDistribute super."Bitly"; "Blobs" = dontDistribute super."Blobs"; + "BlogLiterately" = doDistribute super."BlogLiterately_0_8_1_3"; + "BlogLiterately-diagrams" = doDistribute super."BlogLiterately-diagrams_0_2_0_1"; "BluePrintCSS" = dontDistribute super."BluePrintCSS"; "Blueprint" = dontDistribute super."Blueprint"; "Bookshelf" = dontDistribute super."Bookshelf"; @@ -449,6 +451,7 @@ self: super: { "HSoundFile" = dontDistribute super."HSoundFile"; "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers"; "HSvm" = dontDistribute super."HSvm"; + "HTTP" = doDistribute super."HTTP_4000_2_23"; "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; @@ -548,6 +551,7 @@ self: super: { "Javav" = dontDistribute super."Javav"; "JsContracts" = dontDistribute super."JsContracts"; "JsonGrammar" = dontDistribute super."JsonGrammar"; + "JuicyPixels" = doDistribute super."JuicyPixels_3_2_6_4"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; "JunkDB" = dontDistribute super."JunkDB"; "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; @@ -1236,6 +1240,7 @@ self: super: { "astrds" = dontDistribute super."astrds"; "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; + "async" = doDistribute super."async_2_0_2"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; "async-pool" = dontDistribute super."async-pool"; @@ -1362,6 +1367,7 @@ self: super: { "bdd" = dontDistribute super."bdd"; "bdelta" = dontDistribute super."bdelta"; "bdo" = dontDistribute super."bdo"; + "beam" = dontDistribute super."beam"; "beamable" = dontDistribute super."beamable"; "beautifHOL" = dontDistribute super."beautifHOL"; "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; @@ -1402,6 +1408,7 @@ self: super: { "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; + "binary-orphans" = doDistribute super."binary-orphans_0_1_3_0"; "binary-protocol" = dontDistribute super."binary-protocol"; "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq"; "binary-search" = doDistribute super."binary-search_0_1"; @@ -1627,6 +1634,7 @@ self: super: { "cabal-nirvana" = dontDistribute super."cabal-nirvana"; "cabal-progdeps" = dontDistribute super."cabal-progdeps"; "cabal-query" = dontDistribute super."cabal-query"; + "cabal-rpm" = doDistribute super."cabal-rpm_0_9_8"; "cabal-scripts" = dontDistribute super."cabal-scripts"; "cabal-setup" = dontDistribute super."cabal-setup"; "cabal-sign" = dontDistribute super."cabal-sign"; @@ -1819,6 +1827,7 @@ self: super: { "clustertools" = dontDistribute super."clustertools"; "clutterhs" = dontDistribute super."clutterhs"; "cmaes" = dontDistribute super."cmaes"; + "cmark" = doDistribute super."cmark_0_4_1"; "cmath" = dontDistribute super."cmath"; "cmathml3" = dontDistribute super."cmathml3"; "cmd-item" = dontDistribute super."cmd-item"; @@ -2494,6 +2503,7 @@ self: super: { "elerea-sdl" = dontDistribute super."elerea-sdl"; "elevator" = dontDistribute super."elevator"; "elf" = dontDistribute super."elf"; + "elm-bridge" = doDistribute super."elm-bridge_0_1_0_0"; "elm-build-lib" = dontDistribute super."elm-build-lib"; "elm-compiler" = dontDistribute super."elm-compiler"; "elm-get" = dontDistribute super."elm-get"; @@ -2519,6 +2529,7 @@ self: super: { "empty" = dontDistribute super."empty"; "encoding" = dontDistribute super."encoding"; "endo" = dontDistribute super."endo"; + "engine-io" = doDistribute super."engine-io_1_2_11"; "engine-io-growler" = dontDistribute super."engine-io-growler"; "engine-io-snap" = dontDistribute super."engine-io-snap"; "engineering-units" = dontDistribute super."engineering-units"; @@ -3180,6 +3191,13 @@ self: super: { "googleplus" = dontDistribute super."googleplus"; "googlepolyline" = dontDistribute super."googlepolyline"; "gopherbot" = dontDistribute super."gopherbot"; + "gore-and-ash" = dontDistribute super."gore-and-ash"; + "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; + "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; + "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; + "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; + "gore-and-ash-sync" = dontDistribute super."gore-and-ash-sync"; "gpah" = dontDistribute super."gpah"; "gpcsets" = dontDistribute super."gpcsets"; "gpolyline" = dontDistribute super."gpolyline"; @@ -3827,6 +3845,7 @@ self: super: { "hoovie" = dontDistribute super."hoovie"; "hopencc" = dontDistribute super."hopencc"; "hopencl" = dontDistribute super."hopencl"; + "hopenpgp-tools" = doDistribute super."hopenpgp-tools_0_16_3"; "hopfield" = dontDistribute super."hopfield"; "hopfield-networks" = dontDistribute super."hopfield-networks"; "hopfli" = dontDistribute super."hopfli"; @@ -3991,6 +4010,7 @@ self: super: { "hspec-expectations-pretty" = dontDistribute super."hspec-expectations-pretty"; "hspec-experimental" = dontDistribute super."hspec-experimental"; "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-megaparsec" = dontDistribute super."hspec-megaparsec"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; @@ -4147,6 +4167,7 @@ self: super: { "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hypher" = dontDistribute super."hypher"; + "hzaif" = dontDistribute super."hzaif"; "hzk" = dontDistribute super."hzk"; "i18n" = dontDistribute super."i18n"; "iCalendar" = dontDistribute super."iCalendar"; @@ -4810,6 +4831,7 @@ self: super: { "mandulia" = dontDistribute super."mandulia"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown-kate" = dontDistribute super."markdown-kate"; "markdown-pap" = dontDistribute super."markdown-pap"; @@ -5104,6 +5126,7 @@ self: super: { "names" = dontDistribute super."names"; "names-th" = dontDistribute super."names-th"; "nano-cryptr" = dontDistribute super."nano-cryptr"; + "nano-erl" = dontDistribute super."nano-erl"; "nano-hmac" = dontDistribute super."nano-hmac"; "nano-md5" = dontDistribute super."nano-md5"; "nanoAgda" = dontDistribute super."nanoAgda"; @@ -5246,6 +5269,7 @@ self: super: { "null-canvas" = dontDistribute super."null-canvas"; "nullary" = dontDistribute super."nullary"; "number" = dontDistribute super."number"; + "number-length" = dontDistribute super."number-length"; "numbering" = dontDistribute super."numbering"; "numerals" = dontDistribute super."numerals"; "numerals-base" = dontDistribute super."numerals-base"; @@ -5379,6 +5403,8 @@ self: super: { "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; + "pandoc" = doDistribute super."pandoc_1_15_2_1"; + "pandoc-citeproc" = doDistribute super."pandoc-citeproc_0_8_1_3"; "pandoc-citeproc-preamble" = dontDistribute super."pandoc-citeproc-preamble"; "pandoc-crossref" = dontDistribute super."pandoc-crossref"; "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; @@ -5387,6 +5413,7 @@ self: super: { "pandoc-lens" = dontDistribute super."pandoc-lens"; "pandoc-placetable" = dontDistribute super."pandoc-placetable"; "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; + "pandoc-types" = doDistribute super."pandoc-types_1_12_4_7"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; "papillon" = dontDistribute super."papillon"; "pappy" = dontDistribute super."pappy"; @@ -5561,6 +5588,7 @@ self: super: { "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; "plailude" = dontDistribute super."plailude"; + "plan-b" = dontDistribute super."plan-b"; "planar-graph" = dontDistribute super."planar-graph"; "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; @@ -5794,7 +5822,6 @@ self: super: { "queuelike" = dontDistribute super."queuelike"; "quick-generator" = dontDistribute super."quick-generator"; "quick-schema" = dontDistribute super."quick-schema"; - "quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11"; "quickcheck-poly" = dontDistribute super."quickcheck-poly"; "quickcheck-properties" = dontDistribute super."quickcheck-properties"; "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb"; @@ -5850,6 +5877,7 @@ self: super: { "range-space" = dontDistribute super."range-space"; "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; + "rank1dynamic" = doDistribute super."rank1dynamic_0_3_1_0"; "rascal" = dontDistribute super."rascal"; "rate-limit" = dontDistribute super."rate-limit"; "ratio-int" = dontDistribute super."ratio-int"; @@ -6385,6 +6413,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = doDistribute super."slug_0_1_1"; "smallarray" = dontDistribute super."smallarray"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; "smallcheck-lens" = dontDistribute super."smallcheck-lens"; @@ -6805,6 +6834,7 @@ self: super: { "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" = doDistribute super."temporary_1_2_0_3"; "temporary-resourcet" = dontDistribute super."temporary-resourcet"; "tempus" = dontDistribute super."tempus"; "tempus-fugit" = dontDistribute super."tempus-fugit"; @@ -7223,6 +7253,10 @@ self: super: { "usb-id-database" = dontDistribute super."usb-id-database"; "usb-iteratee" = dontDistribute super."usb-iteratee"; "usb-safe" = dontDistribute super."usb-safe"; + "users" = doDistribute super."users_0_3_0_0"; + "users-persistent" = doDistribute super."users-persistent_0_3_0_0"; + "users-postgresql-simple" = doDistribute super."users-postgresql-simple_0_3_0_0"; + "users-test" = doDistribute super."users-test_0_3_0_0"; "utc" = dontDistribute super."utc"; "utf8-env" = dontDistribute super."utf8-env"; "utf8-prelude" = dontDistribute super."utf8-prelude"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.0.nix b/pkgs/development/haskell-modules/configuration-lts-5.0.nix new file mode 100644 index 00000000000..5a4647fc77f --- /dev/null +++ b/pkgs/development/haskell-modules/configuration-lts-5.0.nix @@ -0,0 +1,7558 @@ +{ pkgs }: + +with import ./lib.nix { inherit pkgs; }; + +self: super: { + + # core libraries provided by the compiler + Cabal = null; + array = null; + base = null; + bin-package-db = null; + binary = null; + bytestring = null; + containers = null; + deepseq = null; + directory = null; + filepath = null; + ghc-prim = null; + hoopl = null; + hpc = null; + integer-gmp = null; + pretty = null; + process = null; + rts = null; + template-haskell = null; + time = null; + transformers = null; + unix = null; + + # lts-5.0 packages + "3d-graphics-examples" = dontDistribute super."3d-graphics-examples"; + "3dmodels" = dontDistribute super."3dmodels"; + "4Blocks" = dontDistribute super."4Blocks"; + "AAI" = dontDistribute super."AAI"; + "ABList" = dontDistribute super."ABList"; + "AC-Angle" = dontDistribute super."AC-Angle"; + "AC-Boolean" = dontDistribute super."AC-Boolean"; + "AC-BuildPlatform" = dontDistribute super."AC-BuildPlatform"; + "AC-Colour" = dontDistribute super."AC-Colour"; + "AC-EasyRaster-GTK" = dontDistribute super."AC-EasyRaster-GTK"; + "AC-HalfInteger" = dontDistribute super."AC-HalfInteger"; + "AC-MiniTest" = dontDistribute super."AC-MiniTest"; + "AC-PPM" = dontDistribute super."AC-PPM"; + "AC-Random" = dontDistribute super."AC-Random"; + "AC-Terminal" = dontDistribute super."AC-Terminal"; + "AC-VanillaArray" = dontDistribute super."AC-VanillaArray"; + "AC-Vector-Fancy" = dontDistribute super."AC-Vector-Fancy"; + "ACME" = dontDistribute super."ACME"; + "ADPfusion" = dontDistribute super."ADPfusion"; + "AERN-Basics" = dontDistribute super."AERN-Basics"; + "AERN-Net" = dontDistribute super."AERN-Net"; + "AERN-Real" = dontDistribute super."AERN-Real"; + "AERN-Real-Double" = dontDistribute super."AERN-Real-Double"; + "AERN-Real-Interval" = dontDistribute super."AERN-Real-Interval"; + "AERN-RnToRm" = dontDistribute super."AERN-RnToRm"; + "AERN-RnToRm-Plot" = dontDistribute super."AERN-RnToRm-Plot"; + "AES" = dontDistribute super."AES"; + "AGI" = dontDistribute super."AGI"; + "ALUT" = dontDistribute super."ALUT"; + "AMI" = dontDistribute super."AMI"; + "ANum" = dontDistribute super."ANum"; + "ASN1" = dontDistribute super."ASN1"; + "AVar" = dontDistribute super."AVar"; + "AWin32Console" = dontDistribute super."AWin32Console"; + "AbortT-monadstf" = dontDistribute super."AbortT-monadstf"; + "AbortT-mtl" = dontDistribute super."AbortT-mtl"; + "AbortT-transformers" = dontDistribute super."AbortT-transformers"; + "ActionKid" = dontDistribute super."ActionKid"; + "Adaptive" = dontDistribute super."Adaptive"; + "Adaptive-Blaisorblade" = dontDistribute super."Adaptive-Blaisorblade"; + "Advgame" = dontDistribute super."Advgame"; + "AesonBson" = dontDistribute super."AesonBson"; + "Agata" = dontDistribute super."Agata"; + "Agda-executable" = dontDistribute super."Agda-executable"; + "AhoCorasick" = dontDistribute super."AhoCorasick"; + "AlgorithmW" = dontDistribute super."AlgorithmW"; + "AlignmentAlgorithms" = dontDistribute super."AlignmentAlgorithms"; + "Allure" = dontDistribute super."Allure"; + "AndroidViewHierarchyImporter" = dontDistribute super."AndroidViewHierarchyImporter"; + "Animas" = dontDistribute super."Animas"; + "Annotations" = dontDistribute super."Annotations"; + "Ansi2Html" = dontDistribute super."Ansi2Html"; + "ApplePush" = dontDistribute super."ApplePush"; + "AppleScript" = dontDistribute super."AppleScript"; + "ApproxFun-hs" = dontDistribute super."ApproxFun-hs"; + "ArrayRef" = dontDistribute super."ArrayRef"; + "ArrowVHDL" = dontDistribute super."ArrowVHDL"; + "AspectAG" = dontDistribute super."AspectAG"; + "AttoBencode" = dontDistribute super."AttoBencode"; + "AttoJson" = dontDistribute super."AttoJson"; + "Attrac" = dontDistribute super."Attrac"; + "Aurochs" = dontDistribute super."Aurochs"; + "AutoForms" = dontDistribute super."AutoForms"; + "AvlTree" = dontDistribute super."AvlTree"; + "BASIC" = dontDistribute super."BASIC"; + "BCMtools" = dontDistribute super."BCMtools"; + "BNFC" = dontDistribute super."BNFC"; + "BNFC-meta" = dontDistribute super."BNFC-meta"; + "Baggins" = dontDistribute super."Baggins"; + "Bang" = dontDistribute super."Bang"; + "Barracuda" = dontDistribute super."Barracuda"; + "Befunge93" = dontDistribute super."Befunge93"; + "BenchmarkHistory" = dontDistribute super."BenchmarkHistory"; + "BerkeleyDB" = dontDistribute super."BerkeleyDB"; + "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; + "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BigPixel" = dontDistribute super."BigPixel"; + "Binpack" = dontDistribute super."Binpack"; + "Biobase" = dontDistribute super."Biobase"; + "BiobaseBlast" = dontDistribute super."BiobaseBlast"; + "BiobaseDotP" = dontDistribute super."BiobaseDotP"; + "BiobaseFR3D" = dontDistribute super."BiobaseFR3D"; + "BiobaseFasta" = dontDistribute super."BiobaseFasta"; + "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; + "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; + "BiobaseTurner" = dontDistribute super."BiobaseTurner"; + "BiobaseTypes" = dontDistribute super."BiobaseTypes"; + "BiobaseVienna" = dontDistribute super."BiobaseVienna"; + "BiobaseXNA" = dontDistribute super."BiobaseXNA"; + "BirdPP" = dontDistribute super."BirdPP"; + "BitSyntax" = dontDistribute super."BitSyntax"; + "Bitly" = dontDistribute super."Bitly"; + "Blobs" = dontDistribute super."Blobs"; + "BluePrintCSS" = dontDistribute super."BluePrintCSS"; + "Blueprint" = dontDistribute super."Blueprint"; + "Bookshelf" = dontDistribute super."Bookshelf"; + "Bravo" = dontDistribute super."Bravo"; + "BufferedSocket" = dontDistribute super."BufferedSocket"; + "Buster" = dontDistribute super."Buster"; + "CBOR" = dontDistribute super."CBOR"; + "CC-delcont" = dontDistribute super."CC-delcont"; + "CC-delcont-alt" = dontDistribute super."CC-delcont-alt"; + "CC-delcont-cxe" = dontDistribute super."CC-delcont-cxe"; + "CC-delcont-exc" = dontDistribute super."CC-delcont-exc"; + "CC-delcont-ref" = dontDistribute super."CC-delcont-ref"; + "CC-delcont-ref-tf" = dontDistribute super."CC-delcont-ref-tf"; + "CCA" = dontDistribute super."CCA"; + "CHXHtml" = dontDistribute super."CHXHtml"; + "CLASE" = dontDistribute super."CLASE"; + "CLI" = dontDistribute super."CLI"; + "CMCompare" = dontDistribute super."CMCompare"; + "CMQ" = dontDistribute super."CMQ"; + "COrdering" = dontDistribute super."COrdering"; + "CPBrainfuck" = dontDistribute super."CPBrainfuck"; + "CPL" = dontDistribute super."CPL"; + "CSPM-CoreLanguage" = dontDistribute super."CSPM-CoreLanguage"; + "CSPM-FiringRules" = dontDistribute super."CSPM-FiringRules"; + "CSPM-Frontend" = dontDistribute super."CSPM-Frontend"; + "CSPM-Interpreter" = dontDistribute super."CSPM-Interpreter"; + "CSPM-ToProlog" = dontDistribute super."CSPM-ToProlog"; + "CSPM-cspm" = dontDistribute super."CSPM-cspm"; + "CTRex" = dontDistribute super."CTRex"; + "CV" = dontDistribute super."CV"; + "CabalSearch" = dontDistribute super."CabalSearch"; + "Capabilities" = dontDistribute super."Capabilities"; + "Cardinality" = dontDistribute super."Cardinality"; + "CarneadesDSL" = dontDistribute super."CarneadesDSL"; + "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung"; + "Cartesian" = dontDistribute super."Cartesian"; + "Cascade" = dontDistribute super."Cascade"; + "Catana" = dontDistribute super."Catana"; + "Chart-diagrams" = dontDistribute super."Chart-diagrams"; + "Chart-gtk" = dontDistribute super."Chart-gtk"; + "Chart-simple" = dontDistribute super."Chart-simple"; + "CheatSheet" = dontDistribute super."CheatSheet"; + "Checked" = dontDistribute super."Checked"; + "Chitra" = dontDistribute super."Chitra"; + "ChristmasTree" = dontDistribute super."ChristmasTree"; + "CirruParser" = dontDistribute super."CirruParser"; + "ClassLaws" = dontDistribute super."ClassLaws"; + "ClassyPrelude" = dontDistribute super."ClassyPrelude"; + "Clean" = dontDistribute super."Clean"; + "Clipboard" = dontDistribute super."Clipboard"; + "Coadjute" = dontDistribute super."Coadjute"; + "Codec-Compression-LZF" = dontDistribute super."Codec-Compression-LZF"; + "Codec-Image-DevIL" = dontDistribute super."Codec-Image-DevIL"; + "Combinatorrent" = dontDistribute super."Combinatorrent"; + "Command" = dontDistribute super."Command"; + "Commando" = dontDistribute super."Commando"; + "ComonadSheet" = dontDistribute super."ComonadSheet"; + "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; + "Concurrential" = dontDistribute super."Concurrential"; + "Condor" = dontDistribute super."Condor"; + "ConfigFileTH" = dontDistribute super."ConfigFileTH"; + "Configger" = dontDistribute super."Configger"; + "Configurable" = dontDistribute super."Configurable"; + "ConsStream" = dontDistribute super."ConsStream"; + "Conscript" = dontDistribute super."Conscript"; + "ConstraintKinds" = dontDistribute super."ConstraintKinds"; + "Consumer" = dontDistribute super."Consumer"; + "ContArrow" = dontDistribute super."ContArrow"; + "ContextAlgebra" = dontDistribute super."ContextAlgebra"; + "Contract" = dontDistribute super."Contract"; + "Control-Engine" = dontDistribute super."Control-Engine"; + "Control-Monad-MultiPass" = dontDistribute super."Control-Monad-MultiPass"; + "Control-Monad-ST2" = dontDistribute super."Control-Monad-ST2"; + "CoreDump" = dontDistribute super."CoreDump"; + "CoreErlang" = dontDistribute super."CoreErlang"; + "CoreFoundation" = dontDistribute super."CoreFoundation"; + "Coroutine" = dontDistribute super."Coroutine"; + "CouchDB" = dontDistribute super."CouchDB"; + "Craft3e" = dontDistribute super."Craft3e"; + "Crypto" = dontDistribute super."Crypto"; + "CurryDB" = dontDistribute super."CurryDB"; + "DAG-Tournament" = dontDistribute super."DAG-Tournament"; + "DBlimited" = dontDistribute super."DBlimited"; + "DBus" = dontDistribute super."DBus"; + "DCFL" = dontDistribute super."DCFL"; + "DMuCheck" = dontDistribute super."DMuCheck"; + "DOM" = dontDistribute super."DOM"; + "DP" = dontDistribute super."DP"; + "DPM" = dontDistribute super."DPM"; + "DSA" = dontDistribute super."DSA"; + "DSH" = dontDistribute super."DSH"; + "DSTM" = dontDistribute super."DSTM"; + "DTC" = dontDistribute super."DTC"; + "Dangerous" = dontDistribute super."Dangerous"; + "Dao" = dontDistribute super."Dao"; + "DarcsHelpers" = dontDistribute super."DarcsHelpers"; + "Data-Hash-Consistent" = dontDistribute super."Data-Hash-Consistent"; + "Data-Rope" = dontDistribute super."Data-Rope"; + "DataTreeView" = dontDistribute super."DataTreeView"; + "Deadpan-DDP" = dontDistribute super."Deadpan-DDP"; + "DebugTraceHelpers" = dontDistribute super."DebugTraceHelpers"; + "DecisionTree" = dontDistribute super."DecisionTree"; + "DeepArrow" = dontDistribute super."DeepArrow"; + "DefendTheKing" = dontDistribute super."DefendTheKing"; + "DescriptiveKeys" = dontDistribute super."DescriptiveKeys"; + "Dflow" = dontDistribute super."Dflow"; + "DifferenceLogic" = dontDistribute super."DifferenceLogic"; + "DifferentialEvolution" = dontDistribute super."DifferentialEvolution"; + "Digit" = dontDistribute super."Digit"; + "DigitalOcean" = dontDistribute super."DigitalOcean"; + "DimensionalHash" = dontDistribute super."DimensionalHash"; + "DirectSound" = dontDistribute super."DirectSound"; + "DisTract" = dontDistribute super."DisTract"; + "DiscussionSupportSystem" = dontDistribute super."DiscussionSupportSystem"; + "Dish" = dontDistribute super."Dish"; + "Dist" = dontDistribute super."Dist"; + "DistanceTransform" = dontDistribute super."DistanceTransform"; + "DistanceUnits" = dontDistribute super."DistanceUnits"; + "DnaProteinAlignment" = dontDistribute super."DnaProteinAlignment"; + "DocTest" = dontDistribute super."DocTest"; + "Docs" = dontDistribute super."Docs"; + "DrHylo" = dontDistribute super."DrHylo"; + "DrIFT" = dontDistribute super."DrIFT"; + "DrIFT-cabalized" = dontDistribute super."DrIFT-cabalized"; + "Dung" = dontDistribute super."Dung"; + "Dust" = dontDistribute super."Dust"; + "Dust-crypto" = dontDistribute super."Dust-crypto"; + "Dust-tools" = dontDistribute super."Dust-tools"; + "Dust-tools-pcap" = dontDistribute super."Dust-tools-pcap"; + "DynamicTimeWarp" = dontDistribute super."DynamicTimeWarp"; + "DysFRP" = dontDistribute super."DysFRP"; + "DysFRP-Cairo" = dontDistribute super."DysFRP-Cairo"; + "DysFRP-Craftwerk" = dontDistribute super."DysFRP-Craftwerk"; + "EEConfig" = dontDistribute super."EEConfig"; + "EdisonAPI" = dontDistribute super."EdisonAPI"; + "EdisonCore" = dontDistribute super."EdisonCore"; + "EditTimeReport" = dontDistribute super."EditTimeReport"; + "EitherT" = dontDistribute super."EitherT"; + "Elm" = dontDistribute super."Elm"; + "Emping" = dontDistribute super."Emping"; + "Encode" = dontDistribute super."Encode"; + "EnumContainers" = dontDistribute super."EnumContainers"; + "EnumMap" = dontDistribute super."EnumMap"; + "Eq" = dontDistribute super."Eq"; + "EqualitySolver" = dontDistribute super."EqualitySolver"; + "EsounD" = dontDistribute super."EsounD"; + "EstProgress" = dontDistribute super."EstProgress"; + "EtaMOO" = dontDistribute super."EtaMOO"; + "Etage" = dontDistribute super."Etage"; + "Etage-Graph" = dontDistribute super."Etage-Graph"; + "Eternal10Seconds" = dontDistribute super."Eternal10Seconds"; + "Etherbunny" = dontDistribute super."Etherbunny"; + "EuroIT" = dontDistribute super."EuroIT"; + "Euterpea" = dontDistribute super."Euterpea"; + "EventSocket" = dontDistribute super."EventSocket"; + "Extra" = dontDistribute super."Extra"; + "FComp" = dontDistribute super."FComp"; + "FM-SBLEX" = dontDistribute super."FM-SBLEX"; + "FModExRaw" = dontDistribute super."FModExRaw"; + "FPretty" = dontDistribute super."FPretty"; + "FTGL" = dontDistribute super."FTGL"; + "FTGL-bytestring" = dontDistribute super."FTGL-bytestring"; + "FTPLine" = dontDistribute super."FTPLine"; + "Facts" = dontDistribute super."Facts"; + "FailureT" = dontDistribute super."FailureT"; + "FastxPipe" = dontDistribute super."FastxPipe"; + "FermatsLastMargin" = dontDistribute super."FermatsLastMargin"; + "FerryCore" = dontDistribute super."FerryCore"; + "Feval" = dontDistribute super."Feval"; + "FieldTrip" = dontDistribute super."FieldTrip"; + "FileManip" = dontDistribute super."FileManip"; + "FileManipCompat" = dontDistribute super."FileManipCompat"; + "FilePather" = dontDistribute super."FilePather"; + "FileSystem" = dontDistribute super."FileSystem"; + "Finance-Quote-Yahoo" = dontDistribute super."Finance-Quote-Yahoo"; + "Finance-Treasury" = dontDistribute super."Finance-Treasury"; + "FiniteMap" = dontDistribute super."FiniteMap"; + "FirstOrderTheory" = dontDistribute super."FirstOrderTheory"; + "FixedPoint-simple" = dontDistribute super."FixedPoint-simple"; + "Flippi" = dontDistribute super."Flippi"; + "Focus" = dontDistribute super."Focus"; + "Folly" = dontDistribute super."Folly"; + "ForSyDe" = dontDistribute super."ForSyDe"; + "ForkableT" = dontDistribute super."ForkableT"; + "FormalGrammars" = dontDistribute super."FormalGrammars"; + "Foster" = dontDistribute super."Foster"; + "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; + "Fractaler" = dontDistribute super."Fractaler"; + "Frank" = dontDistribute super."Frank"; + "FreeTypeGL" = dontDistribute super."FreeTypeGL"; + "FunGEn" = dontDistribute super."FunGEn"; + "Fungi" = dontDistribute super."Fungi"; + "GA" = dontDistribute super."GA"; + "GGg" = dontDistribute super."GGg"; + "GHood" = dontDistribute super."GHood"; + "GLFW" = dontDistribute super."GLFW"; + "GLFW-OGL" = dontDistribute super."GLFW-OGL"; + "GLFW-b-demo" = dontDistribute super."GLFW-b-demo"; + "GLFW-task" = dontDistribute super."GLFW-task"; + "GLHUI" = dontDistribute super."GLHUI"; + "GLM" = dontDistribute super."GLM"; + "GLMatrix" = dontDistribute super."GLMatrix"; + "GLUtil" = dontDistribute super."GLUtil"; + "GPX" = dontDistribute super."GPX"; + "GPipe-Collada" = dontDistribute super."GPipe-Collada"; + "GPipe-Examples" = dontDistribute super."GPipe-Examples"; + "GPipe-TextureLoad" = dontDistribute super."GPipe-TextureLoad"; + "GTALib" = dontDistribute super."GTALib"; + "Gamgine" = dontDistribute super."Gamgine"; + "Ganymede" = dontDistribute super."Ganymede"; + "GaussQuadIntegration" = dontDistribute super."GaussQuadIntegration"; + "GeBoP" = dontDistribute super."GeBoP"; + "GenI" = dontDistribute super."GenI"; + "GenSmsPdu" = dontDistribute super."GenSmsPdu"; + "GeneralTicTacToe" = dontDistribute super."GeneralTicTacToe"; + "GenussFold" = dontDistribute super."GenussFold"; + "GeoIp" = dontDistribute super."GeoIp"; + "GeocoderOpenCage" = dontDistribute super."GeocoderOpenCage"; + "Geodetic" = dontDistribute super."Geodetic"; + "GeomPredicates" = dontDistribute super."GeomPredicates"; + "GeomPredicates-SSE" = dontDistribute super."GeomPredicates-SSE"; + "GiST" = dontDistribute super."GiST"; + "Gifcurry" = dontDistribute super."Gifcurry"; + "GiveYouAHead" = dontDistribute super."GiveYouAHead"; + "GlomeTrace" = dontDistribute super."GlomeTrace"; + "GlomeVec" = dontDistribute super."GlomeVec"; + "GlomeView" = dontDistribute super."GlomeView"; + "GoogleChart" = dontDistribute super."GoogleChart"; + "GoogleDirections" = dontDistribute super."GoogleDirections"; + "GoogleSB" = dontDistribute super."GoogleSB"; + "GoogleSuggest" = dontDistribute super."GoogleSuggest"; + "GoogleTranslate" = dontDistribute super."GoogleTranslate"; + "GotoT-transformers" = dontDistribute super."GotoT-transformers"; + "GrammarProducts" = dontDistribute super."GrammarProducts"; + "Graph500" = dontDistribute super."Graph500"; + "GraphHammer" = dontDistribute super."GraphHammer"; + "GraphHammer-examples" = dontDistribute super."GraphHammer-examples"; + "Graphalyze" = dontDistribute super."Graphalyze"; + "Grempa" = dontDistribute super."Grempa"; + "GroteTrap" = dontDistribute super."GroteTrap"; + "Grow" = dontDistribute super."Grow"; + "GrowlNotify" = dontDistribute super."GrowlNotify"; + "Gtk2hsGenerics" = dontDistribute super."Gtk2hsGenerics"; + "GtkGLTV" = dontDistribute super."GtkGLTV"; + "GtkTV" = dontDistribute super."GtkTV"; + "GuiHaskell" = dontDistribute super."GuiHaskell"; + "GuiTV" = dontDistribute super."GuiTV"; + "HARM" = dontDistribute super."HARM"; + "HAppS-Data" = dontDistribute super."HAppS-Data"; + "HAppS-IxSet" = dontDistribute super."HAppS-IxSet"; + "HAppS-Server" = dontDistribute super."HAppS-Server"; + "HAppS-State" = dontDistribute super."HAppS-State"; + "HAppS-Util" = dontDistribute super."HAppS-Util"; + "HAppSHelpers" = dontDistribute super."HAppSHelpers"; + "HCL" = dontDistribute super."HCL"; + "HCard" = dontDistribute super."HCard"; + "HDBC-mysql" = dontDistribute super."HDBC-mysql"; + "HDBC-odbc" = dontDistribute super."HDBC-odbc"; + "HDBC-postgresql-hstore" = dontDistribute super."HDBC-postgresql-hstore"; + "HDBC-session" = dontDistribute super."HDBC-session"; + "HDRUtils" = dontDistribute super."HDRUtils"; + "HERA" = dontDistribute super."HERA"; + "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; + "HFuse" = dontDistribute super."HFuse"; + "HGL" = dontDistribute super."HGL"; + "HGamer3D" = dontDistribute super."HGamer3D"; + "HGamer3D-API" = dontDistribute super."HGamer3D-API"; + "HGamer3D-Audio" = dontDistribute super."HGamer3D-Audio"; + "HGamer3D-Bullet-Binding" = dontDistribute super."HGamer3D-Bullet-Binding"; + "HGamer3D-CAudio-Binding" = dontDistribute super."HGamer3D-CAudio-Binding"; + "HGamer3D-CEGUI-Binding" = dontDistribute super."HGamer3D-CEGUI-Binding"; + "HGamer3D-Common" = dontDistribute super."HGamer3D-Common"; + "HGamer3D-Data" = dontDistribute super."HGamer3D-Data"; + "HGamer3D-Enet-Binding" = dontDistribute super."HGamer3D-Enet-Binding"; + "HGamer3D-GUI" = dontDistribute super."HGamer3D-GUI"; + "HGamer3D-Graphics3D" = dontDistribute super."HGamer3D-Graphics3D"; + "HGamer3D-InputSystem" = dontDistribute super."HGamer3D-InputSystem"; + "HGamer3D-Network" = dontDistribute super."HGamer3D-Network"; + "HGamer3D-OIS-Binding" = dontDistribute super."HGamer3D-OIS-Binding"; + "HGamer3D-Ogre-Binding" = dontDistribute super."HGamer3D-Ogre-Binding"; + "HGamer3D-SDL2-Binding" = dontDistribute super."HGamer3D-SDL2-Binding"; + "HGamer3D-SFML-Binding" = dontDistribute super."HGamer3D-SFML-Binding"; + "HGamer3D-WinEvent" = dontDistribute super."HGamer3D-WinEvent"; + "HGamer3D-Wire" = dontDistribute super."HGamer3D-Wire"; + "HGraphStorage" = dontDistribute super."HGraphStorage"; + "HHDL" = dontDistribute super."HHDL"; + "HJScript" = dontDistribute super."HJScript"; + "HJVM" = dontDistribute super."HJVM"; + "HJavaScript" = dontDistribute super."HJavaScript"; + "HLearn-algebra" = dontDistribute super."HLearn-algebra"; + "HLearn-approximation" = dontDistribute super."HLearn-approximation"; + "HLearn-classification" = dontDistribute super."HLearn-classification"; + "HLearn-datastructures" = dontDistribute super."HLearn-datastructures"; + "HLearn-distributions" = dontDistribute super."HLearn-distributions"; + "HListPP" = dontDistribute super."HListPP"; + "HLogger" = dontDistribute super."HLogger"; + "HMM" = dontDistribute super."HMM"; + "HMap" = dontDistribute super."HMap"; + "HNM" = dontDistribute super."HNM"; + "HODE" = dontDistribute super."HODE"; + "HOpenCV" = dontDistribute super."HOpenCV"; + "HPath" = dontDistribute super."HPath"; + "HPi" = dontDistribute super."HPi"; + "HPlot" = dontDistribute super."HPlot"; + "HPong" = dontDistribute super."HPong"; + "HROOT" = dontDistribute super."HROOT"; + "HROOT-core" = dontDistribute super."HROOT-core"; + "HROOT-graf" = dontDistribute super."HROOT-graf"; + "HROOT-hist" = dontDistribute super."HROOT-hist"; + "HROOT-io" = dontDistribute super."HROOT-io"; + "HROOT-math" = dontDistribute super."HROOT-math"; + "HRay" = dontDistribute super."HRay"; + "HSFFIG" = dontDistribute super."HSFFIG"; + "HSGEP" = dontDistribute super."HSGEP"; + "HSH" = dontDistribute super."HSH"; + "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSlippyMap" = dontDistribute super."HSlippyMap"; + "HSmarty" = dontDistribute super."HSmarty"; + "HSoundFile" = dontDistribute super."HSoundFile"; + "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers"; + "HSvm" = dontDistribute super."HSvm"; + "HTTP-Simple" = dontDistribute super."HTTP-Simple"; + "HTab" = dontDistribute super."HTab"; + "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit-Diff" = dontDistribute super."HUnit-Diff"; + "HUnit-Plus" = dontDistribute super."HUnit-Plus"; + "HUnit-approx" = dontDistribute super."HUnit-approx"; + "HXMPP" = dontDistribute super."HXMPP"; + "HXQ" = dontDistribute super."HXQ"; + "HaLeX" = dontDistribute super."HaLeX"; + "HaMinitel" = dontDistribute super."HaMinitel"; + "HaPy" = dontDistribute super."HaPy"; + "HaTeX-meta" = dontDistribute super."HaTeX-meta"; + "HaTeX-qq" = dontDistribute super."HaTeX-qq"; + "HaVSA" = dontDistribute super."HaVSA"; + "Hach" = dontDistribute super."Hach"; + "HackMail" = dontDistribute super."HackMail"; + "Haggressive" = dontDistribute super."Haggressive"; + "HandlerSocketClient" = dontDistribute super."HandlerSocketClient"; + "Hangman" = dontDistribute super."Hangman"; + "HarmTrace" = dontDistribute super."HarmTrace"; + "HarmTrace-Base" = dontDistribute super."HarmTrace-Base"; + "HasGP" = dontDistribute super."HasGP"; + "Haschoo" = dontDistribute super."Haschoo"; + "Hashell" = dontDistribute super."Hashell"; + "HaskRel" = dontDistribute super."HaskRel"; + "HaskellForMaths" = dontDistribute super."HaskellForMaths"; + "HaskellLM" = dontDistribute super."HaskellLM"; + "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellTorrent" = dontDistribute super."HaskellTorrent"; + "HaskellTutorials" = dontDistribute super."HaskellTutorials"; + "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; + "Hawk" = dontDistribute super."Hawk"; + "Hayoo" = dontDistribute super."Hayoo"; + "Hclip" = dontDistribute super."Hclip"; + "Hedi" = dontDistribute super."Hedi"; + "HerbiePlugin" = dontDistribute super."HerbiePlugin"; + "Hermes" = dontDistribute super."Hermes"; + "Hieroglyph" = dontDistribute super."Hieroglyph"; + "HiggsSet" = dontDistribute super."HiggsSet"; + "Hipmunk" = dontDistribute super."Hipmunk"; + "HipmunkPlayground" = dontDistribute super."HipmunkPlayground"; + "Hish" = dontDistribute super."Hish"; + "Histogram" = dontDistribute super."Histogram"; + "Hmpf" = dontDistribute super."Hmpf"; + "Hoed" = dontDistribute super."Hoed"; + "HoleyMonoid" = dontDistribute super."HoleyMonoid"; + "Holumbus-Distribution" = dontDistribute super."Holumbus-Distribution"; + "Holumbus-MapReduce" = dontDistribute super."Holumbus-MapReduce"; + "Holumbus-Searchengine" = dontDistribute super."Holumbus-Searchengine"; + "Holumbus-Storage" = dontDistribute super."Holumbus-Storage"; + "Homology" = dontDistribute super."Homology"; + "HongoDB" = dontDistribute super."HongoDB"; + "HostAndPort" = dontDistribute super."HostAndPort"; + "Hricket" = dontDistribute super."Hricket"; + "Hs2lib" = dontDistribute super."Hs2lib"; + "HsASA" = dontDistribute super."HsASA"; + "HsHaruPDF" = dontDistribute super."HsHaruPDF"; + "HsHyperEstraier" = dontDistribute super."HsHyperEstraier"; + "HsJudy" = dontDistribute super."HsJudy"; + "HsOpenSSL-x509-system" = dontDistribute super."HsOpenSSL-x509-system"; + "HsParrot" = dontDistribute super."HsParrot"; + "HsPerl5" = dontDistribute super."HsPerl5"; + "HsSVN" = dontDistribute super."HsSVN"; + "HsTools" = dontDistribute super."HsTools"; + "Hsed" = dontDistribute super."Hsed"; + "Hsmtlib" = dontDistribute super."Hsmtlib"; + "HueAPI" = dontDistribute super."HueAPI"; + "HulkImport" = dontDistribute super."HulkImport"; + "Hungarian-Munkres" = dontDistribute super."Hungarian-Munkres"; + "IDynamic" = dontDistribute super."IDynamic"; + "IFS" = dontDistribute super."IFS"; + "INblobs" = dontDistribute super."INblobs"; + "IOR" = dontDistribute super."IOR"; + "IORefCAS" = dontDistribute super."IORefCAS"; + "IOSpec" = dontDistribute super."IOSpec"; + "IcoGrid" = dontDistribute super."IcoGrid"; + "Imlib" = dontDistribute super."Imlib"; + "ImperativeHaskell" = dontDistribute super."ImperativeHaskell"; + "IndentParser" = dontDistribute super."IndentParser"; + "IndexedList" = dontDistribute super."IndexedList"; + "InfixApplicative" = dontDistribute super."InfixApplicative"; + "Interpolation" = dontDistribute super."Interpolation"; + "Interpolation-maxs" = dontDistribute super."Interpolation-maxs"; + "Irc" = dontDistribute super."Irc"; + "IrrHaskell" = dontDistribute super."IrrHaskell"; + "IsNull" = dontDistribute super."IsNull"; + "JSON-Combinator" = dontDistribute super."JSON-Combinator"; + "JSON-Combinator-Examples" = dontDistribute super."JSON-Combinator-Examples"; + "JSONb" = dontDistribute super."JSONb"; + "JYU-Utils" = dontDistribute super."JYU-Utils"; + "JackMiniMix" = dontDistribute super."JackMiniMix"; + "Javasf" = dontDistribute super."Javasf"; + "Javav" = dontDistribute super."Javav"; + "JsContracts" = dontDistribute super."JsContracts"; + "JsonGrammar" = dontDistribute super."JsonGrammar"; + "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JunkDB" = dontDistribute super."JunkDB"; + "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; + "JunkDB-driver-hashtables" = dontDistribute super."JunkDB-driver-hashtables"; + "JustParse" = dontDistribute super."JustParse"; + "KMP" = dontDistribute super."KMP"; + "KSP" = dontDistribute super."KSP"; + "Kalman" = dontDistribute super."Kalman"; + "KdTree" = dontDistribute super."KdTree"; + "Ketchup" = dontDistribute super."Ketchup"; + "KiCS" = dontDistribute super."KiCS"; + "KiCS-debugger" = dontDistribute super."KiCS-debugger"; + "KiCS-prophecy" = dontDistribute super."KiCS-prophecy"; + "Kleislify" = dontDistribute super."Kleislify"; + "Konf" = dontDistribute super."Konf"; + "Kriens" = dontDistribute super."Kriens"; + "KyotoCabinet" = dontDistribute super."KyotoCabinet"; + "L-seed" = dontDistribute super."L-seed"; + "LDAP" = dontDistribute super."LDAP"; + "LRU" = dontDistribute super."LRU"; + "LTree" = dontDistribute super."LTree"; + "LambdaCalculator" = dontDistribute super."LambdaCalculator"; + "LambdaHack" = dontDistribute super."LambdaHack"; + "LambdaINet" = dontDistribute super."LambdaINet"; + "LambdaNet" = dontDistribute super."LambdaNet"; + "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; + "LambdaShell" = dontDistribute super."LambdaShell"; + "Lambdajudge" = dontDistribute super."Lambdajudge"; + "Lambdaya" = dontDistribute super."Lambdaya"; + "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; + "Lastik" = dontDistribute super."Lastik"; + "Lattices" = dontDistribute super."Lattices"; + "LazyVault" = dontDistribute super."LazyVault"; + "Level0" = dontDistribute super."Level0"; + "LibClang" = dontDistribute super."LibClang"; + "Limit" = dontDistribute super."Limit"; + "LinearSplit" = dontDistribute super."LinearSplit"; + "LinguisticsTypes" = dontDistribute super."LinguisticsTypes"; + "LinkChecker" = dontDistribute super."LinkChecker"; + "ListTree" = dontDistribute super."ListTree"; + "ListWriter" = dontDistribute super."ListWriter"; + "ListZipper" = dontDistribute super."ListZipper"; + "Logic" = dontDistribute super."Logic"; + "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees"; + "LogicGrowsOnTrees-MPI" = dontDistribute super."LogicGrowsOnTrees-MPI"; + "LogicGrowsOnTrees-network" = dontDistribute super."LogicGrowsOnTrees-network"; + "LogicGrowsOnTrees-processes" = dontDistribute super."LogicGrowsOnTrees-processes"; + "LslPlus" = dontDistribute super."LslPlus"; + "Lucu" = dontDistribute super."Lucu"; + "MC-Fold-DP" = dontDistribute super."MC-Fold-DP"; + "MHask" = dontDistribute super."MHask"; + "MSQueue" = dontDistribute super."MSQueue"; + "MTGBuilder" = dontDistribute super."MTGBuilder"; + "MagicHaskeller" = dontDistribute super."MagicHaskeller"; + "MailchimpSimple" = dontDistribute super."MailchimpSimple"; + "MaybeT" = dontDistribute super."MaybeT"; + "MaybeT-monads-tf" = dontDistribute super."MaybeT-monads-tf"; + "MaybeT-transformers" = dontDistribute super."MaybeT-transformers"; + "MazesOfMonad" = dontDistribute super."MazesOfMonad"; + "MeanShift" = dontDistribute super."MeanShift"; + "Measure" = dontDistribute super."Measure"; + "MetaHDBC" = dontDistribute super."MetaHDBC"; + "MetaObject" = dontDistribute super."MetaObject"; + "Metrics" = dontDistribute super."Metrics"; + "Mhailist" = dontDistribute super."Mhailist"; + "Michelangelo" = dontDistribute super."Michelangelo"; + "MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator"; + "MiniAgda" = dontDistribute super."MiniAgda"; + "MissingK" = dontDistribute super."MissingK"; + "MissingM" = dontDistribute super."MissingM"; + "MissingPy" = dontDistribute super."MissingPy"; + "Modulo" = dontDistribute super."Modulo"; + "Moe" = dontDistribute super."Moe"; + "MoeDict" = dontDistribute super."MoeDict"; + "MonadCatchIO-mtl" = dontDistribute super."MonadCatchIO-mtl"; + "MonadCatchIO-mtl-foreign" = dontDistribute super."MonadCatchIO-mtl-foreign"; + "MonadCatchIO-transformers-foreign" = dontDistribute super."MonadCatchIO-transformers-foreign"; + "MonadCompose" = dontDistribute super."MonadCompose"; + "MonadLab" = dontDistribute super."MonadLab"; + "MonadRandomLazy" = dontDistribute super."MonadRandomLazy"; + "MonadStack" = dontDistribute super."MonadStack"; + "Monadius" = dontDistribute super."Monadius"; + "Monaris" = dontDistribute super."Monaris"; + "Monatron" = dontDistribute super."Monatron"; + "Monatron-IO" = dontDistribute super."Monatron-IO"; + "Monocle" = dontDistribute super."Monocle"; + "MorseCode" = dontDistribute super."MorseCode"; + "MuCheck" = dontDistribute super."MuCheck"; + "MuCheck-HUnit" = dontDistribute super."MuCheck-HUnit"; + "MuCheck-Hspec" = dontDistribute super."MuCheck-Hspec"; + "MuCheck-QuickCheck" = dontDistribute super."MuCheck-QuickCheck"; + "MuCheck-SmallCheck" = dontDistribute super."MuCheck-SmallCheck"; + "Munkres" = dontDistribute super."Munkres"; + "Munkres-simple" = dontDistribute super."Munkres-simple"; + "MusicBrainz-libdiscid" = dontDistribute super."MusicBrainz-libdiscid"; + "MyPrimes" = dontDistribute super."MyPrimes"; + "NGrams" = dontDistribute super."NGrams"; + "NTRU" = dontDistribute super."NTRU"; + "NXT" = dontDistribute super."NXT"; + "NXTDSL" = dontDistribute super."NXTDSL"; + "NanoProlog" = dontDistribute super."NanoProlog"; + "NaturalLanguageAlphabets" = dontDistribute super."NaturalLanguageAlphabets"; + "NaturalSort" = dontDistribute super."NaturalSort"; + "NearContextAlgebra" = dontDistribute super."NearContextAlgebra"; + "Neks" = dontDistribute super."Neks"; + "NestedFunctor" = dontDistribute super."NestedFunctor"; + "NestedSampling" = dontDistribute super."NestedSampling"; + "NetSNMP" = dontDistribute super."NetSNMP"; + "NewBinary" = dontDistribute super."NewBinary"; + "Ninjas" = dontDistribute super."Ninjas"; + "NoSlow" = dontDistribute super."NoSlow"; + "NoTrace" = dontDistribute super."NoTrace"; + "Noise" = dontDistribute super."Noise"; + "Nomyx" = dontDistribute super."Nomyx"; + "Nomyx-Core" = dontDistribute super."Nomyx-Core"; + "Nomyx-Language" = dontDistribute super."Nomyx-Language"; + "Nomyx-Rules" = dontDistribute super."Nomyx-Rules"; + "Nomyx-Web" = dontDistribute super."Nomyx-Web"; + "NonEmpty" = dontDistribute super."NonEmpty"; + "NonEmptyList" = dontDistribute super."NonEmptyList"; + "NumLazyByteString" = dontDistribute super."NumLazyByteString"; + "NumberSieves" = dontDistribute super."NumberSieves"; + "Numbers" = dontDistribute super."Numbers"; + "Nussinov78" = dontDistribute super."Nussinov78"; + "Nutri" = dontDistribute super."Nutri"; + "OGL" = dontDistribute super."OGL"; + "OSM" = dontDistribute super."OSM"; + "OTP" = dontDistribute super."OTP"; + "Object" = dontDistribute super."Object"; + "ObjectIO" = dontDistribute super."ObjectIO"; + "Obsidian" = dontDistribute super."Obsidian"; + "OddWord" = dontDistribute super."OddWord"; + "Omega" = dontDistribute super."Omega"; + "OneTuple" = dontDistribute super."OneTuple"; + "OpenAFP" = dontDistribute super."OpenAFP"; + "OpenAFP-Utils" = dontDistribute super."OpenAFP-Utils"; + "OpenAL" = dontDistribute super."OpenAL"; + "OpenCL" = dontDistribute super."OpenCL"; + "OpenCLRaw" = dontDistribute super."OpenCLRaw"; + "OpenCLWrappers" = dontDistribute super."OpenCLWrappers"; + "OpenGLCheck" = dontDistribute super."OpenGLCheck"; + "OpenGLRaw21" = dontDistribute super."OpenGLRaw21"; + "OpenSCAD" = dontDistribute super."OpenSCAD"; + "OpenVG" = dontDistribute super."OpenVG"; + "OpenVGRaw" = dontDistribute super."OpenVGRaw"; + "Operads" = dontDistribute super."Operads"; + "OptDir" = dontDistribute super."OptDir"; + "OrPatterns" = dontDistribute super."OrPatterns"; + "OrchestrateDB" = dontDistribute super."OrchestrateDB"; + "OrderedBits" = dontDistribute super."OrderedBits"; + "Ordinals" = dontDistribute super."Ordinals"; + "PArrows" = dontDistribute super."PArrows"; + "PBKDF2" = dontDistribute super."PBKDF2"; + "PCLT" = dontDistribute super."PCLT"; + "PCLT-DB" = dontDistribute super."PCLT-DB"; + "PDBtools" = dontDistribute super."PDBtools"; + "PTQ" = dontDistribute super."PTQ"; + "PUH-Project" = dontDistribute super."PUH-Project"; + "PageIO" = dontDistribute super."PageIO"; + "Paillier" = dontDistribute super."Paillier"; + "PandocAgda" = dontDistribute super."PandocAgda"; + "Paraiso" = dontDistribute super."Paraiso"; + "Parry" = dontDistribute super."Parry"; + "ParsecTools" = dontDistribute super."ParsecTools"; + "ParserFunction" = dontDistribute super."ParserFunction"; + "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; + "PasswordGenerator" = dontDistribute super."PasswordGenerator"; + "PastePipe" = dontDistribute super."PastePipe"; + "Pathfinder" = dontDistribute super."Pathfinder"; + "Peano" = dontDistribute super."Peano"; + "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; + "PerfectHash" = dontDistribute super."PerfectHash"; + "PermuteEffects" = dontDistribute super."PermuteEffects"; + "Phsu" = dontDistribute super."Phsu"; + "Pipe" = dontDistribute super."Pipe"; + "Piso" = dontDistribute super."Piso"; + "PlayHangmanGame" = dontDistribute super."PlayHangmanGame"; + "PlayingCards" = dontDistribute super."PlayingCards"; + "Plot-ho-matic" = dontDistribute super."Plot-ho-matic"; + "PlslTools" = dontDistribute super."PlslTools"; + "Plural" = dontDistribute super."Plural"; + "Pollutocracy" = dontDistribute super."Pollutocracy"; + "PortFusion" = dontDistribute super."PortFusion"; + "PortMidi" = dontDistribute super."PortMidi"; + "PostgreSQL" = dontDistribute super."PostgreSQL"; + "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "Printf-TH" = dontDistribute super."Printf-TH"; + "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; + "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; + "PropLogic" = dontDistribute super."PropLogic"; + "Proper" = dontDistribute super."Proper"; + "ProxN" = dontDistribute super."ProxN"; + "Pugs" = dontDistribute super."Pugs"; + "Pup-Events" = dontDistribute super."Pup-Events"; + "Pup-Events-Client" = dontDistribute super."Pup-Events-Client"; + "Pup-Events-Demo" = dontDistribute super."Pup-Events-Demo"; + "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; + "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; + "QIO" = dontDistribute super."QIO"; + "QuadEdge" = dontDistribute super."QuadEdge"; + "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; + "QuickAnnotate" = dontDistribute super."QuickAnnotate"; + "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; + "QuickCheck-safe" = dontDistribute super."QuickCheck-safe"; + "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"; + "Raincat" = dontDistribute super."Raincat"; + "Random123" = dontDistribute super."Random123"; + "RandomDotOrg" = dontDistribute super."RandomDotOrg"; + "Randometer" = dontDistribute super."Randometer"; + "Range" = dontDistribute super."Range"; + "Ranged-sets" = dontDistribute super."Ranged-sets"; + "Ranka" = dontDistribute super."Ranka"; + "Rasenschach" = dontDistribute super."Rasenschach"; + "Redmine" = dontDistribute super."Redmine"; + "Ref" = dontDistribute super."Ref"; + "Referees" = dontDistribute super."Referees"; + "RepLib" = dontDistribute super."RepLib"; + "ReplicateEffects" = dontDistribute super."ReplicateEffects"; + "ReviewBoard" = dontDistribute super."ReviewBoard"; + "RichConditional" = dontDistribute super."RichConditional"; + "RollingDirectory" = dontDistribute super."RollingDirectory"; + "RoyalMonad" = dontDistribute super."RoyalMonad"; + "RxHaskell" = dontDistribute super."RxHaskell"; + "SBench" = dontDistribute super."SBench"; + "SConfig" = dontDistribute super."SConfig"; + "SDL" = dontDistribute super."SDL"; + "SDL-gfx" = dontDistribute super."SDL-gfx"; + "SDL-image" = dontDistribute super."SDL-image"; + "SDL-mixer" = dontDistribute super."SDL-mixer"; + "SDL-mpeg" = dontDistribute super."SDL-mpeg"; + "SDL-ttf" = dontDistribute super."SDL-ttf"; + "SDL2-ttf" = dontDistribute super."SDL2-ttf"; + "SFML" = dontDistribute super."SFML"; + "SFML-control" = dontDistribute super."SFML-control"; + "SFont" = dontDistribute super."SFont"; + "SG" = dontDistribute super."SG"; + "SGdemo" = dontDistribute super."SGdemo"; + "SHA2" = dontDistribute super."SHA2"; + "SMTPClient" = dontDistribute super."SMTPClient"; + "SNet" = dontDistribute super."SNet"; + "SQLDeps" = dontDistribute super."SQLDeps"; + "STL" = dontDistribute super."STL"; + "SVG2Q" = dontDistribute super."SVG2Q"; + "SVGFonts" = dontDistribute super."SVGFonts"; + "SVGPath" = dontDistribute super."SVGPath"; + "SWMMoutGetMB" = dontDistribute super."SWMMoutGetMB"; + "SableCC2Hs" = dontDistribute super."SableCC2Hs"; + "Safe" = dontDistribute super."Safe"; + "Salsa" = dontDistribute super."Salsa"; + "Saturnin" = dontDistribute super."Saturnin"; + "SciFlow" = dontDistribute super."SciFlow"; + "ScratchFs" = dontDistribute super."ScratchFs"; + "Scurry" = dontDistribute super."Scurry"; + "Semantique" = dontDistribute super."Semantique"; + "Semigroup" = dontDistribute super."Semigroup"; + "SeqAlign" = dontDistribute super."SeqAlign"; + "SessionLogger" = dontDistribute super."SessionLogger"; + "ShellCheck" = dontDistribute super."ShellCheck"; + "Shellac" = dontDistribute super."Shellac"; + "Shellac-compatline" = dontDistribute super."Shellac-compatline"; + "Shellac-editline" = dontDistribute super."Shellac-editline"; + "Shellac-haskeline" = dontDistribute super."Shellac-haskeline"; + "Shellac-readline" = dontDistribute super."Shellac-readline"; + "ShowF" = dontDistribute super."ShowF"; + "Shrub" = dontDistribute super."Shrub"; + "Shu-thing" = dontDistribute super."Shu-thing"; + "SimpleAES" = dontDistribute super."SimpleAES"; + "SimpleEA" = dontDistribute super."SimpleEA"; + "SimpleGL" = dontDistribute super."SimpleGL"; + "SimpleH" = dontDistribute super."SimpleH"; + "SimpleLog" = dontDistribute super."SimpleLog"; + "SizeCompare" = dontDistribute super."SizeCompare"; + "Slides" = dontDistribute super."Slides"; + "Smooth" = dontDistribute super."Smooth"; + "SmtLib" = dontDistribute super."SmtLib"; + "Snusmumrik" = dontDistribute super."Snusmumrik"; + "SoOSiM" = dontDistribute super."SoOSiM"; + "SoccerFun" = dontDistribute super."SoccerFun"; + "SoccerFunGL" = dontDistribute super."SoccerFunGL"; + "Sonnex" = dontDistribute super."Sonnex"; + "SourceGraph" = dontDistribute super."SourceGraph"; + "Southpaw" = dontDistribute super."Southpaw"; + "SpaceInvaders" = dontDistribute super."SpaceInvaders"; + "SpacePrivateers" = dontDistribute super."SpacePrivateers"; + "SpinCounter" = dontDistribute super."SpinCounter"; + "Spock-auth" = dontDistribute super."Spock-auth"; + "SpreadsheetML" = dontDistribute super."SpreadsheetML"; + "Sprig" = dontDistribute super."Sprig"; + "Stasis" = dontDistribute super."Stasis"; + "StateVar-transformer" = dontDistribute super."StateVar-transformer"; + "StatisticalMethods" = dontDistribute super."StatisticalMethods"; + "Stomp" = dontDistribute super."Stomp"; + "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib"; + "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell"; + "StrappedTemplates" = dontDistribute super."StrappedTemplates"; + "StrategyLib" = dontDistribute super."StrategyLib"; + "Stream" = dontDistribute super."Stream"; + "StrictBench" = dontDistribute super."StrictBench"; + "SuffixStructures" = dontDistribute super."SuffixStructures"; + "SybWidget" = dontDistribute super."SybWidget"; + "SyntaxMacros" = dontDistribute super."SyntaxMacros"; + "Sysmon" = dontDistribute super."Sysmon"; + "TBC" = dontDistribute super."TBC"; + "TBit" = dontDistribute super."TBit"; + "THEff" = dontDistribute super."THEff"; + "TTTAS" = dontDistribute super."TTTAS"; + "TV" = dontDistribute super."TV"; + "TYB" = dontDistribute super."TYB"; + "TableAlgebra" = dontDistribute super."TableAlgebra"; + "Tables" = dontDistribute super."Tables"; + "Tablify" = dontDistribute super."Tablify"; + "Tainted" = dontDistribute super."Tainted"; + "Takusen" = dontDistribute super."Takusen"; + "Tape" = dontDistribute super."Tape"; + "TeaHS" = dontDistribute super."TeaHS"; + "Tensor" = dontDistribute super."Tensor"; + "TernaryTrees" = dontDistribute super."TernaryTrees"; + "TestExplode" = dontDistribute super."TestExplode"; + "Theora" = dontDistribute super."Theora"; + "Thingie" = dontDistribute super."Thingie"; + "ThreadObjects" = dontDistribute super."ThreadObjects"; + "Thrift" = dontDistribute super."Thrift"; + "Tic-Tac-Toe" = dontDistribute super."Tic-Tac-Toe"; + "TicTacToe" = dontDistribute super."TicTacToe"; + "TigerHash" = dontDistribute super."TigerHash"; + "TimePiece" = dontDistribute super."TimePiece"; + "TinyLaunchbury" = dontDistribute super."TinyLaunchbury"; + "TinyURL" = dontDistribute super."TinyURL"; + "Titim" = dontDistribute super."Titim"; + "Top" = dontDistribute super."Top"; + "Tournament" = dontDistribute super."Tournament"; + "TraceUtils" = dontDistribute super."TraceUtils"; + "TransformersStepByStep" = dontDistribute super."TransformersStepByStep"; + "Transhare" = dontDistribute super."Transhare"; + "TreeCounter" = dontDistribute super."TreeCounter"; + "TreeStructures" = dontDistribute super."TreeStructures"; + "TreeT" = dontDistribute super."TreeT"; + "Treiber" = dontDistribute super."Treiber"; + "TrendGraph" = dontDistribute super."TrendGraph"; + "TrieMap" = dontDistribute super."TrieMap"; + "Twofish" = dontDistribute super."Twofish"; + "TypeClass" = dontDistribute super."TypeClass"; + "TypeCompose" = dontDistribute super."TypeCompose"; + "TypeIlluminator" = dontDistribute super."TypeIlluminator"; + "TypeNat" = dontDistribute super."TypeNat"; + "TypingTester" = dontDistribute super."TypingTester"; + "UISF" = dontDistribute super."UISF"; + "UMM" = dontDistribute super."UMM"; + "URLT" = dontDistribute super."URLT"; + "URLb" = dontDistribute super."URLb"; + "UTFTConverter" = dontDistribute super."UTFTConverter"; + "Unique" = dontDistribute super."Unique"; + "Unixutils-shadow" = dontDistribute super."Unixutils-shadow"; + "Updater" = dontDistribute super."Updater"; + "UrlDisp" = dontDistribute super."UrlDisp"; + "Useful" = dontDistribute super."Useful"; + "UtilityTM" = dontDistribute super."UtilityTM"; + "VKHS" = dontDistribute super."VKHS"; + "Validation" = dontDistribute super."Validation"; + "Vec" = dontDistribute super."Vec"; + "Vec-Boolean" = dontDistribute super."Vec-Boolean"; + "Vec-OpenGLRaw" = dontDistribute super."Vec-OpenGLRaw"; + "Vec-Transform" = dontDistribute super."Vec-Transform"; + "VecN" = dontDistribute super."VecN"; + "Verba" = dontDistribute super."Verba"; + "ViennaRNA-bindings" = dontDistribute super."ViennaRNA-bindings"; + "Vulkan" = dontDistribute super."Vulkan"; + "WAVE" = dontDistribute super."WAVE"; + "WL500gPControl" = dontDistribute super."WL500gPControl"; + "WL500gPLib" = dontDistribute super."WL500gPLib"; + "WMSigner" = dontDistribute super."WMSigner"; + "WURFL" = dontDistribute super."WURFL"; + "WXDiffCtrl" = dontDistribute super."WXDiffCtrl"; + "WashNGo" = dontDistribute super."WashNGo"; + "WaveFront" = dontDistribute super."WaveFront"; + "Weather" = dontDistribute super."Weather"; + "WebBits" = dontDistribute super."WebBits"; + "WebBits-Html" = dontDistribute super."WebBits-Html"; + "WebBits-multiplate" = dontDistribute super."WebBits-multiplate"; + "WebCont" = dontDistribute super."WebCont"; + "WeberLogic" = dontDistribute super."WeberLogic"; + "Webrexp" = dontDistribute super."Webrexp"; + "Wheb" = dontDistribute super."Wheb"; + "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; + "Win32-errors" = dontDistribute super."Win32-errors"; + "Win32-junction-point" = dontDistribute super."Win32-junction-point"; + "Win32-security" = dontDistribute super."Win32-security"; + "Win32-services" = dontDistribute super."Win32-services"; + "Win32-services-wrapper" = dontDistribute super."Win32-services-wrapper"; + "Wired" = dontDistribute super."Wired"; + "WordAlignment" = dontDistribute super."WordAlignment"; + "WordNet" = dontDistribute super."WordNet"; + "WordNet-ghc74" = dontDistribute super."WordNet-ghc74"; + "Wordlint" = dontDistribute super."Wordlint"; + "WxGeneric" = dontDistribute super."WxGeneric"; + "X11-extras" = dontDistribute super."X11-extras"; + "X11-rm" = dontDistribute super."X11-rm"; + "X11-xdamage" = dontDistribute super."X11-xdamage"; + "X11-xfixes" = dontDistribute super."X11-xfixes"; + "X11-xft" = dontDistribute super."X11-xft"; + "X11-xshape" = dontDistribute super."X11-xshape"; + "XAttr" = dontDistribute super."XAttr"; + "XInput" = dontDistribute super."XInput"; + "XMMS" = dontDistribute super."XMMS"; + "XMPP" = dontDistribute super."XMPP"; + "XSaiga" = dontDistribute super."XSaiga"; + "Xec" = dontDistribute super."Xec"; + "XmlHtmlWriter" = dontDistribute super."XmlHtmlWriter"; + "Xorshift128Plus" = dontDistribute super."Xorshift128Plus"; + "YACPong" = dontDistribute super."YACPong"; + "YFrob" = dontDistribute super."YFrob"; + "Yablog" = dontDistribute super."Yablog"; + "YamlReference" = dontDistribute super."YamlReference"; + "Yampa-core" = dontDistribute super."Yampa-core"; + "Yocto" = dontDistribute super."Yocto"; + "Yogurt" = dontDistribute super."Yogurt"; + "Yogurt-Standalone" = dontDistribute super."Yogurt-Standalone"; + "ZEBEDDE" = dontDistribute super."ZEBEDDE"; + "ZFS" = dontDistribute super."ZFS"; + "ZMachine" = dontDistribute super."ZMachine"; + "ZipFold" = dontDistribute super."ZipFold"; + "ZipperAG" = dontDistribute super."ZipperAG"; + "Zora" = dontDistribute super."Zora"; + "Zwaluw" = dontDistribute super."Zwaluw"; + "a50" = dontDistribute super."a50"; + "abacate" = dontDistribute super."abacate"; + "abc-puzzle" = dontDistribute super."abc-puzzle"; + "abcBridge" = dontDistribute super."abcBridge"; + "abcnotation" = dontDistribute super."abcnotation"; + "abeson" = dontDistribute super."abeson"; + "abstract-deque-tests" = dontDistribute super."abstract-deque-tests"; + "abstract-par-accelerate" = dontDistribute super."abstract-par-accelerate"; + "abt" = dontDistribute super."abt"; + "ac-machine" = dontDistribute super."ac-machine"; + "ac-machine-conduit" = dontDistribute super."ac-machine-conduit"; + "accelerate-arithmetic" = dontDistribute super."accelerate-arithmetic"; + "accelerate-cublas" = dontDistribute super."accelerate-cublas"; + "accelerate-cuda" = dontDistribute super."accelerate-cuda"; + "accelerate-cufft" = dontDistribute super."accelerate-cufft"; + "accelerate-examples" = dontDistribute super."accelerate-examples"; + "accelerate-fft" = dontDistribute super."accelerate-fft"; + "accelerate-fftw" = dontDistribute super."accelerate-fftw"; + "accelerate-fourier" = dontDistribute super."accelerate-fourier"; + "accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark"; + "accelerate-io" = dontDistribute super."accelerate-io"; + "accelerate-random" = dontDistribute super."accelerate-random"; + "accelerate-utility" = dontDistribute super."accelerate-utility"; + "accentuateus" = dontDistribute super."accentuateus"; + "access-time" = dontDistribute super."access-time"; + "acid-state-dist" = dontDistribute super."acid-state-dist"; + "acid-state-tls" = dontDistribute super."acid-state-tls"; + "acl2" = dontDistribute super."acl2"; + "acme-all-monad" = dontDistribute super."acme-all-monad"; + "acme-box" = dontDistribute super."acme-box"; + "acme-cadre" = dontDistribute super."acme-cadre"; + "acme-cofunctor" = dontDistribute super."acme-cofunctor"; + "acme-colosson" = dontDistribute super."acme-colosson"; + "acme-comonad" = dontDistribute super."acme-comonad"; + "acme-cutegirl" = dontDistribute super."acme-cutegirl"; + "acme-dont" = dontDistribute super."acme-dont"; + "acme-flipping-tables" = dontDistribute super."acme-flipping-tables"; + "acme-grawlix" = dontDistribute super."acme-grawlix"; + "acme-hq9plus" = dontDistribute super."acme-hq9plus"; + "acme-http" = dontDistribute super."acme-http"; + "acme-inator" = dontDistribute super."acme-inator"; + "acme-io" = dontDistribute super."acme-io"; + "acme-lolcat" = dontDistribute super."acme-lolcat"; + "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; + "acme-memorandom" = dontDistribute super."acme-memorandom"; + "acme-microwave" = dontDistribute super."acme-microwave"; + "acme-miscorder" = dontDistribute super."acme-miscorder"; + "acme-missiles" = dontDistribute super."acme-missiles"; + "acme-now" = dontDistribute super."acme-now"; + "acme-numbersystem" = dontDistribute super."acme-numbersystem"; + "acme-omitted" = dontDistribute super."acme-omitted"; + "acme-one" = dontDistribute super."acme-one"; + "acme-operators" = dontDistribute super."acme-operators"; + "acme-php" = dontDistribute super."acme-php"; + "acme-pointful-numbers" = dontDistribute super."acme-pointful-numbers"; + "acme-realworld" = dontDistribute super."acme-realworld"; + "acme-safe" = dontDistribute super."acme-safe"; + "acme-schoenfinkel" = dontDistribute super."acme-schoenfinkel"; + "acme-strfry" = dontDistribute super."acme-strfry"; + "acme-stringly-typed" = dontDistribute super."acme-stringly-typed"; + "acme-strtok" = dontDistribute super."acme-strtok"; + "acme-timemachine" = dontDistribute super."acme-timemachine"; + "acme-year" = dontDistribute super."acme-year"; + "acme-zero" = dontDistribute super."acme-zero"; + "activehs" = dontDistribute super."activehs"; + "activehs-base" = dontDistribute super."activehs-base"; + "activitystreams-aeson" = dontDistribute super."activitystreams-aeson"; + "actor" = dontDistribute super."actor"; + "adaptive-containers" = dontDistribute super."adaptive-containers"; + "adaptive-tuple" = dontDistribute super."adaptive-tuple"; + "adb" = dontDistribute super."adb"; + "adblock2privoxy" = dontDistribute super."adblock2privoxy"; + "addLicenseInfo" = dontDistribute super."addLicenseInfo"; + "adhoc-network" = dontDistribute super."adhoc-network"; + "adict" = dontDistribute super."adict"; + "adler32" = dontDistribute super."adler32"; + "adobe-swatch-exchange" = dontDistribute super."adobe-swatch-exchange"; + "adp-multi" = dontDistribute super."adp-multi"; + "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; + "aeson-applicative" = dontDistribute super."aeson-applicative"; + "aeson-bson" = dontDistribute super."aeson-bson"; + "aeson-diff" = dontDistribute super."aeson-diff"; + "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-lens" = dontDistribute super."aeson-lens"; + "aeson-native" = dontDistribute super."aeson-native"; + "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-schema" = dontDistribute super."aeson-schema"; + "aeson-serialize" = dontDistribute super."aeson-serialize"; + "aeson-smart" = dontDistribute super."aeson-smart"; + "aeson-streams" = dontDistribute super."aeson-streams"; + "aeson-t" = dontDistribute super."aeson-t"; + "aeson-toolkit" = dontDistribute super."aeson-toolkit"; + "aeson-value-parser" = dontDistribute super."aeson-value-parser"; + "aeson-yak" = dontDistribute super."aeson-yak"; + "affine-invariant-ensemble-mcmc" = dontDistribute super."affine-invariant-ensemble-mcmc"; + "afis" = dontDistribute super."afis"; + "afv" = dontDistribute super."afv"; + "agda-server" = dontDistribute super."agda-server"; + "agda-snippets" = dontDistribute super."agda-snippets"; + "agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll"; + "agum" = dontDistribute super."agum"; + "aig" = dontDistribute super."aig"; + "air" = dontDistribute super."air"; + "air-extra" = dontDistribute super."air-extra"; + "air-spec" = dontDistribute super."air-spec"; + "air-th" = dontDistribute super."air-th"; + "airbrake" = dontDistribute super."airbrake"; + "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"; + "alga" = dontDistribute super."alga"; + "algebra" = dontDistribute super."algebra"; + "algebra-dag" = dontDistribute super."algebra-dag"; + "algebra-sql" = dontDistribute super."algebra-sql"; + "algebraic" = dontDistribute super."algebraic"; + "algebraic-classes" = dontDistribute super."algebraic-classes"; + "align" = dontDistribute super."align"; + "align-text" = dontDistribute super."align-text"; + "aligned-foreignptr" = dontDistribute super."aligned-foreignptr"; + "allocated-processor" = dontDistribute super."allocated-processor"; + "alloy" = dontDistribute super."alloy"; + "alloy-proxy-fd" = dontDistribute super."alloy-proxy-fd"; + "almost-fix" = dontDistribute super."almost-fix"; + "alms" = dontDistribute super."alms"; + "alpha" = dontDistribute super."alpha"; + "alpino-tools" = dontDistribute super."alpino-tools"; + "alsa" = dontDistribute super."alsa"; + "alsa-core" = dontDistribute super."alsa-core"; + "alsa-gui" = dontDistribute super."alsa-gui"; + "alsa-midi" = dontDistribute super."alsa-midi"; + "alsa-mixer" = dontDistribute super."alsa-mixer"; + "alsa-pcm" = dontDistribute super."alsa-pcm"; + "alsa-pcm-tests" = dontDistribute super."alsa-pcm-tests"; + "alsa-seq" = dontDistribute super."alsa-seq"; + "alsa-seq-tests" = dontDistribute super."alsa-seq-tests"; + "altcomposition" = dontDistribute super."altcomposition"; + "alternative-io" = dontDistribute super."alternative-io"; + "altfloat" = dontDistribute super."altfloat"; + "alure" = dontDistribute super."alure"; + "amazon-emailer" = dontDistribute super."amazon-emailer"; + "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; + "amazon-products" = dontDistribute super."amazon-products"; + "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"; + "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"; + "appc" = dontDistribute super."appc"; + "applicative-extras" = dontDistribute super."applicative-extras"; + "applicative-fail" = dontDistribute super."applicative-fail"; + "applicative-numbers" = dontDistribute super."applicative-numbers"; + "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-quoters" = dontDistribute super."applicative-quoters"; + "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"; + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; + "argon2" = dontDistribute super."argon2"; + "argparser" = dontDistribute super."argparser"; + "arguedit" = dontDistribute super."arguedit"; + "ariadne" = dontDistribute super."ariadne"; + "arion" = dontDistribute super."arion"; + "arith-encode" = dontDistribute super."arith-encode"; + "arithmatic" = dontDistribute super."arithmatic"; + "arithmetic" = dontDistribute super."arithmetic"; + "arithmoi" = dontDistribute super."arithmoi"; + "armada" = dontDistribute super."armada"; + "arpa" = dontDistribute super."arpa"; + "array-forth" = dontDistribute super."array-forth"; + "array-memoize" = dontDistribute super."array-memoize"; + "array-primops" = dontDistribute super."array-primops"; + "array-utils" = dontDistribute super."array-utils"; + "arrow-improve" = dontDistribute super."arrow-improve"; + "arrowapply-utils" = dontDistribute super."arrowapply-utils"; + "arrowp" = dontDistribute super."arrowp"; + "arrows" = dontDistribute super."arrows"; + "artery" = dontDistribute super."artery"; + "arx" = dontDistribute super."arx"; + "arxiv" = dontDistribute super."arxiv"; + "ascetic" = dontDistribute super."ascetic"; + "ascii" = dontDistribute super."ascii"; + "ascii-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"; + "atp-haskell" = dontDistribute super."atp-haskell"; + "atrans" = dontDistribute super."atrans"; + "attempt" = dontDistribute super."attempt"; + "atto-lisp" = dontDistribute super."atto-lisp"; + "attoparsec-arff" = dontDistribute super."attoparsec-arff"; + "attoparsec-binary" = dontDistribute super."attoparsec-binary"; + "attoparsec-conduit" = dontDistribute super."attoparsec-conduit"; + "attoparsec-csv" = dontDistribute super."attoparsec-csv"; + "attoparsec-iteratee" = dontDistribute super."attoparsec-iteratee"; + "attoparsec-parsec" = dontDistribute super."attoparsec-parsec"; + "attoparsec-text" = dontDistribute super."attoparsec-text"; + "attoparsec-text-enumerator" = dontDistribute super."attoparsec-text-enumerator"; + "attosplit" = dontDistribute super."attosplit"; + "atuin" = dontDistribute super."atuin"; + "audacity" = dontDistribute super."audacity"; + "audiovisual" = dontDistribute super."audiovisual"; + "augeas" = dontDistribute super."augeas"; + "augur" = dontDistribute super."augur"; + "aur" = dontDistribute super."aur"; + "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; + "authenticate-ldap" = dontDistribute super."authenticate-ldap"; + "authinfo-hs" = dontDistribute super."authinfo-hs"; + "authoring" = dontDistribute super."authoring"; + "autonix-deps" = dontDistribute super."autonix-deps"; + "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5"; + "autoproc" = dontDistribute super."autoproc"; + "avahi" = dontDistribute super."avahi"; + "avatar-generator" = dontDistribute super."avatar-generator"; + "average" = dontDistribute super."average"; + "avl-static" = dontDistribute super."avl-static"; + "avr-shake" = dontDistribute super."avr-shake"; + "awesomium" = dontDistribute super."awesomium"; + "awesomium-glut" = dontDistribute super."awesomium-glut"; + "awesomium-raw" = dontDistribute super."awesomium-raw"; + "aws-cloudfront-signer" = dontDistribute super."aws-cloudfront-signer"; + "aws-configuration-tools" = dontDistribute super."aws-configuration-tools"; + "aws-dynamodb-conduit" = dontDistribute super."aws-dynamodb-conduit"; + "aws-dynamodb-streams" = dontDistribute super."aws-dynamodb-streams"; + "aws-ec2" = dontDistribute super."aws-ec2"; + "aws-elastic-transcoder" = dontDistribute super."aws-elastic-transcoder"; + "aws-general" = dontDistribute super."aws-general"; + "aws-kinesis" = dontDistribute super."aws-kinesis"; + "aws-kinesis-client" = dontDistribute super."aws-kinesis-client"; + "aws-kinesis-reshard" = dontDistribute super."aws-kinesis-reshard"; + "aws-lambda" = dontDistribute super."aws-lambda"; + "aws-performance-tests" = dontDistribute super."aws-performance-tests"; + "aws-route53" = dontDistribute super."aws-route53"; + "aws-sdk" = dontDistribute super."aws-sdk"; + "aws-sdk-text-converter" = dontDistribute super."aws-sdk-text-converter"; + "aws-sdk-xml-unordered" = dontDistribute super."aws-sdk-xml-unordered"; + "aws-sign4" = dontDistribute super."aws-sign4"; + "aws-sns" = dontDistribute super."aws-sns"; + "azure-acs" = dontDistribute super."azure-acs"; + "azure-service-api" = dontDistribute super."azure-service-api"; + "azure-servicebus" = dontDistribute super."azure-servicebus"; + "azurify" = dontDistribute super."azurify"; + "b-tree" = dontDistribute super."b-tree"; + "babylon" = dontDistribute super."babylon"; + "backdropper" = dontDistribute super."backdropper"; + "backtracking-exceptions" = dontDistribute super."backtracking-exceptions"; + "backward-state" = dontDistribute super."backward-state"; + "bacteria" = dontDistribute super."bacteria"; + "bag" = dontDistribute super."bag"; + "bamboo" = dontDistribute super."bamboo"; + "bamboo-launcher" = dontDistribute super."bamboo-launcher"; + "bamboo-plugin-highlight" = dontDistribute super."bamboo-plugin-highlight"; + "bamboo-plugin-photo" = dontDistribute super."bamboo-plugin-photo"; + "bamboo-theme-blueprint" = dontDistribute super."bamboo-theme-blueprint"; + "bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5"; + "bamse" = dontDistribute super."bamse"; + "bamstats" = dontDistribute super."bamstats"; + "bank-holiday-usa" = dontDistribute super."bank-holiday-usa"; + "banwords" = dontDistribute super."banwords"; + "barchart" = dontDistribute super."barchart"; + "barcodes-code128" = dontDistribute super."barcodes-code128"; + "barecheck" = dontDistribute super."barecheck"; + "barley" = dontDistribute super."barley"; + "barrie" = dontDistribute super."barrie"; + "barrier-monad" = dontDistribute super."barrier-monad"; + "base-generics" = dontDistribute super."base-generics"; + "base-io-access" = dontDistribute super."base-io-access"; + "base32-bytestring" = dontDistribute super."base32-bytestring"; + "base58-bytestring" = dontDistribute super."base58-bytestring"; + "base58address" = dontDistribute super."base58address"; + "base64-conduit" = dontDistribute super."base64-conduit"; + "base91" = dontDistribute super."base91"; + "basex-client" = dontDistribute super."basex-client"; + "bash" = dontDistribute super."bash"; + "basic-lens" = dontDistribute super."basic-lens"; + "basic-sop" = dontDistribute super."basic-sop"; + "baskell" = dontDistribute super."baskell"; + "battlenet" = dontDistribute super."battlenet"; + "battlenet-yesod" = dontDistribute super."battlenet-yesod"; + "battleships" = dontDistribute super."battleships"; + "bayes-stack" = dontDistribute super."bayes-stack"; + "bbdb" = dontDistribute super."bbdb"; + "bbi" = dontDistribute super."bbi"; + "bdd" = dontDistribute super."bdd"; + "bdelta" = dontDistribute super."bdelta"; + "bdo" = dontDistribute super."bdo"; + "beam" = dontDistribute super."beam"; + "beamable" = dontDistribute super."beamable"; + "beautifHOL" = dontDistribute super."beautifHOL"; + "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; + "bein" = dontDistribute super."bein"; + "benchmark-function" = dontDistribute super."benchmark-function"; + "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"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; + "billboard-parser" = dontDistribute super."billboard-parser"; + "billeksah-forms" = dontDistribute super."billeksah-forms"; + "billeksah-main" = dontDistribute super."billeksah-main"; + "billeksah-main-static" = dontDistribute super."billeksah-main-static"; + "billeksah-pane" = dontDistribute super."billeksah-pane"; + "billeksah-services" = dontDistribute super."billeksah-services"; + "bimaps" = dontDistribute super."bimaps"; + "binary-bits" = dontDistribute super."binary-bits"; + "binary-communicator" = dontDistribute super."binary-communicator"; + "binary-derive" = dontDistribute super."binary-derive"; + "binary-enum" = dontDistribute super."binary-enum"; + "binary-file" = dontDistribute super."binary-file"; + "binary-generic" = dontDistribute super."binary-generic"; + "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; + "binary-literal-qq" = dontDistribute super."binary-literal-qq"; + "binary-protocol" = dontDistribute super."binary-protocol"; + "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq"; + "binary-shared" = dontDistribute super."binary-shared"; + "binary-state" = dontDistribute super."binary-state"; + "binary-store" = dontDistribute super."binary-store"; + "binary-streams" = dontDistribute super."binary-streams"; + "binary-strict" = dontDistribute super."binary-strict"; + "binarydefer" = dontDistribute super."binarydefer"; + "bind-marshal" = dontDistribute super."bind-marshal"; + "binding-core" = dontDistribute super."binding-core"; + "binding-gtk" = dontDistribute super."binding-gtk"; + "binding-wx" = dontDistribute super."binding-wx"; + "bindings" = dontDistribute super."bindings"; + "bindings-EsounD" = dontDistribute super."bindings-EsounD"; + "bindings-K8055" = dontDistribute super."bindings-K8055"; + "bindings-apr" = dontDistribute super."bindings-apr"; + "bindings-apr-util" = dontDistribute super."bindings-apr-util"; + "bindings-audiofile" = dontDistribute super."bindings-audiofile"; + "bindings-bfd" = dontDistribute super."bindings-bfd"; + "bindings-cctools" = dontDistribute super."bindings-cctools"; + "bindings-codec2" = dontDistribute super."bindings-codec2"; + "bindings-common" = dontDistribute super."bindings-common"; + "bindings-dc1394" = dontDistribute super."bindings-dc1394"; + "bindings-directfb" = dontDistribute super."bindings-directfb"; + "bindings-eskit" = dontDistribute super."bindings-eskit"; + "bindings-fann" = dontDistribute super."bindings-fann"; + "bindings-fluidsynth" = dontDistribute super."bindings-fluidsynth"; + "bindings-friso" = dontDistribute super."bindings-friso"; + "bindings-glib" = dontDistribute super."bindings-glib"; + "bindings-gobject" = dontDistribute super."bindings-gobject"; + "bindings-gpgme" = dontDistribute super."bindings-gpgme"; + "bindings-gsl" = dontDistribute super."bindings-gsl"; + "bindings-gts" = dontDistribute super."bindings-gts"; + "bindings-hamlib" = dontDistribute super."bindings-hamlib"; + "bindings-hdf5" = dontDistribute super."bindings-hdf5"; + "bindings-levmar" = dontDistribute super."bindings-levmar"; + "bindings-libcddb" = dontDistribute super."bindings-libcddb"; + "bindings-libffi" = dontDistribute super."bindings-libffi"; + "bindings-libftdi" = dontDistribute super."bindings-libftdi"; + "bindings-librrd" = dontDistribute super."bindings-librrd"; + "bindings-libstemmer" = dontDistribute super."bindings-libstemmer"; + "bindings-libusb" = dontDistribute super."bindings-libusb"; + "bindings-libv4l2" = dontDistribute super."bindings-libv4l2"; + "bindings-linux-videodev2" = dontDistribute super."bindings-linux-videodev2"; + "bindings-lxc" = dontDistribute super."bindings-lxc"; + "bindings-mmap" = dontDistribute super."bindings-mmap"; + "bindings-mpdecimal" = dontDistribute super."bindings-mpdecimal"; + "bindings-nettle" = dontDistribute super."bindings-nettle"; + "bindings-parport" = dontDistribute super."bindings-parport"; + "bindings-portaudio" = dontDistribute super."bindings-portaudio"; + "bindings-potrace" = dontDistribute super."bindings-potrace"; + "bindings-ppdev" = dontDistribute super."bindings-ppdev"; + "bindings-saga-cmd" = dontDistribute super."bindings-saga-cmd"; + "bindings-sane" = dontDistribute super."bindings-sane"; + "bindings-sc3" = dontDistribute super."bindings-sc3"; + "bindings-sipc" = dontDistribute super."bindings-sipc"; + "bindings-sophia" = dontDistribute super."bindings-sophia"; + "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; + "bindings-svm" = dontDistribute super."bindings-svm"; + "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-yices" = dontDistribute super."bindings-yices"; + "bindynamic" = dontDistribute super."bindynamic"; + "binembed" = dontDistribute super."binembed"; + "binembed-example" = dontDistribute super."binembed-example"; + "bini" = dontDistribute super."bini"; + "bio" = dontDistribute super."bio"; + "biohazard" = dontDistribute super."biohazard"; + "bioinformatics-toolkit" = dontDistribute super."bioinformatics-toolkit"; + "biosff" = dontDistribute super."biosff"; + "biostockholm" = dontDistribute super."biostockholm"; + "bird" = dontDistribute super."bird"; + "bit-array" = dontDistribute super."bit-array"; + "bit-vector" = dontDistribute super."bit-vector"; + "bitarray" = dontDistribute super."bitarray"; + "bitcoin-rpc" = dontDistribute super."bitcoin-rpc"; + "bitly-cli" = dontDistribute super."bitly-cli"; + "bitmap" = dontDistribute super."bitmap"; + "bitmap-opengl" = dontDistribute super."bitmap-opengl"; + "bitmaps" = dontDistribute super."bitmaps"; + "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-conduit" = dontDistribute super."bits-conduit"; + "bits-extras" = dontDistribute super."bits-extras"; + "bitset" = dontDistribute super."bitset"; + "bitspeak" = dontDistribute super."bitspeak"; + "bitstream" = dontDistribute super."bitstream"; + "bitstring" = dontDistribute super."bitstring"; + "bittorrent" = dontDistribute super."bittorrent"; + "bitvec" = dontDistribute super."bitvec"; + "bitx-bitcoin" = dontDistribute super."bitx-bitcoin"; + "bk-tree" = dontDistribute super."bk-tree"; + "bkr" = dontDistribute super."bkr"; + "bktrees" = dontDistribute super."bktrees"; + "bla" = dontDistribute super."bla"; + "black-jewel" = dontDistribute super."black-jewel"; + "blacktip" = dontDistribute super."blacktip"; + "blakesum" = dontDistribute super."blakesum"; + "blakesum-demo" = dontDistribute super."blakesum-demo"; + "blas" = dontDistribute super."blas"; + "blas-hs" = dontDistribute super."blas-hs"; + "blatex" = dontDistribute super."blatex"; + "blaze" = dontDistribute super."blaze"; + "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; + "blaze-from-html" = dontDistribute super."blaze-from-html"; + "blaze-html-contrib" = dontDistribute super."blaze-html-contrib"; + "blaze-html-hexpat" = dontDistribute super."blaze-html-hexpat"; + "blaze-html-truncate" = dontDistribute super."blaze-html-truncate"; + "blaze-json" = dontDistribute super."blaze-json"; + "blaze-shields" = dontDistribute super."blaze-shields"; + "blaze-textual-native" = dontDistribute super."blaze-textual-native"; + "blazeMarker" = dontDistribute super."blazeMarker"; + "blink1" = dontDistribute super."blink1"; + "blip" = dontDistribute super."blip"; + "bliplib" = dontDistribute super."bliplib"; + "blocking-transactions" = dontDistribute super."blocking-transactions"; + "blogination" = dontDistribute super."blogination"; + "bloodhound" = dontDistribute super."bloodhound"; + "bloxorz" = dontDistribute super."bloxorz"; + "blubber" = dontDistribute super."blubber"; + "blubber-server" = dontDistribute super."blubber-server"; + "bluetile" = dontDistribute super."bluetile"; + "bluetileutils" = dontDistribute super."bluetileutils"; + "blunt" = dontDistribute super."blunt"; + "board-games" = dontDistribute super."board-games"; + "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; + "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"; + "boomslang" = dontDistribute super."boomslang"; + "borel" = dontDistribute super."borel"; + "bot" = dontDistribute super."bot"; + "botpp" = dontDistribute super."botpp"; + "bound-gen" = dontDistribute super."bound-gen"; + "bounded-tchan" = dontDistribute super."bounded-tchan"; + "boundingboxes" = dontDistribute super."boundingboxes"; + "bowntz" = dontDistribute super."bowntz"; + "bpann" = dontDistribute super."bpann"; + "braid" = dontDistribute super."braid"; + "brainfuck" = dontDistribute super."brainfuck"; + "brainfuck-monad" = dontDistribute super."brainfuck-monad"; + "brainfuck-tut" = dontDistribute super."brainfuck-tut"; + "break" = dontDistribute super."break"; + "breakout" = dontDistribute super."breakout"; + "breve" = dontDistribute super."breve"; + "brians-brain" = dontDistribute super."brians-brain"; + "brillig" = dontDistribute super."brillig"; + "broccoli" = dontDistribute super."broccoli"; + "broker-haskell" = dontDistribute super."broker-haskell"; + "bsd-sysctl" = dontDistribute super."bsd-sysctl"; + "bson-generic" = dontDistribute super."bson-generic"; + "bson-generics" = dontDistribute super."bson-generics"; + "bson-mapping" = dontDistribute super."bson-mapping"; + "bspack" = dontDistribute super."bspack"; + "bsparse" = dontDistribute super."bsparse"; + "btree-concurrent" = dontDistribute super."btree-concurrent"; + "buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson"; + "buffer-pipe" = dontDistribute super."buffer-pipe"; + "buffon" = dontDistribute super."buffon"; + "bugzilla" = dontDistribute super."bugzilla"; + "buildable" = dontDistribute super."buildable"; + "buildbox" = dontDistribute super."buildbox"; + "buildbox-tools" = dontDistribute super."buildbox-tools"; + "buildwrapper" = dontDistribute super."buildwrapper"; + "bullet" = dontDistribute super."bullet"; + "burst-detection" = dontDistribute super."burst-detection"; + "bus-pirate" = dontDistribute super."bus-pirate"; + "buster" = dontDistribute super."buster"; + "buster-gtk" = dontDistribute super."buster-gtk"; + "buster-network" = dontDistribute super."buster-network"; + "butterflies" = dontDistribute super."butterflies"; + "bv" = dontDistribute super."bv"; + "byline" = dontDistribute super."byline"; + "bytable" = dontDistribute super."bytable"; + "bytestring-arbitrary" = dontDistribute super."bytestring-arbitrary"; + "bytestring-class" = dontDistribute super."bytestring-class"; + "bytestring-csv" = dontDistribute super."bytestring-csv"; + "bytestring-delta" = dontDistribute super."bytestring-delta"; + "bytestring-from" = dontDistribute super."bytestring-from"; + "bytestring-nums" = dontDistribute super."bytestring-nums"; + "bytestring-plain" = dontDistribute super."bytestring-plain"; + "bytestring-rematch" = dontDistribute super."bytestring-rematch"; + "bytestring-short" = dontDistribute super."bytestring-short"; + "bytestring-show" = dontDistribute super."bytestring-show"; + "bytestring-tree-builder" = dontDistribute super."bytestring-tree-builder"; + "bytestringparser" = dontDistribute super."bytestringparser"; + "bytestringparser-temporary" = dontDistribute super."bytestringparser-temporary"; + "bytestringreadp" = dontDistribute super."bytestringreadp"; + "c-dsl" = dontDistribute super."c-dsl"; + "c-io" = dontDistribute super."c-io"; + "c-storable-deriving" = dontDistribute super."c-storable-deriving"; + "c0check" = dontDistribute super."c0check"; + "c0parser" = dontDistribute super."c0parser"; + "c10k" = dontDistribute super."c10k"; + "c2hsc" = dontDistribute super."c2hsc"; + "cab" = dontDistribute super."cab"; + "cabal-audit" = dontDistribute super."cabal-audit"; + "cabal-bounds" = dontDistribute super."cabal-bounds"; + "cabal-cargs" = dontDistribute super."cabal-cargs"; + "cabal-constraints" = dontDistribute super."cabal-constraints"; + "cabal-db" = dontDistribute super."cabal-db"; + "cabal-dependency-licenses" = dontDistribute super."cabal-dependency-licenses"; + "cabal-dev" = dontDistribute super."cabal-dev"; + "cabal-dir" = dontDistribute super."cabal-dir"; + "cabal-ghc-dynflags" = dontDistribute super."cabal-ghc-dynflags"; + "cabal-ghci" = dontDistribute super."cabal-ghci"; + "cabal-graphdeps" = dontDistribute super."cabal-graphdeps"; + "cabal-install-bundle" = dontDistribute super."cabal-install-bundle"; + "cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72"; + "cabal-install-ghc74" = dontDistribute super."cabal-install-ghc74"; + "cabal-lenses" = dontDistribute super."cabal-lenses"; + "cabal-macosx" = dontDistribute super."cabal-macosx"; + "cabal-meta" = dontDistribute super."cabal-meta"; + "cabal-mon" = dontDistribute super."cabal-mon"; + "cabal-nirvana" = dontDistribute super."cabal-nirvana"; + "cabal-progdeps" = dontDistribute super."cabal-progdeps"; + "cabal-query" = dontDistribute super."cabal-query"; + "cabal-scripts" = dontDistribute super."cabal-scripts"; + "cabal-setup" = dontDistribute super."cabal-setup"; + "cabal-sign" = dontDistribute super."cabal-sign"; + "cabal-test" = dontDistribute super."cabal-test"; + "cabal-test-bin" = dontDistribute super."cabal-test-bin"; + "cabal-test-compat" = dontDistribute super."cabal-test-compat"; + "cabal-test-quickcheck" = dontDistribute super."cabal-test-quickcheck"; + "cabal-uninstall" = dontDistribute super."cabal-uninstall"; + "cabal-upload" = dontDistribute super."cabal-upload"; + "cabal2arch" = dontDistribute super."cabal2arch"; + "cabal2doap" = dontDistribute super."cabal2doap"; + "cabal2ebuild" = dontDistribute super."cabal2ebuild"; + "cabal2ghci" = dontDistribute super."cabal2ghci"; + "cabal2nix" = dontDistribute super."cabal2nix"; + "cabal2spec" = dontDistribute super."cabal2spec"; + "cabalQuery" = dontDistribute super."cabalQuery"; + "cabalg" = dontDistribute super."cabalg"; + "cabalgraph" = dontDistribute super."cabalgraph"; + "cabalmdvrpm" = dontDistribute super."cabalmdvrpm"; + "cabalrpmdeps" = dontDistribute super."cabalrpmdeps"; + "cabalvchk" = dontDistribute super."cabalvchk"; + "cabin" = dontDistribute super."cabin"; + "cabocha" = dontDistribute super."cabocha"; + "cached-io" = dontDistribute super."cached-io"; + "cached-traversable" = dontDistribute super."cached-traversable"; + "caf" = dontDistribute super."caf"; + "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; + "caffegraph" = dontDistribute super."caffegraph"; + "cairo-appbase" = dontDistribute super."cairo-appbase"; + "cake" = dontDistribute super."cake"; + "cake3" = dontDistribute super."cake3"; + "cakyrespa" = dontDistribute super."cakyrespa"; + "cal3d" = dontDistribute super."cal3d"; + "cal3d-examples" = dontDistribute super."cal3d-examples"; + "cal3d-opengl" = dontDistribute super."cal3d-opengl"; + "calc" = dontDistribute super."calc"; + "caldims" = dontDistribute super."caldims"; + "caledon" = dontDistribute super."caledon"; + "call" = dontDistribute super."call"; + "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camh" = dontDistribute super."camh"; + "campfire" = dontDistribute super."campfire"; + "canonical-filepath" = dontDistribute super."canonical-filepath"; + "canteven-config" = dontDistribute super."canteven-config"; + "canteven-listen-http" = dontDistribute super."canteven-listen-http"; + "canteven-log" = dontDistribute super."canteven-log"; + "canteven-template" = dontDistribute super."canteven-template"; + "cantor" = dontDistribute super."cantor"; + "cao" = dontDistribute super."cao"; + "cap" = dontDistribute super."cap"; + "capped-list" = dontDistribute super."capped-list"; + "capri" = dontDistribute super."capri"; + "car-pool" = dontDistribute super."car-pool"; + "caramia" = dontDistribute super."caramia"; + "carboncopy" = dontDistribute super."carboncopy"; + "carettah" = dontDistribute super."carettah"; + "casadi-bindings" = dontDistribute super."casadi-bindings"; + "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; + "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; + "casadi-bindings-internal" = dontDistribute super."casadi-bindings-internal"; + "casadi-bindings-ipopt-interface" = dontDistribute super."casadi-bindings-ipopt-interface"; + "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; + "cascading" = dontDistribute super."cascading"; + "case-conversion" = dontDistribute super."case-conversion"; + "cash" = dontDistribute super."cash"; + "casing" = dontDistribute super."casing"; + "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"; + "cayley-dickson" = dontDistribute super."cayley-dickson"; + "cblrepo" = dontDistribute super."cblrepo"; + "cci" = dontDistribute super."cci"; + "ccnx" = dontDistribute super."ccnx"; + "cctools-workqueue" = dontDistribute super."cctools-workqueue"; + "cedict" = dontDistribute super."cedict"; + "cef" = dontDistribute super."cef"; + "ceilometer-common" = dontDistribute super."ceilometer-common"; + "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; + "cereal-derive" = dontDistribute super."cereal-derive"; + "cereal-enumerator" = dontDistribute super."cereal-enumerator"; + "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-text" = dontDistribute super."cereal-text"; + "certificate" = dontDistribute super."certificate"; + "cf" = dontDistribute super."cf"; + "cfipu" = dontDistribute super."cfipu"; + "cflp" = dontDistribute super."cflp"; + "cfopu" = dontDistribute super."cfopu"; + "cg" = dontDistribute super."cg"; + "cgen" = dontDistribute super."cgen"; + "cgi-undecidable" = dontDistribute super."cgi-undecidable"; + "cgi-utils" = dontDistribute super."cgi-utils"; + "cgrep" = dontDistribute super."cgrep"; + "chain-codes" = dontDistribute super."chain-codes"; + "chalk" = dontDistribute super."chalk"; + "chalkboard" = dontDistribute super."chalkboard"; + "chalkboard-viewer" = dontDistribute super."chalkboard-viewer"; + "chalmers-lava2000" = dontDistribute super."chalmers-lava2000"; + "chan-split" = dontDistribute super."chan-split"; + "change-monger" = dontDistribute super."change-monger"; + "charade" = dontDistribute super."charade"; + "charsetdetect" = dontDistribute super."charsetdetect"; + "chart-histogram" = dontDistribute super."chart-histogram"; + "chaselev-deque" = dontDistribute super."chaselev-deque"; + "chatter" = dontDistribute super."chatter"; + "chatty" = dontDistribute super."chatty"; + "chatty-text" = dontDistribute super."chatty-text"; + "chatty-utils" = dontDistribute super."chatty-utils"; + "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; + "check-pvp" = dontDistribute super."check-pvp"; + "checked" = dontDistribute super."checked"; + "chell-hunit" = dontDistribute super."chell-hunit"; + "chesshs" = dontDistribute super."chesshs"; + "chevalier-common" = dontDistribute super."chevalier-common"; + "chp" = dontDistribute super."chp"; + "chp-mtl" = dontDistribute super."chp-mtl"; + "chp-plus" = dontDistribute super."chp-plus"; + "chp-spec" = dontDistribute super."chp-spec"; + "chp-transformers" = dontDistribute super."chp-transformers"; + "chronograph" = dontDistribute super."chronograph"; + "chu2" = dontDistribute super."chu2"; + "chuchu" = dontDistribute super."chuchu"; + "chunks" = dontDistribute super."chunks"; + "chunky" = dontDistribute super."chunky"; + "church-list" = dontDistribute super."church-list"; + "cil" = dontDistribute super."cil"; + "cinvoke" = dontDistribute super."cinvoke"; + "cio" = dontDistribute super."cio"; + "cipher-rc5" = dontDistribute super."cipher-rc5"; + "ciphersaber2" = dontDistribute super."ciphersaber2"; + "circ" = dontDistribute super."circ"; + "cirru-parser" = dontDistribute super."cirru-parser"; + "citation-resolve" = dontDistribute super."citation-resolve"; + "citeproc-hs" = dontDistribute super."citeproc-hs"; + "citeproc-hs-pandoc-filter" = dontDistribute super."citeproc-hs-pandoc-filter"; + "cityhash" = dontDistribute super."cityhash"; + "cjk" = dontDistribute super."cjk"; + "clac" = dontDistribute super."clac"; + "clafer" = dontDistribute super."clafer"; + "claferIG" = dontDistribute super."claferIG"; + "claferwiki" = dontDistribute super."claferwiki"; + "clang-pure" = dontDistribute super."clang-pure"; + "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; + "clash" = dontDistribute super."clash"; + "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck"; + "classify" = dontDistribute super."classify"; + "classy-parallel" = dontDistribute super."classy-parallel"; + "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com"; + "clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs"; + "clckwrks-plugin-ircbot" = dontDistribute super."clckwrks-plugin-ircbot"; + "clckwrks-theme-clckwrks" = dontDistribute super."clckwrks-theme-clckwrks"; + "clckwrks-theme-geo-bootstrap" = dontDistribute super."clckwrks-theme-geo-bootstrap"; + "cld2" = dontDistribute super."cld2"; + "clean-home" = dontDistribute super."clean-home"; + "clean-unions" = dontDistribute super."clean-unions"; + "cless" = dontDistribute super."cless"; + "clevercss" = dontDistribute super."clevercss"; + "cli" = dontDistribute super."cli"; + "click-clack" = dontDistribute super."click-clack"; + "clifford" = dontDistribute super."clifford"; + "clippard" = dontDistribute super."clippard"; + "clipper" = dontDistribute super."clipper"; + "clippings" = dontDistribute super."clippings"; + "clist" = dontDistribute super."clist"; + "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"; + "comonad-extras" = dontDistribute super."comonad-extras"; + "comonad-random" = dontDistribute super."comonad-random"; + "compact-map" = dontDistribute super."compact-map"; + "compact-socket" = dontDistribute super."compact-socket"; + "compact-string" = dontDistribute super."compact-string"; + "compact-string-fix" = dontDistribute super."compact-string-fix"; + "compare-type" = dontDistribute super."compare-type"; + "compdata-automata" = dontDistribute super."compdata-automata"; + "compdata-dags" = dontDistribute super."compdata-dags"; + "compdata-param" = dontDistribute super."compdata-param"; + "compensated" = dontDistribute super."compensated"; + "competition" = dontDistribute super."competition"; + "compilation" = dontDistribute super."compilation"; + "complex-generic" = dontDistribute super."complex-generic"; + "complex-integrate" = dontDistribute super."complex-integrate"; + "complexity" = dontDistribute super."complexity"; + "compose-ltr" = dontDistribute super."compose-ltr"; + "compose-trans" = dontDistribute super."compose-trans"; + "compression" = dontDistribute super."compression"; + "compstrat" = dontDistribute super."compstrat"; + "comptrans" = dontDistribute super."comptrans"; + "computational-algebra" = dontDistribute super."computational-algebra"; + "computations" = dontDistribute super."computations"; + "conceit" = dontDistribute super."conceit"; + "concorde" = dontDistribute super."concorde"; + "concraft" = dontDistribute super."concraft"; + "concraft-hr" = dontDistribute super."concraft-hr"; + "concraft-pl" = dontDistribute super."concraft-pl"; + "concrete-relaxng-parser" = dontDistribute super."concrete-relaxng-parser"; + "concrete-typerep" = dontDistribute super."concrete-typerep"; + "concurrent-barrier" = dontDistribute super."concurrent-barrier"; + "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = dontDistribute super."concurrent-extra"; + "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-sa" = dontDistribute super."concurrent-sa"; + "concurrent-split" = dontDistribute super."concurrent-split"; + "concurrent-state" = dontDistribute super."concurrent-state"; + "concurrent-utilities" = dontDistribute super."concurrent-utilities"; + "concurrentoutput" = dontDistribute super."concurrentoutput"; + "cond" = dontDistribute super."cond"; + "condor" = dontDistribute super."condor"; + "condorcet" = dontDistribute super."condorcet"; + "conductive-base" = dontDistribute super."conductive-base"; + "conductive-clock" = dontDistribute super."conductive-clock"; + "conductive-hsc3" = dontDistribute super."conductive-hsc3"; + "conductive-song" = dontDistribute super."conductive-song"; + "conduit-audio" = dontDistribute super."conduit-audio"; + "conduit-audio-lame" = dontDistribute super."conduit-audio-lame"; + "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate"; + "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile"; + "conduit-network-stream" = dontDistribute super."conduit-network-stream"; + "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; + "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" = dontDistribute super."container"; + "container-classes" = dontDistribute super."container-classes"; + "containers-benchmark" = dontDistribute super."containers-benchmark"; + "containers-deepseq" = dontDistribute super."containers-deepseq"; + "context-free-grammar" = dontDistribute super."context-free-grammar"; + "context-stack" = dontDistribute super."context-stack"; + "continue" = dontDistribute super."continue"; + "continued-fractions" = dontDistribute super."continued-fractions"; + "continuum" = dontDistribute super."continuum"; + "continuum-client" = dontDistribute super."continuum-client"; + "control-event" = dontDistribute super."control-event"; + "control-monad-attempt" = dontDistribute super."control-monad-attempt"; + "control-monad-exception" = dontDistribute super."control-monad-exception"; + "control-monad-exception-monadsfd" = dontDistribute super."control-monad-exception-monadsfd"; + "control-monad-exception-monadstf" = dontDistribute super."control-monad-exception-monadstf"; + "control-monad-exception-mtl" = dontDistribute super."control-monad-exception-mtl"; + "control-monad-failure" = dontDistribute super."control-monad-failure"; + "control-monad-failure-mtl" = dontDistribute super."control-monad-failure-mtl"; + "control-monad-omega" = dontDistribute super."control-monad-omega"; + "control-monad-queue" = dontDistribute super."control-monad-queue"; + "control-timeout" = dontDistribute super."control-timeout"; + "contstuff" = dontDistribute super."contstuff"; + "contstuff-monads-tf" = dontDistribute super."contstuff-monads-tf"; + "contstuff-transformers" = dontDistribute super."contstuff-transformers"; + "converge" = dontDistribute super."converge"; + "conversion" = dontDistribute super."conversion"; + "conversion-bytestring" = dontDistribute super."conversion-bytestring"; + "conversion-case-insensitive" = dontDistribute super."conversion-case-insensitive"; + "conversion-text" = dontDistribute super."conversion-text"; + "convert" = dontDistribute super."convert"; + "convertible-ascii" = dontDistribute super."convertible-ascii"; + "convertible-text" = dontDistribute super."convertible-text"; + "cookbook" = dontDistribute super."cookbook"; + "coordinate" = dontDistribute super."coordinate"; + "copilot" = dontDistribute super."copilot"; + "copilot-c99" = dontDistribute super."copilot-c99"; + "copilot-cbmc" = dontDistribute super."copilot-cbmc"; + "copilot-core" = dontDistribute super."copilot-core"; + "copilot-language" = dontDistribute super."copilot-language"; + "copilot-libraries" = dontDistribute super."copilot-libraries"; + "copilot-sbv" = dontDistribute super."copilot-sbv"; + "copilot-theorem" = dontDistribute super."copilot-theorem"; + "copr" = dontDistribute super."copr"; + "core" = dontDistribute super."core"; + "core-haskell" = dontDistribute super."core-haskell"; + "corebot-bliki" = dontDistribute super."corebot-bliki"; + "coroutine-enumerator" = dontDistribute super."coroutine-enumerator"; + "coroutine-iteratee" = dontDistribute super."coroutine-iteratee"; + "coroutine-object" = dontDistribute super."coroutine-object"; + "couch-hs" = dontDistribute super."couch-hs"; + "couch-simple" = dontDistribute super."couch-simple"; + "couchdb-conduit" = dontDistribute super."couchdb-conduit"; + "couchdb-enumerator" = dontDistribute super."couchdb-enumerator"; + "count" = dontDistribute super."count"; + "countable" = dontDistribute super."countable"; + "counter" = dontDistribute super."counter"; + "court" = dontDistribute super."court"; + "coverage" = dontDistribute super."coverage"; + "cpio-conduit" = dontDistribute super."cpio-conduit"; + "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-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"; + "cryptsy-api" = dontDistribute super."cryptsy-api"; + "crystalfontz" = dontDistribute super."crystalfontz"; + "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; + "csound-catalog" = dontDistribute super."csound-catalog"; + "csound-expression" = dontDistribute super."csound-expression"; + "csound-expression-dynamic" = dontDistribute super."csound-expression-dynamic"; + "csound-expression-opcodes" = dontDistribute super."csound-expression-opcodes"; + "csound-expression-typed" = dontDistribute super."csound-expression-typed"; + "csound-sampler" = dontDistribute super."csound-sampler"; + "csp" = dontDistribute super."csp"; + "cspmchecker" = dontDistribute super."cspmchecker"; + "css" = dontDistribute super."css"; + "csv-enumerator" = dontDistribute super."csv-enumerator"; + "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-to-qif" = dontDistribute super."csv-to-qif"; + "ctemplate" = dontDistribute super."ctemplate"; + "ctkl" = dontDistribute super."ctkl"; + "ctpl" = dontDistribute super."ctpl"; + "cube" = dontDistribute super."cube"; + "cubical" = dontDistribute super."cubical"; + "cubicbezier" = dontDistribute super."cubicbezier"; + "cublas" = dontDistribute super."cublas"; + "cuboid" = dontDistribute super."cuboid"; + "cuda" = dontDistribute super."cuda"; + "cudd" = dontDistribute super."cudd"; + "cufft" = dontDistribute super."cufft"; + "curl-aeson" = dontDistribute super."curl-aeson"; + "curlhs" = dontDistribute super."curlhs"; + "currency" = dontDistribute super."currency"; + "current-locale" = dontDistribute super."current-locale"; + "curry-base" = dontDistribute super."curry-base"; + "curry-frontend" = dontDistribute super."curry-frontend"; + "cursedcsv" = dontDistribute super."cursedcsv"; + "curve25519" = dontDistribute super."curve25519"; + "curves" = dontDistribute super."curves"; + "custom-prelude" = dontDistribute super."custom-prelude"; + "cv-combinators" = dontDistribute super."cv-combinators"; + "cyclotomic" = dontDistribute super."cyclotomic"; + "cypher" = dontDistribute super."cypher"; + "d-bus" = dontDistribute super."d-bus"; + "d3js" = dontDistribute super."d3js"; + "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; + "daemons" = dontDistribute super."daemons"; + "dag" = dontDistribute super."dag"; + "damnpacket" = dontDistribute super."damnpacket"; + "dao" = dontDistribute super."dao"; + "dapi" = dontDistribute super."dapi"; + "darcs-benchmark" = dontDistribute super."darcs-benchmark"; + "darcs-beta" = dontDistribute super."darcs-beta"; + "darcs-buildpackage" = dontDistribute super."darcs-buildpackage"; + "darcs-cabalized" = dontDistribute super."darcs-cabalized"; + "darcs-fastconvert" = dontDistribute super."darcs-fastconvert"; + "darcs-graph" = dontDistribute super."darcs-graph"; + "darcs-monitor" = dontDistribute super."darcs-monitor"; + "darcs-scripts" = dontDistribute super."darcs-scripts"; + "darcs2dot" = dontDistribute super."darcs2dot"; + "darcsden" = dontDistribute super."darcsden"; + "darcswatch" = dontDistribute super."darcswatch"; + "darkplaces-demo" = dontDistribute super."darkplaces-demo"; + "darkplaces-rcon" = dontDistribute super."darkplaces-rcon"; + "darkplaces-rcon-util" = dontDistribute super."darkplaces-rcon-util"; + "darkplaces-text" = dontDistribute super."darkplaces-text"; + "dash-haskell" = dontDistribute super."dash-haskell"; + "data-accessor-monadLib" = dontDistribute super."data-accessor-monadLib"; + "data-accessor-monads-fd" = dontDistribute super."data-accessor-monads-fd"; + "data-accessor-monads-tf" = dontDistribute super."data-accessor-monads-tf"; + "data-accessor-template" = dontDistribute super."data-accessor-template"; + "data-accessor-transformers" = dontDistribute super."data-accessor-transformers"; + "data-aviary" = dontDistribute super."data-aviary"; + "data-bword" = dontDistribute super."data-bword"; + "data-carousel" = dontDistribute super."data-carousel"; + "data-category" = dontDistribute super."data-category"; + "data-cell" = dontDistribute super."data-cell"; + "data-checked" = dontDistribute super."data-checked"; + "data-clist" = dontDistribute super."data-clist"; + "data-concurrent-queue" = dontDistribute super."data-concurrent-queue"; + "data-construction" = dontDistribute super."data-construction"; + "data-cycle" = dontDistribute super."data-cycle"; + "data-default-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-embed" = dontDistribute super."data-embed"; + "data-endian" = dontDistribute super."data-endian"; + "data-extend-generic" = dontDistribute super."data-extend-generic"; + "data-extra" = dontDistribute super."data-extra"; + "data-filepath" = dontDistribute super."data-filepath"; + "data-fin" = dontDistribute super."data-fin"; + "data-fin-simple" = dontDistribute super."data-fin-simple"; + "data-fix" = dontDistribute super."data-fix"; + "data-fix-cse" = dontDistribute super."data-fix-cse"; + "data-flags" = dontDistribute super."data-flags"; + "data-flagset" = dontDistribute super."data-flagset"; + "data-fresh" = dontDistribute super."data-fresh"; + "data-interval" = dontDistribute super."data-interval"; + "data-ivar" = dontDistribute super."data-ivar"; + "data-kiln" = dontDistribute super."data-kiln"; + "data-layer" = dontDistribute super."data-layer"; + "data-layout" = dontDistribute super."data-layout"; + "data-lens" = dontDistribute super."data-lens"; + "data-lens-fd" = dontDistribute super."data-lens-fd"; + "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-template" = dontDistribute super."data-lens-template"; + "data-list-sequences" = dontDistribute super."data-list-sequences"; + "data-map-multikey" = dontDistribute super."data-map-multikey"; + "data-named" = dontDistribute super."data-named"; + "data-nat" = dontDistribute super."data-nat"; + "data-object" = dontDistribute super."data-object"; + "data-object-json" = dontDistribute super."data-object-json"; + "data-object-yaml" = dontDistribute super."data-object-yaml"; + "data-or" = dontDistribute super."data-or"; + "data-partition" = dontDistribute super."data-partition"; + "data-pprint" = dontDistribute super."data-pprint"; + "data-quotientref" = dontDistribute super."data-quotientref"; + "data-r-tree" = dontDistribute super."data-r-tree"; + "data-ref" = dontDistribute super."data-ref"; + "data-reify-cse" = dontDistribute super."data-reify-cse"; + "data-repr" = dontDistribute super."data-repr"; + "data-rev" = dontDistribute super."data-rev"; + "data-rope" = dontDistribute super."data-rope"; + "data-rtuple" = dontDistribute super."data-rtuple"; + "data-size" = dontDistribute super."data-size"; + "data-spacepart" = dontDistribute super."data-spacepart"; + "data-store" = dontDistribute super."data-store"; + "data-stringmap" = dontDistribute super."data-stringmap"; + "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-tensor" = dontDistribute super."data-tensor"; + "data-textual" = dontDistribute super."data-textual"; + "data-timeout" = dontDistribute super."data-timeout"; + "data-transform" = dontDistribute super."data-transform"; + "data-treify" = dontDistribute super."data-treify"; + "data-type" = dontDistribute super."data-type"; + "data-util" = dontDistribute super."data-util"; + "data-variant" = dontDistribute super."data-variant"; + "database-migrate" = dontDistribute super."database-migrate"; + "database-study" = dontDistribute super."database-study"; + "dataenc" = dontDistribute super."dataenc"; + "dataflow" = dontDistribute super."dataflow"; + "datalog" = dontDistribute super."datalog"; + "datapacker" = dontDistribute super."datapacker"; + "dataurl" = dontDistribute super."dataurl"; + "date-cache" = dontDistribute super."date-cache"; + "dates" = dontDistribute super."dates"; + "datetime" = dontDistribute super."datetime"; + "datetime-sb" = dontDistribute super."datetime-sb"; + "dawdle" = dontDistribute super."dawdle"; + "dawg" = dontDistribute super."dawg"; + "dbcleaner" = dontDistribute super."dbcleaner"; + "dbf" = dontDistribute super."dbf"; + "dbjava" = dontDistribute super."dbjava"; + "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-binary" = dontDistribute super."debian-binary"; + "debian-build" = dontDistribute super."debian-build"; + "debug-diff" = dontDistribute super."debug-diff"; + "debug-time" = dontDistribute super."debug-time"; + "decepticons" = dontDistribute super."decepticons"; + "decode-utf8" = dontDistribute super."decode-utf8"; + "decoder-conduit" = dontDistribute super."decoder-conduit"; + "dedukti" = dontDistribute super."dedukti"; + "deepcontrol" = dontDistribute super."deepcontrol"; + "deeplearning-hs" = dontDistribute super."deeplearning-hs"; + "deepseq-bounded" = dontDistribute super."deepseq-bounded"; + "deepseq-magic" = dontDistribute super."deepseq-magic"; + "deepseq-th" = dontDistribute super."deepseq-th"; + "deepzoom" = dontDistribute super."deepzoom"; + "defargs" = dontDistribute super."defargs"; + "definitive-base" = dontDistribute super."definitive-base"; + "definitive-filesystem" = dontDistribute super."definitive-filesystem"; + "definitive-graphics" = dontDistribute super."definitive-graphics"; + "definitive-parser" = dontDistribute super."definitive-parser"; + "definitive-reactive" = dontDistribute super."definitive-reactive"; + "definitive-sound" = dontDistribute super."definitive-sound"; + "deiko-config" = dontDistribute super."deiko-config"; + "deka" = dontDistribute super."deka"; + "deka-tests" = dontDistribute super."deka-tests"; + "delaunay" = dontDistribute super."delaunay"; + "delicious" = dontDistribute super."delicious"; + "delimited-text" = dontDistribute super."delimited-text"; + "delimiter-separated" = dontDistribute super."delimiter-separated"; + "delta" = dontDistribute super."delta"; + "delta-h" = dontDistribute super."delta-h"; + "demarcate" = dontDistribute super."demarcate"; + "denominate" = dontDistribute super."denominate"; + "depends" = dontDistribute super."depends"; + "dephd" = dontDistribute super."dephd"; + "dequeue" = dontDistribute super."dequeue"; + "derangement" = dontDistribute super."derangement"; + "derivation-trees" = dontDistribute super."derivation-trees"; + "derive-IG" = dontDistribute super."derive-IG"; + "derive-enumerable" = dontDistribute super."derive-enumerable"; + "derive-gadt" = dontDistribute super."derive-gadt"; + "derive-monoid" = dontDistribute super."derive-monoid"; + "derive-topdown" = dontDistribute super."derive-topdown"; + "derive-trie" = dontDistribute super."derive-trie"; + "deriving-compat" = dontDistribute super."deriving-compat"; + "derp" = dontDistribute super."derp"; + "derp-lib" = dontDistribute super."derp-lib"; + "descrilo" = dontDistribute super."descrilo"; + "despair" = dontDistribute super."despair"; + "deterministic-game-engine" = dontDistribute super."deterministic-game-engine"; + "detrospector" = dontDistribute super."detrospector"; + "deunicode" = dontDistribute super."deunicode"; + "devil" = dontDistribute super."devil"; + "dewdrop" = dontDistribute super."dewdrop"; + "dfrac" = dontDistribute super."dfrac"; + "dfsbuild" = dontDistribute super."dfsbuild"; + "dgim" = dontDistribute super."dgim"; + "dgs" = dontDistribute super."dgs"; + "dia-base" = dontDistribute super."dia-base"; + "dia-functions" = dontDistribute super."dia-functions"; + "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; + "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; + "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; + "diagrams-pdf" = dontDistribute super."diagrams-pdf"; + "diagrams-pgf" = dontDistribute super."diagrams-pgf"; + "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; + "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; + "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; + "dicom" = dontDistribute super."dicom"; + "dictparser" = dontDistribute super."dictparser"; + "diet" = dontDistribute super."diet"; + "diff-gestalt" = dontDistribute super."diff-gestalt"; + "diff-parse" = dontDistribute super."diff-parse"; + "diffarray" = dontDistribute super."diffarray"; + "diffcabal" = dontDistribute super."diffcabal"; + "diffdump" = dontDistribute super."diffdump"; + "digamma" = dontDistribute super."digamma"; + "digest-pure" = dontDistribute super."digest-pure"; + "digestive-foundation-lucid" = dontDistribute super."digestive-foundation-lucid"; + "digestive-functors-happstack" = dontDistribute super."digestive-functors-happstack"; + "digestive-functors-heist" = dontDistribute super."digestive-functors-heist"; + "digestive-functors-hsp" = dontDistribute super."digestive-functors-hsp"; + "digestive-functors-scotty" = dontDistribute super."digestive-functors-scotty"; + "digestive-functors-snap" = dontDistribute super."digestive-functors-snap"; + "digit" = dontDistribute super."digit"; + "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; + "dimensional-codata" = dontDistribute super."dimensional-codata"; + "dimensional-tf" = dontDistribute super."dimensional-tf"; + "dingo-core" = dontDistribute super."dingo-core"; + "dingo-example" = dontDistribute super."dingo-example"; + "dingo-widgets" = dontDistribute super."dingo-widgets"; + "diophantine" = dontDistribute super."diophantine"; + "diplomacy" = dontDistribute super."diplomacy"; + "diplomacy-server" = dontDistribute super."diplomacy-server"; + "direct-binary-files" = dontDistribute super."direct-binary-files"; + "direct-daemonize" = dontDistribute super."direct-daemonize"; + "direct-fastcgi" = dontDistribute super."direct-fastcgi"; + "direct-http" = dontDistribute super."direct-http"; + "direct-murmur-hash" = dontDistribute super."direct-murmur-hash"; + "direct-plugins" = dontDistribute super."direct-plugins"; + "directed-cubical" = dontDistribute super."directed-cubical"; + "directory-layout" = dontDistribute super."directory-layout"; + "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-closure" = dontDistribute super."distributed-closure"; + "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-lifted" = dontDistribute super."distributed-process-lifted"; + "distributed-process-monad-control" = dontDistribute super."distributed-process-monad-control"; + "distributed-process-p2p" = dontDistribute super."distributed-process-p2p"; + "distributed-process-platform" = dontDistribute super."distributed-process-platform"; + "distributed-process-registry" = dontDistribute super."distributed-process-registry"; + "distributed-process-simplelocalnet" = dontDistribute super."distributed-process-simplelocalnet"; + "distributed-process-supervisor" = dontDistribute super."distributed-process-supervisor"; + "distributed-process-task" = dontDistribute super."distributed-process-task"; + "distributed-process-tests" = dontDistribute super."distributed-process-tests"; + "distributed-process-zookeeper" = dontDistribute super."distributed-process-zookeeper"; + "distribution" = dontDistribute super."distribution"; + "distribution-plot" = dontDistribute super."distribution-plot"; + "djembe" = dontDistribute super."djembe"; + "djinn" = dontDistribute super."djinn"; + "djinn-th" = dontDistribute super."djinn-th"; + "dnscache" = dontDistribute super."dnscache"; + "dnsrbl" = dontDistribute super."dnsrbl"; + "dnssd" = dontDistribute super."dnssd"; + "doc-review" = dontDistribute super."doc-review"; + "doccheck" = dontDistribute super."doccheck"; + "docidx" = dontDistribute super."docidx"; + "docker" = dontDistribute super."docker"; + "dockercook" = dontDistribute super."dockercook"; + "doctest-discover" = dontDistribute super."doctest-discover"; + "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; + "doctest-prop" = dontDistribute super."doctest-prop"; + "dom-lt" = dontDistribute super."dom-lt"; + "dom-parser" = dontDistribute super."dom-parser"; + "dom-selector" = dontDistribute super."dom-selector"; + "domain-auth" = dontDistribute super."domain-auth"; + "dominion" = dontDistribute super."dominion"; + "domplate" = dontDistribute super."domplate"; + "dot2graphml" = dontDistribute super."dot2graphml"; + "dotfs" = dontDistribute super."dotfs"; + "dotgen" = dontDistribute super."dotgen"; + "double-metaphone" = dontDistribute super."double-metaphone"; + "dove" = dontDistribute super."dove"; + "dow" = dontDistribute super."dow"; + "download" = dontDistribute super."download"; + "download-curl" = dontDistribute super."download-curl"; + "download-media-content" = dontDistribute super."download-media-content"; + "dozenal" = dontDistribute super."dozenal"; + "dozens" = dontDistribute super."dozens"; + "dph-base" = dontDistribute super."dph-base"; + "dph-examples" = dontDistribute super."dph-examples"; + "dph-lifted-base" = dontDistribute super."dph-lifted-base"; + "dph-lifted-copy" = dontDistribute super."dph-lifted-copy"; + "dph-lifted-vseg" = dontDistribute super."dph-lifted-vseg"; + "dph-par" = dontDistribute super."dph-par"; + "dph-prim-interface" = dontDistribute super."dph-prim-interface"; + "dph-prim-par" = dontDistribute super."dph-prim-par"; + "dph-prim-seq" = dontDistribute super."dph-prim-seq"; + "dph-seq" = dontDistribute super."dph-seq"; + "dpkg" = dontDistribute super."dpkg"; + "drClickOn" = dontDistribute super."drClickOn"; + "draw-poker" = dontDistribute super."draw-poker"; + "dropbox-sdk" = dontDistribute super."dropbox-sdk"; + "dropsolve" = dontDistribute super."dropsolve"; + "ds-kanren" = dontDistribute super."ds-kanren"; + "dsh-sql" = dontDistribute super."dsh-sql"; + "dsmc" = dontDistribute super."dsmc"; + "dsmc-tools" = dontDistribute super."dsmc-tools"; + "dson" = dontDistribute super."dson"; + "dson-parsec" = dontDistribute super."dson-parsec"; + "dsp" = dontDistribute super."dsp"; + "dstring" = dontDistribute super."dstring"; + "dtab" = dontDistribute super."dtab"; + "dtd" = dontDistribute super."dtd"; + "dtd-text" = dontDistribute super."dtd-text"; + "dtd-types" = dontDistribute super."dtd-types"; + "dtrace" = dontDistribute super."dtrace"; + "dtw" = dontDistribute super."dtw"; + "dump" = dontDistribute super."dump"; + "duplo" = dontDistribute super."duplo"; + "dvda" = dontDistribute super."dvda"; + "dvdread" = dontDistribute super."dvdread"; + "dvi-processing" = dontDistribute super."dvi-processing"; + "dvorak" = dontDistribute super."dvorak"; + "dwarf" = dontDistribute super."dwarf"; + "dwarf-el" = dontDistribute super."dwarf-el"; + "dwarfadt" = dontDistribute super."dwarfadt"; + "dx9base" = dontDistribute super."dx9base"; + "dx9d3d" = dontDistribute super."dx9d3d"; + "dx9d3dx" = dontDistribute super."dx9d3dx"; + "dynamic-cabal" = dontDistribute super."dynamic-cabal"; + "dynamic-graph" = dontDistribute super."dynamic-graph"; + "dynamic-linker-template" = dontDistribute super."dynamic-linker-template"; + "dynamic-loader" = dontDistribute super."dynamic-loader"; + "dynamic-mvector" = dontDistribute super."dynamic-mvector"; + "dynamic-object" = dontDistribute super."dynamic-object"; + "dynamic-plot" = dontDistribute super."dynamic-plot"; + "dynamic-pp" = dontDistribute super."dynamic-pp"; + "dynobud" = dontDistribute super."dynobud"; + "dywapitchtrack" = dontDistribute super."dywapitchtrack"; + "dzen-utils" = dontDistribute super."dzen-utils"; + "eager-sockets" = dontDistribute super."eager-sockets"; + "easy-api" = dontDistribute super."easy-api"; + "easy-bitcoin" = dontDistribute super."easy-bitcoin"; + "easyjson" = dontDistribute super."easyjson"; + "easyplot" = dontDistribute super."easyplot"; + "easyrender" = dontDistribute super."easyrender"; + "ebeats" = dontDistribute super."ebeats"; + "ebnf-bff" = dontDistribute super."ebnf-bff"; + "ec2-signature" = dontDistribute super."ec2-signature"; + "ecdsa" = dontDistribute super."ecdsa"; + "ecma262" = dontDistribute super."ecma262"; + "ecu" = dontDistribute super."ecu"; + "ed25519" = dontDistribute super."ed25519"; + "ed25519-donna" = dontDistribute super."ed25519-donna"; + "eddie" = dontDistribute super."eddie"; + "edenmodules" = dontDistribute super."edenmodules"; + "edenskel" = dontDistribute super."edenskel"; + "edentv" = dontDistribute super."edentv"; + "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; + "edit-lenses" = dontDistribute super."edit-lenses"; + "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; + "editable" = dontDistribute super."editable"; + "editline" = dontDistribute super."editline"; + "effect-monad" = dontDistribute super."effect-monad"; + "effective-aspects" = dontDistribute super."effective-aspects"; + "effective-aspects-mzv" = dontDistribute super."effective-aspects-mzv"; + "effects" = dontDistribute super."effects"; + "effects-parser" = dontDistribute super."effects-parser"; + "effin" = dontDistribute super."effin"; + "egison" = dontDistribute super."egison"; + "egison-quote" = dontDistribute super."egison-quote"; + "egison-tutorial" = dontDistribute super."egison-tutorial"; + "ehaskell" = dontDistribute super."ehaskell"; + "ehs" = dontDistribute super."ehs"; + "eibd-client-simple" = dontDistribute super."eibd-client-simple"; + "eigen" = dontDistribute super."eigen"; + "eithers" = dontDistribute super."eithers"; + "ekg-bosun" = dontDistribute super."ekg-bosun"; + "ekg-carbon" = dontDistribute super."ekg-carbon"; + "ekg-log" = dontDistribute super."ekg-log"; + "ekg-push" = dontDistribute super."ekg-push"; + "ekg-rrd" = dontDistribute super."ekg-rrd"; + "ekg-statsd" = dontDistribute super."ekg-statsd"; + "electrum-mnemonic" = dontDistribute super."electrum-mnemonic"; + "elerea" = dontDistribute super."elerea"; + "elerea-examples" = dontDistribute super."elerea-examples"; + "elerea-sdl" = dontDistribute super."elerea-sdl"; + "elevator" = dontDistribute super."elevator"; + "elf" = dontDistribute super."elf"; + "elm-build-lib" = dontDistribute super."elm-build-lib"; + "elm-compiler" = dontDistribute super."elm-compiler"; + "elm-get" = dontDistribute super."elm-get"; + "elm-init" = dontDistribute super."elm-init"; + "elm-make" = dontDistribute super."elm-make"; + "elm-package" = dontDistribute super."elm-package"; + "elm-reactor" = dontDistribute super."elm-reactor"; + "elm-repl" = dontDistribute super."elm-repl"; + "elm-server" = dontDistribute super."elm-server"; + "elm-yesod" = dontDistribute super."elm-yesod"; + "elo" = dontDistribute super."elo"; + "elocrypt" = dontDistribute super."elocrypt"; + "emacs-keys" = dontDistribute super."emacs-keys"; + "email" = dontDistribute super."email"; + "email-header" = dontDistribute super."email-header"; + "email-postmark" = dontDistribute super."email-postmark"; + "email-validator" = dontDistribute super."email-validator"; + "embeddock" = dontDistribute super."embeddock"; + "embeddock-example" = dontDistribute super."embeddock-example"; + "embroidery" = dontDistribute super."embroidery"; + "emgm" = dontDistribute super."emgm"; + "empty" = dontDistribute super."empty"; + "encoding" = dontDistribute super."encoding"; + "endo" = dontDistribute super."endo"; + "engine-io-growler" = dontDistribute super."engine-io-growler"; + "engine-io-snap" = dontDistribute super."engine-io-snap"; + "engineering-units" = dontDistribute super."engineering-units"; + "enumerable" = dontDistribute super."enumerable"; + "enumerate" = dontDistribute super."enumerate"; + "enumeration" = dontDistribute super."enumeration"; + "enumerator-fd" = dontDistribute super."enumerator-fd"; + "enumerator-tf" = dontDistribute super."enumerator-tf"; + "enumfun" = dontDistribute super."enumfun"; + "enummapmap" = dontDistribute super."enummapmap"; + "enummapset" = dontDistribute super."enummapset"; + "enummapset-th" = dontDistribute super."enummapset-th"; + "enumset" = dontDistribute super."enumset"; + "env-parser" = dontDistribute super."env-parser"; + "envparse" = dontDistribute super."envparse"; + "epanet-haskell" = dontDistribute super."epanet-haskell"; + "epass" = dontDistribute super."epass"; + "epic" = dontDistribute super."epic"; + "epoll" = dontDistribute super."epoll"; + "eprocess" = dontDistribute super."eprocess"; + "epub" = dontDistribute super."epub"; + "epub-metadata" = dontDistribute super."epub-metadata"; + "epub-tools" = dontDistribute super."epub-tools"; + "epubname" = dontDistribute super."epubname"; + "equal-files" = dontDistribute super."equal-files"; + "equational-reasoning" = dontDistribute super."equational-reasoning"; + "erd" = dontDistribute super."erd"; + "erf-native" = dontDistribute super."erf-native"; + "erlang" = dontDistribute super."erlang"; + "eros" = dontDistribute super."eros"; + "eros-client" = dontDistribute super."eros-client"; + "eros-http" = dontDistribute super."eros-http"; + "errno" = dontDistribute super."errno"; + "error-analyze" = dontDistribute super."error-analyze"; + "error-continuations" = dontDistribute super."error-continuations"; + "error-list" = dontDistribute super."error-list"; + "error-loc" = dontDistribute super."error-loc"; + "error-location" = dontDistribute super."error-location"; + "error-message" = dontDistribute super."error-message"; + "error-util" = dontDistribute super."error-util"; + "errorcall-eq-instance" = dontDistribute super."errorcall-eq-instance"; + "ersatz" = dontDistribute super."ersatz"; + "ersatz-toysat" = dontDistribute super."ersatz-toysat"; + "ert" = dontDistribute super."ert"; + "esotericbot" = dontDistribute super."esotericbot"; + "ess" = dontDistribute super."ess"; + "estimator" = dontDistribute super."estimator"; + "estimators" = dontDistribute super."estimators"; + "estreps" = dontDistribute super."estreps"; + "eternal" = dontDistribute super."eternal"; + "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"; + "every-bit-counts" = dontDistribute super."every-bit-counts"; + "ewe" = dontDistribute super."ewe"; + "ex-pool" = dontDistribute super."ex-pool"; + "exact-combinatorics" = dontDistribute super."exact-combinatorics"; + "exception-hierarchy" = dontDistribute super."exception-hierarchy"; + "exception-mailer" = dontDistribute super."exception-mailer"; + "exception-monads-fd" = dontDistribute super."exception-monads-fd"; + "exception-monads-tf" = dontDistribute super."exception-monads-tf"; + "exception-mtl" = dontDistribute super."exception-mtl"; + "exherbo-cabal" = dontDistribute super."exherbo-cabal"; + "exif" = dontDistribute super."exif"; + "exinst" = dontDistribute super."exinst"; + "exinst-aeson" = dontDistribute super."exinst-aeson"; + "exinst-bytes" = dontDistribute super."exinst-bytes"; + "exinst-deepseq" = dontDistribute super."exinst-deepseq"; + "exinst-hashable" = dontDistribute super."exinst-hashable"; + "exists" = dontDistribute super."exists"; + "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; + "exp-pairs" = dontDistribute super."exp-pairs"; + "expand" = dontDistribute super."expand"; + "expat-enumerator" = dontDistribute super."expat-enumerator"; + "expiring-mvar" = dontDistribute super."expiring-mvar"; + "explain" = dontDistribute super."explain"; + "explicit-determinant" = dontDistribute super."explicit-determinant"; + "explicit-iomodes" = dontDistribute super."explicit-iomodes"; + "explicit-iomodes-bytestring" = dontDistribute super."explicit-iomodes-bytestring"; + "explicit-iomodes-text" = dontDistribute super."explicit-iomodes-text"; + "explicit-sharing" = dontDistribute super."explicit-sharing"; + "explore" = dontDistribute super."explore"; + "exposed-containers" = dontDistribute super."exposed-containers"; + "expression-parser" = dontDistribute super."expression-parser"; + "extcore" = dontDistribute super."extcore"; + "extemp" = dontDistribute super."extemp"; + "extended-categories" = dontDistribute super."extended-categories"; + "extended-reals" = dontDistribute super."extended-reals"; + "extensible" = dontDistribute super."extensible"; + "extensible-data" = dontDistribute super."extensible-data"; + "external-sort" = dontDistribute super."external-sort"; + "extractelf" = dontDistribute super."extractelf"; + "ez-couch" = dontDistribute super."ez-couch"; + "faceted" = dontDistribute super."faceted"; + "factory" = dontDistribute super."factory"; + "factual-api" = dontDistribute super."factual-api"; + "fad" = dontDistribute super."fad"; + "fail" = dontDistribute super."fail"; + "failable-list" = dontDistribute super."failable-list"; + "failure" = dontDistribute super."failure"; + "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; + "faker" = dontDistribute super."faker"; + "falling-turnip" = dontDistribute super."falling-turnip"; + "fallingblocks" = dontDistribute super."fallingblocks"; + "family-tree" = dontDistribute super."family-tree"; + "fast-digits" = dontDistribute super."fast-digits"; + "fast-math" = dontDistribute super."fast-math"; + "fast-tags" = dontDistribute super."fast-tags"; + "fast-tagsoup" = dontDistribute super."fast-tagsoup"; + "fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only"; + "fastbayes" = dontDistribute super."fastbayes"; + "fastcgi" = dontDistribute super."fastcgi"; + "fastedit" = dontDistribute super."fastedit"; + "fastirc" = dontDistribute super."fastirc"; + "fault-tree" = dontDistribute super."fault-tree"; + "fay-geoposition" = dontDistribute super."fay-geoposition"; + "fay-hsx" = dontDistribute super."fay-hsx"; + "fay-ref" = dontDistribute super."fay-ref"; + "fca" = dontDistribute super."fca"; + "fcache" = dontDistribute super."fcache"; + "fcd" = dontDistribute super."fcd"; + "fckeditor" = dontDistribute super."fckeditor"; + "fclabels-monadlib" = dontDistribute super."fclabels-monadlib"; + "fdo-trash" = dontDistribute super."fdo-trash"; + "fec" = dontDistribute super."fec"; + "fedora-packages" = dontDistribute super."fedora-packages"; + "feed-cli" = dontDistribute super."feed-cli"; + "feed-collect" = dontDistribute super."feed-collect"; + "feed-crawl" = dontDistribute super."feed-crawl"; + "feed-translator" = dontDistribute super."feed-translator"; + "feed2lj" = dontDistribute super."feed2lj"; + "feed2twitter" = dontDistribute super."feed2twitter"; + "feldspar-compiler" = dontDistribute super."feldspar-compiler"; + "feldspar-language" = dontDistribute super."feldspar-language"; + "feldspar-signal" = dontDistribute super."feldspar-signal"; + "fen2s" = dontDistribute super."fen2s"; + "fences" = dontDistribute super."fences"; + "fenfire" = dontDistribute super."fenfire"; + "fez-conf" = dontDistribute super."fez-conf"; + "ffeed" = dontDistribute super."ffeed"; + "fficxx" = dontDistribute super."fficxx"; + "fficxx-runtime" = dontDistribute super."fficxx-runtime"; + "ffmpeg-light" = dontDistribute super."ffmpeg-light"; + "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials"; + "fftwRaw" = dontDistribute super."fftwRaw"; + "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions"; + "fgl-visualize" = dontDistribute super."fgl-visualize"; + "fibon" = dontDistribute super."fibon"; + "fibonacci" = dontDistribute super."fibonacci"; + "fields" = dontDistribute super."fields"; + "fields-json" = dontDistribute super."fields-json"; + "fieldwise" = dontDistribute super."fieldwise"; + "fig" = dontDistribute super."fig"; + "file-collection" = dontDistribute super."file-collection"; + "file-command-qq" = dontDistribute super."file-command-qq"; + "filediff" = dontDistribute super."filediff"; + "filepath-io-access" = dontDistribute super."filepath-io-access"; + "filepather" = dontDistribute super."filepather"; + "filestore" = dontDistribute super."filestore"; + "filesystem-conduit" = dontDistribute super."filesystem-conduit"; + "filesystem-enumerator" = dontDistribute super."filesystem-enumerator"; + "filesystem-trees" = dontDistribute super."filesystem-trees"; + "filtrable" = dontDistribute super."filtrable"; + "final" = dontDistribute super."final"; + "find-conduit" = dontDistribute super."find-conduit"; + "fingertree-tf" = dontDistribute super."fingertree-tf"; + "finite-field" = dontDistribute super."finite-field"; + "finite-typelits" = dontDistribute super."finite-typelits"; + "first-and-last" = dontDistribute super."first-and-last"; + "first-class-patterns" = dontDistribute super."first-class-patterns"; + "firstify" = dontDistribute super."firstify"; + "fishfood" = dontDistribute super."fishfood"; + "fit" = dontDistribute super."fit"; + "fitsio" = dontDistribute super."fitsio"; + "fix-imports" = dontDistribute super."fix-imports"; + "fix-parser-simple" = dontDistribute super."fix-parser-simple"; + "fix-symbols-gitit" = dontDistribute super."fix-symbols-gitit"; + "fixed-length" = dontDistribute super."fixed-length"; + "fixed-point" = dontDistribute super."fixed-point"; + "fixed-point-vector" = dontDistribute super."fixed-point-vector"; + "fixed-point-vector-space" = dontDistribute super."fixed-point-vector-space"; + "fixed-precision" = dontDistribute super."fixed-precision"; + "fixed-storable-array" = dontDistribute super."fixed-storable-array"; + "fixed-vector-binary" = dontDistribute super."fixed-vector-binary"; + "fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal"; + "fixedprec" = dontDistribute super."fixedprec"; + "fixedwidth-hs" = dontDistribute super."fixedwidth-hs"; + "fixhs" = dontDistribute super."fixhs"; + "fixplate" = dontDistribute super."fixplate"; + "fixpoint" = dontDistribute super."fixpoint"; + "fixtime" = dontDistribute super."fixtime"; + "fizz-buzz" = dontDistribute super."fizz-buzz"; + "flaccuraterip" = dontDistribute super."flaccuraterip"; + "flamethrower" = dontDistribute super."flamethrower"; + "flamingra" = dontDistribute super."flamingra"; + "flat-maybe" = dontDistribute super."flat-maybe"; + "flat-mcmc" = dontDistribute super."flat-mcmc"; + "flat-tex" = dontDistribute super."flat-tex"; + "flexible-time" = dontDistribute super."flexible-time"; + "flexible-unlit" = dontDistribute super."flexible-unlit"; + "flexiwrap" = dontDistribute super."flexiwrap"; + "flexiwrap-smallcheck" = dontDistribute super."flexiwrap-smallcheck"; + "flickr" = dontDistribute super."flickr"; + "flippers" = dontDistribute super."flippers"; + "flite" = dontDistribute super."flite"; + "flo" = dontDistribute super."flo"; + "float-binstring" = dontDistribute super."float-binstring"; + "floating-bits" = dontDistribute super."floating-bits"; + "floatshow" = dontDistribute super."floatshow"; + "flow2dot" = dontDistribute super."flow2dot"; + "flowdock-api" = dontDistribute super."flowdock-api"; + "flowdock-rest" = dontDistribute super."flowdock-rest"; + "flower" = dontDistribute super."flower"; + "flowlocks-framework" = dontDistribute super."flowlocks-framework"; + "flowsim" = dontDistribute super."flowsim"; + "fltkhs" = dontDistribute super."fltkhs"; + "fltkhs-fluid-examples" = dontDistribute super."fltkhs-fluid-examples"; + "fltkhs-hello-world" = dontDistribute super."fltkhs-hello-world"; + "fluent-logger" = dontDistribute super."fluent-logger"; + "fluent-logger-conduit" = dontDistribute super."fluent-logger-conduit"; + "fluidsynth" = dontDistribute super."fluidsynth"; + "fmark" = dontDistribute super."fmark"; + "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"; + "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric"; + "foreign-var" = dontDistribute super."foreign-var"; + "forger" = dontDistribute super."forger"; + "forkable-monad" = dontDistribute super."forkable-monad"; + "formal" = dontDistribute super."formal"; + "format" = dontDistribute super."format"; + "format-status" = dontDistribute super."format-status"; + "formattable" = dontDistribute super."formattable"; + "forml" = dontDistribute super."forml"; + "formlets" = dontDistribute super."formlets"; + "formlets-hsp" = dontDistribute super."formlets-hsp"; + "formura" = dontDistribute super."formura"; + "forth-hll" = dontDistribute super."forth-hll"; + "foscam-directory" = dontDistribute super."foscam-directory"; + "foscam-filename" = dontDistribute super."foscam-filename"; + "foscam-sort" = dontDistribute super."foscam-sort"; + "fountain" = dontDistribute super."fountain"; + "fpco-api" = dontDistribute super."fpco-api"; + "fpipe" = dontDistribute super."fpipe"; + "fpnla" = dontDistribute super."fpnla"; + "fpnla-examples" = dontDistribute super."fpnla-examples"; + "fptest" = dontDistribute super."fptest"; + "fquery" = dontDistribute super."fquery"; + "fractal" = dontDistribute super."fractal"; + "fractals" = dontDistribute super."fractals"; + "fraction" = dontDistribute super."fraction"; + "frag" = dontDistribute super."frag"; + "frame" = dontDistribute super."frame"; + "frame-markdown" = dontDistribute super."frame-markdown"; + "franchise" = dontDistribute super."franchise"; + "free-concurrent" = dontDistribute super."free-concurrent"; + "free-functors" = dontDistribute super."free-functors"; + "free-game" = dontDistribute super."free-game"; + "free-http" = dontDistribute super."free-http"; + "free-operational" = dontDistribute super."free-operational"; + "free-theorems" = dontDistribute super."free-theorems"; + "free-theorems-counterexamples" = dontDistribute super."free-theorems-counterexamples"; + "free-theorems-seq" = dontDistribute super."free-theorems-seq"; + "free-theorems-seq-webui" = dontDistribute super."free-theorems-seq-webui"; + "free-theorems-webui" = dontDistribute super."free-theorems-webui"; + "free-vl" = dontDistribute super."free-vl"; + "freekick2" = dontDistribute super."freekick2"; + "freer" = dontDistribute super."freer"; + "freesect" = dontDistribute super."freesect"; + "freesound" = dontDistribute super."freesound"; + "freetype-simple" = dontDistribute super."freetype-simple"; + "freetype2" = dontDistribute super."freetype2"; + "fresh" = dontDistribute super."fresh"; + "friday" = dontDistribute super."friday"; + "friday-devil" = dontDistribute super."friday-devil"; + "friday-juicypixels" = dontDistribute super."friday-juicypixels"; + "friday-scale-dct" = dontDistribute super."friday-scale-dct"; + "friendly-time" = dontDistribute super."friendly-time"; + "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"; + "function-combine" = dontDistribute super."function-combine"; + "function-instances-algebra" = dontDistribute super."function-instances-algebra"; + "functional-arrow" = dontDistribute super."functional-arrow"; + "functional-kmp" = dontDistribute super."functional-kmp"; + "functor-apply" = dontDistribute super."functor-apply"; + "functor-combo" = dontDistribute super."functor-combo"; + "functor-infix" = dontDistribute super."functor-infix"; + "functor-monadic" = dontDistribute super."functor-monadic"; + "functor-utils" = dontDistribute super."functor-utils"; + "functorm" = dontDistribute super."functorm"; + "functors" = dontDistribute super."functors"; + "funion" = dontDistribute super."funion"; + "funpat" = dontDistribute super."funpat"; + "funsat" = dontDistribute super."funsat"; + "fusion" = dontDistribute super."fusion"; + "futun" = dontDistribute super."futun"; + "future" = dontDistribute super."future"; + "future-resource" = dontDistribute super."future-resource"; + "fuzzy" = dontDistribute super."fuzzy"; + "fuzzy-timings" = dontDistribute super."fuzzy-timings"; + "fuzzytime" = dontDistribute super."fuzzytime"; + "fwgl" = dontDistribute super."fwgl"; + "fwgl-glfw" = dontDistribute super."fwgl-glfw"; + "fwgl-javascript" = dontDistribute super."fwgl-javascript"; + "g-npm" = dontDistribute super."g-npm"; + "gact" = dontDistribute super."gact"; + "game-of-life" = dontDistribute super."game-of-life"; + "game-probability" = dontDistribute super."game-probability"; + "game-tree" = dontDistribute super."game-tree"; + "gameclock" = dontDistribute super."gameclock"; + "gamma" = dontDistribute super."gamma"; + "gang-of-threads" = dontDistribute super."gang-of-threads"; + "garepinoh" = dontDistribute super."garepinoh"; + "garsia-wachs" = dontDistribute super."garsia-wachs"; + "gbu" = dontDistribute super."gbu"; + "gc" = dontDistribute super."gc"; + "gc-monitoring-wai" = dontDistribute super."gc-monitoring-wai"; + "gconf" = dontDistribute super."gconf"; + "gdiff" = dontDistribute super."gdiff"; + "gdiff-ig" = dontDistribute super."gdiff-ig"; + "gdiff-th" = dontDistribute super."gdiff-th"; + "gdo" = dontDistribute super."gdo"; + "gearbox" = dontDistribute super."gearbox"; + "geek" = dontDistribute super."geek"; + "geek-server" = dontDistribute super."geek-server"; + "gelatin" = dontDistribute super."gelatin"; + "gemstone" = dontDistribute super."gemstone"; + "gencheck" = dontDistribute super."gencheck"; + "gender" = dontDistribute super."gender"; + "genders" = dontDistribute super."genders"; + "general-prelude" = dontDistribute super."general-prelude"; + "generator" = dontDistribute super."generator"; + "generators" = dontDistribute super."generators"; + "generic-accessors" = dontDistribute super."generic-accessors"; + "generic-binary" = dontDistribute super."generic-binary"; + "generic-church" = dontDistribute super."generic-church"; + "generic-deepseq" = dontDistribute super."generic-deepseq"; + "generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold"; + "generic-maybe" = dontDistribute super."generic-maybe"; + "generic-pretty" = dontDistribute super."generic-pretty"; + "generic-server" = dontDistribute super."generic-server"; + "generic-storable" = dontDistribute super."generic-storable"; + "generic-tree" = dontDistribute super."generic-tree"; + "generic-xml" = dontDistribute super."generic-xml"; + "genericserialize" = dontDistribute super."genericserialize"; + "genetics" = dontDistribute super."genetics"; + "geni-gui" = dontDistribute super."geni-gui"; + "geni-util" = dontDistribute super."geni-util"; + "geniconvert" = dontDistribute super."geniconvert"; + "genifunctors" = dontDistribute super."genifunctors"; + "geniplate" = dontDistribute super."geniplate"; + "geniserver" = dontDistribute super."geniserver"; + "genprog" = dontDistribute super."genprog"; + "gentlemark" = dontDistribute super."gentlemark"; + "geo-resolver" = dontDistribute super."geo-resolver"; + "geo-uk" = dontDistribute super."geo-uk"; + "geocalc" = dontDistribute super."geocalc"; + "geocode-google" = dontDistribute super."geocode-google"; + "geodetic" = dontDistribute super."geodetic"; + "geodetics" = dontDistribute super."geodetics"; + "geohash" = dontDistribute super."geohash"; + "geoip2" = dontDistribute super."geoip2"; + "geojson" = dontDistribute super."geojson"; + "geom2d" = dontDistribute super."geom2d"; + "getemx" = dontDistribute super."getemx"; + "getflag" = dontDistribute super."getflag"; + "getopt-simple" = dontDistribute super."getopt-simple"; + "gf" = dontDistribute super."gf"; + "ggtsTC" = dontDistribute super."ggtsTC"; + "ghc-core" = dontDistribute super."ghc-core"; + "ghc-core-html" = dontDistribute super."ghc-core-html"; + "ghc-datasize" = dontDistribute super."ghc-datasize"; + "ghc-dump-tree" = dontDistribute super."ghc-dump-tree"; + "ghc-dup" = dontDistribute super."ghc-dup"; + "ghc-events-analyze" = dontDistribute super."ghc-events-analyze"; + "ghc-events-parallel" = dontDistribute super."ghc-events-parallel"; + "ghc-gc-tune" = dontDistribute super."ghc-gc-tune"; + "ghc-generic-instances" = dontDistribute super."ghc-generic-instances"; + "ghc-imported-from" = dontDistribute super."ghc-imported-from"; + "ghc-make" = dontDistribute super."ghc-make"; + "ghc-man-completion" = dontDistribute super."ghc-man-completion"; + "ghc-options" = dontDistribute super."ghc-options"; + "ghc-parmake" = dontDistribute super."ghc-parmake"; + "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; + "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; + "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph"; + "ghc-server" = dontDistribute super."ghc-server"; + "ghc-simple" = dontDistribute super."ghc-simple"; + "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; + "ghc-syb" = dontDistribute super."ghc-syb"; + "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-vis" = dontDistribute super."ghc-vis"; + "ghci-diagrams" = dontDistribute super."ghci-diagrams"; + "ghci-haskeline" = dontDistribute super."ghci-haskeline"; + "ghci-lib" = dontDistribute super."ghci-lib"; + "ghci-ng" = dontDistribute super."ghci-ng"; + "ghci-pretty" = dontDistribute super."ghci-pretty"; + "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; + "ghcjs-dom" = dontDistribute super."ghcjs-dom"; + "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; + "ghcjs-websockets" = dontDistribute super."ghcjs-websockets"; + "ghclive" = dontDistribute super."ghclive"; + "ghczdecode" = dontDistribute super."ghczdecode"; + "ght" = dontDistribute super."ght"; + "gi-atk" = dontDistribute super."gi-atk"; + "gi-cairo" = dontDistribute super."gi-cairo"; + "gi-gdk" = dontDistribute super."gi-gdk"; + "gi-gdkpixbuf" = dontDistribute super."gi-gdkpixbuf"; + "gi-gio" = dontDistribute super."gi-gio"; + "gi-glib" = dontDistribute super."gi-glib"; + "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gtk" = dontDistribute super."gi-gtk"; + "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; + "gi-notify" = dontDistribute super."gi-notify"; + "gi-pango" = dontDistribute super."gi-pango"; + "gi-soup" = dontDistribute super."gi-soup"; + "gi-vte" = dontDistribute super."gi-vte"; + "gi-webkit" = dontDistribute super."gi-webkit"; + "gi-webkit2" = dontDistribute super."gi-webkit2"; + "gimlh" = dontDistribute super."gimlh"; + "ginger" = dontDistribute super."ginger"; + "ginsu" = dontDistribute super."ginsu"; + "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-jump" = dontDistribute super."git-jump"; + "git-monitor" = dontDistribute super."git-monitor"; + "git-object" = dontDistribute super."git-object"; + "git-repair" = dontDistribute super."git-repair"; + "git-sanity" = dontDistribute super."git-sanity"; + "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; + "gitcache" = dontDistribute super."gitcache"; + "gitdo" = dontDistribute super."gitdo"; + "github-backup" = dontDistribute super."github-backup"; + "github-post-receive" = dontDistribute super."github-post-receive"; + "github-utils" = dontDistribute super."github-utils"; + "gitignore" = dontDistribute super."gitignore"; + "gitit" = dontDistribute super."gitit"; + "gitlib-cmdline" = dontDistribute super."gitlib-cmdline"; + "gitlib-cross" = dontDistribute super."gitlib-cross"; + "gitlib-s3" = dontDistribute super."gitlib-s3"; + "gitlib-sample" = dontDistribute super."gitlib-sample"; + "gitlib-utils" = dontDistribute super."gitlib-utils"; + "gitter" = dontDistribute super."gitter"; + "gl-capture" = dontDistribute super."gl-capture"; + "glade" = dontDistribute super."glade"; + "gladexml-accessor" = dontDistribute super."gladexml-accessor"; + "glambda" = dontDistribute super."glambda"; + "glapp" = dontDistribute super."glapp"; + "glasso" = dontDistribute super."glasso"; + "glicko" = dontDistribute super."glicko"; + "glider-nlp" = dontDistribute super."glider-nlp"; + "glintcollider" = dontDistribute super."glintcollider"; + "gll" = dontDistribute super."gll"; + "global" = dontDistribute super."global"; + "global-config" = dontDistribute super."global-config"; + "global-lock" = dontDistribute super."global-lock"; + "global-variables" = dontDistribute super."global-variables"; + "glome-hs" = dontDistribute super."glome-hs"; + "gloss" = dontDistribute super."gloss"; + "gloss-accelerate" = dontDistribute super."gloss-accelerate"; + "gloss-algorithms" = dontDistribute super."gloss-algorithms"; + "gloss-banana" = dontDistribute super."gloss-banana"; + "gloss-devil" = dontDistribute super."gloss-devil"; + "gloss-examples" = dontDistribute super."gloss-examples"; + "gloss-game" = dontDistribute super."gloss-game"; + "gloss-juicy" = dontDistribute super."gloss-juicy"; + "gloss-raster" = dontDistribute super."gloss-raster"; + "gloss-raster-accelerate" = dontDistribute super."gloss-raster-accelerate"; + "gloss-rendering" = dontDistribute super."gloss-rendering"; + "gloss-sodium" = dontDistribute super."gloss-sodium"; + "glpk-hs" = dontDistribute super."glpk-hs"; + "glue" = dontDistribute super."glue"; + "glue-common" = dontDistribute super."glue-common"; + "glue-core" = dontDistribute super."glue-core"; + "glue-ekg" = dontDistribute super."glue-ekg"; + "glue-example" = dontDistribute super."glue-example"; + "gluturtle" = dontDistribute super."gluturtle"; + "gmap" = dontDistribute super."gmap"; + "gmndl" = dontDistribute super."gmndl"; + "gnome-desktop" = dontDistribute super."gnome-desktop"; + "gnome-keyring" = dontDistribute super."gnome-keyring"; + "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; + "gnuplot" = dontDistribute super."gnuplot"; + "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; + "goatee" = dontDistribute super."goatee"; + "goatee-gtk" = dontDistribute super."goatee-gtk"; + "gofer-prelude" = dontDistribute super."gofer-prelude"; + "gogol" = dontDistribute super."gogol"; + "gogol-adexchange-buyer" = dontDistribute super."gogol-adexchange-buyer"; + "gogol-adexchange-seller" = dontDistribute super."gogol-adexchange-seller"; + "gogol-admin-datatransfer" = dontDistribute super."gogol-admin-datatransfer"; + "gogol-admin-directory" = dontDistribute super."gogol-admin-directory"; + "gogol-admin-emailmigration" = dontDistribute super."gogol-admin-emailmigration"; + "gogol-admin-reports" = dontDistribute super."gogol-admin-reports"; + "gogol-adsense" = dontDistribute super."gogol-adsense"; + "gogol-adsense-host" = dontDistribute super."gogol-adsense-host"; + "gogol-affiliates" = dontDistribute super."gogol-affiliates"; + "gogol-analytics" = dontDistribute super."gogol-analytics"; + "gogol-android-enterprise" = dontDistribute super."gogol-android-enterprise"; + "gogol-android-publisher" = dontDistribute super."gogol-android-publisher"; + "gogol-appengine" = dontDistribute super."gogol-appengine"; + "gogol-apps-activity" = dontDistribute super."gogol-apps-activity"; + "gogol-apps-calendar" = dontDistribute super."gogol-apps-calendar"; + "gogol-apps-licensing" = dontDistribute super."gogol-apps-licensing"; + "gogol-apps-reseller" = dontDistribute super."gogol-apps-reseller"; + "gogol-apps-tasks" = dontDistribute super."gogol-apps-tasks"; + "gogol-appstate" = dontDistribute super."gogol-appstate"; + "gogol-autoscaler" = dontDistribute super."gogol-autoscaler"; + "gogol-bigquery" = dontDistribute super."gogol-bigquery"; + "gogol-billing" = dontDistribute super."gogol-billing"; + "gogol-blogger" = dontDistribute super."gogol-blogger"; + "gogol-books" = dontDistribute super."gogol-books"; + "gogol-civicinfo" = dontDistribute super."gogol-civicinfo"; + "gogol-classroom" = dontDistribute super."gogol-classroom"; + "gogol-cloudtrace" = dontDistribute super."gogol-cloudtrace"; + "gogol-compute" = dontDistribute super."gogol-compute"; + "gogol-container" = dontDistribute super."gogol-container"; + "gogol-core" = dontDistribute super."gogol-core"; + "gogol-customsearch" = dontDistribute super."gogol-customsearch"; + "gogol-dataflow" = dontDistribute super."gogol-dataflow"; + "gogol-datastore" = dontDistribute super."gogol-datastore"; + "gogol-debugger" = dontDistribute super."gogol-debugger"; + "gogol-deploymentmanager" = dontDistribute super."gogol-deploymentmanager"; + "gogol-dfareporting" = dontDistribute super."gogol-dfareporting"; + "gogol-discovery" = dontDistribute super."gogol-discovery"; + "gogol-dns" = dontDistribute super."gogol-dns"; + "gogol-doubleclick-bids" = dontDistribute super."gogol-doubleclick-bids"; + "gogol-doubleclick-search" = dontDistribute super."gogol-doubleclick-search"; + "gogol-drive" = dontDistribute super."gogol-drive"; + "gogol-fitness" = dontDistribute super."gogol-fitness"; + "gogol-fonts" = dontDistribute super."gogol-fonts"; + "gogol-freebasesearch" = dontDistribute super."gogol-freebasesearch"; + "gogol-fusiontables" = dontDistribute super."gogol-fusiontables"; + "gogol-games" = dontDistribute super."gogol-games"; + "gogol-games-configuration" = dontDistribute super."gogol-games-configuration"; + "gogol-games-management" = dontDistribute super."gogol-games-management"; + "gogol-genomics" = dontDistribute super."gogol-genomics"; + "gogol-gmail" = dontDistribute super."gogol-gmail"; + "gogol-groups-migration" = dontDistribute super."gogol-groups-migration"; + "gogol-groups-settings" = dontDistribute super."gogol-groups-settings"; + "gogol-identity-toolkit" = dontDistribute super."gogol-identity-toolkit"; + "gogol-latencytest" = dontDistribute super."gogol-latencytest"; + "gogol-logging" = dontDistribute super."gogol-logging"; + "gogol-maps-coordinate" = dontDistribute super."gogol-maps-coordinate"; + "gogol-maps-engine" = dontDistribute super."gogol-maps-engine"; + "gogol-mirror" = dontDistribute super."gogol-mirror"; + "gogol-monitoring" = dontDistribute super."gogol-monitoring"; + "gogol-oauth2" = dontDistribute super."gogol-oauth2"; + "gogol-pagespeed" = dontDistribute super."gogol-pagespeed"; + "gogol-partners" = dontDistribute super."gogol-partners"; + "gogol-play-moviespartner" = dontDistribute super."gogol-play-moviespartner"; + "gogol-plus" = dontDistribute super."gogol-plus"; + "gogol-plus-domains" = dontDistribute super."gogol-plus-domains"; + "gogol-prediction" = dontDistribute super."gogol-prediction"; + "gogol-proximitybeacon" = dontDistribute super."gogol-proximitybeacon"; + "gogol-pubsub" = dontDistribute super."gogol-pubsub"; + "gogol-qpxexpress" = dontDistribute super."gogol-qpxexpress"; + "gogol-replicapool" = dontDistribute super."gogol-replicapool"; + "gogol-replicapool-updater" = dontDistribute super."gogol-replicapool-updater"; + "gogol-resourcemanager" = dontDistribute super."gogol-resourcemanager"; + "gogol-resourceviews" = dontDistribute super."gogol-resourceviews"; + "gogol-shopping-content" = dontDistribute super."gogol-shopping-content"; + "gogol-siteverification" = dontDistribute super."gogol-siteverification"; + "gogol-spectrum" = dontDistribute super."gogol-spectrum"; + "gogol-sqladmin" = dontDistribute super."gogol-sqladmin"; + "gogol-storage" = dontDistribute super."gogol-storage"; + "gogol-storage-transfer" = dontDistribute super."gogol-storage-transfer"; + "gogol-tagmanager" = dontDistribute super."gogol-tagmanager"; + "gogol-taskqueue" = dontDistribute super."gogol-taskqueue"; + "gogol-translate" = dontDistribute super."gogol-translate"; + "gogol-urlshortener" = dontDistribute super."gogol-urlshortener"; + "gogol-useraccounts" = dontDistribute super."gogol-useraccounts"; + "gogol-webmaster-tools" = dontDistribute super."gogol-webmaster-tools"; + "gogol-youtube" = dontDistribute super."gogol-youtube"; + "gogol-youtube-analytics" = dontDistribute super."gogol-youtube-analytics"; + "gogol-youtube-reporting" = dontDistribute super."gogol-youtube-reporting"; + "gooey" = dontDistribute super."gooey"; + "google-dictionary" = dontDistribute super."google-dictionary"; + "google-drive" = dontDistribute super."google-drive"; + "google-html5-slide" = dontDistribute super."google-html5-slide"; + "google-mail-filters" = dontDistribute super."google-mail-filters"; + "google-oauth2" = dontDistribute super."google-oauth2"; + "google-search" = dontDistribute super."google-search"; + "googleplus" = dontDistribute super."googleplus"; + "googlepolyline" = dontDistribute super."googlepolyline"; + "gopherbot" = dontDistribute super."gopherbot"; + "gore-and-ash" = dontDistribute super."gore-and-ash"; + "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; + "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; + "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; + "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; + "gore-and-ash-sync" = dontDistribute super."gore-and-ash-sync"; + "gpah" = dontDistribute super."gpah"; + "gpcsets" = dontDistribute super."gpcsets"; + "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"; + "grasp" = dontDistribute super."grasp"; + "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"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; + "grid" = dontDistribute super."grid"; + "gridland" = dontDistribute super."gridland"; + "grm" = dontDistribute super."grm"; + "groundhog-inspector" = dontDistribute super."groundhog-inspector"; + "group-with" = dontDistribute super."group-with"; + "groupoid" = dontDistribute super."groupoid"; + "gruff" = dontDistribute super."gruff"; + "gruff-examples" = dontDistribute super."gruff-examples"; + "gsc-weighting" = dontDistribute super."gsc-weighting"; + "gsl-random" = dontDistribute super."gsl-random"; + "gsl-random-fu" = dontDistribute super."gsl-random-fu"; + "gsmenu" = dontDistribute super."gsmenu"; + "gstreamer" = dontDistribute super."gstreamer"; + "gt-tools" = dontDistribute super."gt-tools"; + "gtfs" = dontDistribute super."gtfs"; + "gtk-helpers" = dontDistribute super."gtk-helpers"; + "gtk-jsinput" = dontDistribute super."gtk-jsinput"; + "gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore"; + "gtk-mac-integration" = dontDistribute super."gtk-mac-integration"; + "gtk-serialized-event" = dontDistribute super."gtk-serialized-event"; + "gtk-simple-list-view" = dontDistribute super."gtk-simple-list-view"; + "gtk-toggle-button-list" = dontDistribute super."gtk-toggle-button-list"; + "gtk-toy" = dontDistribute super."gtk-toy"; + "gtk-traymanager" = dontDistribute super."gtk-traymanager"; + "gtk2hs-cast-glade" = dontDistribute super."gtk2hs-cast-glade"; + "gtk2hs-cast-glib" = dontDistribute super."gtk2hs-cast-glib"; + "gtk2hs-cast-gnomevfs" = dontDistribute super."gtk2hs-cast-gnomevfs"; + "gtk2hs-cast-gtk" = dontDistribute super."gtk2hs-cast-gtk"; + "gtk2hs-cast-gtkglext" = dontDistribute super."gtk2hs-cast-gtkglext"; + "gtk2hs-cast-gtksourceview2" = dontDistribute super."gtk2hs-cast-gtksourceview2"; + "gtk2hs-cast-th" = dontDistribute super."gtk2hs-cast-th"; + "gtk2hs-hello" = dontDistribute super."gtk2hs-hello"; + "gtk2hs-rpn" = dontDistribute super."gtk2hs-rpn"; + "gtk3-mac-integration" = dontDistribute super."gtk3-mac-integration"; + "gtkglext" = dontDistribute super."gtkglext"; + "gtkimageview" = dontDistribute super."gtkimageview"; + "gtkrsync" = dontDistribute super."gtkrsync"; + "gtksourceview2" = dontDistribute super."gtksourceview2"; + "gtksourceview3" = dontDistribute super."gtksourceview3"; + "guarded-rewriting" = dontDistribute super."guarded-rewriting"; + "guess-combinator" = dontDistribute super."guess-combinator"; + "gulcii" = dontDistribute super."gulcii"; + "gutenberg-fibonaccis" = dontDistribute super."gutenberg-fibonaccis"; + "gyah-bin" = dontDistribute super."gyah-bin"; + "h-booru" = dontDistribute super."h-booru"; + "h-gpgme" = dontDistribute super."h-gpgme"; + "h2048" = dontDistribute super."h2048"; + "hArduino" = dontDistribute super."hArduino"; + "hBDD" = dontDistribute super."hBDD"; + "hBDD-CMUBDD" = dontDistribute super."hBDD-CMUBDD"; + "hBDD-CUDD" = dontDistribute super."hBDD-CUDD"; + "hCsound" = dontDistribute super."hCsound"; + "hDFA" = dontDistribute super."hDFA"; + "hF2" = dontDistribute super."hF2"; + "hGelf" = dontDistribute super."hGelf"; + "hLLVM" = dontDistribute super."hLLVM"; + "hMollom" = dontDistribute super."hMollom"; + "hPDB-examples" = dontDistribute super."hPDB-examples"; + "hPushover" = dontDistribute super."hPushover"; + "hR" = dontDistribute super."hR"; + "hRESP" = dontDistribute super."hRESP"; + "hS3" = dontDistribute super."hS3"; + "hScraper" = dontDistribute super."hScraper"; + "hSimpleDB" = dontDistribute super."hSimpleDB"; + "hTalos" = dontDistribute super."hTalos"; + "hTensor" = dontDistribute super."hTensor"; + "hVOIDP" = dontDistribute super."hVOIDP"; + "hXmixer" = dontDistribute super."hXmixer"; + "haar" = dontDistribute super."haar"; + "hacanon-light" = dontDistribute super."hacanon-light"; + "hack" = dontDistribute super."hack"; + "hack-contrib" = dontDistribute super."hack-contrib"; + "hack-contrib-press" = dontDistribute super."hack-contrib-press"; + "hack-frontend-happstack" = dontDistribute super."hack-frontend-happstack"; + "hack-frontend-monadcgi" = dontDistribute super."hack-frontend-monadcgi"; + "hack-handler-cgi" = dontDistribute super."hack-handler-cgi"; + "hack-handler-epoll" = dontDistribute super."hack-handler-epoll"; + "hack-handler-evhttp" = dontDistribute super."hack-handler-evhttp"; + "hack-handler-fastcgi" = dontDistribute super."hack-handler-fastcgi"; + "hack-handler-happstack" = dontDistribute super."hack-handler-happstack"; + "hack-handler-hyena" = dontDistribute super."hack-handler-hyena"; + "hack-handler-kibro" = dontDistribute super."hack-handler-kibro"; + "hack-handler-simpleserver" = dontDistribute super."hack-handler-simpleserver"; + "hack-middleware-cleanpath" = dontDistribute super."hack-middleware-cleanpath"; + "hack-middleware-clientsession" = dontDistribute super."hack-middleware-clientsession"; + "hack-middleware-gzip" = dontDistribute super."hack-middleware-gzip"; + "hack-middleware-jsonp" = dontDistribute super."hack-middleware-jsonp"; + "hack2" = dontDistribute super."hack2"; + "hack2-contrib" = dontDistribute super."hack2-contrib"; + "hack2-contrib-extra" = dontDistribute super."hack2-contrib-extra"; + "hack2-handler-happstack-server" = dontDistribute super."hack2-handler-happstack-server"; + "hack2-handler-mongrel2-http" = dontDistribute super."hack2-handler-mongrel2-http"; + "hack2-handler-snap-server" = dontDistribute super."hack2-handler-snap-server"; + "hack2-handler-warp" = dontDistribute super."hack2-handler-warp"; + "hack2-interface-wai" = dontDistribute super."hack2-interface-wai"; + "hackage-diff" = dontDistribute super."hackage-diff"; + "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-proxy" = dontDistribute super."hackage-proxy"; + "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; + "hackage-security" = dontDistribute super."hackage-security"; + "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; + "hackage-server" = dontDistribute super."hackage-server"; + "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage2hwn" = dontDistribute super."hackage2hwn"; + "hackage2twitter" = dontDistribute super."hackage2twitter"; + "hackager" = dontDistribute super."hackager"; + "hackernews" = dontDistribute super."hackernews"; + "hackertyper" = dontDistribute super."hackertyper"; + "hackport" = dontDistribute super."hackport"; + "hactor" = dontDistribute super."hactor"; + "hactors" = dontDistribute super."hactors"; + "haddock" = dontDistribute super."haddock"; + "haddock-leksah" = dontDistribute super."haddock-leksah"; + "hadoop-formats" = dontDistribute super."hadoop-formats"; + "hadoop-rpc" = dontDistribute super."hadoop-rpc"; + "hadoop-tools" = dontDistribute super."hadoop-tools"; + "haeredes" = dontDistribute super."haeredes"; + "haggis" = dontDistribute super."haggis"; + "haha" = dontDistribute super."haha"; + "haiji" = dontDistribute super."haiji"; + "hailgun" = dontDistribute super."hailgun"; + "hailgun-send" = dontDistribute super."hailgun-send"; + "hails" = dontDistribute super."hails"; + "hails-bin" = dontDistribute super."hails-bin"; + "hairy" = dontDistribute super."hairy"; + "hakaru" = dontDistribute super."hakaru"; + "hake" = dontDistribute super."hake"; + "hakismet" = dontDistribute super."hakismet"; + "hako" = dontDistribute super."hako"; + "hakyll-R" = dontDistribute super."hakyll-R"; + "hakyll-agda" = dontDistribute super."hakyll-agda"; + "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates"; + "hakyll-contrib" = dontDistribute super."hakyll-contrib"; + "hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation"; + "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links"; + "hakyll-convert" = dontDistribute super."hakyll-convert"; + "hakyll-elm" = dontDistribute super."hakyll-elm"; + "hakyll-sass" = dontDistribute super."hakyll-sass"; + "halberd" = dontDistribute super."halberd"; + "halfs" = dontDistribute super."halfs"; + "halipeto" = dontDistribute super."halipeto"; + "halive" = dontDistribute super."halive"; + "halma" = dontDistribute super."halma"; + "haltavista" = dontDistribute super."haltavista"; + "hamid" = dontDistribute super."hamid"; + "hampp" = dontDistribute super."hampp"; + "hamtmap" = dontDistribute super."hamtmap"; + "hamusic" = dontDistribute super."hamusic"; + "handa-gdata" = dontDistribute super."handa-gdata"; + "handa-geodata" = dontDistribute super."handa-geodata"; + "handa-opengl" = dontDistribute super."handa-opengl"; + "handle-like" = dontDistribute super."handle-like"; + "handsy" = dontDistribute super."handsy"; + "hangman" = dontDistribute super."hangman"; + "hannahci" = dontDistribute super."hannahci"; + "hans" = dontDistribute super."hans"; + "hans-pcap" = dontDistribute super."hans-pcap"; + "hans-pfq" = dontDistribute super."hans-pfq"; + "haphviz" = dontDistribute super."haphviz"; + "happindicator" = dontDistribute super."happindicator"; + "happindicator3" = dontDistribute super."happindicator3"; + "happraise" = dontDistribute super."happraise"; + "happs-hsp" = dontDistribute super."happs-hsp"; + "happs-hsp-template" = dontDistribute super."happs-hsp-template"; + "happs-tutorial" = dontDistribute super."happs-tutorial"; + "happstack" = dontDistribute super."happstack"; + "happstack-auth" = dontDistribute super."happstack-auth"; + "happstack-contrib" = dontDistribute super."happstack-contrib"; + "happstack-data" = dontDistribute super."happstack-data"; + "happstack-dlg" = dontDistribute super."happstack-dlg"; + "happstack-facebook" = dontDistribute super."happstack-facebook"; + "happstack-fastcgi" = dontDistribute super."happstack-fastcgi"; + "happstack-fay" = dontDistribute super."happstack-fay"; + "happstack-fay-ajax" = dontDistribute super."happstack-fay-ajax"; + "happstack-foundation" = dontDistribute super."happstack-foundation"; + "happstack-hamlet" = dontDistribute super."happstack-hamlet"; + "happstack-heist" = dontDistribute super."happstack-heist"; + "happstack-helpers" = dontDistribute super."happstack-helpers"; + "happstack-hstringtemplate" = dontDistribute super."happstack-hstringtemplate"; + "happstack-ixset" = dontDistribute super."happstack-ixset"; + "happstack-lite" = dontDistribute super."happstack-lite"; + "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; + "happstack-plugins" = dontDistribute super."happstack-plugins"; + "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; + "happstack-state" = dontDistribute super."happstack-state"; + "happstack-static-routing" = dontDistribute super."happstack-static-routing"; + "happstack-util" = dontDistribute super."happstack-util"; + "happstack-yui" = dontDistribute super."happstack-yui"; + "happy-meta" = dontDistribute super."happy-meta"; + "happybara" = dontDistribute super."happybara"; + "happybara-webkit" = dontDistribute super."happybara-webkit"; + "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "har" = dontDistribute super."har"; + "harchive" = dontDistribute super."harchive"; + "hardware-edsl" = dontDistribute super."hardware-edsl"; + "hark" = dontDistribute super."hark"; + "harmony" = dontDistribute super."harmony"; + "haroonga" = dontDistribute super."haroonga"; + "haroonga-httpd" = dontDistribute super."haroonga-httpd"; + "harpy" = dontDistribute super."harpy"; + "has" = dontDistribute super."has"; + "has-th" = dontDistribute super."has-th"; + "hascal" = dontDistribute super."hascal"; + "hascat" = dontDistribute super."hascat"; + "hascat-lib" = dontDistribute super."hascat-lib"; + "hascat-setup" = dontDistribute super."hascat-setup"; + "hascat-system" = dontDistribute super."hascat-system"; + "hash" = dontDistribute super."hash"; + "hashable-generics" = dontDistribute super."hashable-generics"; + "hashabler" = dontDistribute super."hashabler"; + "hashed-storage" = dontDistribute super."hashed-storage"; + "hashids" = dontDistribute super."hashids"; + "hashring" = dontDistribute super."hashring"; + "hashtables-plus" = dontDistribute super."hashtables-plus"; + "hasim" = dontDistribute super."hasim"; + "hask" = dontDistribute super."hask"; + "hask-home" = dontDistribute super."hask-home"; + "haskades" = dontDistribute super."haskades"; + "haskakafka" = dontDistribute super."haskakafka"; + "haskanoid" = dontDistribute super."haskanoid"; + "haskarrow" = dontDistribute super."haskarrow"; + "haskbot-core" = dontDistribute super."haskbot-core"; + "haskdeep" = dontDistribute super."haskdeep"; + "haskdogs" = dontDistribute super."haskdogs"; + "haskeem" = dontDistribute super."haskeem"; + "haskeline" = doDistribute super."haskeline_0_7_2_2"; + "haskeline-class" = dontDistribute super."haskeline-class"; + "haskell-aliyun" = dontDistribute super."haskell-aliyun"; + "haskell-awk" = dontDistribute super."haskell-awk"; + "haskell-bcrypt" = dontDistribute super."haskell-bcrypt"; + "haskell-brainfuck" = dontDistribute super."haskell-brainfuck"; + "haskell-cnc" = dontDistribute super."haskell-cnc"; + "haskell-coffee" = dontDistribute super."haskell-coffee"; + "haskell-compression" = dontDistribute super."haskell-compression"; + "haskell-course-preludes" = dontDistribute super."haskell-course-preludes"; + "haskell-docs" = dontDistribute super."haskell-docs"; + "haskell-exp-parser" = dontDistribute super."haskell-exp-parser"; + "haskell-formatter" = dontDistribute super."haskell-formatter"; + "haskell-ftp" = dontDistribute super."haskell-ftp"; + "haskell-generate" = dontDistribute super."haskell-generate"; + "haskell-gi" = dontDistribute super."haskell-gi"; + "haskell-gi-base" = dontDistribute super."haskell-gi-base"; + "haskell-import-graph" = dontDistribute super."haskell-import-graph"; + "haskell-in-space" = dontDistribute super."haskell-in-space"; + "haskell-modbus" = dontDistribute super."haskell-modbus"; + "haskell-mpi" = dontDistribute super."haskell-mpi"; + "haskell-names" = dontDistribute super."haskell-names"; + "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; + "haskell-platform-test" = dontDistribute super."haskell-platform-test"; + "haskell-plot" = dontDistribute super."haskell-plot"; + "haskell-qrencode" = dontDistribute super."haskell-qrencode"; + "haskell-read-editor" = dontDistribute super."haskell-read-editor"; + "haskell-reflect" = dontDistribute super."haskell-reflect"; + "haskell-rules" = dontDistribute super."haskell-rules"; + "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; + "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; + "haskell-token-utils" = dontDistribute super."haskell-token-utils"; + "haskell-tor" = dontDistribute super."haskell-tor"; + "haskell-type-exts" = dontDistribute super."haskell-type-exts"; + "haskell-typescript" = dontDistribute super."haskell-typescript"; + "haskell-tyrant" = dontDistribute super."haskell-tyrant"; + "haskell-updater" = dontDistribute super."haskell-updater"; + "haskell-xmpp" = dontDistribute super."haskell-xmpp"; + "haskell2010" = dontDistribute super."haskell2010"; + "haskell98" = dontDistribute super."haskell98"; + "haskell98libraries" = dontDistribute super."haskell98libraries"; + "haskelldb" = dontDistribute super."haskelldb"; + "haskelldb-connect-hdbc" = dontDistribute super."haskelldb-connect-hdbc"; + "haskelldb-connect-hdbc-catchio-mtl" = dontDistribute super."haskelldb-connect-hdbc-catchio-mtl"; + "haskelldb-connect-hdbc-catchio-tf" = dontDistribute super."haskelldb-connect-hdbc-catchio-tf"; + "haskelldb-connect-hdbc-catchio-transformers" = dontDistribute super."haskelldb-connect-hdbc-catchio-transformers"; + "haskelldb-connect-hdbc-lifted" = dontDistribute super."haskelldb-connect-hdbc-lifted"; + "haskelldb-dynamic" = dontDistribute super."haskelldb-dynamic"; + "haskelldb-flat" = dontDistribute super."haskelldb-flat"; + "haskelldb-hdbc" = dontDistribute super."haskelldb-hdbc"; + "haskelldb-hdbc-mysql" = dontDistribute super."haskelldb-hdbc-mysql"; + "haskelldb-hdbc-odbc" = dontDistribute super."haskelldb-hdbc-odbc"; + "haskelldb-hdbc-postgresql" = dontDistribute super."haskelldb-hdbc-postgresql"; + "haskelldb-hdbc-sqlite3" = dontDistribute super."haskelldb-hdbc-sqlite3"; + "haskelldb-hsql" = dontDistribute super."haskelldb-hsql"; + "haskelldb-hsql-mysql" = dontDistribute super."haskelldb-hsql-mysql"; + "haskelldb-hsql-odbc" = dontDistribute super."haskelldb-hsql-odbc"; + "haskelldb-hsql-oracle" = dontDistribute super."haskelldb-hsql-oracle"; + "haskelldb-hsql-postgresql" = dontDistribute super."haskelldb-hsql-postgresql"; + "haskelldb-hsql-sqlite" = dontDistribute super."haskelldb-hsql-sqlite"; + "haskelldb-hsql-sqlite3" = dontDistribute super."haskelldb-hsql-sqlite3"; + "haskelldb-th" = dontDistribute super."haskelldb-th"; + "haskelldb-wx" = dontDistribute super."haskelldb-wx"; + "haskellscrabble" = dontDistribute super."haskellscrabble"; + "haskellscript" = dontDistribute super."haskellscript"; + "haskelm" = dontDistribute super."haskelm"; + "haskgame" = dontDistribute super."haskgame"; + "haskheap" = dontDistribute super."haskheap"; + "haskhol-core" = dontDistribute super."haskhol-core"; + "haskmon" = dontDistribute super."haskmon"; + "haskoin" = dontDistribute super."haskoin"; + "haskoin-core" = dontDistribute super."haskoin-core"; + "haskoin-crypto" = dontDistribute super."haskoin-crypto"; + "haskoin-node" = dontDistribute super."haskoin-node"; + "haskoin-protocol" = dontDistribute super."haskoin-protocol"; + "haskoin-script" = dontDistribute super."haskoin-script"; + "haskoin-util" = dontDistribute super."haskoin-util"; + "haskoin-wallet" = dontDistribute super."haskoin-wallet"; + "haskoon" = dontDistribute super."haskoon"; + "haskoon-httpspec" = dontDistribute super."haskoon-httpspec"; + "haskoon-salvia" = dontDistribute super."haskoon-salvia"; + "haskore" = dontDistribute super."haskore"; + "haskore-realtime" = dontDistribute super."haskore-realtime"; + "haskore-supercollider" = dontDistribute super."haskore-supercollider"; + "haskore-synthesizer" = dontDistribute super."haskore-synthesizer"; + "haskore-vintage" = dontDistribute super."haskore-vintage"; + "hasktags" = dontDistribute super."hasktags"; + "haslo" = dontDistribute super."haslo"; + "hasloGUI" = dontDistribute super."hasloGUI"; + "hasparql-client" = dontDistribute super."hasparql-client"; + "haspell" = dontDistribute super."haspell"; + "hasql-pool" = dontDistribute super."hasql-pool"; + "hasql-postgres" = dontDistribute super."hasql-postgres"; + "hasql-postgres-options" = dontDistribute super."hasql-postgres-options"; + "hasql-th" = dontDistribute super."hasql-th"; + "hasql-transaction" = dontDistribute super."hasql-transaction"; + "hastache-aeson" = dontDistribute super."hastache-aeson"; + "haste" = dontDistribute super."haste"; + "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-markup" = dontDistribute super."haste-markup"; + "haste-perch" = dontDistribute super."haste-perch"; + "hastily" = dontDistribute super."hastily"; + "hat" = dontDistribute super."hat"; + "hatex-guide" = dontDistribute super."hatex-guide"; + "hath" = dontDistribute super."hath"; + "hatt" = dontDistribute super."hatt"; + "haverer" = dontDistribute super."haverer"; + "hawitter" = dontDistribute super."hawitter"; + "haxl-amazonka" = dontDistribute super."haxl-amazonka"; + "haxl-facebook" = dontDistribute super."haxl-facebook"; + "haxparse" = dontDistribute super."haxparse"; + "haxr-th" = dontDistribute super."haxr-th"; + "haxy" = dontDistribute super."haxy"; + "hayland" = dontDistribute super."hayland"; + "hayoo-cli" = dontDistribute super."hayoo-cli"; + "hback" = dontDistribute super."hback"; + "hbayes" = dontDistribute super."hbayes"; + "hbb" = dontDistribute super."hbb"; + "hbcd" = dontDistribute super."hbcd"; + "hbeat" = dontDistribute super."hbeat"; + "hblas" = dontDistribute super."hblas"; + "hblock" = dontDistribute super."hblock"; + "hbro" = dontDistribute super."hbro"; + "hbro-contrib" = dontDistribute super."hbro-contrib"; + "hburg" = dontDistribute super."hburg"; + "hcc" = dontDistribute super."hcc"; + "hcg-minus" = dontDistribute super."hcg-minus"; + "hcg-minus-cairo" = dontDistribute super."hcg-minus-cairo"; + "hcheat" = dontDistribute super."hcheat"; + "hchesslib" = dontDistribute super."hchesslib"; + "hcltest" = dontDistribute super."hcltest"; + "hcron" = dontDistribute super."hcron"; + "hcube" = dontDistribute super."hcube"; + "hcwiid" = dontDistribute super."hcwiid"; + "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix"; + "hdbc-aeson" = dontDistribute super."hdbc-aeson"; + "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore"; + "hdbc-tuple" = dontDistribute super."hdbc-tuple"; + "hdbi" = dontDistribute super."hdbi"; + "hdbi-conduit" = dontDistribute super."hdbi-conduit"; + "hdbi-postgresql" = dontDistribute super."hdbi-postgresql"; + "hdbi-sqlite" = dontDistribute super."hdbi-sqlite"; + "hdbi-tests" = dontDistribute super."hdbi-tests"; + "hdf" = dontDistribute super."hdf"; + "hdigest" = dontDistribute super."hdigest"; + "hdirect" = dontDistribute super."hdirect"; + "hdis86" = dontDistribute super."hdis86"; + "hdiscount" = dontDistribute super."hdiscount"; + "hdm" = dontDistribute super."hdm"; + "hdph" = dontDistribute super."hdph"; + "hdph-closure" = dontDistribute super."hdph-closure"; + "hdr-histogram" = dontDistribute super."hdr-histogram"; + "headergen" = dontDistribute super."headergen"; + "heapsort" = dontDistribute super."heapsort"; + "hecc" = dontDistribute super."hecc"; + "hedis-config" = dontDistribute super."hedis-config"; + "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-pile" = dontDistribute super."hedis-pile"; + "hedis-simple" = dontDistribute super."hedis-simple"; + "hedis-tags" = dontDistribute super."hedis-tags"; + "hedn" = dontDistribute super."hedn"; + "hein" = dontDistribute super."hein"; + "heist-aeson" = dontDistribute super."heist-aeson"; + "heist-async" = dontDistribute super."heist-async"; + "helics" = dontDistribute super."helics"; + "helics-wai" = dontDistribute super."helics-wai"; + "helisp" = dontDistribute super."helisp"; + "helium" = dontDistribute super."helium"; + "helix" = dontDistribute super."helix"; + "hell" = dontDistribute super."hell"; + "hellage" = dontDistribute super."hellage"; + "hellnet" = dontDistribute super."hellnet"; + "hello" = dontDistribute super."hello"; + "helm" = dontDistribute super."helm"; + "help-esb" = dontDistribute super."help-esb"; + "hemkay" = dontDistribute super."hemkay"; + "hemkay-core" = dontDistribute super."hemkay-core"; + "hemokit" = dontDistribute super."hemokit"; + "hen" = dontDistribute super."hen"; + "henet" = dontDistribute super."henet"; + "hepevt" = dontDistribute super."hepevt"; + "her-lexer" = dontDistribute super."her-lexer"; + "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; + "herbalizer" = dontDistribute super."herbalizer"; + "herf-time" = dontDistribute super."herf-time"; + "hermit" = dontDistribute super."hermit"; + "hermit-syb" = dontDistribute super."hermit-syb"; + "hero-club-five-tenets" = dontDistribute super."hero-club-five-tenets"; + "heroku" = dontDistribute super."heroku"; + "heroku-persistent" = dontDistribute super."heroku-persistent"; + "herringbone" = dontDistribute super."herringbone"; + "herringbone-embed" = dontDistribute super."herringbone-embed"; + "herringbone-wai" = dontDistribute super."herringbone-wai"; + "hesql" = dontDistribute super."hesql"; + "hetero-map" = dontDistribute super."hetero-map"; + "hetris" = dontDistribute super."hetris"; + "heukarya" = dontDistribute super."heukarya"; + "hevolisa" = dontDistribute super."hevolisa"; + "hevolisa-dph" = dontDistribute super."hevolisa-dph"; + "hexdump" = dontDistribute super."hexdump"; + "hexif" = dontDistribute super."hexif"; + "hexpat-iteratee" = dontDistribute super."hexpat-iteratee"; + "hexpat-lens" = dontDistribute super."hexpat-lens"; + "hexpat-pickle" = dontDistribute super."hexpat-pickle"; + "hexpat-pickle-generic" = dontDistribute super."hexpat-pickle-generic"; + "hexpat-tagsoup" = dontDistribute super."hexpat-tagsoup"; + "hexpr" = dontDistribute super."hexpr"; + "hexquote" = dontDistribute super."hexquote"; + "heyefi" = dontDistribute super."heyefi"; + "hfann" = dontDistribute super."hfann"; + "hfd" = dontDistribute super."hfd"; + "hfiar" = dontDistribute super."hfiar"; + "hfmt" = dontDistribute super."hfmt"; + "hfoil" = dontDistribute super."hfoil"; + "hformat" = dontDistribute super."hformat"; + "hfov" = dontDistribute super."hfov"; + "hfractal" = dontDistribute super."hfractal"; + "hfusion" = dontDistribute super."hfusion"; + "hg-buildpackage" = dontDistribute super."hg-buildpackage"; + "hgal" = dontDistribute super."hgal"; + "hgalib" = dontDistribute super."hgalib"; + "hgdbmi" = dontDistribute super."hgdbmi"; + "hgearman" = dontDistribute super."hgearman"; + "hgen" = dontDistribute super."hgen"; + "hgeometric" = dontDistribute super."hgeometric"; + "hgeometry" = dontDistribute super."hgeometry"; + "hgithub" = dontDistribute super."hgithub"; + "hgl-example" = dontDistribute super."hgl-example"; + "hgom" = dontDistribute super."hgom"; + "hgopher" = dontDistribute super."hgopher"; + "hgrev" = dontDistribute super."hgrev"; + "hgrib" = dontDistribute super."hgrib"; + "hharp" = dontDistribute super."hharp"; + "hi" = dontDistribute super."hi"; + "hi3status" = dontDistribute super."hi3status"; + "hiccup" = dontDistribute super."hiccup"; + "hichi" = dontDistribute super."hichi"; + "hieraclus" = dontDistribute super."hieraclus"; + "hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams"; + "hierarchical-exceptions" = dontDistribute super."hierarchical-exceptions"; + "hierarchy" = dontDistribute super."hierarchy"; + "hiernotify" = dontDistribute super."hiernotify"; + "highWaterMark" = dontDistribute super."highWaterMark"; + "higher-leveldb" = dontDistribute super."higher-leveldb"; + "higherorder" = dontDistribute super."higherorder"; + "highlight-versions" = dontDistribute super."highlight-versions"; + "highlighter" = dontDistribute super."highlighter"; + "highlighter2" = dontDistribute super."highlighter2"; + "hills" = dontDistribute super."hills"; + "himerge" = dontDistribute super."himerge"; + "himg" = dontDistribute super."himg"; + "himpy" = dontDistribute super."himpy"; + "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"; + "hkdf" = dontDistribute super."hkdf"; + "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-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-banded" = dontDistribute super."hmatrix-banded"; + "hmatrix-csv" = dontDistribute super."hmatrix-csv"; + "hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; + "hmatrix-mmap" = dontDistribute super."hmatrix-mmap"; + "hmatrix-nipals" = dontDistribute super."hmatrix-nipals"; + "hmatrix-quadprogpp" = dontDistribute super."hmatrix-quadprogpp"; + "hmatrix-repa" = dontDistribute super."hmatrix-repa"; + "hmatrix-special" = dontDistribute super."hmatrix-special"; + "hmatrix-static" = dontDistribute super."hmatrix-static"; + "hmatrix-svdlibc" = dontDistribute super."hmatrix-svdlibc"; + "hmatrix-syntax" = dontDistribute super."hmatrix-syntax"; + "hmatrix-tests" = dontDistribute super."hmatrix-tests"; + "hmeap" = dontDistribute super."hmeap"; + "hmeap-utils" = dontDistribute super."hmeap-utils"; + "hmemdb" = dontDistribute super."hmemdb"; + "hmenu" = dontDistribute super."hmenu"; + "hmidi" = dontDistribute super."hmidi"; + "hmk" = dontDistribute super."hmk"; + "hmm" = dontDistribute super."hmm"; + "hmm-hmatrix" = dontDistribute super."hmm-hmatrix"; + "hmp3" = dontDistribute super."hmp3"; + "hmpfr" = dontDistribute super."hmpfr"; + "hmt" = dontDistribute super."hmt"; + "hmt-diagrams" = dontDistribute super."hmt-diagrams"; + "hmumps" = dontDistribute super."hmumps"; + "hnetcdf" = dontDistribute super."hnetcdf"; + "hnix" = dontDistribute super."hnix"; + "hnn" = dontDistribute super."hnn"; + "hnop" = dontDistribute super."hnop"; + "ho-rewriting" = dontDistribute super."ho-rewriting"; + "hoauth" = dontDistribute super."hoauth"; + "hob" = dontDistribute super."hob"; + "hobbes" = dontDistribute super."hobbes"; + "hobbits" = dontDistribute super."hobbits"; + "hoe" = dontDistribute super."hoe"; + "hofix-mtl" = dontDistribute super."hofix-mtl"; + "hog" = dontDistribute super."hog"; + "hogg" = dontDistribute super."hogg"; + "hogre" = dontDistribute super."hogre"; + "hogre-examples" = dontDistribute super."hogre-examples"; + "hois" = dontDistribute super."hois"; + "hoist-error" = dontDistribute super."hoist-error"; + "hold-em" = dontDistribute super."hold-em"; + "hole" = dontDistribute super."hole"; + "holey-format" = dontDistribute super."holey-format"; + "homeomorphic" = dontDistribute super."homeomorphic"; + "hommage" = dontDistribute super."hommage"; + "hommage-ds" = dontDistribute super."hommage-ds"; + "homplexity" = dontDistribute super."homplexity"; + "honi" = dontDistribute super."honi"; + "honk" = dontDistribute super."honk"; + "hoobuddy" = dontDistribute super."hoobuddy"; + "hood" = dontDistribute super."hood"; + "hood-off" = dontDistribute super."hood-off"; + "hood2" = dontDistribute super."hood2"; + "hoodie" = dontDistribute super."hoodie"; + "hoodle" = dontDistribute super."hoodle"; + "hoodle-builder" = dontDistribute super."hoodle-builder"; + "hoodle-core" = dontDistribute super."hoodle-core"; + "hoodle-extra" = dontDistribute super."hoodle-extra"; + "hoodle-parser" = dontDistribute super."hoodle-parser"; + "hoodle-publish" = dontDistribute super."hoodle-publish"; + "hoodle-render" = dontDistribute super."hoodle-render"; + "hoodle-types" = dontDistribute super."hoodle-types"; + "hoogle-index" = dontDistribute super."hoogle-index"; + "hooks-dir" = dontDistribute super."hooks-dir"; + "hoovie" = dontDistribute super."hoovie"; + "hopencc" = dontDistribute super."hopencc"; + "hopencl" = dontDistribute super."hopencl"; + "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-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"; + "hsfacter" = dontDistribute super."hsfacter"; + "hsfcsh" = dontDistribute super."hsfcsh"; + "hsfilt" = dontDistribute super."hsfilt"; + "hsgnutls" = dontDistribute super."hsgnutls"; + "hsgnutls-yj" = dontDistribute super."hsgnutls-yj"; + "hsgsom" = dontDistribute super."hsgsom"; + "hsgtd" = dontDistribute super."hsgtd"; + "hsharc" = dontDistribute super."hsharc"; + "hsilop" = dontDistribute super."hsilop"; + "hsimport" = dontDistribute super."hsimport"; + "hsini" = dontDistribute super."hsini"; + "hskeleton" = dontDistribute super."hskeleton"; + "hslackbuilder" = dontDistribute super."hslackbuilder"; + "hslibsvm" = dontDistribute super."hslibsvm"; + "hslinks" = dontDistribute super."hslinks"; + "hslogger-reader" = dontDistribute super."hslogger-reader"; + "hslogger-template" = dontDistribute super."hslogger-template"; + "hslogger4j" = dontDistribute super."hslogger4j"; + "hslogstash" = dontDistribute super."hslogstash"; + "hsmagick" = dontDistribute super."hsmagick"; + "hsmisc" = dontDistribute super."hsmisc"; + "hsmtpclient" = dontDistribute super."hsmtpclient"; + "hsndfile-storablevector" = dontDistribute super."hsndfile-storablevector"; + "hsnock" = dontDistribute super."hsnock"; + "hsnoise" = dontDistribute super."hsnoise"; + "hsns" = dontDistribute super."hsns"; + "hsnsq" = dontDistribute super."hsnsq"; + "hsntp" = dontDistribute super."hsntp"; + "hsoptions" = dontDistribute super."hsoptions"; + "hsp-cgi" = dontDistribute super."hsp-cgi"; + "hsparklines" = dontDistribute super."hsparklines"; + "hsparql" = dontDistribute super."hsparql"; + "hspear" = dontDistribute super."hspear"; + "hspec-checkers" = dontDistribute super."hspec-checkers"; + "hspec-expectations-lens" = dontDistribute super."hspec-expectations-lens"; + "hspec-expectations-lifted" = dontDistribute super."hspec-expectations-lifted"; + "hspec-expectations-pretty" = dontDistribute super."hspec-expectations-pretty"; + "hspec-experimental" = dontDistribute super."hspec-experimental"; + "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-monad-control" = dontDistribute super."hspec-monad-control"; + "hspec-server" = dontDistribute super."hspec-server"; + "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; + "hspec-test-framework" = dontDistribute super."hspec-test-framework"; + "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; + "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec2" = dontDistribute super."hspec2"; + "hspr-sh" = dontDistribute super."hspr-sh"; + "hspread" = dontDistribute super."hspread"; + "hspresent" = dontDistribute super."hspresent"; + "hsprocess" = dontDistribute super."hsprocess"; + "hsql" = dontDistribute super."hsql"; + "hsql-mysql" = dontDistribute super."hsql-mysql"; + "hsql-odbc" = dontDistribute super."hsql-odbc"; + "hsql-postgresql" = dontDistribute super."hsql-postgresql"; + "hsql-sqlite3" = dontDistribute super."hsql-sqlite3"; + "hsqml" = dontDistribute super."hsqml"; + "hsqml-datamodel" = dontDistribute super."hsqml-datamodel"; + "hsqml-datamodel-vinyl" = dontDistribute super."hsqml-datamodel-vinyl"; + "hsqml-demo-morris" = dontDistribute super."hsqml-demo-morris"; + "hsqml-demo-notes" = dontDistribute super."hsqml-demo-notes"; + "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples"; + "hsqml-morris" = dontDistribute super."hsqml-morris"; + "hsreadability" = dontDistribute super."hsreadability"; + "hsseccomp" = dontDistribute super."hsseccomp"; + "hsshellscript" = dontDistribute super."hsshellscript"; + "hssourceinfo" = dontDistribute super."hssourceinfo"; + "hssqlppp" = dontDistribute super."hssqlppp"; + "hstats" = dontDistribute super."hstats"; + "hstest" = dontDistribute super."hstest"; + "hstidy" = dontDistribute super."hstidy"; + "hstorchat" = dontDistribute super."hstorchat"; + "hstradeking" = dontDistribute super."hstradeking"; + "hstyle" = dontDistribute super."hstyle"; + "hstzaar" = dontDistribute super."hstzaar"; + "hsubconvert" = dontDistribute super."hsubconvert"; + "hsverilog" = dontDistribute super."hsverilog"; + "hswip" = dontDistribute super."hswip"; + "hsx" = dontDistribute super."hsx"; + "hsx-xhtml" = dontDistribute super."hsx-xhtml"; + "hsyscall" = dontDistribute super."hsyscall"; + "hszephyr" = dontDistribute super."hszephyr"; + "htags" = dontDistribute super."htags"; + "htar" = dontDistribute super."htar"; + "htiled" = dontDistribute super."htiled"; + "htime" = dontDistribute super."htime"; + "html-email-validate" = dontDistribute super."html-email-validate"; + "html-entities" = dontDistribute super."html-entities"; + "html-kure" = dontDistribute super."html-kure"; + "html-minimalist" = dontDistribute super."html-minimalist"; + "html-rules" = dontDistribute super."html-rules"; + "html-tokenizer" = dontDistribute super."html-tokenizer"; + "html-truncate" = dontDistribute super."html-truncate"; + "html2hamlet" = dontDistribute super."html2hamlet"; + "html5-entity" = dontDistribute super."html5-entity"; + "htodo" = dontDistribute super."htodo"; + "htoml" = dontDistribute super."htoml"; + "htrace" = dontDistribute super."htrace"; + "hts" = dontDistribute super."hts"; + "htsn" = dontDistribute super."htsn"; + "htsn-common" = dontDistribute super."htsn-common"; + "htsn-import" = dontDistribute super."htsn-import"; + "http-attoparsec" = dontDistribute super."http-attoparsec"; + "http-client-auth" = dontDistribute super."http-client-auth"; + "http-client-conduit" = dontDistribute super."http-client-conduit"; + "http-client-lens" = dontDistribute super."http-client-lens"; + "http-client-multipart" = dontDistribute super."http-client-multipart"; + "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-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-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"; + "https-everywhere-rules" = dontDistribute super."https-everywhere-rules"; + "https-everywhere-rules-raw" = dontDistribute super."https-everywhere-rules-raw"; + "httpspec" = dontDistribute super."httpspec"; + "htune" = dontDistribute super."htune"; + "htzaar" = dontDistribute super."htzaar"; + "hub" = dontDistribute super."hub"; + "hubigraph" = dontDistribute super."hubigraph"; + "hubris" = dontDistribute super."hubris"; + "huckleberry" = dontDistribute super."huckleberry"; + "huffman" = dontDistribute super."huffman"; + "hugs2yc" = dontDistribute super."hugs2yc"; + "hulk" = dontDistribute super."hulk"; + "hums" = dontDistribute super."hums"; + "hunch" = dontDistribute super."hunch"; + "hunit-gui" = dontDistribute super."hunit-gui"; + "hunit-parsec" = dontDistribute super."hunit-parsec"; + "hunit-rematch" = dontDistribute super."hunit-rematch"; + "hunp" = dontDistribute super."hunp"; + "hunt-searchengine" = dontDistribute super."hunt-searchengine"; + "hunt-server" = dontDistribute super."hunt-server"; + "hunt-server-cli" = dontDistribute super."hunt-server-cli"; + "hurdle" = dontDistribute super."hurdle"; + "husk-scheme" = dontDistribute super."husk-scheme"; + "husk-scheme-libs" = dontDistribute super."husk-scheme-libs"; + "husky" = dontDistribute super."husky"; + "hutton" = dontDistribute super."hutton"; + "huttons-razor" = dontDistribute super."huttons-razor"; + "huzzy" = dontDistribute super."huzzy"; + "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; + "hws" = dontDistribute super."hws"; + "hwsl2" = dontDistribute super."hwsl2"; + "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector"; + "hwsl2-reducers" = dontDistribute super."hwsl2-reducers"; + "hx" = dontDistribute super."hx"; + "hxmppc" = dontDistribute super."hxmppc"; + "hxournal" = dontDistribute super."hxournal"; + "hxt-binary" = dontDistribute super."hxt-binary"; + "hxt-cache" = dontDistribute super."hxt-cache"; + "hxt-extras" = dontDistribute super."hxt-extras"; + "hxt-filter" = dontDistribute super."hxt-filter"; + "hxt-xpath" = dontDistribute super."hxt-xpath"; + "hxt-xslt" = dontDistribute super."hxt-xslt"; + "hxthelper" = dontDistribute super."hxthelper"; + "hxweb" = dontDistribute super."hxweb"; + "hyahtzee" = dontDistribute super."hyahtzee"; + "hyakko" = dontDistribute super."hyakko"; + "hybrid" = dontDistribute super."hybrid"; + "hydra-hs" = dontDistribute super."hydra-hs"; + "hydra-print" = dontDistribute super."hydra-print"; + "hydrogen" = dontDistribute super."hydrogen"; + "hydrogen-cli" = dontDistribute super."hydrogen-cli"; + "hydrogen-cli-args" = dontDistribute super."hydrogen-cli-args"; + "hydrogen-data" = dontDistribute super."hydrogen-data"; + "hydrogen-multimap" = dontDistribute super."hydrogen-multimap"; + "hydrogen-parsing" = dontDistribute super."hydrogen-parsing"; + "hydrogen-prelude" = dontDistribute super."hydrogen-prelude"; + "hydrogen-prelude-parsec" = dontDistribute super."hydrogen-prelude-parsec"; + "hydrogen-syntax" = dontDistribute super."hydrogen-syntax"; + "hydrogen-util" = dontDistribute super."hydrogen-util"; + "hydrogen-version" = dontDistribute super."hydrogen-version"; + "hyena" = dontDistribute super."hyena"; + "hylolib" = dontDistribute super."hylolib"; + "hylotab" = dontDistribute super."hylotab"; + "hyloutils" = dontDistribute super."hyloutils"; + "hyperdrive" = dontDistribute super."hyperdrive"; + "hyperfunctions" = dontDistribute super."hyperfunctions"; + "hyperpublic" = dontDistribute super."hyperpublic"; + "hyphenate" = dontDistribute super."hyphenate"; + "hypher" = dontDistribute super."hypher"; + "hzaif" = dontDistribute super."hzaif"; + "hzk" = dontDistribute super."hzk"; + "i18n" = dontDistribute super."i18n"; + "iCalendar" = dontDistribute super."iCalendar"; + "iException" = dontDistribute super."iException"; + "iap-verifier" = dontDistribute super."iap-verifier"; + "ib-api" = dontDistribute super."ib-api"; + "iban" = dontDistribute super."iban"; + "ibus-hs" = dontDistribute super."ibus-hs"; + "ideas" = dontDistribute super."ideas"; + "ideas-math" = dontDistribute super."ideas-math"; + "idempotent" = dontDistribute super."idempotent"; + "identifiers" = dontDistribute super."identifiers"; + "idiii" = dontDistribute super."idiii"; + "idna" = dontDistribute super."idna"; + "idna2008" = dontDistribute super."idna2008"; + "idris" = dontDistribute super."idris"; + "ieee" = dontDistribute super."ieee"; + "ieee-utils" = dontDistribute super."ieee-utils"; + "ieee-utils-tempfix" = dontDistribute super."ieee-utils-tempfix"; + "ieee754-parser" = dontDistribute super."ieee754-parser"; + "ifcxt" = dontDistribute super."ifcxt"; + "iff" = dontDistribute super."iff"; + "ifscs" = dontDistribute super."ifscs"; + "ige-mac-integration" = dontDistribute super."ige-mac-integration"; + "igraph" = dontDistribute super."igraph"; + "igrf" = dontDistribute super."igrf"; + "ihaskell-display" = dontDistribute super."ihaskell-display"; + "ihaskell-inline-r" = dontDistribute super."ihaskell-inline-r"; + "ihaskell-parsec" = dontDistribute super."ihaskell-parsec"; + "ihaskell-plot" = dontDistribute super."ihaskell-plot"; + "ihaskell-widgets" = dontDistribute super."ihaskell-widgets"; + "ihttp" = dontDistribute super."ihttp"; + "illuminate" = dontDistribute super."illuminate"; + "image-type" = dontDistribute super."image-type"; + "imagefilters" = dontDistribute super."imagefilters"; + "imagemagick" = dontDistribute super."imagemagick"; + "imagepaste" = dontDistribute super."imagepaste"; + "imapget" = dontDistribute super."imapget"; + "imbib" = dontDistribute super."imbib"; + "imgurder" = dontDistribute super."imgurder"; + "imm" = dontDistribute super."imm"; + "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; + "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; + "implicit" = dontDistribute super."implicit"; + "implicit-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"; + "inf-interval" = dontDistribute super."inf-interval"; + "infer-upstream" = dontDistribute super."infer-upstream"; + "infernu" = dontDistribute super."infernu"; + "infinite-search" = dontDistribute super."infinite-search"; + "infinity" = dontDistribute super."infinity"; + "infix" = dontDistribute super."infix"; + "inflist" = dontDistribute super."inflist"; + "influxdb" = dontDistribute super."influxdb"; + "informative" = dontDistribute super."informative"; + "inilist" = dontDistribute super."inilist"; + "inject" = dontDistribute super."inject"; + "inject-function" = dontDistribute super."inject-function"; + "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inquire" = dontDistribute super."inquire"; + "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-streams-http" = dontDistribute super."io-streams-http"; + "io-throttle" = dontDistribute super."io-throttle"; + "ioctl" = dontDistribute super."ioctl"; + "ioref-stable" = dontDistribute super."ioref-stable"; + "iothread" = dontDistribute super."iothread"; + "iotransaction" = dontDistribute super."iotransaction"; + "ip-quoter" = dontDistribute super."ip-quoter"; + "ipatch" = dontDistribute super."ipatch"; + "ipc" = dontDistribute super."ipc"; + "ipcvar" = dontDistribute super."ipcvar"; + "ipopt-hs" = dontDistribute super."ipopt-hs"; + "ipprint" = dontDistribute super."ipprint"; + "iptables-helpers" = dontDistribute super."iptables-helpers"; + "iptadmin" = dontDistribute super."iptadmin"; + "irc-bytestring" = dontDistribute super."irc-bytestring"; + "irc-colors" = dontDistribute super."irc-colors"; + "irc-core" = dontDistribute super."irc-core"; + "irc-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"; + "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"; + "ixdopp" = dontDistribute super."ixdopp"; + "ixmonad" = dontDistribute super."ixmonad"; + "iyql" = dontDistribute super."iyql"; + "j2hs" = dontDistribute super."j2hs"; + "ja-base-extra" = dontDistribute super."ja-base-extra"; + "jack" = dontDistribute super."jack"; + "jack-bindings" = dontDistribute super."jack-bindings"; + "jackminimix" = dontDistribute super."jackminimix"; + "jacobi-roots" = dontDistribute super."jacobi-roots"; + "jail" = dontDistribute super."jail"; + "jailbreak-cabal" = dontDistribute super."jailbreak-cabal"; + "jalaali" = dontDistribute super."jalaali"; + "jalla" = dontDistribute super."jalla"; + "jammittools" = dontDistribute super."jammittools"; + "jarfind" = dontDistribute super."jarfind"; + "java-bridge" = dontDistribute super."java-bridge"; + "java-bridge-extras" = dontDistribute super."java-bridge-extras"; + "java-character" = dontDistribute super."java-character"; + "java-poker" = dontDistribute super."java-poker"; + "java-reflect" = dontDistribute super."java-reflect"; + "javasf" = dontDistribute super."javasf"; + "javav" = dontDistribute super."javav"; + "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; + "jdi" = dontDistribute super."jdi"; + "jespresso" = dontDistribute super."jespresso"; + "jobqueue" = dontDistribute super."jobqueue"; + "join" = dontDistribute super."join"; + "joinlist" = dontDistribute super."joinlist"; + "jonathanscard" = dontDistribute super."jonathanscard"; + "jort" = dontDistribute super."jort"; + "jose" = dontDistribute super."jose"; + "jpeg" = dontDistribute super."jpeg"; + "js-good-parts" = dontDistribute super."js-good-parts"; + "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-hello" = dontDistribute super."jsaddle-hello"; + "jsc" = dontDistribute super."jsc"; + "jsmw" = dontDistribute super."jsmw"; + "json-assertions" = dontDistribute super."json-assertions"; + "json-b" = dontDistribute super."json-b"; + "json-encoder" = dontDistribute super."json-encoder"; + "json-enumerator" = dontDistribute super."json-enumerator"; + "json-extra" = dontDistribute super."json-extra"; + "json-fu" = dontDistribute super."json-fu"; + "json-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-lava" = dontDistribute super."kansas-lava"; + "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; + "kansas-lava-papilio" = dontDistribute super."kansas-lava-papilio"; + "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; + "karakuri" = dontDistribute super."karakuri"; + "karver" = dontDistribute super."karver"; + "katt" = dontDistribute super."katt"; + "kbq-gu" = dontDistribute super."kbq-gu"; + "kd-tree" = dontDistribute super."kd-tree"; + "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "keera-callbacks" = dontDistribute super."keera-callbacks"; + "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; + "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; + "keera-hails-mvc-environment-gtk" = dontDistribute super."keera-hails-mvc-environment-gtk"; + "keera-hails-mvc-model-lightmodel" = dontDistribute super."keera-hails-mvc-model-lightmodel"; + "keera-hails-mvc-model-protectedmodel" = dontDistribute super."keera-hails-mvc-model-protectedmodel"; + "keera-hails-mvc-solutions-config" = dontDistribute super."keera-hails-mvc-solutions-config"; + "keera-hails-mvc-solutions-gtk" = dontDistribute super."keera-hails-mvc-solutions-gtk"; + "keera-hails-mvc-view" = dontDistribute super."keera-hails-mvc-view"; + "keera-hails-mvc-view-gtk" = dontDistribute super."keera-hails-mvc-view-gtk"; + "keera-hails-reactive-fs" = dontDistribute super."keera-hails-reactive-fs"; + "keera-hails-reactive-gtk" = dontDistribute super."keera-hails-reactive-gtk"; + "keera-hails-reactive-network" = dontDistribute super."keera-hails-reactive-network"; + "keera-hails-reactive-polling" = dontDistribute super."keera-hails-reactive-polling"; + "keera-hails-reactive-wx" = dontDistribute super."keera-hails-reactive-wx"; + "keera-hails-reactive-yampa" = dontDistribute super."keera-hails-reactive-yampa"; + "keera-hails-reactivelenses" = dontDistribute super."keera-hails-reactivelenses"; + "keera-hails-reactivevalues" = dontDistribute super."keera-hails-reactivevalues"; + "keera-posture" = dontDistribute super."keera-posture"; + "keiretsu" = dontDistribute super."keiretsu"; + "kevin" = dontDistribute super."kevin"; + "keyed" = dontDistribute super."keyed"; + "keyring" = dontDistribute super."keyring"; + "keystore" = dontDistribute super."keystore"; + "keyvaluehash" = dontDistribute super."keyvaluehash"; + "keyword-args" = dontDistribute super."keyword-args"; + "kibro" = dontDistribute super."kibro"; + "kicad-data" = dontDistribute super."kicad-data"; + "kickass-torrents-dump-parser" = dontDistribute super."kickass-torrents-dump-parser"; + "kickchan" = dontDistribute super."kickchan"; + "kif-parser" = dontDistribute super."kif-parser"; + "kinds" = dontDistribute super."kinds"; + "kit" = dontDistribute super."kit"; + "kmeans-par" = dontDistribute super."kmeans-par"; + "kmeans-vector" = dontDistribute super."kmeans-vector"; + "knots" = dontDistribute super."knots"; + "koellner-phonetic" = dontDistribute super."koellner-phonetic"; + "kontrakcja-templates" = dontDistribute super."kontrakcja-templates"; + "korfu" = dontDistribute super."korfu"; + "kqueue" = dontDistribute super."kqueue"; + "krpc" = dontDistribute super."krpc"; + "ks-test" = dontDistribute super."ks-test"; + "ktx" = dontDistribute super."ktx"; + "kure-your-boilerplate" = dontDistribute super."kure-your-boilerplate"; + "kyotocabinet" = dontDistribute super."kyotocabinet"; + "l-bfgs-b" = dontDistribute super."l-bfgs-b"; + "labeled-graph" = dontDistribute super."labeled-graph"; + "labeled-tree" = dontDistribute super."labeled-tree"; + "laborantin-hs" = dontDistribute super."laborantin-hs"; + "labyrinth" = dontDistribute super."labyrinth"; + "labyrinth-server" = dontDistribute super."labyrinth-server"; + "lackey" = dontDistribute super."lackey"; + "lagrangian" = dontDistribute super."lagrangian"; + "laika" = dontDistribute super."laika"; + "lambda-ast" = dontDistribute super."lambda-ast"; + "lambda-bridge" = dontDistribute super."lambda-bridge"; + "lambda-canvas" = dontDistribute super."lambda-canvas"; + "lambda-devs" = dontDistribute super."lambda-devs"; + "lambda-options" = dontDistribute super."lambda-options"; + "lambda-placeholders" = dontDistribute super."lambda-placeholders"; + "lambda-toolbox" = dontDistribute super."lambda-toolbox"; + "lambda2js" = dontDistribute super."lambda2js"; + "lambdaBase" = dontDistribute super."lambdaBase"; + "lambdaFeed" = dontDistribute super."lambdaFeed"; + "lambdaLit" = dontDistribute super."lambdaLit"; + "lambdabot" = dontDistribute super."lambdabot"; + "lambdabot-core" = dontDistribute super."lambdabot-core"; + "lambdabot-haskell-plugins" = dontDistribute super."lambdabot-haskell-plugins"; + "lambdabot-irc-plugins" = dontDistribute super."lambdabot-irc-plugins"; + "lambdabot-misc-plugins" = dontDistribute super."lambdabot-misc-plugins"; + "lambdabot-novelty-plugins" = dontDistribute super."lambdabot-novelty-plugins"; + "lambdabot-reference-plugins" = dontDistribute super."lambdabot-reference-plugins"; + "lambdabot-social-plugins" = dontDistribute super."lambdabot-social-plugins"; + "lambdabot-trusted" = dontDistribute super."lambdabot-trusted"; + "lambdabot-utils" = dontDistribute super."lambdabot-utils"; + "lambdacat" = dontDistribute super."lambdacat"; + "lambdacms-core" = dontDistribute super."lambdacms-core"; + "lambdacms-media" = dontDistribute super."lambdacms-media"; + "lambdacube" = dontDistribute super."lambdacube"; + "lambdacube-bullet" = dontDistribute super."lambdacube-bullet"; + "lambdacube-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"; + "lambdatex" = dontDistribute super."lambdatex"; + "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-c-quote" = dontDistribute super."language-c-quote"; + "language-cil" = dontDistribute super."language-cil"; + "language-css" = dontDistribute super."language-css"; + "language-dot" = dontDistribute super."language-dot"; + "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; + "language-eiffel" = dontDistribute super."language-eiffel"; + "language-fortran" = dontDistribute super."language-fortran"; + "language-gcl" = dontDistribute super."language-gcl"; + "language-go" = dontDistribute super."language-go"; + "language-guess" = dontDistribute super."language-guess"; + "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-kort" = dontDistribute super."language-kort"; + "language-lua" = dontDistribute super."language-lua"; + "language-lua-qq" = dontDistribute super."language-lua-qq"; + "language-mixal" = dontDistribute super."language-mixal"; + "language-objc" = dontDistribute super."language-objc"; + "language-openscad" = dontDistribute super."language-openscad"; + "language-pig" = dontDistribute super."language-pig"; + "language-puppet" = dontDistribute super."language-puppet"; + "language-python" = dontDistribute super."language-python"; + "language-python-colour" = dontDistribute super."language-python-colour"; + "language-python-test" = dontDistribute super."language-python-test"; + "language-qux" = dontDistribute super."language-qux"; + "language-sh" = dontDistribute super."language-sh"; + "language-slice" = dontDistribute super."language-slice"; + "language-spelling" = dontDistribute super."language-spelling"; + "language-sqlite" = dontDistribute super."language-sqlite"; + "language-typescript" = dontDistribute super."language-typescript"; + "language-vhdl" = dontDistribute super."language-vhdl"; + "lat" = dontDistribute super."lat"; + "latest-npm-version" = dontDistribute super."latest-npm-version"; + "latex" = dontDistribute super."latex"; + "launchpad-control" = dontDistribute super."launchpad-control"; + "lax" = dontDistribute super."lax"; + "layers" = dontDistribute super."layers"; + "layers-game" = dontDistribute super."layers-game"; + "layout" = dontDistribute super."layout"; + "layout-bootstrap" = dontDistribute super."layout-bootstrap"; + "lazy-io" = dontDistribute super."lazy-io"; + "lazyarray" = dontDistribute super."lazyarray"; + "lazyio" = dontDistribute super."lazyio"; + "lazysmallcheck" = dontDistribute super."lazysmallcheck"; + "lazysplines" = dontDistribute super."lazysplines"; + "lbfgs" = dontDistribute super."lbfgs"; + "lcs" = dontDistribute super."lcs"; + "lda" = dontDistribute super."lda"; + "ldap-client" = dontDistribute super."ldap-client"; + "ldif" = dontDistribute super."ldif"; + "leaf" = dontDistribute super."leaf"; + "leaky" = dontDistribute super."leaky"; + "leankit-api" = dontDistribute super."leankit-api"; + "leapseconds-announced" = dontDistribute super."leapseconds-announced"; + "learn" = dontDistribute super."learn"; + "learn-physics" = dontDistribute super."learn-physics"; + "learn-physics-examples" = dontDistribute super."learn-physics-examples"; + "learning-hmm" = dontDistribute super."learning-hmm"; + "leetify" = dontDistribute super."leetify"; + "leksah" = dontDistribute super."leksah"; + "leksah-server" = dontDistribute super."leksah-server"; + "lendingclub" = dontDistribute super."lendingclub"; + "lens-datetime" = dontDistribute super."lens-datetime"; + "lens-prelude" = dontDistribute super."lens-prelude"; + "lens-properties" = dontDistribute super."lens-properties"; + "lens-sop" = dontDistribute super."lens-sop"; + "lens-text-encoding" = dontDistribute super."lens-text-encoding"; + "lens-time" = dontDistribute super."lens-time"; + "lens-tutorial" = dontDistribute super."lens-tutorial"; + "lens-utils" = dontDistribute super."lens-utils"; + "lenses" = dontDistribute super."lenses"; + "lensref" = dontDistribute super."lensref"; + "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; + "level-monad" = dontDistribute super."level-monad"; + "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; + "levmar" = dontDistribute super."levmar"; + "levmar-chart" = dontDistribute super."levmar-chart"; + "lgtk" = dontDistribute super."lgtk"; + "lha" = dontDistribute super."lha"; + "lhae" = dontDistribute super."lhae"; + "lhc" = dontDistribute super."lhc"; + "lhe" = dontDistribute super."lhe"; + "lhs2TeX-hl" = dontDistribute super."lhs2TeX-hl"; + "lhs2html" = dontDistribute super."lhs2html"; + "lhslatex" = dontDistribute super."lhslatex"; + "libGenI" = dontDistribute super."libGenI"; + "libarchive-conduit" = dontDistribute super."libarchive-conduit"; + "libconfig" = dontDistribute super."libconfig"; + "libcspm" = dontDistribute super."libcspm"; + "libexpect" = dontDistribute super."libexpect"; + "libffi" = dontDistribute super."libffi"; + "libgraph" = dontDistribute super."libgraph"; + "libhbb" = dontDistribute super."libhbb"; + "libjenkins" = dontDistribute super."libjenkins"; + "liblastfm" = dontDistribute super."liblastfm"; + "liblinear-enumerator" = dontDistribute super."liblinear-enumerator"; + "libltdl" = dontDistribute super."libltdl"; + "libmpd" = dontDistribute super."libmpd"; + "libnvvm" = dontDistribute super."libnvvm"; + "liboleg" = dontDistribute super."liboleg"; + "libpafe" = dontDistribute super."libpafe"; + "libpq" = dontDistribute super."libpq"; + "librandomorg" = dontDistribute super."librandomorg"; + "libravatar" = dontDistribute super."libravatar"; + "libssh2" = dontDistribute super."libssh2"; + "libssh2-conduit" = dontDistribute super."libssh2-conduit"; + "libstackexchange" = dontDistribute super."libstackexchange"; + "libsystemd-daemon" = dontDistribute super."libsystemd-daemon"; + "libtagc" = dontDistribute super."libtagc"; + "libvirt-hs" = dontDistribute super."libvirt-hs"; + "libvorbis" = dontDistribute super."libvorbis"; + "libxml" = dontDistribute super."libxml"; + "libxml-enumerator" = dontDistribute super."libxml-enumerator"; + "libxslt" = dontDistribute super."libxslt"; + "life" = dontDistribute super."life"; + "lift-generics" = dontDistribute super."lift-generics"; + "lifted-threads" = dontDistribute super."lifted-threads"; + "lifter" = dontDistribute super."lifter"; + "ligature" = dontDistribute super."ligature"; + "ligd" = dontDistribute super."ligd"; + "lighttpd-conf" = dontDistribute super."lighttpd-conf"; + "lighttpd-conf-qq" = dontDistribute super."lighttpd-conf-qq"; + "lilypond" = dontDistribute super."lilypond"; + "limp" = dontDistribute super."limp"; + "limp-cbc" = dontDistribute super."limp-cbc"; + "lin-alg" = dontDistribute super."lin-alg"; + "linda" = dontDistribute super."linda"; + "lindenmayer" = dontDistribute super."lindenmayer"; + "line-break" = dontDistribute super."line-break"; + "line2pdf" = dontDistribute super."line2pdf"; + "linear-algebra-cblas" = dontDistribute super."linear-algebra-cblas"; + "linear-circuit" = dontDistribute super."linear-circuit"; + "linear-grammar" = dontDistribute super."linear-grammar"; + "linear-maps" = dontDistribute super."linear-maps"; + "linear-opengl" = dontDistribute super."linear-opengl"; + "linear-vect" = dontDistribute super."linear-vect"; + "linearEqSolver" = dontDistribute super."linearEqSolver"; + "linearscan" = dontDistribute super."linearscan"; + "linearscan-hoopl" = dontDistribute super."linearscan-hoopl"; + "linebreak" = dontDistribute super."linebreak"; + "linguistic-ordinals" = dontDistribute super."linguistic-ordinals"; + "link-relations" = dontDistribute super."link-relations"; + "linkchk" = dontDistribute super."linkchk"; + "linkcore" = dontDistribute super."linkcore"; + "linkedhashmap" = dontDistribute super."linkedhashmap"; + "linklater" = dontDistribute super."linklater"; + "linode" = dontDistribute super."linode"; + "linux-blkid" = dontDistribute super."linux-blkid"; + "linux-cgroup" = dontDistribute super."linux-cgroup"; + "linux-evdev" = dontDistribute super."linux-evdev"; + "linux-inotify" = dontDistribute super."linux-inotify"; + "linux-kmod" = dontDistribute super."linux-kmod"; + "linux-mount" = dontDistribute super."linux-mount"; + "linux-perf" = dontDistribute super."linux-perf"; + "linux-ptrace" = dontDistribute super."linux-ptrace"; + "linux-xattr" = dontDistribute super."linux-xattr"; + "linx-gateway" = dontDistribute super."linx-gateway"; + "lio" = dontDistribute super."lio"; + "lio-eci11" = dontDistribute super."lio-eci11"; + "lio-fs" = dontDistribute super."lio-fs"; + "lio-simple" = dontDistribute super."lio-simple"; + "lipsum-gen" = dontDistribute super."lipsum-gen"; + "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; + "liquidhaskell" = dontDistribute super."liquidhaskell"; + "lispparser" = dontDistribute super."lispparser"; + "list-extras" = dontDistribute super."list-extras"; + "list-grouping" = dontDistribute super."list-grouping"; + "list-mux" = dontDistribute super."list-mux"; + "list-remote-forwards" = dontDistribute super."list-remote-forwards"; + "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; + "list-t-html-parser" = dontDistribute super."list-t-html-parser"; + "list-t-http-client" = dontDistribute super."list-t-http-client"; + "list-t-libcurl" = dontDistribute super."list-t-libcurl"; + "list-t-text" = dontDistribute super."list-t-text"; + "list-tries" = dontDistribute super."list-tries"; + "list-zip-def" = dontDistribute super."list-zip-def"; + "listlike-instances" = dontDistribute super."listlike-instances"; + "lists" = dontDistribute super."lists"; + "listsafe" = dontDistribute super."listsafe"; + "lit" = dontDistribute super."lit"; + "literals" = dontDistribute super."literals"; + "live-sequencer" = dontDistribute super."live-sequencer"; + "ll-picosat" = dontDistribute super."ll-picosat"; + "llrbtree" = dontDistribute super."llrbtree"; + "llsd" = dontDistribute super."llsd"; + "llvm" = dontDistribute super."llvm"; + "llvm-analysis" = dontDistribute super."llvm-analysis"; + "llvm-base" = dontDistribute super."llvm-base"; + "llvm-base-types" = dontDistribute super."llvm-base-types"; + "llvm-base-util" = dontDistribute super."llvm-base-util"; + "llvm-data-interop" = dontDistribute super."llvm-data-interop"; + "llvm-extra" = dontDistribute super."llvm-extra"; + "llvm-ffi" = dontDistribute super."llvm-ffi"; + "llvm-general" = dontDistribute super."llvm-general"; + "llvm-general-pure" = dontDistribute super."llvm-general-pure"; + "llvm-general-quote" = dontDistribute super."llvm-general-quote"; + "llvm-ht" = dontDistribute super."llvm-ht"; + "llvm-pkg-config" = dontDistribute super."llvm-pkg-config"; + "llvm-pretty" = dontDistribute super."llvm-pretty"; + "llvm-pretty-bc-parser" = dontDistribute super."llvm-pretty-bc-parser"; + "llvm-tf" = dontDistribute super."llvm-tf"; + "llvm-tools" = dontDistribute super."llvm-tools"; + "lmdb" = dontDistribute super."lmdb"; + "lmonad" = dontDistribute super."lmonad"; + "lmonad-yesod" = dontDistribute super."lmonad-yesod"; + "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"; + "locked-poll" = dontDistribute super."locked-poll"; + "lockfree-queue" = dontDistribute super."lockfree-queue"; + "log" = dontDistribute super."log"; + "log-effect" = dontDistribute super."log-effect"; + "log2json" = dontDistribute super."log2json"; + "logfloat" = dontDistribute super."logfloat"; + "logger" = dontDistribute super."logger"; + "logging" = dontDistribute super."logging"; + "logging-effect" = dontDistribute super."logging-effect"; + "logging-facade-journald" = dontDistribute super."logging-facade-journald"; + "logic-TPTP" = dontDistribute super."logic-TPTP"; + "logic-classes" = dontDistribute super."logic-classes"; + "logicst" = dontDistribute super."logicst"; + "logplex-parse" = dontDistribute super."logplex-parse"; + "logsink" = dontDistribute super."logsink"; + "lojban" = dontDistribute super."lojban"; + "lojbanParser" = dontDistribute super."lojbanParser"; + "lojbanXiragan" = dontDistribute super."lojbanXiragan"; + "lojysamban" = dontDistribute super."lojysamban"; + "lol" = dontDistribute super."lol"; + "loli" = dontDistribute super."loli"; + "lookup-tables" = dontDistribute super."lookup-tables"; + "loop-effin" = dontDistribute super."loop-effin"; + "loop-while" = dontDistribute super."loop-while"; + "loops" = dontDistribute super."loops"; + "loopy" = dontDistribute super."loopy"; + "lord" = dontDistribute super."lord"; + "lorem" = dontDistribute super."lorem"; + "loris" = dontDistribute super."loris"; + "loshadka" = dontDistribute super."loshadka"; + "lostcities" = dontDistribute super."lostcities"; + "lowgl" = dontDistribute super."lowgl"; + "lp-diagrams" = dontDistribute super."lp-diagrams"; + "lp-diagrams-svg" = dontDistribute super."lp-diagrams-svg"; + "ls-usb" = dontDistribute super."ls-usb"; + "lscabal" = dontDistribute super."lscabal"; + "lss" = dontDistribute super."lss"; + "lsystem" = dontDistribute super."lsystem"; + "ltk" = dontDistribute super."ltk"; + "ltl" = dontDistribute super."ltl"; + "lua-bytecode" = dontDistribute super."lua-bytecode"; + "luachunk" = dontDistribute super."luachunk"; + "luautils" = dontDistribute super."luautils"; + "lub" = dontDistribute super."lub"; + "lucid-foundation" = dontDistribute super."lucid-foundation"; + "lucienne" = dontDistribute super."lucienne"; + "luhn" = dontDistribute super."luhn"; + "lui" = dontDistribute super."lui"; + "luka" = dontDistribute super."luka"; + "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-binary" = dontDistribute super."machines-binary"; + "machines-zlib" = dontDistribute super."machines-zlib"; + "macho" = dontDistribute super."macho"; + "maclight" = dontDistribute super."maclight"; + "macosx-make-standalone" = dontDistribute super."macosx-make-standalone"; + "mage" = dontDistribute super."mage"; + "magico" = dontDistribute super."magico"; + "magma" = dontDistribute super."magma"; + "mahoro" = dontDistribute super."mahoro"; + "maid" = dontDistribute super."maid"; + "mailbox-count" = dontDistribute super."mailbox-count"; + "mailchimp-subscribe" = dontDistribute super."mailchimp-subscribe"; + "mailgun" = dontDistribute super."mailgun"; + "mainland-pretty" = dontDistribute super."mainland-pretty"; + "majordomo" = dontDistribute super."majordomo"; + "majority" = dontDistribute super."majority"; + "make-hard-links" = dontDistribute super."make-hard-links"; + "make-package" = dontDistribute super."make-package"; + "makedo" = dontDistribute super."makedo"; + "manatee" = dontDistribute super."manatee"; + "manatee-all" = dontDistribute super."manatee-all"; + "manatee-anything" = dontDistribute super."manatee-anything"; + "manatee-browser" = dontDistribute super."manatee-browser"; + "manatee-core" = dontDistribute super."manatee-core"; + "manatee-curl" = dontDistribute super."manatee-curl"; + "manatee-editor" = dontDistribute super."manatee-editor"; + "manatee-filemanager" = dontDistribute super."manatee-filemanager"; + "manatee-imageviewer" = dontDistribute super."manatee-imageviewer"; + "manatee-ircclient" = dontDistribute super."manatee-ircclient"; + "manatee-mplayer" = dontDistribute super."manatee-mplayer"; + "manatee-pdfviewer" = dontDistribute super."manatee-pdfviewer"; + "manatee-processmanager" = dontDistribute super."manatee-processmanager"; + "manatee-reader" = dontDistribute super."manatee-reader"; + "manatee-template" = dontDistribute super."manatee-template"; + "manatee-terminal" = dontDistribute super."manatee-terminal"; + "manatee-welcome" = dontDistribute super."manatee-welcome"; + "mancala" = dontDistribute super."mancala"; + "mandulia" = dontDistribute super."mandulia"; + "manifold-random" = dontDistribute super."manifold-random"; + "manifolds" = dontDistribute super."manifolds"; + "mappy" = dontDistribute super."mappy"; + "marionetta" = dontDistribute super."marionetta"; + "markdown-kate" = dontDistribute super."markdown-kate"; + "markdown-pap" = dontDistribute super."markdown-pap"; + "markdown2svg" = dontDistribute super."markdown2svg"; + "marked-pretty" = dontDistribute super."marked-pretty"; + "markov" = dontDistribute super."markov"; + "markov-chain" = dontDistribute super."markov-chain"; + "markov-processes" = dontDistribute super."markov-processes"; + "markup-preview" = dontDistribute super."markup-preview"; + "marmalade-upload" = dontDistribute super."marmalade-upload"; + "marquise" = dontDistribute super."marquise"; + "marxup" = dontDistribute super."marxup"; + "masakazu-bot" = dontDistribute super."masakazu-bot"; + "mastermind" = dontDistribute super."mastermind"; + "matchers" = dontDistribute super."matchers"; + "mathblog" = dontDistribute super."mathblog"; + "mathgenealogy" = dontDistribute super."mathgenealogy"; + "mathista" = dontDistribute super."mathista"; + "mathlink" = dontDistribute super."mathlink"; + "matlab" = dontDistribute super."matlab"; + "matrix-market" = dontDistribute super."matrix-market"; + "matrix-market-pure" = dontDistribute super."matrix-market-pure"; + "matsuri" = dontDistribute super."matsuri"; + "maude" = dontDistribute super."maude"; + "maxent" = dontDistribute super."maxent"; + "maxsharing" = dontDistribute super."maxsharing"; + "maybe-justify" = dontDistribute super."maybe-justify"; + "maybench" = dontDistribute super."maybench"; + "mbox-tools" = dontDistribute super."mbox-tools"; + "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; + "mcmc-samplers" = dontDistribute super."mcmc-samplers"; + "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; + "mcpi" = dontDistribute super."mcpi"; + "mdapi" = dontDistribute super."mdapi"; + "mdcat" = dontDistribute super."mdcat"; + "mdo" = dontDistribute super."mdo"; + "mecab" = dontDistribute super."mecab"; + "mecha" = dontDistribute super."mecha"; + "mediawiki" = dontDistribute super."mediawiki"; + "mediawiki2latex" = dontDistribute super."mediawiki2latex"; + "medium-sdk-haskell" = dontDistribute super."medium-sdk-haskell"; + "meep" = dontDistribute super."meep"; + "mega-sdist" = dontDistribute super."mega-sdist"; + "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"; + "memscript" = dontDistribute super."memscript"; + "mersenne-random" = dontDistribute super."mersenne-random"; + "messente" = dontDistribute super."messente"; + "meta-misc" = dontDistribute super."meta-misc"; + "meta-par" = dontDistribute super."meta-par"; + "meta-par-accelerate" = dontDistribute super."meta-par-accelerate"; + "metadata" = dontDistribute super."metadata"; + "metamorphic" = dontDistribute super."metamorphic"; + "metaplug" = dontDistribute super."metaplug"; + "metric" = dontDistribute super."metric"; + "metricsd-client" = dontDistribute super."metricsd-client"; + "metronome" = dontDistribute super."metronome"; + "mezzolens" = dontDistribute super."mezzolens"; + "mfsolve" = dontDistribute super."mfsolve"; + "mgeneric" = dontDistribute super."mgeneric"; + "mi" = dontDistribute super."mi"; + "microbench" = dontDistribute super."microbench"; + "microformats2-types" = dontDistribute super."microformats2-types"; + "microlens-each" = dontDistribute super."microlens-each"; + "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"; + "mikmod" = dontDistribute super."mikmod"; + "miku" = dontDistribute super."miku"; + "milena" = dontDistribute super."milena"; + "mime" = dontDistribute super."mime"; + "mime-directory" = dontDistribute super."mime-directory"; + "mime-string" = dontDistribute super."mime-string"; + "mines" = dontDistribute super."mines"; + "minesweeper" = dontDistribute super."minesweeper"; + "miniball" = dontDistribute super."miniball"; + "miniforth" = dontDistribute super."miniforth"; + "minilens" = dontDistribute super."minilens"; + "minimal-configuration" = dontDistribute super."minimal-configuration"; + "minimorph" = dontDistribute super."minimorph"; + "minimung" = dontDistribute super."minimung"; + "minions" = dontDistribute super."minions"; + "minioperational" = dontDistribute super."minioperational"; + "miniplex" = dontDistribute super."miniplex"; + "minirotate" = dontDistribute super."minirotate"; + "minisat" = dontDistribute super."minisat"; + "ministg" = dontDistribute super."ministg"; + "miniutter" = dontDistribute super."miniutter"; + "minst-idx" = dontDistribute super."minst-idx"; + "mirror-tweet" = dontDistribute super."mirror-tweet"; + "missing-py2" = dontDistribute super."missing-py2"; + "mix-arrows" = dontDistribute super."mix-arrows"; + "mixed-strategies" = dontDistribute super."mixed-strategies"; + "mkbndl" = dontDistribute super."mkbndl"; + "mkcabal" = dontDistribute super."mkcabal"; + "ml-w" = dontDistribute super."ml-w"; + "mlist" = dontDistribute super."mlist"; + "mmtl" = dontDistribute super."mmtl"; + "mmtl-base" = dontDistribute super."mmtl-base"; + "moan" = dontDistribute super."moan"; + "modbus-tcp" = dontDistribute super."modbus-tcp"; + "modelicaparser" = dontDistribute super."modelicaparser"; + "modsplit" = dontDistribute super."modsplit"; + "modular-arithmetic" = dontDistribute super."modular-arithmetic"; + "modular-prelude" = dontDistribute super."modular-prelude"; + "modular-prelude-classy" = dontDistribute super."modular-prelude-classy"; + "module-management" = dontDistribute super."module-management"; + "modulespection" = dontDistribute super."modulespection"; + "modulo" = dontDistribute super."modulo"; + "moe" = dontDistribute super."moe"; + "mohws" = dontDistribute super."mohws"; + "monad-abort-fd" = dontDistribute super."monad-abort-fd"; + "monad-atom" = dontDistribute super."monad-atom"; + "monad-atom-simple" = dontDistribute super."monad-atom-simple"; + "monad-bool" = dontDistribute super."monad-bool"; + "monad-classes" = dontDistribute super."monad-classes"; + "monad-codec" = dontDistribute super."monad-codec"; + "monad-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-tx" = dontDistribute super."monad-tx"; + "monad-unify" = dontDistribute super."monad-unify"; + "monad-wrap" = dontDistribute super."monad-wrap"; + "monadIO" = dontDistribute super."monadIO"; + "monadLib-compose" = dontDistribute super."monadLib-compose"; + "monadacme" = dontDistribute super."monadacme"; + "monadbi" = dontDistribute super."monadbi"; + "monadfibre" = dontDistribute super."monadfibre"; + "monadiccp" = dontDistribute super."monadiccp"; + "monadiccp-gecode" = dontDistribute super."monadiccp-gecode"; + "monadio-unwrappable" = dontDistribute super."monadio-unwrappable"; + "monadlist" = dontDistribute super."monadlist"; + "monadloc-pp" = dontDistribute super."monadloc-pp"; + "monadplus" = dontDistribute super."monadplus"; + "monads-fd" = dontDistribute super."monads-fd"; + "monadtransform" = dontDistribute super."monadtransform"; + "monarch" = dontDistribute super."monarch"; + "mongodb-queue" = dontDistribute super."mongodb-queue"; + "mongrel2-handler" = dontDistribute super."mongrel2-handler"; + "monitor" = dontDistribute super."monitor"; + "mono-foldable" = dontDistribute super."mono-foldable"; + "monoid-absorbing" = dontDistribute super."monoid-absorbing"; + "monoid-owns" = dontDistribute super."monoid-owns"; + "monoid-record" = dontDistribute super."monoid-record"; + "monoid-statistics" = dontDistribute super."monoid-statistics"; + "monoid-transformer" = dontDistribute super."monoid-transformer"; + "monoidplus" = dontDistribute super."monoidplus"; + "monoids" = dontDistribute super."monoids"; + "monomorphic" = dontDistribute super."monomorphic"; + "montage" = dontDistribute super."montage"; + "montage-client" = dontDistribute super."montage-client"; + "monte-carlo" = dontDistribute super."monte-carlo"; + "moo" = dontDistribute super."moo"; + "moonshine" = dontDistribute super."moonshine"; + "morfette" = dontDistribute super."morfette"; + "morfeusz" = dontDistribute super."morfeusz"; + "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"; + "mpris" = dontDistribute super."mpris"; + "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"; + "mueval" = dontDistribute super."mueval"; + "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-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-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-random-monad" = dontDistribute super."mwc-random-monad"; + "myTestlll" = dontDistribute super."myTestlll"; + "mybitcoin-sci" = dontDistribute super."mybitcoin-sci"; + "myo" = dontDistribute super."myo"; + "mysnapsession" = dontDistribute super."mysnapsession"; + "mysnapsession-example" = dontDistribute super."mysnapsession-example"; + "mysql-effect" = dontDistribute super."mysql-effect"; + "mysql-simple-quasi" = dontDistribute super."mysql-simple-quasi"; + "mysql-simple-typed" = dontDistribute super."mysql-simple-typed"; + "mzv" = dontDistribute super."mzv"; + "n-m" = dontDistribute super."n-m"; + "nagios-perfdata" = dontDistribute super."nagios-perfdata"; + "nagios-plugin-ekg" = dontDistribute super."nagios-plugin-ekg"; + "named-formlet" = dontDistribute super."named-formlet"; + "named-lock" = dontDistribute super."named-lock"; + "named-records" = dontDistribute super."named-records"; + "namelist" = dontDistribute super."namelist"; + "names" = dontDistribute super."names"; + "names-th" = dontDistribute super."names-th"; + "nano-cryptr" = dontDistribute super."nano-cryptr"; + "nano-erl" = dontDistribute super."nano-erl"; + "nano-hmac" = dontDistribute super."nano-hmac"; + "nano-md5" = dontDistribute super."nano-md5"; + "nanoAgda" = dontDistribute super."nanoAgda"; + "nanocurses" = dontDistribute super."nanocurses"; + "nanomsg" = dontDistribute super."nanomsg"; + "nanomsg-haskell" = dontDistribute super."nanomsg-haskell"; + "nanoparsec" = dontDistribute super."nanoparsec"; + "nanq" = dontDistribute super."nanq"; + "narc" = dontDistribute super."narc"; + "nat" = dontDistribute super."nat"; + "nats-queue" = dontDistribute super."nats-queue"; + "natural-number" = dontDistribute super."natural-number"; + "natural-numbers" = dontDistribute super."natural-numbers"; + "natural-transformation" = dontDistribute super."natural-transformation"; + "naturalcomp" = dontDistribute super."naturalcomp"; + "naturals" = dontDistribute super."naturals"; + "naver-translate" = dontDistribute super."naver-translate"; + "nbt" = dontDistribute super."nbt"; + "nc-indicators" = dontDistribute super."nc-indicators"; + "ncurses" = dontDistribute super."ncurses"; + "neat" = dontDistribute super."neat"; + "needle" = dontDistribute super."needle"; + "neet" = dontDistribute super."neet"; + "nehe-tuts" = dontDistribute super."nehe-tuts"; + "neil" = dontDistribute super."neil"; + "neither" = dontDistribute super."neither"; + "nemesis" = dontDistribute super."nemesis"; + "nemesis-titan" = dontDistribute super."nemesis-titan"; + "nerf" = dontDistribute super."nerf"; + "nero" = dontDistribute super."nero"; + "nero-wai" = dontDistribute super."nero-wai"; + "nero-warp" = dontDistribute super."nero-warp"; + "nested-routes" = dontDistribute super."nested-routes"; + "nested-sets" = dontDistribute super."nested-sets"; + "nestedmap" = dontDistribute super."nestedmap"; + "net-concurrent" = dontDistribute super."net-concurrent"; + "netclock" = dontDistribute super."netclock"; + "netcore" = dontDistribute super."netcore"; + "netlines" = dontDistribute super."netlines"; + "netlink" = dontDistribute super."netlink"; + "netlist" = dontDistribute super."netlist"; + "netlist-to-vhdl" = dontDistribute super."netlist-to-vhdl"; + "netpbm" = dontDistribute super."netpbm"; + "netrc" = dontDistribute super."netrc"; + "netspec" = dontDistribute super."netspec"; + "netstring-enumerator" = dontDistribute super."netstring-enumerator"; + "nettle-frp" = dontDistribute super."nettle-frp"; + "nettle-netkit" = dontDistribute super."nettle-netkit"; + "nettle-openflow" = dontDistribute super."nettle-openflow"; + "netwire" = dontDistribute super."netwire"; + "netwire-input" = dontDistribute super."netwire-input"; + "netwire-input-glfw" = dontDistribute super."netwire-input-glfw"; + "network-address" = dontDistribute super."network-address"; + "network-api-support" = dontDistribute super."network-api-support"; + "network-bitcoin" = dontDistribute super."network-bitcoin"; + "network-builder" = dontDistribute super."network-builder"; + "network-bytestring" = dontDistribute super."network-bytestring"; + "network-conduit" = dontDistribute super."network-conduit"; + "network-connection" = dontDistribute super."network-connection"; + "network-data" = dontDistribute super."network-data"; + "network-dbus" = dontDistribute super."network-dbus"; + "network-dns" = dontDistribute super."network-dns"; + "network-enumerator" = dontDistribute super."network-enumerator"; + "network-fancy" = dontDistribute super."network-fancy"; + "network-interfacerequest" = dontDistribute super."network-interfacerequest"; + "network-ip" = dontDistribute super."network-ip"; + "network-metrics" = dontDistribute super."network-metrics"; + "network-minihttp" = dontDistribute super."network-minihttp"; + "network-msg" = dontDistribute super."network-msg"; + "network-netpacket" = dontDistribute super."network-netpacket"; + "network-pgi" = dontDistribute super."network-pgi"; + "network-rpca" = dontDistribute super."network-rpca"; + "network-server" = dontDistribute super."network-server"; + "network-service" = dontDistribute super."network-service"; + "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr"; + "network-simple-tls" = dontDistribute super."network-simple-tls"; + "network-socket-options" = dontDistribute super."network-socket-options"; + "network-stream" = dontDistribute super."network-stream"; + "network-topic-models" = dontDistribute super."network-topic-models"; + "network-transport-amqp" = dontDistribute super."network-transport-amqp"; + "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; + "network-uri-static" = dontDistribute super."network-uri-static"; + "network-wai-router" = dontDistribute super."network-wai-router"; + "network-websocket" = dontDistribute super."network-websocket"; + "networked-game" = dontDistribute super."networked-game"; + "newports" = dontDistribute super."newports"; + "newsynth" = dontDistribute super."newsynth"; + "newt" = dontDistribute super."newt"; + "newtype-deriving" = dontDistribute super."newtype-deriving"; + "newtype-th" = dontDistribute super."newtype-th"; + "newtyper" = dontDistribute super."newtyper"; + "nextstep-plist" = dontDistribute super."nextstep-plist"; + "nf" = dontDistribute super."nf"; + "ngrams-loader" = dontDistribute super."ngrams-loader"; + "niagra" = dontDistribute super."niagra"; + "nibblestring" = dontDistribute super."nibblestring"; + "nicify" = dontDistribute super."nicify"; + "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"; + "nixfromnpm" = dontDistribute super."nixfromnpm"; + "nixos-types" = dontDistribute super."nixos-types"; + "nkjp" = dontDistribute super."nkjp"; + "nlp-scores" = dontDistribute super."nlp-scores"; + "nlp-scores-scripts" = dontDistribute super."nlp-scores-scripts"; + "nm" = dontDistribute super."nm"; + "nme" = dontDistribute super."nme"; + "nntp" = dontDistribute super."nntp"; + "no-buffering-workaround" = dontDistribute super."no-buffering-workaround"; + "no-role-annots" = dontDistribute super."no-role-annots"; + "nofib-analyse" = dontDistribute super."nofib-analyse"; + "nofib-analyze" = dontDistribute super."nofib-analyze"; + "noise" = dontDistribute super."noise"; + "non-empty" = dontDistribute super."non-empty"; + "non-negative" = dontDistribute super."non-negative"; + "nondeterminism" = dontDistribute super."nondeterminism"; + "nonfree" = dontDistribute super."nonfree"; + "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; + "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; + "noodle" = dontDistribute super."noodle"; + "normaldistribution" = dontDistribute super."normaldistribution"; + "not-gloss" = dontDistribute super."not-gloss"; + "not-gloss-examples" = dontDistribute super."not-gloss-examples"; + "not-in-base" = dontDistribute super."not-in-base"; + "notcpp" = dontDistribute super."notcpp"; + "notmuch-haskell" = dontDistribute super."notmuch-haskell"; + "notmuch-web" = dontDistribute super."notmuch-web"; + "notzero" = dontDistribute super."notzero"; + "np-extras" = dontDistribute super."np-extras"; + "np-linear" = dontDistribute super."np-linear"; + "nptools" = dontDistribute super."nptools"; + "nth-prime" = dontDistribute super."nth-prime"; + "nthable" = dontDistribute super."nthable"; + "ntp-control" = dontDistribute super."ntp-control"; + "null-canvas" = dontDistribute super."null-canvas"; + "nullary" = dontDistribute super."nullary"; + "number" = dontDistribute super."number"; + "number-length" = dontDistribute super."number-length"; + "numbering" = dontDistribute super."numbering"; + "numerals" = dontDistribute super."numerals"; + "numerals-base" = dontDistribute super."numerals-base"; + "numeric-limits" = dontDistribute super."numeric-limits"; + "numeric-prelude" = dontDistribute super."numeric-prelude"; + "numeric-qq" = dontDistribute super."numeric-qq"; + "numeric-quest" = dontDistribute super."numeric-quest"; + "numeric-ranges" = dontDistribute super."numeric-ranges"; + "numeric-tools" = dontDistribute super."numeric-tools"; + "numericpeano" = dontDistribute super."numericpeano"; + "nums" = dontDistribute super."nums"; + "numtype" = dontDistribute super."numtype"; + "numtype-tf" = dontDistribute super."numtype-tf"; + "nurbs" = dontDistribute super."nurbs"; + "nvim-hs" = dontDistribute super."nvim-hs"; + "nvim-hs-contrib" = dontDistribute super."nvim-hs-contrib"; + "nyan" = dontDistribute super."nyan"; + "nylas" = dontDistribute super."nylas"; + "nymphaea" = dontDistribute super."nymphaea"; + "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"; + "oeis" = dontDistribute super."oeis"; + "off-simple" = dontDistribute super."off-simple"; + "ohloh-hs" = dontDistribute super."ohloh-hs"; + "oi" = dontDistribute super."oi"; + "oidc-client" = dontDistribute super."oidc-client"; + "ois-input-manager" = dontDistribute super."ois-input-manager"; + "old-version" = dontDistribute super."old-version"; + "olwrapper" = dontDistribute super."olwrapper"; + "omaketex" = dontDistribute super."omaketex"; + "omega" = dontDistribute super."omega"; + "omnicodec" = dontDistribute super."omnicodec"; + "on-a-horse" = dontDistribute super."on-a-horse"; + "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "one-liner" = dontDistribute super."one-liner"; + "one-time-password" = dontDistribute super."one-time-password"; + "oneOfN" = dontDistribute super."oneOfN"; + "oneormore" = dontDistribute super."oneormore"; + "only" = dontDistribute super."only"; + "onu-course" = dontDistribute super."onu-course"; + "opaleye-classy" = dontDistribute super."opaleye-classy"; + "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; + "opaleye-trans" = dontDistribute super."opaleye-trans"; + "open-haddock" = dontDistribute super."open-haddock"; + "open-pandoc" = dontDistribute super."open-pandoc"; + "open-symbology" = dontDistribute super."open-symbology"; + "open-typerep" = dontDistribute super."open-typerep"; + "open-union" = dontDistribute super."open-union"; + "open-witness" = dontDistribute super."open-witness"; + "opencog-atomspace" = dontDistribute super."opencog-atomspace"; + "opencv-raw" = dontDistribute super."opencv-raw"; + "opendatatable" = dontDistribute super."opendatatable"; + "openexchangerates" = dontDistribute super."openexchangerates"; + "openflow" = dontDistribute super."openflow"; + "opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo"; + "opengl-spacenavigator" = dontDistribute super."opengl-spacenavigator"; + "opengles" = dontDistribute super."opengles"; + "openid" = dontDistribute super."openid"; + "openpgp" = dontDistribute super."openpgp"; + "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; + "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; + "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "openssh-github-keys" = dontDistribute super."openssh-github-keys"; + "openssl-createkey" = dontDistribute super."openssl-createkey"; + "opentheory" = dontDistribute super."opentheory"; + "opentheory-bits" = dontDistribute super."opentheory-bits"; + "opentheory-byte" = dontDistribute super."opentheory-byte"; + "opentheory-char" = dontDistribute super."opentheory-char"; + "opentheory-divides" = dontDistribute super."opentheory-divides"; + "opentheory-fibonacci" = dontDistribute super."opentheory-fibonacci"; + "opentheory-parser" = dontDistribute super."opentheory-parser"; + "opentheory-prime" = dontDistribute super."opentheory-prime"; + "opentheory-primitive" = dontDistribute super."opentheory-primitive"; + "opentheory-probability" = dontDistribute super."opentheory-probability"; + "opentheory-stream" = dontDistribute super."opentheory-stream"; + "opentheory-unicode" = dontDistribute super."opentheory-unicode"; + "operational-alacarte" = dontDistribute super."operational-alacarte"; + "opml" = dontDistribute super."opml"; + "opn" = dontDistribute super."opn"; + "optimal-blocks" = dontDistribute super."optimal-blocks"; + "optimization" = dontDistribute super."optimization"; + "optimusprime" = dontDistribute super."optimusprime"; + "option" = dontDistribute super."option"; + "optional" = dontDistribute super."optional"; + "options-time" = dontDistribute super."options-time"; + "optparse-declarative" = dontDistribute super."optparse-declarative"; + "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"; + "packman" = dontDistribute super."packman"; + "packunused" = dontDistribute super."packunused"; + "pacman-memcache" = dontDistribute super."pacman-memcache"; + "padKONTROL" = dontDistribute super."padKONTROL"; + "pagarme" = dontDistribute super."pagarme"; + "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; + "palindromes" = dontDistribute super."palindromes"; + "pam" = dontDistribute super."pam"; + "panda" = dontDistribute super."panda"; + "pandoc-citeproc-preamble" = dontDistribute super."pandoc-citeproc-preamble"; + "pandoc-crossref" = dontDistribute super."pandoc-crossref"; + "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; + "pandoc-include" = dontDistribute super."pandoc-include"; + "pandoc-japanese-filters" = dontDistribute super."pandoc-japanese-filters"; + "pandoc-lens" = dontDistribute super."pandoc-lens"; + "pandoc-placetable" = dontDistribute super."pandoc-placetable"; + "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; + "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "papillon" = dontDistribute super."papillon"; + "pappy" = dontDistribute super."pappy"; + "para" = dontDistribute super."para"; + "paragon" = dontDistribute super."paragon"; + "parallel-tasks" = dontDistribute super."parallel-tasks"; + "parallel-tree-search" = dontDistribute super."parallel-tree-search"; + "parameterized-data" = dontDistribute super."parameterized-data"; + "parco" = dontDistribute super."parco"; + "parco-attoparsec" = dontDistribute super."parco-attoparsec"; + "parco-parsec" = dontDistribute super."parco-parsec"; + "parcom-lib" = dontDistribute super."parcom-lib"; + "parconc-examples" = dontDistribute super."parconc-examples"; + "parport" = dontDistribute super."parport"; + "parse-dimacs" = dontDistribute super."parse-dimacs"; + "parse-help" = dontDistribute super."parse-help"; + "parsec-extra" = dontDistribute super."parsec-extra"; + "parsec-numbers" = dontDistribute super."parsec-numbers"; + "parsec-parsers" = dontDistribute super."parsec-parsers"; + "parsec-permutation" = dontDistribute super."parsec-permutation"; + "parsec-tagsoup" = dontDistribute super."parsec-tagsoup"; + "parsec-trace" = dontDistribute super."parsec-trace"; + "parsec-utils" = dontDistribute super."parsec-utils"; + "parsec1" = dontDistribute super."parsec1"; + "parsec2" = dontDistribute super."parsec2"; + "parsec3" = dontDistribute super."parsec3"; + "parsec3-numbers" = dontDistribute super."parsec3-numbers"; + "parsedate" = dontDistribute super."parsedate"; + "parsek" = dontDistribute super."parsek"; + "parsely" = dontDistribute super."parsely"; + "parser-helper" = dontDistribute super."parser-helper"; + "parser241" = dontDistribute super."parser241"; + "parsergen" = dontDistribute super."parsergen"; + "parsestar" = dontDistribute super."parsestar"; + "parsimony" = dontDistribute super."parsimony"; + "partial" = dontDistribute super."partial"; + "partial-lens" = dontDistribute super."partial-lens"; + "partial-uri" = dontDistribute super."partial-uri"; + "partly" = dontDistribute super."partly"; + "passage" = dontDistribute super."passage"; + "passwords" = dontDistribute super."passwords"; + "pastis" = dontDistribute super."pastis"; + "pasty" = dontDistribute super."pasty"; + "patch-combinators" = dontDistribute super."patch-combinators"; + "patch-image" = dontDistribute super."patch-image"; + "pathfinding" = dontDistribute super."pathfinding"; + "pathfindingcore" = dontDistribute super."pathfindingcore"; + "pathtype" = dontDistribute super."pathtype"; + "patronscraper" = dontDistribute super."patronscraper"; + "patterns" = dontDistribute super."patterns"; + "paymill" = dontDistribute super."paymill"; + "paypal-adaptive-hoops" = dontDistribute super."paypal-adaptive-hoops"; + "paypal-api" = dontDistribute super."paypal-api"; + "pb" = dontDistribute super."pb"; + "pbc4hs" = dontDistribute super."pbc4hs"; + "pbkdf" = dontDistribute super."pbkdf"; + "pcap-conduit" = dontDistribute super."pcap-conduit"; + "pcap-enumerator" = dontDistribute super."pcap-enumerator"; + "pcd-loader" = dontDistribute super."pcd-loader"; + "pcf" = dontDistribute super."pcf"; + "pcg-random" = dontDistribute super."pcg-random"; + "pcre-less" = dontDistribute super."pcre-less"; + "pcre-light-extra" = dontDistribute super."pcre-light-extra"; + "pdf-toolbox-viewer" = dontDistribute super."pdf-toolbox-viewer"; + "pdf2line" = dontDistribute super."pdf2line"; + "pdfsplit" = dontDistribute super."pdfsplit"; + "pdynload" = dontDistribute super."pdynload"; + "peakachu" = dontDistribute super."peakachu"; + "peano" = dontDistribute super."peano"; + "peano-inf" = dontDistribute super."peano-inf"; + "pec" = dontDistribute super."pec"; + "pecoff" = dontDistribute super."pecoff"; + "peg" = dontDistribute super."peg"; + "peggy" = dontDistribute super."peggy"; + "pell" = dontDistribute super."pell"; + "penn-treebank" = dontDistribute super."penn-treebank"; + "penny" = dontDistribute super."penny"; + "penny-bin" = dontDistribute super."penny-bin"; + "penny-lib" = dontDistribute super."penny-lib"; + "peparser" = dontDistribute super."peparser"; + "perceptron" = dontDistribute super."perceptron"; + "perdure" = dontDistribute super."perdure"; + "period" = dontDistribute super."period"; + "perm" = dontDistribute super."perm"; + "permutation" = dontDistribute super."permutation"; + "permute" = dontDistribute super."permute"; + "persist2er" = dontDistribute super."persist2er"; + "persistable-record" = dontDistribute super."persistable-record"; + "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; + "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-equivalence" = dontDistribute super."persistent-equivalence"; + "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; + "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; + "persistent-iproute" = dontDistribute super."persistent-iproute"; + "persistent-map" = dontDistribute super."persistent-map"; + "persistent-odbc" = dontDistribute super."persistent-odbc"; + "persistent-protobuf" = dontDistribute super."persistent-protobuf"; + "persistent-ratelimit" = dontDistribute super."persistent-ratelimit"; + "persistent-redis" = dontDistribute super."persistent-redis"; + "persistent-vector" = dontDistribute super."persistent-vector"; + "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; + "persona" = dontDistribute super."persona"; + "persona-idp" = dontDistribute super."persona-idp"; + "pesca" = dontDistribute super."pesca"; + "peyotls" = dontDistribute super."peyotls"; + "peyotls-codec" = dontDistribute super."peyotls-codec"; + "pez" = dontDistribute super."pez"; + "pg-harness" = dontDistribute super."pg-harness"; + "pg-harness-client" = dontDistribute super."pg-harness-client"; + "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pgdl" = dontDistribute super."pgdl"; + "pgm" = dontDistribute super."pgm"; + "pgsql-simple" = dontDistribute super."pgsql-simple"; + "pgstream" = dontDistribute super."pgstream"; + "phasechange" = dontDistribute super."phasechange"; + "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; + "phone-numbers" = dontDistribute super."phone-numbers"; + "phone-push" = dontDistribute super."phone-push"; + "phonetic-code" = dontDistribute super."phonetic-code"; + "phooey" = dontDistribute super."phooey"; + "photoname" = dontDistribute super."photoname"; + "phraskell" = dontDistribute super."phraskell"; + "phybin" = dontDistribute super."phybin"; + "pi-calculus" = dontDistribute super."pi-calculus"; + "pia-forward" = dontDistribute super."pia-forward"; + "pianola" = dontDistribute super."pianola"; + "picologic" = dontDistribute super."picologic"; + "picosat" = dontDistribute super."picosat"; + "piet" = dontDistribute super."piet"; + "piki" = dontDistribute super."piki"; + "pinboard" = dontDistribute super."pinboard"; + "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-errors" = dontDistribute super."pipes-errors"; + "pipes-extra" = dontDistribute super."pipes-extra"; + "pipes-files" = dontDistribute super."pipes-files"; + "pipes-interleave" = dontDistribute super."pipes-interleave"; + "pipes-network-tls" = dontDistribute super."pipes-network-tls"; + "pipes-p2p" = dontDistribute super."pipes-p2p"; + "pipes-p2p-examples" = dontDistribute super."pipes-p2p-examples"; + "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; + "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-shell" = dontDistribute super."pipes-shell"; + "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; + "pipes-vector" = dontDistribute super."pipes-vector"; + "pipes-websockets" = dontDistribute super."pipes-websockets"; + "pipes-zeromq4" = dontDistribute super."pipes-zeromq4"; + "pipes-zlib" = dontDistribute super."pipes-zlib"; + "pisigma" = dontDistribute super."pisigma"; + "pit" = dontDistribute super."pit"; + "pitchtrack" = dontDistribute super."pitchtrack"; + "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pkcs1" = dontDistribute super."pkcs1"; + "pkcs7" = dontDistribute super."pkcs7"; + "pkggraph" = dontDistribute super."pkggraph"; + "pktree" = dontDistribute super."pktree"; + "plailude" = dontDistribute super."plailude"; + "plan-b" = dontDistribute super."plan-b"; + "planar-graph" = dontDistribute super."planar-graph"; + "plat" = dontDistribute super."plat"; + "playlists" = dontDistribute super."playlists"; + "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; + "plivo" = dontDistribute super."plivo"; + "plot-lab" = dontDistribute super."plot-lab"; + "plotfont" = dontDistribute super."plotfont"; + "plotserver-api" = dontDistribute super."plotserver-api"; + "plugins" = dontDistribute super."plugins"; + "plugins-auto" = dontDistribute super."plugins-auto"; + "plugins-multistage" = dontDistribute super."plugins-multistage"; + "plumbers" = dontDistribute super."plumbers"; + "ply-loader" = dontDistribute super."ply-loader"; + "png-file" = dontDistribute super."png-file"; + "pngload" = dontDistribute super."pngload"; + "pngload-fixed" = dontDistribute super."pngload-fixed"; + "pnm" = dontDistribute super."pnm"; + "pocket-dns" = dontDistribute super."pocket-dns"; + "pointfree" = dontDistribute super."pointfree"; + "pointful" = dontDistribute super."pointful"; + "pointless-fun" = dontDistribute super."pointless-fun"; + "pointless-haskell" = dontDistribute super."pointless-haskell"; + "pointless-lenses" = dontDistribute super."pointless-lenses"; + "pointless-rewrite" = dontDistribute super."pointless-rewrite"; + "poker-eval" = dontDistribute super."poker-eval"; + "pokitdok" = dontDistribute super."pokitdok"; + "polar" = dontDistribute super."polar"; + "polar-configfile" = dontDistribute super."polar-configfile"; + "polar-shader" = dontDistribute super."polar-shader"; + "polh-lexicon" = dontDistribute super."polh-lexicon"; + "polimorf" = dontDistribute super."polimorf"; + "poll" = dontDistribute super."poll"; + "polyToMonoid" = dontDistribute super."polyToMonoid"; + "polymap" = dontDistribute super."polymap"; + "polynom" = dontDistribute super."polynom"; + "polynomial" = dontDistribute super."polynomial"; + "polynomials-bernstein" = dontDistribute super."polynomials-bernstein"; + "polyseq" = dontDistribute super."polyseq"; + "polysoup" = dontDistribute super."polysoup"; + "polytypeable" = dontDistribute super."polytypeable"; + "polytypeable-utils" = dontDistribute super."polytypeable-utils"; + "ponder" = dontDistribute super."ponder"; + "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-connector" = dontDistribute super."postgresql-connector"; + "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; + "postgresql-cube" = dontDistribute super."postgresql-cube"; + "postgresql-error-codes" = dontDistribute super."postgresql-error-codes"; + "postgresql-query" = dontDistribute super."postgresql-query"; + "postgresql-simple-migration" = dontDistribute super."postgresql-simple-migration"; + "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; + "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; + "postgresql-typed" = dontDistribute super."postgresql-typed"; + "postgrest" = dontDistribute super."postgrest"; + "postie" = dontDistribute super."postie"; + "postmark" = dontDistribute super."postmark"; + "postmaster" = dontDistribute super."postmaster"; + "potato-tool" = dontDistribute super."potato-tool"; + "potrace" = dontDistribute super."potrace"; + "potrace-diagrams" = dontDistribute super."potrace-diagrams"; + "powermate" = dontDistribute super."powermate"; + "powerpc" = dontDistribute super."powerpc"; + "ppm" = dontDistribute super."ppm"; + "pqc" = dontDistribute super."pqc"; + "pqueue-mtl" = dontDistribute super."pqueue-mtl"; + "practice-room" = dontDistribute super."practice-room"; + "precis" = dontDistribute super."precis"; + "predicates" = dontDistribute super."predicates"; + "prednote-test" = dontDistribute super."prednote-test"; + "prefork" = dontDistribute super."prefork"; + "pregame" = dontDistribute super."pregame"; + "prelude-edsl" = dontDistribute super."prelude-edsl"; + "prelude-generalize" = dontDistribute super."prelude-generalize"; + "prelude-plus" = dontDistribute super."prelude-plus"; + "prelude-prime" = dontDistribute super."prelude-prime"; + "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "preprocess-haskell" = dontDistribute super."preprocess-haskell"; + "preprocessor-tools" = dontDistribute super."preprocessor-tools"; + "present" = dontDistribute super."present"; + "press" = dontDistribute super."press"; + "presto-hdbc" = dontDistribute super."presto-hdbc"; + "prettify" = dontDistribute super."prettify"; + "pretty-compact" = dontDistribute super."pretty-compact"; + "pretty-error" = dontDistribute super."pretty-error"; + "pretty-hex" = dontDistribute super."pretty-hex"; + "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-sop" = dontDistribute super."pretty-sop"; + "pretty-tree" = dontDistribute super."pretty-tree"; + "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-uniq" = dontDistribute super."prim-uniq"; + "primula-board" = dontDistribute super."primula-board"; + "primula-bot" = dontDistribute super."primula-bot"; + "printf-mauke" = dontDistribute super."printf-mauke"; + "printxosd" = dontDistribute super."printxosd"; + "priority-queue" = dontDistribute super."priority-queue"; + "priority-sync" = dontDistribute super."priority-sync"; + "privileged-concurrency" = dontDistribute super."privileged-concurrency"; + "prizm" = dontDistribute super."prizm"; + "probability" = dontDistribute super."probability"; + "probable" = dontDistribute super."probable"; + "proc" = dontDistribute super."proc"; + "process-conduit" = dontDistribute super."process-conduit"; + "process-iterio" = dontDistribute super."process-iterio"; + "process-leksah" = dontDistribute super."process-leksah"; + "process-listlike" = dontDistribute super."process-listlike"; + "process-progress" = dontDistribute super."process-progress"; + "process-qq" = dontDistribute super."process-qq"; + "process-streaming" = dontDistribute super."process-streaming"; + "processing" = dontDistribute super."processing"; + "processor-creative-kit" = dontDistribute super."processor-creative-kit"; + "procrastinating-structure" = dontDistribute super."procrastinating-structure"; + "procrastinating-variable" = dontDistribute super."procrastinating-variable"; + "procstat" = dontDistribute super."procstat"; + "proctest" = dontDistribute super."proctest"; + "prof2dot" = dontDistribute super."prof2dot"; + "prof2pretty" = dontDistribute super."prof2pretty"; + "profiteur" = dontDistribute super."profiteur"; + "progress" = dontDistribute super."progress"; + "progressbar" = dontDistribute super."progressbar"; + "progression" = dontDistribute super."progression"; + "progressive" = dontDistribute super."progressive"; + "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; + "projection" = dontDistribute super."projection"; + "prolog" = dontDistribute super."prolog"; + "prolog-graph" = dontDistribute super."prolog-graph"; + "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; + "prologue" = dontDistribute super."prologue"; + "promise" = dontDistribute super."promise"; + "promises" = dontDistribute super."promises"; + "propane" = dontDistribute super."propane"; + "propellor" = dontDistribute super."propellor"; + "properties" = dontDistribute super."properties"; + "property-list" = dontDistribute super."property-list"; + "proplang" = dontDistribute super."proplang"; + "props" = dontDistribute super."props"; + "prosper" = dontDistribute super."prosper"; + "proteaaudio" = dontDistribute super."proteaaudio"; + "protobuf-native" = dontDistribute super."protobuf-native"; + "protocol-buffers-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"; + "pseudo-boolean" = dontDistribute super."pseudo-boolean"; + "pseudo-trie" = dontDistribute super."pseudo-trie"; + "pseudomacros" = dontDistribute super."pseudomacros"; + "pub" = dontDistribute super."pub"; + "publicsuffixlist" = dontDistribute super."publicsuffixlist"; + "publicsuffixlistcreate" = dontDistribute super."publicsuffixlistcreate"; + "pubnub" = dontDistribute super."pubnub"; + "pubsub" = dontDistribute super."pubsub"; + "puffytools" = dontDistribute super."puffytools"; + "pugixml" = dontDistribute super."pugixml"; + "pugs-DrIFT" = dontDistribute super."pugs-DrIFT"; + "pugs-HsSyck" = dontDistribute super."pugs-HsSyck"; + "pugs-compat" = dontDistribute super."pugs-compat"; + "pugs-hsregex" = dontDistribute super."pugs-hsregex"; + "pulse-simple" = dontDistribute super."pulse-simple"; + "punkt" = dontDistribute super."punkt"; + "punycode" = dontDistribute super."punycode"; + "puppetresources" = dontDistribute super."puppetresources"; + "pure-fft" = dontDistribute super."pure-fft"; + "pure-priority-queue" = dontDistribute super."pure-priority-queue"; + "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; + "pure-zlib" = dontDistribute super."pure-zlib"; + "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "push-notify" = dontDistribute super."push-notify"; + "push-notify-ccs" = dontDistribute super."push-notify-ccs"; + "push-notify-general" = dontDistribute super."push-notify-general"; + "pusher-haskell" = dontDistribute super."pusher-haskell"; + "pushme" = dontDistribute super."pushme"; + "putlenses" = dontDistribute super."putlenses"; + "puzzle-draw" = dontDistribute super."puzzle-draw"; + "puzzle-draw-cmdline" = dontDistribute super."puzzle-draw-cmdline"; + "pvd" = dontDistribute super."pvd"; + "pwstore-cli" = dontDistribute super."pwstore-cli"; + "pxsl-tools" = dontDistribute super."pxsl-tools"; + "pyffi" = dontDistribute super."pyffi"; + "pyfi" = dontDistribute super."pyfi"; + "python-pickle" = dontDistribute super."python-pickle"; + "qc-oi-testgenerator" = dontDistribute super."qc-oi-testgenerator"; + "qd" = dontDistribute super."qd"; + "qd-vec" = dontDistribute super."qd-vec"; + "qed" = dontDistribute super."qed"; + "qhull-simple" = dontDistribute super."qhull-simple"; + "qrcode" = dontDistribute super."qrcode"; + "qt" = dontDistribute super."qt"; + "quadratic-irrational" = dontDistribute super."quadratic-irrational"; + "quantfin" = dontDistribute super."quantfin"; + "quantities" = dontDistribute super."quantities"; + "quantum-arrow" = dontDistribute super."quantum-arrow"; + "qudb" = dontDistribute super."qudb"; + "quenya-verb" = dontDistribute super."quenya-verb"; + "querystring-pickle" = dontDistribute super."querystring-pickle"; + "queue" = dontDistribute super."queue"; + "queuelike" = dontDistribute super."queuelike"; + "quick-generator" = dontDistribute super."quick-generator"; + "quick-schema" = dontDistribute super."quick-schema"; + "quickcheck-poly" = dontDistribute super."quickcheck-poly"; + "quickcheck-properties" = dontDistribute super."quickcheck-properties"; + "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb"; + "quickcheck-property-monad" = dontDistribute super."quickcheck-property-monad"; + "quickcheck-regex" = dontDistribute super."quickcheck-regex"; + "quickcheck-relaxng" = dontDistribute super."quickcheck-relaxng"; + "quickcheck-rematch" = dontDistribute super."quickcheck-rematch"; + "quickcheck-script" = dontDistribute super."quickcheck-script"; + "quickcheck-simple" = dontDistribute super."quickcheck-simple"; + "quickcheck-webdriver" = dontDistribute super."quickcheck-webdriver"; + "quicklz" = dontDistribute super."quicklz"; + "quickpull" = dontDistribute super."quickpull"; + "quickset" = dontDistribute super."quickset"; + "quickspec" = dontDistribute super."quickspec"; + "quicktest" = dontDistribute super."quicktest"; + "quickwebapp" = dontDistribute super."quickwebapp"; + "quiver" = dontDistribute super."quiver"; + "quiver-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-space" = dontDistribute super."range-space"; + "rangemin" = dontDistribute super."rangemin"; + "ranges" = dontDistribute super."ranges"; + "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"; + "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"; + "reedsolomon" = dontDistribute super."reedsolomon"; + "reenact" = dontDistribute super."reenact"; + "reexport-crypto-random" = dontDistribute super."reexport-crypto-random"; + "ref" = dontDistribute super."ref"; + "ref-mtl" = dontDistribute super."ref-mtl"; + "ref-tf" = dontDistribute super."ref-tf"; + "refcount" = dontDistribute super."refcount"; + "reference" = dontDistribute super."reference"; + "references" = dontDistribute super."references"; + "refh" = dontDistribute super."refh"; + "refined" = dontDistribute super."refined"; + "reflection-extras" = dontDistribute super."reflection-extras"; + "reflection-without-remorse" = dontDistribute super."reflection-without-remorse"; + "reflex" = dontDistribute super."reflex"; + "reflex-animation" = dontDistribute super."reflex-animation"; + "reflex-dom" = dontDistribute super."reflex-dom"; + "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; + "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; + "regex-deriv" = dontDistribute super."regex-deriv"; + "regex-dfa" = dontDistribute super."regex-dfa"; + "regex-easy" = dontDistribute super."regex-easy"; + "regex-genex" = dontDistribute super."regex-genex"; + "regex-parsec" = dontDistribute super."regex-parsec"; + "regex-pderiv" = dontDistribute super."regex-pderiv"; + "regex-posix-unittest" = dontDistribute super."regex-posix-unittest"; + "regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes"; + "regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter"; + "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; + "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; + "regex-tre" = dontDistribute super."regex-tre"; + "regex-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"; + "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"; + "resource-effect" = dontDistribute super."resource-effect"; + "resource-embed" = dontDistribute super."resource-embed"; + "resource-pool-catchio" = dontDistribute super."resource-pool-catchio"; + "resource-pool-monad" = dontDistribute super."resource-pool-monad"; + "resource-simple" = dontDistribute super."resource-simple"; + "respond" = dontDistribute super."respond"; + "rest-example" = dontDistribute super."rest-example"; + "restful-snap" = dontDistribute super."restful-snap"; + "restricted-workers" = dontDistribute super."restricted-workers"; + "restyle" = dontDistribute super."restyle"; + "resumable-exceptions" = dontDistribute super."resumable-exceptions"; + "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"; + "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-trie" = dontDistribute super."rose-trie"; + "roshask" = dontDistribute super."roshask"; + "rosso" = dontDistribute super."rosso"; + "rot13" = dontDistribute super."rot13"; + "rotating-log" = dontDistribute super."rotating-log"; + "rounding" = dontDistribute super."rounding"; + "roundtrip" = dontDistribute super."roundtrip"; + "roundtrip-aeson" = dontDistribute super."roundtrip-aeson"; + "roundtrip-string" = dontDistribute super."roundtrip-string"; + "roundtrip-xml" = dontDistribute super."roundtrip-xml"; + "route-generator" = dontDistribute super."route-generator"; + "route-planning" = dontDistribute super."route-planning"; + "rowrecord" = dontDistribute super."rowrecord"; + "rpc" = dontDistribute super."rpc"; + "rpc-framework" = dontDistribute super."rpc-framework"; + "rpf" = dontDistribute super."rpf"; + "rpm" = dontDistribute super."rpm"; + "rsagl" = dontDistribute super."rsagl"; + "rsagl-frp" = dontDistribute super."rsagl-frp"; + "rsagl-math" = dontDistribute super."rsagl-math"; + "rspp" = dontDistribute super."rspp"; + "rss" = dontDistribute super."rss"; + "rss2irc" = dontDistribute super."rss2irc"; + "rtcm" = dontDistribute super."rtcm"; + "rtld" = dontDistribute super."rtld"; + "rtlsdr" = dontDistribute super."rtlsdr"; + "rtorrent-rpc" = dontDistribute super."rtorrent-rpc"; + "rtorrent-state" = dontDistribute super."rtorrent-state"; + "rubberband" = dontDistribute super."rubberband"; + "ruby-marshal" = dontDistribute super."ruby-marshal"; + "ruby-qq" = dontDistribute super."ruby-qq"; + "ruff" = dontDistribute super."ruff"; + "ruler" = dontDistribute super."ruler"; + "ruler-core" = dontDistribute super."ruler-core"; + "rungekutta" = dontDistribute super."rungekutta"; + "runghc" = dontDistribute super."runghc"; + "rwlock" = dontDistribute super."rwlock"; + "rws" = dontDistribute super."rws"; + "s-cargot" = dontDistribute super."s-cargot"; + "safe-access" = dontDistribute super."safe-access"; + "safe-failure" = dontDistribute super."safe-failure"; + "safe-failure-cme" = dontDistribute super."safe-failure-cme"; + "safe-freeze" = dontDistribute super."safe-freeze"; + "safe-globals" = dontDistribute super."safe-globals"; + "safe-lazy-io" = dontDistribute super."safe-lazy-io"; + "safe-length" = dontDistribute super."safe-length"; + "safe-plugins" = dontDistribute super."safe-plugins"; + "safe-printf" = dontDistribute super."safe-printf"; + "safeint" = dontDistribute super."safeint"; + "safer-file-handles" = dontDistribute super."safer-file-handles"; + "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring"; + "safer-file-handles-text" = dontDistribute super."safer-file-handles-text"; + "saferoute" = dontDistribute super."saferoute"; + "sai-shape-syb" = dontDistribute super."sai-shape-syb"; + "saltine" = dontDistribute super."saltine"; + "saltine-quickcheck" = dontDistribute super."saltine-quickcheck"; + "salvia" = dontDistribute super."salvia"; + "salvia-demo" = dontDistribute super."salvia-demo"; + "salvia-extras" = dontDistribute super."salvia-extras"; + "salvia-protocol" = dontDistribute super."salvia-protocol"; + "salvia-sessions" = dontDistribute super."salvia-sessions"; + "salvia-websocket" = dontDistribute super."salvia-websocket"; + "sample-frame" = dontDistribute super."sample-frame"; + "sample-frame-np" = dontDistribute super."sample-frame-np"; + "samtools" = dontDistribute super."samtools"; + "samtools-conduit" = dontDistribute super."samtools-conduit"; + "samtools-enumerator" = dontDistribute super."samtools-enumerator"; + "samtools-iteratee" = dontDistribute super."samtools-iteratee"; + "sandlib" = dontDistribute super."sandlib"; + "sarasvati" = dontDistribute super."sarasvati"; + "sasl" = dontDistribute super."sasl"; + "sat" = dontDistribute super."sat"; + "sat-micro-hs" = dontDistribute super."sat-micro-hs"; + "satchmo" = dontDistribute super."satchmo"; + "satchmo-backends" = dontDistribute super."satchmo-backends"; + "satchmo-examples" = dontDistribute super."satchmo-examples"; + "satchmo-funsat" = dontDistribute super."satchmo-funsat"; + "satchmo-minisat" = dontDistribute super."satchmo-minisat"; + "satchmo-toysat" = dontDistribute super."satchmo-toysat"; + "sbp" = dontDistribute super."sbp"; + "sbvPlugin" = dontDistribute super."sbvPlugin"; + "sc3-rdu" = dontDistribute super."sc3-rdu"; + "scalable-server" = dontDistribute super."scalable-server"; + "scaleimage" = dontDistribute super."scaleimage"; + "scalp-webhooks" = dontDistribute super."scalp-webhooks"; + "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"; + "scrz" = dontDistribute super."scrz"; + "scyther-proof" = dontDistribute super."scyther-proof"; + "sde-solver" = dontDistribute super."sde-solver"; + "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; + "sdl2-cairo" = dontDistribute super."sdl2-cairo"; + "sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image"; + "sdl2-compositor" = dontDistribute super."sdl2-compositor"; + "sdl2-image" = dontDistribute super."sdl2-image"; + "sdl2-ttf" = dontDistribute super."sdl2-ttf"; + "sdnv" = dontDistribute super."sdnv"; + "sdr" = dontDistribute super."sdr"; + "seacat" = dontDistribute super."seacat"; + "seal-module" = dontDistribute super."seal-module"; + "search" = dontDistribute super."search"; + "sec" = dontDistribute super."sec"; + "secdh" = dontDistribute super."secdh"; + "seclib" = dontDistribute super."seclib"; + "secp256k1" = dontDistribute super."secp256k1"; + "secret-santa" = dontDistribute super."secret-santa"; + "secret-sharing" = dontDistribute super."secret-sharing"; + "secrm" = dontDistribute super."secrm"; + "secure-sockets" = dontDistribute super."secure-sockets"; + "sednaDBXML" = dontDistribute super."sednaDBXML"; + "select" = dontDistribute super."select"; + "selectors" = dontDistribute super."selectors"; + "selenium" = dontDistribute super."selenium"; + "selenium-server" = dontDistribute super."selenium-server"; + "selfrestart" = dontDistribute super."selfrestart"; + "selinux" = dontDistribute super."selinux"; + "semaphore-plus" = dontDistribute super."semaphore-plus"; + "semi-iso" = dontDistribute super."semi-iso"; + "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; + "semigroups-actions" = dontDistribute super."semigroups-actions"; + "semiring" = dontDistribute super."semiring"; + "semiring-simple" = dontDistribute super."semiring-simple"; + "semver-range" = dontDistribute super."semver-range"; + "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensenet" = dontDistribute super."sensenet"; + "sentry" = dontDistribute super."sentry"; + "senza" = dontDistribute super."senza"; + "separated" = dontDistribute super."separated"; + "seqaid" = dontDistribute super."seqaid"; + "seqid" = dontDistribute super."seqid"; + "seqid-streams" = dontDistribute super."seqid-streams"; + "seqloc-datafiles" = dontDistribute super."seqloc-datafiles"; + "sequence" = dontDistribute super."sequence"; + "sequent-core" = dontDistribute super."sequent-core"; + "sequential-index" = dontDistribute super."sequential-index"; + "sequor" = dontDistribute super."sequor"; + "serial" = dontDistribute super."serial"; + "serial-test-generators" = dontDistribute super."serial-test-generators"; + "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; + "servant-cassava" = dontDistribute super."servant-cassava"; + "servant-ede" = dontDistribute super."servant-ede"; + "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; + "servant-lucid" = dontDistribute super."servant-lucid"; + "servant-mock" = dontDistribute super."servant-mock"; + "servant-pandoc" = dontDistribute super."servant-pandoc"; + "servant-pool" = dontDistribute super."servant-pool"; + "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-response" = dontDistribute super."servant-response"; + "servant-scotty" = dontDistribute super."servant-scotty"; + "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"; + "setgame" = dontDistribute super."setgame"; + "setops" = dontDistribute super."setops"; + "setters" = dontDistribute super."setters"; + "settings" = dontDistribute super."settings"; + "sexp" = dontDistribute super."sexp"; + "sexp-grammar" = dontDistribute super."sexp-grammar"; + "sexp-show" = dontDistribute super."sexp-show"; + "sexpr" = dontDistribute super."sexpr"; + "sext" = dontDistribute super."sext"; + "sfml-audio" = dontDistribute super."sfml-audio"; + "sfmt" = dontDistribute super."sfmt"; + "sgd" = dontDistribute super."sgd"; + "sgf" = dontDistribute super."sgf"; + "sgrep" = dontDistribute super."sgrep"; + "sha-streams" = dontDistribute super."sha-streams"; + "shadower" = dontDistribute super."shadower"; + "shadowsocks" = dontDistribute super."shadowsocks"; + "shady-gen" = dontDistribute super."shady-gen"; + "shady-graphics" = dontDistribute super."shady-graphics"; + "shake-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"; + "shake-persist" = dontDistribute super."shake-persist"; + "shaker" = dontDistribute super."shaker"; + "shakespeare-babel" = dontDistribute super."shakespeare-babel"; + "shakespeare-css" = dontDistribute super."shakespeare-css"; + "shakespeare-i18n" = dontDistribute super."shakespeare-i18n"; + "shakespeare-js" = dontDistribute super."shakespeare-js"; + "shakespeare-text" = dontDistribute super."shakespeare-text"; + "shana" = dontDistribute super."shana"; + "shapefile" = dontDistribute super."shapefile"; + "shapely-data" = dontDistribute super."shapely-data"; + "sharc-timbre" = dontDistribute super."sharc-timbre"; + "shared-buffer" = dontDistribute super."shared-buffer"; + "shared-fields" = dontDistribute super."shared-fields"; + "shared-memory" = dontDistribute super."shared-memory"; + "sharedio" = dontDistribute super."sharedio"; + "she" = dontDistribute super."she"; + "shelduck" = dontDistribute super."shelduck"; + "shell-escape" = dontDistribute super."shell-escape"; + "shell-monad" = dontDistribute super."shell-monad"; + "shell-pipe" = dontDistribute super."shell-pipe"; + "shellish" = dontDistribute super."shellish"; + "shellmate" = dontDistribute super."shellmate"; + "shelly-extra" = dontDistribute super."shelly-extra"; + "shivers-cfg" = dontDistribute super."shivers-cfg"; + "shoap" = dontDistribute super."shoap"; + "shortcircuit" = dontDistribute super."shortcircuit"; + "shorten-strings" = dontDistribute super."shorten-strings"; + "show" = dontDistribute super."show"; + "show-type" = dontDistribute super."show-type"; + "showdown" = dontDistribute super."showdown"; + "shpider" = dontDistribute super."shpider"; + "shplit" = dontDistribute super."shplit"; + "shqq" = dontDistribute super."shqq"; + "shuffle" = dontDistribute super."shuffle"; + "sieve" = dontDistribute super."sieve"; + "sifflet" = dontDistribute super."sifflet"; + "sifflet-lib" = dontDistribute super."sifflet-lib"; + "sign" = dontDistribute super."sign"; + "signals" = dontDistribute super."signals"; + "signed-multiset" = dontDistribute super."signed-multiset"; + "simd" = dontDistribute super."simd"; + "simgi" = dontDistribute super."simgi"; + "simple-actors" = dontDistribute super."simple-actors"; + "simple-atom" = dontDistribute super."simple-atom"; + "simple-bluetooth" = dontDistribute super."simple-bluetooth"; + "simple-c-value" = dontDistribute super."simple-c-value"; + "simple-conduit" = dontDistribute super."simple-conduit"; + "simple-config" = dontDistribute super."simple-config"; + "simple-css" = dontDistribute super."simple-css"; + "simple-eval" = dontDistribute super."simple-eval"; + "simple-firewire" = dontDistribute super."simple-firewire"; + "simple-form" = dontDistribute super."simple-form"; + "simple-genetic-algorithm" = dontDistribute super."simple-genetic-algorithm"; + "simple-genetic-algorithm-mr" = dontDistribute super."simple-genetic-algorithm-mr"; + "simple-get-opt" = dontDistribute super."simple-get-opt"; + "simple-index" = dontDistribute super."simple-index"; + "simple-log" = dontDistribute super."simple-log"; + "simple-log-syslog" = dontDistribute super."simple-log-syslog"; + "simple-neural-networks" = dontDistribute super."simple-neural-networks"; + "simple-nix" = dontDistribute super."simple-nix"; + "simple-observer" = dontDistribute super."simple-observer"; + "simple-pascal" = dontDistribute super."simple-pascal"; + "simple-pipe" = dontDistribute super."simple-pipe"; + "simple-rope" = dontDistribute super."simple-rope"; + "simple-server" = dontDistribute super."simple-server"; + "simple-sessions" = dontDistribute super."simple-sessions"; + "simple-sql-parser" = dontDistribute super."simple-sql-parser"; + "simple-stacked-vm" = dontDistribute super."simple-stacked-vm"; + "simple-tabular" = dontDistribute super."simple-tabular"; + "simple-vec3" = dontDistribute super."simple-vec3"; + "simpleargs" = dontDistribute super."simpleargs"; + "simpleirc" = dontDistribute super."simpleirc"; + "simpleirc-lens" = dontDistribute super."simpleirc-lens"; + "simplenote" = dontDistribute super."simplenote"; + "simpleprelude" = dontDistribute super."simpleprelude"; + "simplesmtpclient" = dontDistribute super."simplesmtpclient"; + "simplessh" = dontDistribute super."simplessh"; + "simplest-sqlite" = dontDistribute super."simplest-sqlite"; + "simplex" = dontDistribute super."simplex"; + "simplex-basic" = dontDistribute super."simplex-basic"; + "simseq" = dontDistribute super."simseq"; + "simtreelo" = dontDistribute super."simtreelo"; + "sindre" = dontDistribute super."sindre"; + "singleton-nats" = dontDistribute super."singleton-nats"; + "sink" = dontDistribute super."sink"; + "sirkel" = dontDistribute super."sirkel"; + "sitemap" = dontDistribute super."sitemap"; + "sized" = dontDistribute super."sized"; + "sized-types" = dontDistribute super."sized-types"; + "sized-vector" = dontDistribute super."sized-vector"; + "sizes" = dontDistribute super."sizes"; + "sjsp" = dontDistribute super."sjsp"; + "skeleton" = dontDistribute super."skeleton"; + "skell" = dontDistribute super."skell"; + "skemmtun" = dontDistribute super."skemmtun"; + "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"; + "smallcheck-laws" = dontDistribute super."smallcheck-laws"; + "smallcheck-lens" = dontDistribute super."smallcheck-lens"; + "smallcheck-series" = dontDistribute super."smallcheck-series"; + "smallpt-hs" = dontDistribute super."smallpt-hs"; + "smallstring" = dontDistribute super."smallstring"; + "smaoin" = dontDistribute super."smaoin"; + "smartGroup" = dontDistribute super."smartGroup"; + "smartcheck" = dontDistribute super."smartcheck"; + "smartconstructor" = dontDistribute super."smartconstructor"; + "smartword" = dontDistribute super."smartword"; + "sme" = dontDistribute super."sme"; + "smt-lib" = dontDistribute super."smt-lib"; + "smtlib2" = dontDistribute super."smtlib2"; + "smtp-mail-ng" = dontDistribute super."smtp-mail-ng"; + "smtp2mta" = dontDistribute super."smtp2mta"; + "smtps-gmail" = dontDistribute super."smtps-gmail"; + "snake-game" = dontDistribute super."snake-game"; + "snap-accept" = dontDistribute super."snap-accept"; + "snap-app" = dontDistribute super."snap-app"; + "snap-auth-cli" = dontDistribute super."snap-auth-cli"; + "snap-blaze" = dontDistribute super."snap-blaze"; + "snap-blaze-clay" = dontDistribute super."snap-blaze-clay"; + "snap-configuration-utilities" = dontDistribute super."snap-configuration-utilities"; + "snap-cors" = dontDistribute super."snap-cors"; + "snap-elm" = dontDistribute super."snap-elm"; + "snap-error-collector" = dontDistribute super."snap-error-collector"; + "snap-extras" = dontDistribute super."snap-extras"; + "snap-language" = dontDistribute super."snap-language"; + "snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic"; + "snap-loader-static" = dontDistribute super."snap-loader-static"; + "snap-predicates" = dontDistribute super."snap-predicates"; + "snap-testing" = dontDistribute super."snap-testing"; + "snap-utils" = dontDistribute super."snap-utils"; + "snap-web-routes" = dontDistribute super."snap-web-routes"; + "snaplet-acid-state" = dontDistribute super."snaplet-acid-state"; + "snaplet-actionlog" = dontDistribute super."snaplet-actionlog"; + "snaplet-amqp" = dontDistribute super."snaplet-amqp"; + "snaplet-auth-acid" = dontDistribute super."snaplet-auth-acid"; + "snaplet-coffee" = dontDistribute super."snaplet-coffee"; + "snaplet-css-min" = dontDistribute super."snaplet-css-min"; + "snaplet-environments" = dontDistribute super."snaplet-environments"; + "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; + "snaplet-hasql" = dontDistribute super."snaplet-hasql"; + "snaplet-haxl" = dontDistribute super."snaplet-haxl"; + "snaplet-hdbc" = dontDistribute super."snaplet-hdbc"; + "snaplet-hslogger" = dontDistribute super."snaplet-hslogger"; + "snaplet-i18n" = dontDistribute super."snaplet-i18n"; + "snaplet-influxdb" = dontDistribute super."snaplet-influxdb"; + "snaplet-lss" = dontDistribute super."snaplet-lss"; + "snaplet-mandrill" = dontDistribute super."snaplet-mandrill"; + "snaplet-mongoDB" = dontDistribute super."snaplet-mongoDB"; + "snaplet-mongodb-minimalistic" = dontDistribute super."snaplet-mongodb-minimalistic"; + "snaplet-mysql-simple" = dontDistribute super."snaplet-mysql-simple"; + "snaplet-oauth" = dontDistribute super."snaplet-oauth"; + "snaplet-persistent" = dontDistribute super."snaplet-persistent"; + "snaplet-postgresql-simple" = dontDistribute super."snaplet-postgresql-simple"; + "snaplet-postmark" = dontDistribute super."snaplet-postmark"; + "snaplet-purescript" = dontDistribute super."snaplet-purescript"; + "snaplet-recaptcha" = dontDistribute super."snaplet-recaptcha"; + "snaplet-redis" = dontDistribute super."snaplet-redis"; + "snaplet-redson" = dontDistribute super."snaplet-redson"; + "snaplet-rest" = dontDistribute super."snaplet-rest"; + "snaplet-riak" = dontDistribute super."snaplet-riak"; + "snaplet-sass" = dontDistribute super."snaplet-sass"; + "snaplet-sedna" = dontDistribute super."snaplet-sedna"; + "snaplet-ses-html" = dontDistribute super."snaplet-ses-html"; + "snaplet-sqlite-simple" = dontDistribute super."snaplet-sqlite-simple"; + "snaplet-stripe" = dontDistribute super."snaplet-stripe"; + "snaplet-tasks" = dontDistribute super."snaplet-tasks"; + "snaplet-typed-sessions" = dontDistribute super."snaplet-typed-sessions"; + "snaplet-wordpress" = dontDistribute super."snaplet-wordpress"; + "snappy" = dontDistribute super."snappy"; + "snappy-conduit" = dontDistribute super."snappy-conduit"; + "snappy-framing" = dontDistribute super."snappy-framing"; + "snappy-iteratee" = dontDistribute super."snappy-iteratee"; + "sndfile-enumerators" = dontDistribute super."sndfile-enumerators"; + "sneakyterm" = dontDistribute super."sneakyterm"; + "sneathlane-haste" = dontDistribute super."sneathlane-haste"; + "snippet-extractor" = dontDistribute super."snippet-extractor"; + "snm" = dontDistribute super."snm"; + "snow-white" = dontDistribute super."snow-white"; + "snowball" = dontDistribute super."snowball"; + "snowglobe" = dontDistribute super."snowglobe"; + "sock2stream" = dontDistribute super."sock2stream"; + "sockaddr" = dontDistribute super."sockaddr"; + "socket-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"; + "sorting" = dontDistribute super."sorting"; + "sorty" = dontDistribute super."sorty"; + "sound-collage" = dontDistribute super."sound-collage"; + "sounddelay" = dontDistribute super."sounddelay"; + "source-code-server" = dontDistribute super."source-code-server"; + "sousit" = dontDistribute super."sousit"; + "sox" = dontDistribute super."sox"; + "soxlib" = dontDistribute super."soxlib"; + "soyuz" = dontDistribute super."soyuz"; + "spacefill" = dontDistribute super."spacefill"; + "spacepart" = dontDistribute super."spacepart"; + "spaceprobe" = dontDistribute super."spaceprobe"; + "spanout" = dontDistribute super."spanout"; + "sparse" = dontDistribute super."sparse"; + "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; + "sparsebit" = dontDistribute super."sparsebit"; + "sparsecheck" = dontDistribute super."sparsecheck"; + "sparser" = dontDistribute super."sparser"; + "spata" = dontDistribute super."spata"; + "spatial-math" = dontDistribute super."spatial-math"; + "spawn" = dontDistribute super."spawn"; + "spe" = dontDistribute super."spe"; + "special-functors" = dontDistribute super."special-functors"; + "special-keys" = dontDistribute super."special-keys"; + "specialize-th" = dontDistribute super."specialize-th"; + "species" = dontDistribute super."species"; + "speculation-transformers" = dontDistribute super."speculation-transformers"; + "spelling-suggest" = dontDistribute super."spelling-suggest"; + "sphero" = dontDistribute super."sphero"; + "sphinx-cli" = dontDistribute super."sphinx-cli"; + "spice" = dontDistribute super."spice"; + "spike" = dontDistribute super."spike"; + "spine" = dontDistribute super."spine"; + "spir-v" = dontDistribute super."spir-v"; + "splay" = dontDistribute super."splay"; + "splaytree" = dontDistribute super."splaytree"; + "spline3" = dontDistribute super."spline3"; + "splines" = dontDistribute super."splines"; + "split-channel" = dontDistribute super."split-channel"; + "split-record" = dontDistribute super."split-record"; + "split-tchan" = dontDistribute super."split-tchan"; + "splitter" = dontDistribute super."splitter"; + "splot" = dontDistribute super."splot"; + "spool" = dontDistribute super."spool"; + "spoonutil" = dontDistribute super."spoonutil"; + "spoty" = dontDistribute super."spoty"; + "spreadsheet" = dontDistribute super."spreadsheet"; + "spritz" = dontDistribute super."spritz"; + "spsa" = dontDistribute super."spsa"; + "spy" = dontDistribute super."spy"; + "sql-simple" = dontDistribute super."sql-simple"; + "sql-simple-mysql" = dontDistribute super."sql-simple-mysql"; + "sql-simple-pool" = dontDistribute super."sql-simple-pool"; + "sql-simple-postgresql" = dontDistribute super."sql-simple-postgresql"; + "sql-simple-sqlite" = dontDistribute super."sql-simple-sqlite"; + "sql-words" = dontDistribute super."sql-words"; + "sqlite" = dontDistribute super."sqlite"; + "sqlite-simple-typed" = dontDistribute super."sqlite-simple-typed"; + "sqlvalue-list" = dontDistribute super."sqlvalue-list"; + "squeeze" = dontDistribute super."squeeze"; + "sr-extra" = dontDistribute super."sr-extra"; + "srcinst" = dontDistribute super."srcinst"; + "srec" = dontDistribute super."srec"; + "sscgi" = dontDistribute super."sscgi"; + "ssh" = dontDistribute super."ssh"; + "sshd-lint" = dontDistribute super."sshd-lint"; + "sshtun" = dontDistribute super."sshtun"; + "sssp" = dontDistribute super."sssp"; + "sstable" = dontDistribute super."sstable"; + "ssv" = dontDistribute super."ssv"; + "stable-heap" = dontDistribute super."stable-heap"; + "stable-maps" = dontDistribute super."stable-maps"; + "stable-marriage" = dontDistribute super."stable-marriage"; + "stable-memo" = dontDistribute super."stable-memo"; + "stable-tree" = dontDistribute super."stable-tree"; + "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; + "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; + "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; + "standalone-haddock" = dontDistribute super."standalone-haddock"; + "star-to-star" = dontDistribute super."star-to-star"; + "star-to-star-contra" = dontDistribute super."star-to-star-contra"; + "starling" = dontDistribute super."starling"; + "starrover2" = dontDistribute super."starrover2"; + "stash" = dontDistribute super."stash"; + "state" = dontDistribute super."state"; + "state-record" = dontDistribute super."state-record"; + "statechart" = dontDistribute super."statechart"; + "stateful-mtl" = dontDistribute super."stateful-mtl"; + "statethread" = dontDistribute super."statethread"; + "statgrab" = dontDistribute super."statgrab"; + "static-hash" = dontDistribute super."static-hash"; + "static-resources" = dontDistribute super."static-resources"; + "staticanalysis" = dontDistribute super."staticanalysis"; + "statistics-dirichlet" = dontDistribute super."statistics-dirichlet"; + "statistics-fusion" = dontDistribute super."statistics-fusion"; + "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; + "stats" = dontDistribute super."stats"; + "statsd" = dontDistribute super."statsd"; + "statsd-client" = dontDistribute super."statsd-client"; + "statsd-datadog" = dontDistribute super."statsd-datadog"; + "statvfs" = dontDistribute super."statvfs"; + "stb-image" = dontDistribute super."stb-image"; + "stb-truetype" = dontDistribute super."stb-truetype"; + "stdata" = dontDistribute super."stdata"; + "stdf" = dontDistribute super."stdf"; + "steambrowser" = dontDistribute super."steambrowser"; + "steeloverseer" = dontDistribute super."steeloverseer"; + "stemmer" = dontDistribute super."stemmer"; + "step-function" = dontDistribute super."step-function"; + "stepwise" = dontDistribute super."stepwise"; + "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; + "stitch" = dontDistribute super."stitch"; + "stm-channelize" = dontDistribute super."stm-channelize"; + "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; + "stm-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-histogram" = dontDistribute super."streaming-histogram"; + "streaming-utils" = dontDistribute super."streaming-utils"; + "streaming-wai" = dontDistribute super."streaming-wai"; + "strict-concurrency" = dontDistribute super."strict-concurrency"; + "strict-ghc-plugin" = dontDistribute super."strict-ghc-plugin"; + "strict-identity" = dontDistribute super."strict-identity"; + "strict-io" = dontDistribute super."strict-io"; + "strictify" = dontDistribute super."strictify"; + "strictly" = dontDistribute super."strictly"; + "string" = dontDistribute super."string"; + "string-conv" = dontDistribute super."string-conv"; + "string-convert" = dontDistribute super."string-convert"; + "string-quote" = dontDistribute super."string-quote"; + "string-similarity" = dontDistribute super."string-similarity"; + "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"; + "strive" = dontDistribute super."strive"; + "strptime" = dontDistribute super."strptime"; + "structs" = dontDistribute super."structs"; + "structural-induction" = dontDistribute super."structural-induction"; + "structured-haskell-mode" = dontDistribute super."structured-haskell-mode"; + "structured-mongoDB" = dontDistribute super."structured-mongoDB"; + "structures" = dontDistribute super."structures"; + "stunclient" = dontDistribute super."stunclient"; + "stunts" = dontDistribute super."stunts"; + "stylized" = dontDistribute super."stylized"; + "sub-state" = dontDistribute super."sub-state"; + "subhask" = dontDistribute super."subhask"; + "subleq-toolchain" = dontDistribute super."subleq-toolchain"; + "subnet" = dontDistribute super."subnet"; + "subtitleParser" = dontDistribute super."subtitleParser"; + "subtitles" = dontDistribute super."subtitles"; + "suffixarray" = dontDistribute super."suffixarray"; + "suffixtree" = dontDistribute super."suffixtree"; + "sugarhaskell" = dontDistribute super."sugarhaskell"; + "suitable" = dontDistribute super."suitable"; + "sump" = dontDistribute super."sump"; + "sundown" = dontDistribute super."sundown"; + "sunlight" = dontDistribute super."sunlight"; + "sunroof-compiler" = dontDistribute super."sunroof-compiler"; + "sunroof-examples" = dontDistribute super."sunroof-examples"; + "sunroof-server" = dontDistribute super."sunroof-server"; + "super-user-spark" = dontDistribute super."super-user-spark"; + "supercollider-ht" = dontDistribute super."supercollider-ht"; + "supercollider-midi" = dontDistribute super."supercollider-midi"; + "superdoc" = dontDistribute super."superdoc"; + "supero" = dontDistribute super."supero"; + "supervisor" = dontDistribute super."supervisor"; + "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-instances-text" = dontDistribute super."syb-with-class-instances-text"; + "sylvia" = dontDistribute super."sylvia"; + "sym" = dontDistribute super."sym"; + "sym-plot" = dontDistribute super."sym-plot"; + "symbol" = dontDistribute super."symbol"; + "sync" = dontDistribute super."sync"; + "synchronous-channels" = dontDistribute super."synchronous-channels"; + "syncthing-hs" = dontDistribute super."syncthing-hs"; + "synt" = dontDistribute super."synt"; + "syntactic" = dontDistribute super."syntactic"; + "syntactical" = dontDistribute super."syntactical"; + "syntax" = dontDistribute super."syntax"; + "syntax-attoparsec" = dontDistribute super."syntax-attoparsec"; + "syntax-example" = dontDistribute super."syntax-example"; + "syntax-example-json" = dontDistribute super."syntax-example-json"; + "syntax-pretty" = dontDistribute super."syntax-pretty"; + "syntax-printer" = dontDistribute super."syntax-printer"; + "syntax-trees" = dontDistribute super."syntax-trees"; + "syntax-trees-fork-bairyn" = dontDistribute super."syntax-trees-fork-bairyn"; + "synthesizer" = dontDistribute super."synthesizer"; + "synthesizer-alsa" = dontDistribute super."synthesizer-alsa"; + "synthesizer-core" = dontDistribute super."synthesizer-core"; + "synthesizer-dimensional" = dontDistribute super."synthesizer-dimensional"; + "synthesizer-filter" = dontDistribute super."synthesizer-filter"; + "synthesizer-inference" = dontDistribute super."synthesizer-inference"; + "synthesizer-llvm" = dontDistribute super."synthesizer-llvm"; + "synthesizer-midi" = dontDistribute super."synthesizer-midi"; + "sys-auth-smbclient" = dontDistribute super."sys-auth-smbclient"; + "sys-process" = dontDistribute super."sys-process"; + "system-canonicalpath" = dontDistribute super."system-canonicalpath"; + "system-command" = dontDistribute super."system-command"; + "system-gpio" = dontDistribute super."system-gpio"; + "system-inotify" = dontDistribute super."system-inotify"; + "system-lifted" = dontDistribute super."system-lifted"; + "system-random-effect" = dontDistribute super."system-random-effect"; + "system-time-monotonic" = dontDistribute super."system-time-monotonic"; + "system-util" = dontDistribute super."system-util"; + "system-uuid" = dontDistribute super."system-uuid"; + "systemd" = dontDistribute super."systemd"; + "t-regex" = dontDistribute super."t-regex"; + "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-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; + "tasty-integrate" = dontDistribute super."tasty-integrate"; + "tasty-laws" = dontDistribute super."tasty-laws"; + "tasty-lens" = dontDistribute super."tasty-lens"; + "tasty-program" = dontDistribute super."tasty-program"; + "tateti-tateti" = dontDistribute super."tateti-tateti"; + "tau" = dontDistribute super."tau"; + "tbox" = dontDistribute super."tbox"; + "tcache-AWS" = dontDistribute super."tcache-AWS"; + "tccli" = dontDistribute super."tccli"; + "tce-conf" = dontDistribute super."tce-conf"; + "tconfig" = dontDistribute super."tconfig"; + "tcp" = dontDistribute super."tcp"; + "tdd-util" = dontDistribute super."tdd-util"; + "tdoc" = dontDistribute super."tdoc"; + "teams" = dontDistribute super."teams"; + "teeth" = dontDistribute super."teeth"; + "telegram" = dontDistribute super."telegram"; + "telegram-api" = dontDistribute super."telegram-api"; + "teleport" = dontDistribute super."teleport"; + "template-default" = dontDistribute super."template-default"; + "template-haskell-util" = dontDistribute super."template-haskell-util"; + "template-hsml" = dontDistribute super."template-hsml"; + "template-yj" = dontDistribute super."template-yj"; + "templatepg" = dontDistribute super."templatepg"; + "templater" = dontDistribute super."templater"; + "tempodb" = dontDistribute super."tempodb"; + "temporal-csound" = dontDistribute super."temporal-csound"; + "temporal-media" = dontDistribute super."temporal-media"; + "temporal-music-notation" = dontDistribute super."temporal-music-notation"; + "temporal-music-notation-demo" = dontDistribute super."temporal-music-notation-demo"; + "temporal-music-notation-western" = dontDistribute super."temporal-music-notation-western"; + "temporary-resourcet" = dontDistribute super."temporary-resourcet"; + "tempus" = dontDistribute super."tempus"; + "tempus-fugit" = dontDistribute super."tempus-fugit"; + "tensor" = dontDistribute super."tensor"; + "term-rewriting" = dontDistribute super."term-rewriting"; + "termbox-bindings" = dontDistribute super."termbox-bindings"; + "termination-combinators" = dontDistribute super."termination-combinators"; + "terminfo" = doDistribute super."terminfo_0_4_0_2"; + "terminfo-hs" = dontDistribute super."terminfo-hs"; + "termplot" = dontDistribute super."termplot"; + "terntup" = dontDistribute super."terntup"; + "terrahs" = dontDistribute super."terrahs"; + "tersmu" = dontDistribute super."tersmu"; + "test-framework-doctest" = dontDistribute super."test-framework-doctest"; + "test-framework-golden" = dontDistribute super."test-framework-golden"; + "test-framework-program" = dontDistribute super."test-framework-program"; + "test-framework-quickcheck" = dontDistribute super."test-framework-quickcheck"; + "test-framework-sandbox" = dontDistribute super."test-framework-sandbox"; + "test-framework-skip" = dontDistribute super."test-framework-skip"; + "test-framework-testing-feat" = dontDistribute super."test-framework-testing-feat"; + "test-invariant" = dontDistribute super."test-invariant"; + "test-pkg" = dontDistribute super."test-pkg"; + "test-sandbox" = dontDistribute super."test-sandbox"; + "test-sandbox-compose" = dontDistribute super."test-sandbox-compose"; + "test-sandbox-hunit" = dontDistribute super."test-sandbox-hunit"; + "test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck"; + "test-shouldbe" = dontDistribute super."test-shouldbe"; + "testPkg" = dontDistribute super."testPkg"; + "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; + "testloop" = dontDistribute super."testloop"; + "testpack" = dontDistribute super."testpack"; + "testpattern" = dontDistribute super."testpattern"; + "testrunner" = dontDistribute super."testrunner"; + "tetris" = dontDistribute super."tetris"; + "tex2txt" = dontDistribute super."tex2txt"; + "texrunner" = dontDistribute super."texrunner"; + "text-and-plots" = dontDistribute super."text-and-plots"; + "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-translit" = dontDistribute super."text-icu-translit"; + "text-json-qq" = dontDistribute super."text-json-qq"; + "text-latin1" = dontDistribute super."text-latin1"; + "text-ldap" = dontDistribute super."text-ldap"; + "text-locale-encoding" = dontDistribute super."text-locale-encoding"; + "text-normal" = dontDistribute super."text-normal"; + "text-position" = dontDistribute super."text-position"; + "text-postgresql" = dontDistribute super."text-postgresql"; + "text-printer" = dontDistribute super."text-printer"; + "text-regex-replace" = dontDistribute super."text-regex-replace"; + "text-region" = dontDistribute super."text-region"; + "text-register-machine" = dontDistribute super."text-register-machine"; + "text-render" = dontDistribute super."text-render"; + "text-show-instances" = dontDistribute super."text-show-instances"; + "text-stream-decode" = dontDistribute super."text-stream-decode"; + "text-utf7" = dontDistribute super."text-utf7"; + "text-xml-generic" = dontDistribute super."text-xml-generic"; + "text-xml-qq" = dontDistribute super."text-xml-qq"; + "text1" = dontDistribute super."text1"; + "textPlot" = dontDistribute super."textPlot"; + "textmatetags" = dontDistribute super."textmatetags"; + "textocat-api" = dontDistribute super."textocat-api"; + "texts" = dontDistribute super."texts"; + "tfp" = dontDistribute super."tfp"; + "tfp-th" = dontDistribute super."tfp-th"; + "tftp" = dontDistribute super."tftp"; + "tga" = dontDistribute super."tga"; + "th-alpha" = dontDistribute super."th-alpha"; + "th-build" = dontDistribute super."th-build"; + "th-cas" = dontDistribute super."th-cas"; + "th-context" = dontDistribute super."th-context"; + "th-fold" = dontDistribute super."th-fold"; + "th-inline-io-action" = dontDistribute super."th-inline-io-action"; + "th-instance-reification" = dontDistribute super."th-instance-reification"; + "th-instances" = dontDistribute super."th-instances"; + "th-kinds" = dontDistribute super."th-kinds"; + "th-kinds-fork" = dontDistribute super."th-kinds-fork"; + "th-lift-instances" = dontDistribute super."th-lift-instances"; + "th-printf" = dontDistribute super."th-printf"; + "th-sccs" = dontDistribute super."th-sccs"; + "th-traced" = dontDistribute super."th-traced"; + "th-typegraph" = dontDistribute super."th-typegraph"; + "themoviedb" = dontDistribute super."themoviedb"; + "themplate" = dontDistribute super."themplate"; + "theoremquest" = dontDistribute super."theoremquest"; + "theoremquest-client" = dontDistribute super."theoremquest-client"; + "thespian" = dontDistribute super."thespian"; + "theta-functions" = dontDistribute super."theta-functions"; + "thih" = dontDistribute super."thih"; + "thimk" = dontDistribute super."thimk"; + "thorn" = dontDistribute super."thorn"; + "thread-local-storage" = dontDistribute super."thread-local-storage"; + "threadPool" = dontDistribute super."threadPool"; + "threadmanager" = dontDistribute super."threadmanager"; + "threads-pool" = dontDistribute super."threads-pool"; + "threads-supervisor" = dontDistribute super."threads-supervisor"; + "threadscope" = dontDistribute super."threadscope"; + "threefish" = dontDistribute super."threefish"; + "threepenny-gui" = dontDistribute super."threepenny-gui"; + "thrift" = dontDistribute super."thrift"; + "thrist" = dontDistribute super."thrist"; + "throttle" = dontDistribute super."throttle"; + "thumbnail" = dontDistribute super."thumbnail"; + "tianbar" = dontDistribute super."tianbar"; + "tic-tac-toe" = dontDistribute super."tic-tac-toe"; + "tickle" = dontDistribute super."tickle"; + "tictactoe3d" = dontDistribute super."tictactoe3d"; + "tidal" = dontDistribute super."tidal"; + "tidal-midi" = dontDistribute super."tidal-midi"; + "tidal-vis" = dontDistribute super."tidal-vis"; + "tie-knot" = dontDistribute super."tie-knot"; + "tiempo" = dontDistribute super."tiempo"; + "tiger" = dontDistribute super."tiger"; + "tight-apply" = dontDistribute super."tight-apply"; + "tightrope" = dontDistribute super."tightrope"; + "tighttp" = dontDistribute super."tighttp"; + "tilings" = dontDistribute super."tilings"; + "timberc" = dontDistribute super."timberc"; + "time-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-w3c" = dontDistribute super."time-w3c"; + "timecalc" = dontDistribute super."timecalc"; + "timeconsole" = dontDistribute super."timeconsole"; + "timeless" = dontDistribute super."timeless"; + "timelike" = dontDistribute super."timelike"; + "timelike-time" = dontDistribute super."timelike-time"; + "timemap" = dontDistribute super."timemap"; + "timeout" = dontDistribute super."timeout"; + "timeout-control" = dontDistribute super."timeout-control"; + "timeout-with-results" = dontDistribute super."timeout-with-results"; + "timeparsers" = dontDistribute super."timeparsers"; + "timeplot" = dontDistribute super."timeplot"; + "timers" = dontDistribute super."timers"; + "timers-updatable" = dontDistribute super."timers-updatable"; + "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines"; + "timestamper" = dontDistribute super."timestamper"; + "timezone-olson-th" = dontDistribute super."timezone-olson-th"; + "timing-convenience" = dontDistribute super."timing-convenience"; + "tinyMesh" = dontDistribute super."tinyMesh"; + "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend"; + "tip-lib" = dontDistribute super."tip-lib"; + "tiphys" = dontDistribute super."tiphys"; + "titlecase" = dontDistribute super."titlecase"; + "tkhs" = dontDistribute super."tkhs"; + "tkyprof" = dontDistribute super."tkyprof"; + "tld" = dontDistribute super."tld"; + "tls-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"; + "treersec" = dontDistribute super."treersec"; + "treeviz" = dontDistribute super."treeviz"; + "tremulous-query" = dontDistribute super."tremulous-query"; + "trhsx" = dontDistribute super."trhsx"; + "triangulation" = dontDistribute super."triangulation"; + "trimpolya" = dontDistribute super."trimpolya"; + "tripLL" = dontDistribute super."tripLL"; + "trivia" = dontDistribute super."trivia"; + "trivial-constraint" = dontDistribute super."trivial-constraint"; + "tropical" = dontDistribute super."tropical"; + "truelevel" = dontDistribute super."truelevel"; + "trurl" = dontDistribute super."trurl"; + "truthful" = dontDistribute super."truthful"; + "tsession" = dontDistribute super."tsession"; + "tsession-happstack" = dontDistribute super."tsession-happstack"; + "tskiplist" = dontDistribute super."tskiplist"; + "tslogger" = dontDistribute super."tslogger"; + "tsp-viz" = dontDistribute super."tsp-viz"; + "tsparse" = dontDistribute super."tsparse"; + "tst" = dontDistribute super."tst"; + "tsvsql" = dontDistribute super."tsvsql"; + "tubes" = dontDistribute super."tubes"; + "tuntap" = dontDistribute super."tuntap"; + "tup-functor" = dontDistribute super."tup-functor"; + "tuple" = dontDistribute super."tuple"; + "tuple-gen" = dontDistribute super."tuple-gen"; + "tuple-generic" = dontDistribute super."tuple-generic"; + "tuple-hlist" = dontDistribute super."tuple-hlist"; + "tuple-lenses" = dontDistribute super."tuple-lenses"; + "tuple-morph" = dontDistribute super."tuple-morph"; + "tupleinstances" = dontDistribute super."tupleinstances"; + "turing" = dontDistribute super."turing"; + "turing-music" = dontDistribute super."turing-music"; + "turkish-deasciifier" = dontDistribute super."turkish-deasciifier"; + "turni" = dontDistribute super."turni"; + "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-enumerator" = dontDistribute super."twitter-enumerator"; + "tx" = dontDistribute super."tx"; + "txt-sushi" = dontDistribute super."txt-sushi"; + "txt2rtf" = dontDistribute super."txt2rtf"; + "txtblk" = dontDistribute super."txtblk"; + "ty" = dontDistribute super."ty"; + "typalyze" = dontDistribute super."typalyze"; + "type-booleans" = dontDistribute super."type-booleans"; + "type-cereal" = dontDistribute super."type-cereal"; + "type-combinators" = dontDistribute super."type-combinators"; + "type-combinators-quote" = dontDistribute super."type-combinators-quote"; + "type-digits" = dontDistribute super."type-digits"; + "type-equality" = dontDistribute super."type-equality"; + "type-equality-check" = dontDistribute super."type-equality-check"; + "type-fun" = dontDistribute super."type-fun"; + "type-functions" = dontDistribute super."type-functions"; + "type-hint" = dontDistribute super."type-hint"; + "type-int" = dontDistribute super."type-int"; + "type-iso" = dontDistribute super."type-iso"; + "type-level" = dontDistribute super."type-level"; + "type-level-bst" = dontDistribute super."type-level-bst"; + "type-level-natural-number" = dontDistribute super."type-level-natural-number"; + "type-level-natural-number-induction" = dontDistribute super."type-level-natural-number-induction"; + "type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations"; + "type-level-sets" = dontDistribute super."type-level-sets"; + "type-level-tf" = dontDistribute super."type-level-tf"; + "type-natural" = dontDistribute super."type-natural"; + "type-ord" = dontDistribute super."type-ord"; + "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; + "type-prelude" = dontDistribute super."type-prelude"; + "type-settheory" = dontDistribute super."type-settheory"; + "type-spine" = dontDistribute super."type-spine"; + "type-structure" = dontDistribute super."type-structure"; + "type-sub-th" = dontDistribute super."type-sub-th"; + "type-unary" = dontDistribute super."type-unary"; + "typeable-th" = dontDistribute super."typeable-th"; + "typed-spreadsheet" = dontDistribute super."typed-spreadsheet"; + "typed-wire" = dontDistribute super."typed-wire"; + "typed-wire-utils" = dontDistribute super."typed-wire-utils"; + "typedquery" = dontDistribute super."typedquery"; + "typehash" = dontDistribute super."typehash"; + "typelevel" = dontDistribute super."typelevel"; + "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typeof" = dontDistribute super."typeof"; + "typeparams" = dontDistribute super."typeparams"; + "typesafe-endian" = dontDistribute super."typesafe-endian"; + "typescript-docs" = dontDistribute super."typescript-docs"; + "typical" = dontDistribute super."typical"; + "typography-geometry" = dontDistribute super."typography-geometry"; + "uAgda" = dontDistribute super."uAgda"; + "ua-parser" = dontDistribute super."ua-parser"; + "uacpid" = dontDistribute super."uacpid"; + "uberlast" = dontDistribute super."uberlast"; + "uconv" = dontDistribute super."uconv"; + "udbus" = dontDistribute super."udbus"; + "udbus-model" = dontDistribute super."udbus-model"; + "udcode" = dontDistribute super."udcode"; + "udev" = dontDistribute super."udev"; + "uhc-light" = dontDistribute super."uhc-light"; + "uhc-util" = dontDistribute super."uhc-util"; + "uhexdump" = dontDistribute super."uhexdump"; + "uhttpc" = dontDistribute super."uhttpc"; + "ui-command" = dontDistribute super."ui-command"; + "uid" = dontDistribute super."uid"; + "una" = dontDistribute super."una"; + "unagi-chan" = dontDistribute super."unagi-chan"; + "unagi-streams" = dontDistribute super."unagi-streams"; + "unamb" = dontDistribute super."unamb"; + "unamb-custom" = dontDistribute super."unamb-custom"; + "unbound" = dontDistribute super."unbound"; + "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; + "unboxed-containers" = dontDistribute super."unboxed-containers"; + "unbreak" = dontDistribute super."unbreak"; + "unfoldable" = dontDistribute super."unfoldable"; + "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"; + "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-th" = dontDistribute super."universe-th"; + "unix-fcntl" = dontDistribute super."unix-fcntl"; + "unix-handle" = dontDistribute super."unix-handle"; + "unix-io-extra" = dontDistribute super."unix-io-extra"; + "unix-memory" = dontDistribute super."unix-memory"; + "unix-process-conduit" = dontDistribute super."unix-process-conduit"; + "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unlambda" = dontDistribute super."unlambda"; + "unlit" = dontDistribute super."unlit"; + "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers-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"; + "utc" = dontDistribute super."utc"; + "utf8-env" = dontDistribute super."utf8-env"; + "utf8-prelude" = dontDistribute super."utf8-prelude"; + "uu-cco" = dontDistribute super."uu-cco"; + "uu-cco-examples" = dontDistribute super."uu-cco-examples"; + "uu-cco-hut-parsing" = dontDistribute super."uu-cco-hut-parsing"; + "uu-cco-uu-parsinglib" = dontDistribute super."uu-cco-uu-parsinglib"; + "uu-options" = dontDistribute super."uu-options"; + "uu-tc" = dontDistribute super."uu-tc"; + "uuagc" = dontDistribute super."uuagc"; + "uuagc-bootstrap" = dontDistribute super."uuagc-bootstrap"; + "uuagc-cabal" = dontDistribute super."uuagc-cabal"; + "uuagc-diagrams" = dontDistribute super."uuagc-diagrams"; + "uuagd" = dontDistribute super."uuagd"; + "uuid-aeson" = dontDistribute super."uuid-aeson"; + "uuid-le" = dontDistribute super."uuid-le"; + "uuid-quasi" = dontDistribute super."uuid-quasi"; + "uulib" = dontDistribute super."uulib"; + "uvector" = dontDistribute super."uvector"; + "uvector-algorithms" = dontDistribute super."uvector-algorithms"; + "uxadt" = dontDistribute super."uxadt"; + "uzbl-with-source" = dontDistribute super."uzbl-with-source"; + "v4l2" = dontDistribute super."v4l2"; + "v4l2-examples" = dontDistribute super."v4l2-examples"; + "vacuum" = dontDistribute super."vacuum"; + "vacuum-cairo" = dontDistribute super."vacuum-cairo"; + "vacuum-graphviz" = dontDistribute super."vacuum-graphviz"; + "vacuum-opengl" = dontDistribute super."vacuum-opengl"; + "vacuum-ubigraph" = dontDistribute super."vacuum-ubigraph"; + "vado" = dontDistribute super."vado"; + "valid-names" = dontDistribute super."valid-names"; + "validate" = dontDistribute super."validate"; + "validated-literals" = dontDistribute super."validated-literals"; + "validations" = dontDistribute super."validations"; + "value-supply" = dontDistribute super."value-supply"; + "vampire" = dontDistribute super."vampire"; + "var" = dontDistribute super."var"; + "varan" = dontDistribute super."varan"; + "variable-precision" = dontDistribute super."variable-precision"; + "variables" = dontDistribute super."variables"; + "varying" = dontDistribute super."varying"; + "vaultaire-common" = dontDistribute super."vaultaire-common"; + "vcache" = dontDistribute super."vcache"; + "vcache-trie" = dontDistribute super."vcache-trie"; + "vcard" = dontDistribute super."vcard"; + "vcd" = dontDistribute super."vcd"; + "vcs-revision" = dontDistribute super."vcs-revision"; + "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; + "vcsgui" = dontDistribute super."vcsgui"; + "vcswrapper" = dontDistribute super."vcswrapper"; + "vect" = dontDistribute super."vect"; + "vect-floating" = dontDistribute super."vect-floating"; + "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate"; + "vect-opengl" = dontDistribute super."vect-opengl"; + "vector-binary" = dontDistribute super."vector-binary"; + "vector-bytestring" = dontDistribute super."vector-bytestring"; + "vector-clock" = dontDistribute super."vector-clock"; + "vector-conduit" = dontDistribute super."vector-conduit"; + "vector-functorlazy" = dontDistribute super."vector-functorlazy"; + "vector-heterogenous" = dontDistribute super."vector-heterogenous"; + "vector-instances-collections" = dontDistribute super."vector-instances-collections"; + "vector-mmap" = dontDistribute super."vector-mmap"; + "vector-random" = dontDistribute super."vector-random"; + "vector-read-instances" = dontDistribute super."vector-read-instances"; + "vector-space-map" = dontDistribute super."vector-space-map"; + "vector-space-opengl" = dontDistribute super."vector-space-opengl"; + "vector-space-points" = dontDistribute super."vector-space-points"; + "vector-static" = dontDistribute super."vector-static"; + "vector-strategies" = dontDistribute super."vector-strategies"; + "verbalexpressions" = dontDistribute super."verbalexpressions"; + "verbosity" = dontDistribute super."verbosity"; + "verdict" = dontDistribute super."verdict"; + "verdict-json" = dontDistribute super."verdict-json"; + "verilog" = dontDistribute super."verilog"; + "versions" = dontDistribute super."versions"; + "vhdl" = dontDistribute super."vhdl"; + "views" = dontDistribute super."views"; + "vigilance" = dontDistribute super."vigilance"; + "vimeta" = dontDistribute super."vimeta"; + "vimus" = dontDistribute super."vimus"; + "vintage-basic" = dontDistribute super."vintage-basic"; + "vinyl-gl" = dontDistribute super."vinyl-gl"; + "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-utils" = dontDistribute super."vinyl-utils"; + "vinyl-vectors" = dontDistribute super."vinyl-vectors"; + "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; + "vision" = dontDistribute super."vision"; + "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; + "visual-prof" = dontDistribute super."visual-prof"; + "vivid" = dontDistribute super."vivid"; + "vk-aws-route53" = dontDistribute super."vk-aws-route53"; + "vk-posix-pty" = dontDistribute super."vk-posix-pty"; + "vocabulary-kadma" = dontDistribute super."vocabulary-kadma"; + "vorbiscomment" = dontDistribute super."vorbiscomment"; + "vowpal-utils" = dontDistribute super."vowpal-utils"; + "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; + "vte" = dontDistribute super."vte"; + "vtegtk3" = dontDistribute super."vtegtk3"; + "vty-examples" = dontDistribute super."vty-examples"; + "vty-menu" = dontDistribute super."vty-menu"; + "vty-ui" = dontDistribute super."vty-ui"; + "vty-ui-extras" = dontDistribute super."vty-ui-extras"; + "waddle" = dontDistribute super."waddle"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; + "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; + "wai-devel" = dontDistribute super."wai-devel"; + "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; + "wai-dispatch" = dontDistribute super."wai-dispatch"; + "wai-frontend-monadcgi" = dontDistribute super."wai-frontend-monadcgi"; + "wai-graceful" = dontDistribute super."wai-graceful"; + "wai-handler-devel" = dontDistribute super."wai-handler-devel"; + "wai-handler-fastcgi" = dontDistribute super."wai-handler-fastcgi"; + "wai-handler-scgi" = dontDistribute super."wai-handler-scgi"; + "wai-handler-snap" = dontDistribute super."wai-handler-snap"; + "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; + "wai-hastache" = dontDistribute super."wai-hastache"; + "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-lens" = dontDistribute super."wai-lens"; + "wai-lite" = dontDistribute super."wai-lite"; + "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; + "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; + "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; + "wai-middleware-catch" = dontDistribute super."wai-middleware-catch"; + "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; + "wai-middleware-etag" = dontDistribute super."wai-middleware-etag"; + "wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip"; + "wai-middleware-headers" = dontDistribute super."wai-middleware-headers"; + "wai-middleware-hmac" = dontDistribute super."wai-middleware-hmac"; + "wai-middleware-hmac-client" = dontDistribute super."wai-middleware-hmac-client"; + "wai-middleware-preprocessor" = dontDistribute super."wai-middleware-preprocessor"; + "wai-middleware-route" = dontDistribute super."wai-middleware-route"; + "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; + "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs"; + "wai-request-spec" = dontDistribute super."wai-request-spec"; + "wai-responsible" = dontDistribute super."wai-responsible"; + "wai-router" = dontDistribute super."wai-router"; + "wai-session-alt" = dontDistribute super."wai-session-alt"; + "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; + "wai-static-cache" = dontDistribute super."wai-static-cache"; + "wai-static-pages" = dontDistribute super."wai-static-pages"; + "wai-test" = dontDistribute super."wai-test"; + "wai-thrift" = dontDistribute super."wai-thrift"; + "wai-throttler" = dontDistribute super."wai-throttler"; + "wait-handle" = dontDistribute super."wait-handle"; + "waitfree" = dontDistribute super."waitfree"; + "warc" = dontDistribute super."warc"; + "warp-dynamic" = dontDistribute super."warp-dynamic"; + "warp-static" = dontDistribute super."warp-static"; + "warp-tls-uid" = dontDistribute super."warp-tls-uid"; + "watchdog" = dontDistribute super."watchdog"; + "watcher" = dontDistribute super."watcher"; + "watchit" = dontDistribute super."watchit"; + "wavconvert" = dontDistribute super."wavconvert"; + "wavesurfer" = dontDistribute super."wavesurfer"; + "wavy" = dontDistribute super."wavy"; + "wcwidth" = dontDistribute super."wcwidth"; + "weather-api" = dontDistribute super."weather-api"; + "web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell"; + "web-css" = dontDistribute super."web-css"; + "web-encodings" = dontDistribute super."web-encodings"; + "web-mongrel2" = dontDistribute super."web-mongrel2"; + "web-page" = dontDistribute super."web-page"; + "web-routes-mtl" = dontDistribute super."web-routes-mtl"; + "web-routes-quasi" = dontDistribute super."web-routes-quasi"; + "web-routes-regular" = dontDistribute super."web-routes-regular"; + "web-routes-transformers" = dontDistribute super."web-routes-transformers"; + "webapi" = dontDistribute super."webapi"; + "webapp" = dontDistribute super."webapp"; + "webcrank" = dontDistribute super."webcrank"; + "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; + "webcrank-wai" = dontDistribute super."webcrank-wai"; + "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; + "webidl" = dontDistribute super."webidl"; + "webify" = dontDistribute super."webify"; + "webkit" = dontDistribute super."webkit"; + "webkit-javascriptcore" = dontDistribute super."webkit-javascriptcore"; + "webkitgtk3" = dontDistribute super."webkitgtk3"; + "webkitgtk3-javascriptcore" = dontDistribute super."webkitgtk3-javascriptcore"; + "webrtc-vad" = dontDistribute super."webrtc-vad"; + "webserver" = dontDistribute super."webserver"; + "websnap" = dontDistribute super."websnap"; + "webwire" = dontDistribute super."webwire"; + "wedding-announcement" = dontDistribute super."wedding-announcement"; + "wedged" = dontDistribute super."wedged"; + "weighted-regexp" = dontDistribute super."weighted-regexp"; + "weighted-search" = dontDistribute super."weighted-search"; + "welshy" = dontDistribute super."welshy"; + "werewolf" = dontDistribute super."werewolf"; + "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"; + "witness" = dontDistribute super."witness"; + "witty" = dontDistribute super."witty"; + "wkt" = dontDistribute super."wkt"; + "wl-pprint-ansiterm" = dontDistribute super."wl-pprint-ansiterm"; + "wlc-hs" = dontDistribute super."wlc-hs"; + "wobsurv" = dontDistribute super."wobsurv"; + "woffex" = dontDistribute super."woffex"; + "wol" = dontDistribute super."wol"; + "wolf" = dontDistribute super."wolf"; + "woot" = dontDistribute super."woot"; + "word24" = dontDistribute super."word24"; + "wordcloud" = dontDistribute super."wordcloud"; + "wordexp" = dontDistribute super."wordexp"; + "words" = dontDistribute super."words"; + "wordsearch" = dontDistribute super."wordsearch"; + "wordsetdiff" = dontDistribute super."wordsetdiff"; + "workflow-osx" = dontDistribute super."workflow-osx"; + "wp-archivebot" = dontDistribute super."wp-archivebot"; + "wraparound" = dontDistribute super."wraparound"; + "wraxml" = dontDistribute super."wraxml"; + "wreq-sb" = dontDistribute super."wreq-sb"; + "wright" = dontDistribute super."wright"; + "wsdl" = dontDistribute super."wsdl"; + "wsedit" = dontDistribute super."wsedit"; + "wtk" = dontDistribute super."wtk"; + "wtk-gtk" = dontDistribute super."wtk-gtk"; + "wumpus-basic" = dontDistribute super."wumpus-basic"; + "wumpus-core" = dontDistribute super."wumpus-core"; + "wumpus-drawing" = dontDistribute super."wumpus-drawing"; + "wumpus-microprint" = dontDistribute super."wumpus-microprint"; + "wumpus-tree" = dontDistribute super."wumpus-tree"; + "wuss" = dontDistribute super."wuss"; + "wx" = dontDistribute super."wx"; + "wxAsteroids" = dontDistribute super."wxAsteroids"; + "wxFruit" = dontDistribute super."wxFruit"; + "wxc" = dontDistribute super."wxc"; + "wxcore" = dontDistribute super."wxcore"; + "wxdirect" = dontDistribute super."wxdirect"; + "wxhnotepad" = dontDistribute super."wxhnotepad"; + "wxturtle" = dontDistribute super."wxturtle"; + "wybor" = dontDistribute super."wybor"; + "wyvern" = dontDistribute super."wyvern"; + "x-dsp" = dontDistribute super."x-dsp"; + "x11-xim" = dontDistribute super."x11-xim"; + "x11-xinput" = dontDistribute super."x11-xinput"; + "x509-util" = dontDistribute super."x509-util"; + "xattr" = dontDistribute super."xattr"; + "xbattbar" = dontDistribute super."xbattbar"; + "xcb-types" = dontDistribute super."xcb-types"; + "xcffib" = dontDistribute super."xcffib"; + "xchat-plugin" = dontDistribute super."xchat-plugin"; + "xcp" = dontDistribute super."xcp"; + "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-enumerator" = dontDistribute super."xml-enumerator"; + "xml-enumerator-combinators" = dontDistribute super."xml-enumerator-combinators"; + "xml-extractors" = dontDistribute super."xml-extractors"; + "xml-helpers" = dontDistribute super."xml-helpers"; + "xml-html-conduit-lens" = dontDistribute super."xml-html-conduit-lens"; + "xml-monad" = dontDistribute super."xml-monad"; + "xml-parsec" = dontDistribute super."xml-parsec"; + "xml-picklers" = dontDistribute super."xml-picklers"; + "xml-pipe" = dontDistribute super."xml-pipe"; + "xml-prettify" = dontDistribute super."xml-prettify"; + "xml-push" = dontDistribute super."xml-push"; + "xml-query" = dontDistribute super."xml-query"; + "xml-query-xml-conduit" = dontDistribute super."xml-query-xml-conduit"; + "xml-query-xml-types" = dontDistribute super."xml-query-xml-types"; + "xml2html" = dontDistribute super."xml2html"; + "xml2json" = dontDistribute super."xml2json"; + "xml2x" = dontDistribute super."xml2x"; + "xmltv" = dontDistribute super."xmltv"; + "xmms2-client" = dontDistribute super."xmms2-client"; + "xmms2-client-glib" = dontDistribute super."xmms2-client-glib"; + "xmobar" = dontDistribute super."xmobar"; + "xmonad-bluetilebranch" = dontDistribute super."xmonad-bluetilebranch"; + "xmonad-contrib" = dontDistribute super."xmonad-contrib"; + "xmonad-contrib-bluetilebranch" = dontDistribute super."xmonad-contrib-bluetilebranch"; + "xmonad-contrib-gpl" = dontDistribute super."xmonad-contrib-gpl"; + "xmonad-entryhelper" = dontDistribute super."xmonad-entryhelper"; + "xmonad-eval" = dontDistribute super."xmonad-eval"; + "xmonad-extras" = dontDistribute super."xmonad-extras"; + "xmonad-screenshot" = dontDistribute super."xmonad-screenshot"; + "xmonad-utils" = dontDistribute super."xmonad-utils"; + "xmonad-wallpaper" = dontDistribute super."xmonad-wallpaper"; + "xmonad-windownames" = dontDistribute super."xmonad-windownames"; + "xmpipe" = dontDistribute super."xmpipe"; + "xorshift" = dontDistribute super."xorshift"; + "xosd" = dontDistribute super."xosd"; + "xournal-builder" = dontDistribute super."xournal-builder"; + "xournal-convert" = dontDistribute super."xournal-convert"; + "xournal-parser" = dontDistribute super."xournal-parser"; + "xournal-render" = dontDistribute super."xournal-render"; + "xournal-types" = dontDistribute super."xournal-types"; + "xsact" = dontDistribute super."xsact"; + "xsd" = dontDistribute super."xsd"; + "xsha1" = dontDistribute super."xsha1"; + "xslt" = dontDistribute super."xslt"; + "xtc" = dontDistribute super."xtc"; + "xtest" = dontDistribute super."xtest"; + "xturtle" = dontDistribute super."xturtle"; + "xxhash" = dontDistribute super."xxhash"; + "y0l0bot" = dontDistribute super."y0l0bot"; + "yabi" = dontDistribute super."yabi"; + "yabi-muno" = dontDistribute super."yabi-muno"; + "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; + "yahoo-web-search" = dontDistribute super."yahoo-web-search"; + "yajl" = dontDistribute super."yajl"; + "yajl-enumerator" = dontDistribute super."yajl-enumerator"; + "yall" = dontDistribute super."yall"; + "yamemo" = dontDistribute super."yamemo"; + "yaml-config" = dontDistribute super."yaml-config"; + "yaml-light-lens" = dontDistribute super."yaml-light-lens"; + "yaml-rpc" = dontDistribute super."yaml-rpc"; + "yaml-rpc-scotty" = dontDistribute super."yaml-rpc-scotty"; + "yaml-rpc-snap" = dontDistribute super."yaml-rpc-snap"; + "yaml-union" = dontDistribute super."yaml-union"; + "yaml2owl" = dontDistribute super."yaml2owl"; + "yamlkeysdiff" = dontDistribute super."yamlkeysdiff"; + "yampa-canvas" = dontDistribute super."yampa-canvas"; + "yampa-glfw" = dontDistribute super."yampa-glfw"; + "yampa-glut" = dontDistribute super."yampa-glut"; + "yampa2048" = dontDistribute super."yampa2048"; + "yaop" = dontDistribute super."yaop"; + "yap" = dontDistribute super."yap"; + "yarr" = dontDistribute super."yarr"; + "yarr-image-io" = dontDistribute super."yarr-image-io"; + "yate" = dontDistribute super."yate"; + "yavie" = dontDistribute super."yavie"; + "ycextra" = dontDistribute super."ycextra"; + "yeganesh" = dontDistribute super."yeganesh"; + "yeller" = dontDistribute super."yeller"; + "yesod-angular" = dontDistribute super."yesod-angular"; + "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; + "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-oauth" = dontDistribute super."yesod-auth-oauth"; + "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; + "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; + "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; + "yesod-bootstrap" = dontDistribute super."yesod-bootstrap"; + "yesod-comments" = dontDistribute super."yesod-comments"; + "yesod-content-pdf" = dontDistribute super."yesod-content-pdf"; + "yesod-continuations" = dontDistribute super."yesod-continuations"; + "yesod-crud" = dontDistribute super."yesod-crud"; + "yesod-crud-persist" = dontDistribute super."yesod-crud-persist"; + "yesod-csp" = dontDistribute super."yesod-csp"; + "yesod-datatables" = dontDistribute super."yesod-datatables"; + "yesod-dsl" = dontDistribute super."yesod-dsl"; + "yesod-examples" = dontDistribute super."yesod-examples"; + "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-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-paginate" = dontDistribute super."yesod-paginate"; + "yesod-pagination" = dontDistribute super."yesod-pagination"; + "yesod-paginator" = dontDistribute super."yesod-paginator"; + "yesod-platform" = dontDistribute super."yesod-platform"; + "yesod-pnotify" = dontDistribute super."yesod-pnotify"; + "yesod-pure" = dontDistribute super."yesod-pure"; + "yesod-purescript" = dontDistribute super."yesod-purescript"; + "yesod-raml" = dontDistribute super."yesod-raml"; + "yesod-raml-bin" = dontDistribute super."yesod-raml-bin"; + "yesod-raml-docs" = dontDistribute super."yesod-raml-docs"; + "yesod-raml-mock" = dontDistribute super."yesod-raml-mock"; + "yesod-recaptcha" = dontDistribute super."yesod-recaptcha"; + "yesod-routes" = dontDistribute super."yesod-routes"; + "yesod-routes-flow" = dontDistribute super."yesod-routes-flow"; + "yesod-routes-typescript" = dontDistribute super."yesod-routes-typescript"; + "yesod-rst" = dontDistribute super."yesod-rst"; + "yesod-s3" = dontDistribute super."yesod-s3"; + "yesod-sass" = dontDistribute super."yesod-sass"; + "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-tableview" = dontDistribute super."yesod-tableview"; + "yesod-test-json" = dontDistribute super."yesod-test-json"; + "yesod-tls" = dontDistribute super."yesod-tls"; + "yesod-transloadit" = dontDistribute super."yesod-transloadit"; + "yesod-vend" = dontDistribute super."yesod-vend"; + "yesod-websockets-extra" = dontDistribute super."yesod-websockets-extra"; + "yesod-worker" = dontDistribute super."yesod-worker"; + "yet-another-logger" = dontDistribute super."yet-another-logger"; + "yhccore" = dontDistribute super."yhccore"; + "yi-contrib" = dontDistribute super."yi-contrib"; + "yi-emacs-colours" = dontDistribute super."yi-emacs-colours"; + "yi-gtk" = dontDistribute super."yi-gtk"; + "yi-monokai" = dontDistribute super."yi-monokai"; + "yi-snippet" = dontDistribute super."yi-snippet"; + "yi-solarized" = dontDistribute super."yi-solarized"; + "yi-spolsky" = dontDistribute super."yi-spolsky"; + "yi-vty" = dontDistribute super."yi-vty"; + "yices" = dontDistribute super."yices"; + "yices-easy" = dontDistribute super."yices-easy"; + "yices-painless" = dontDistribute super."yices-painless"; + "yjftp" = dontDistribute super."yjftp"; + "yjftp-libs" = dontDistribute super."yjftp-libs"; + "yjsvg" = dontDistribute super."yjsvg"; + "yjtools" = dontDistribute super."yjtools"; + "yocto" = dontDistribute super."yocto"; + "yoko" = dontDistribute super."yoko"; + "york-lava" = dontDistribute super."york-lava"; + "youtube" = dontDistribute super."youtube"; + "yql" = dontDistribute super."yql"; + "yst" = dontDistribute super."yst"; + "yuiGrid" = dontDistribute super."yuiGrid"; + "yuuko" = dontDistribute super."yuuko"; + "yxdb-utils" = dontDistribute super."yxdb-utils"; + "z3" = dontDistribute super."z3"; + "zalgo" = dontDistribute super."zalgo"; + "zampolit" = dontDistribute super."zampolit"; + "zasni-gerna" = dontDistribute super."zasni-gerna"; + "zcache" = dontDistribute super."zcache"; + "zenc" = dontDistribute super."zenc"; + "zendesk-api" = dontDistribute super."zendesk-api"; + "zeno" = dontDistribute super."zeno"; + "zerobin" = dontDistribute super."zerobin"; + "zeromq-haskell" = dontDistribute super."zeromq-haskell"; + "zeromq3-conduit" = dontDistribute super."zeromq3-conduit"; + "zeromq3-haskell" = dontDistribute super."zeromq3-haskell"; + "zeroth" = dontDistribute super."zeroth"; + "zigbee-znet25" = dontDistribute super."zigbee-znet25"; + "zip-conduit" = dontDistribute super."zip-conduit"; + "zipedit" = dontDistribute super."zipedit"; + "zipkin" = dontDistribute super."zipkin"; + "zipper" = dontDistribute super."zipper"; + "zippers" = dontDistribute super."zippers"; + "zippo" = dontDistribute super."zippo"; + "zlib-conduit" = dontDistribute super."zlib-conduit"; + "zmcat" = dontDistribute super."zmcat"; + "zmidi-core" = dontDistribute super."zmidi-core"; + "zmidi-score" = dontDistribute super."zmidi-score"; + "zmqat" = dontDistribute super."zmqat"; + "zoneinfo" = dontDistribute super."zoneinfo"; + "zoom" = dontDistribute super."zoom"; + "zoom-cache" = dontDistribute super."zoom-cache"; + "zoom-cache-pcm" = dontDistribute super."zoom-cache-pcm"; + "zoom-cache-sndfile" = dontDistribute super."zoom-cache-sndfile"; + "zoom-refs" = dontDistribute super."zoom-refs"; + "zot" = dontDistribute super."zot"; + "zsh-battery" = dontDistribute super."zsh-battery"; + "ztail" = dontDistribute super."ztail"; + +} diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix index 6c2feb4946e..8d1090965f8 100644 --- a/pkgs/development/haskell-modules/hackage-packages.nix +++ b/pkgs/development/haskell-modules/hackage-packages.nix @@ -1802,7 +1802,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "BlogLiterately" = callPackage + "BlogLiterately_0_8_1_3" = callPackage ({ mkDerivation, base, blaze-html, bool-extras, bytestring, cmdargs , containers, data-default, directory, filepath, HaXml, haxr , highlighting-kate, hscolour, lens, mtl, pandoc, pandoc-citeproc @@ -1822,12 +1822,14 @@ 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"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "BlogLiterately_0_8_1_4" = callPackage + "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 @@ -1847,7 +1849,31 @@ 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"; + }) {}; + + "BlogLiterately_0_8_1_5" = 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.5"; + sha256 = "d75dca56afba1d391cb9756e52f2d949bbfcd5defc0fcef5371589d06cb21aeb"; + 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"; @@ -1877,7 +1903,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "BlogLiterately-diagrams" = callPackage + "BlogLiterately-diagrams_0_2_0_1" = callPackage ({ mkDerivation, base, BlogLiterately, containers, diagrams-builder , diagrams-lib, diagrams-rasterific, directory, filepath , JuicyPixels, pandoc, safe @@ -1893,11 +1919,13 @@ self: { diagrams-rasterific directory filepath JuicyPixels pandoc safe ]; executableHaskellDepends = [ base BlogLiterately ]; + jailbreak = true; description = "Include images in blog posts with inline diagrams code"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "BlogLiterately-diagrams_0_2_0_2" = callPackage + "BlogLiterately-diagrams" = callPackage ({ mkDerivation, base, BlogLiterately, containers, diagrams-builder , diagrams-lib, diagrams-rasterific, directory, filepath , JuicyPixels, pandoc, safe @@ -1913,10 +1941,8 @@ self: { diagrams-rasterific directory filepath JuicyPixels pandoc safe ]; executableHaskellDepends = [ base BlogLiterately ]; - jailbreak = true; description = "Include images in blog posts with inline diagrams code"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "BluePrintCSS" = callPackage @@ -1959,10 +1985,10 @@ self: { pandoc-types parseargs ]; testHaskellDepends = [ base process ]; - jailbreak = true; homepage = "http://www.cse.chalmers.se/~emax/bookshelf/Manual.shelf.html"; description = "A simple document organizer with some wiki functionality"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Boolean" = callPackage @@ -2446,7 +2472,7 @@ self: { opencv_legacy = null; opencv_ml = null; opencv_objdetect = null; opencv_video = null;}; - "Cabal_1_18_1_6" = callPackage + "Cabal_1_18_1_7" = callPackage ({ mkDerivation, array, base, bytestring, containers, deepseq , directory, extensible-exceptions, filepath, HUnit, pretty , process, QuickCheck, regex-posix, test-framework @@ -2454,8 +2480,8 @@ self: { }: mkDerivation { pname = "Cabal"; - version = "1.18.1.6"; - sha256 = "9cfa9df3472d3b96797d9835040c87a2450c866bb090d5f13dfe63bb9033d696"; + version = "1.18.1.7"; + sha256 = "1fc2d4d5110019cee45ffb0777ad8aa33d46673a982cbe58d602d3b17e6e7282"; libraryHaskellDepends = [ array base bytestring containers deepseq directory filepath pretty process time unix @@ -2472,7 +2498,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "Cabal_1_20_0_3" = callPackage + "Cabal_1_20_0_4" = callPackage ({ mkDerivation, array, base, bytestring, containers, deepseq , directory, extensible-exceptions, filepath, HUnit, pretty , process, QuickCheck, regex-posix, test-framework @@ -2480,8 +2506,8 @@ self: { }: mkDerivation { pname = "Cabal"; - version = "1.20.0.3"; - sha256 = "1ba06ef194db0decdd1994c83cded718699a7da3068d73ff94e4ccbd39eb016f"; + version = "1.20.0.4"; + sha256 = "fdf6d934ec74e27e4b5071f4d54932b24828017fe6777f8829ac1271a394e4e0"; libraryHaskellDepends = [ array base bytestring containers deepseq directory filepath pretty process time unix @@ -2581,6 +2607,33 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "Cabal_1_22_7_0" = callPackage + ({ mkDerivation, array, base, binary, bytestring, containers + , deepseq, directory, extensible-exceptions, filepath, HUnit + , old-time, pretty, process, QuickCheck, regex-posix + , test-framework, test-framework-hunit, test-framework-quickcheck2 + , time, unix + }: + mkDerivation { + pname = "Cabal"; + version = "1.22.7.0"; + sha256 = "06133e049631ce0b7b84bde991d9d5de879efd53ec0291af050a416544f57b8b"; + libraryHaskellDepends = [ + array base binary bytestring containers deepseq directory filepath + pretty process time unix + ]; + testHaskellDepends = [ + base bytestring containers directory extensible-exceptions filepath + HUnit old-time process QuickCheck regex-posix test-framework + test-framework-hunit test-framework-quickcheck2 unix + ]; + doCheck = false; + homepage = "http://www.haskell.org/cabal/"; + description = "A framework for packaging Haskell software"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "Cabal-ide-backend" = callPackage ({ mkDerivation, array, base, binary, bytestring, Cabal, containers , deepseq, directory, extensible-exceptions, filepath, HUnit @@ -3368,6 +3421,7 @@ self: { version = "0.5.0.1"; sha256 = "addb2abcf81ad9619d42e2f25e5866f7e998f29527409e40c7954078cc9fd676"; libraryHaskellDepends = [ async base ]; + jailbreak = true; homepage = "http://github.com/avieth/Concurrential"; description = "Mix concurrent and sequential computation"; license = stdenv.lib.licenses.bsd3; @@ -4981,11 +5035,12 @@ self: { }: mkDerivation { pname = "EdisonCore"; - version = "1.3"; - sha256 = "ccdf7a5c47baad82c9a9bdcaa848ec36de4818a9cd5ac063e2e1046ca6cfcc4a"; + version = "1.3.1"; + sha256 = "9d460a8e51e5b6d36e106a49c07a40f49d7ddcd46d1b32978bccd0c8ae9a4ad8"; libraryHaskellDepends = [ array base containers EdisonAPI mtl QuickCheck ]; + jailbreak = true; homepage = "http://rwd.rdockins.name/edison/home/"; description = "A library of efficent, purely-functional data structures (Core Implementations)"; license = "unknown"; @@ -6891,6 +6946,7 @@ self: { version = "0.1.0.1"; sha256 = "ab70cbd8a73d45b6ed8c4d692e39e54180def339f29ff1ba9671f24d07e7bab0"; libraryHaskellDepends = [ aeson base bytestring HTTP text ]; + jailbreak = true; homepage = "https://github.com/juergenhah/Haskell-Geocoder-OpenCage.git"; description = "Geocoder and Reverse Geocoding Service Wrapper"; license = "GPL"; @@ -6948,8 +7004,8 @@ self: { ({ mkDerivation, base, gtk3, process, temporary }: mkDerivation { pname = "Gifcurry"; - version = "0.1.0.0"; - sha256 = "b2b6eadd35889f996931887b21c85a9dbd397f988567981479266752e21537bf"; + version = "0.1.0.1"; + sha256 = "cfa0729e5cab21a4d4ff969b86af20a6e5244059a030695879e56e4705a5e56f"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ base gtk3 process temporary ]; @@ -7208,7 +7264,8 @@ self: { "Graphalyze" = callPackage ({ mkDerivation, array, base, bktrees, containers, directory, fgl - , filepath, graphviz, pandoc, process, random, text, time + , filepath, graphviz, old-locale, pandoc, process, random, text + , time }: mkDerivation { pname = "Graphalyze"; @@ -7216,8 +7273,9 @@ self: { sha256 = "9792207d74f5aff52b3e5b83378db480702b8b5e1b13e65113e2f32e7687ce9f"; libraryHaskellDepends = [ array base bktrees containers directory fgl filepath graphviz - pandoc process random text time + old-locale pandoc process random text time ]; + jailbreak = true; description = "Graph-Theoretic Analysis library"; license = "unknown"; }) {}; @@ -7378,22 +7436,23 @@ self: { "H" = callPackage ({ mkDerivation, base, bytestring, cmdargs, directory, file-embed , inline-r, pretty, process, singletons, tasty, tasty-golden - , tasty-hunit, temporary-rc, text, vector + , tasty-hunit, temporary, text, vector }: mkDerivation { pname = "H"; - version = "0.7.0.0"; - sha256 = "52ee637c754b8629f209e5b15c7b19437cd7039f660f7bc32e5a83c548b8100e"; + version = "0.8.0.0"; + sha256 = "b679dc140f783afa598da1bc2d111d603ad94b5f04d7db912452194635d47484"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ base bytestring cmdargs file-embed inline-r pretty process - temporary-rc vector + temporary vector ]; testHaskellDepends = [ base bytestring directory inline-r process singletons tasty tasty-golden tasty-hunit text vector ]; + doCheck = false; description = "The Haskell/R mixed programming environment"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -8389,6 +8448,7 @@ self: { homepage = "https://github.com/atzeus/HMap"; description = "Fast heterogeneous maps and unconstrained typeable like functionality"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HNM" = callPackage @@ -9115,7 +9175,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "HTTP" = callPackage + "HTTP_4000_2_23" = callPackage ({ mkDerivation, array, base, bytestring, case-insensitive, conduit , conduit-extra, deepseq, http-types, httpd-shed, HUnit, mtl , network, network-uri, old-time, parsec, pureMD5, split @@ -9137,9 +9197,10 @@ self: { homepage = "https://github.com/haskell/HTTP"; description = "A library for client-side HTTP"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "HTTP_4000_3_2" = callPackage + "HTTP" = callPackage ({ mkDerivation, array, base, bytestring, case-insensitive, conduit , conduit-extra, deepseq, http-types, httpd-shed, HUnit, mtl , network, network-uri, parsec, pureMD5, split, test-framework @@ -9157,10 +9218,10 @@ self: { http-types httpd-shed HUnit mtl network network-uri pureMD5 split test-framework test-framework-hunit wai warp ]; + doCheck = false; homepage = "https://github.com/haskell/HTTP"; description = "A library for client-side HTTP"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HTTP-Simple" = callPackage @@ -11657,7 +11718,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "JuicyPixels" = callPackage + "JuicyPixels_3_2_6_4" = callPackage ({ mkDerivation, base, binary, bytestring, containers, deepseq, mtl , primitive, transformers, vector, zlib }: @@ -11674,6 +11735,24 @@ self: { homepage = "https://github.com/Twinside/Juicy.Pixels"; description = "Picture loading/serialization (in png, jpeg, bitmap, gif, tga, tiff and radiance)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "JuicyPixels" = callPackage + ({ mkDerivation, base, binary, bytestring, containers, deepseq, mtl + , primitive, transformers, vector, zlib + }: + mkDerivation { + pname = "JuicyPixels"; + version = "3.2.7"; + sha256 = "0126ff02d78045a299e76a35e2a3d3d188e7512f08d57e89bf1e0a94eb6ff14b"; + libraryHaskellDepends = [ + base binary bytestring containers deepseq mtl primitive + transformers vector zlib + ]; + homepage = "https://github.com/Twinside/Juicy.Pixels"; + description = "Picture loading/serialization (in png, jpeg, bitmap, gif, tga, tiff and radiance)"; + license = stdenv.lib.licenses.bsd3; }) {}; "JuicyPixels-canvas" = callPackage @@ -12349,6 +12428,7 @@ self: { homepage = "http://bitbucket.org/astanin/hs-libzip/"; description = "Bindings to libzip, a library for manipulating zip archives"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "LibZip_0_11_1" = callPackage @@ -15085,6 +15165,7 @@ self: { ]; description = "This is a package which includes Assignments, Email, User and Reviews modules for Programming in Haskell course"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "PageIO" = callPackage @@ -15953,6 +16034,7 @@ self: { base directory filepath pandoc-types process split ]; executableHaskellDepends = [ base pandoc-types ]; + jailbreak = true; description = "A pandoc filter to express R plots inside markdown"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -22321,8 +22403,8 @@ self: { ({ mkDerivation, base, bytestring, hspec, zlib }: mkDerivation { pname = "adler32"; - version = "0.1.0.0"; - sha256 = "c2bdbdd971e28ed4abb321280c3d77965ed425a848b3ef08ac66a6233c5d5328"; + version = "0.1.1.0"; + sha256 = "578cb9ea7451dc905a22de15e46f8d6fc27f76e4c6f75352a70ebfe53a6928ec"; libraryHaskellDepends = [ base bytestring ]; librarySystemDepends = [ zlib ]; testHaskellDepends = [ base bytestring hspec ]; @@ -22644,8 +22726,8 @@ self: { pname = "aeson-extra"; version = "0.2.1.0"; sha256 = "d46ac20994321ee480ec9ec4b4714943af9121b55d5ef45f25a51932eec63f91"; - revision = "1"; - editedCabalFile = "c80517bdbd55afcbb06a535060f6be97e5619314ed1545181136f140544d4120"; + revision = "2"; + editedCabalFile = "e4bc838bebc2442c95e2d5987b1f71d38323686ab15a87d15f79431dfcd9ac7f"; libraryHaskellDepends = [ aeson attoparsec base bytestring containers exceptions hashable scientific tagged text unordered-containers vector @@ -22671,6 +22753,8 @@ self: { pname = "aeson-extra"; version = "0.2.2.0"; sha256 = "368aa018e650f323a1d52cfd38596fe419667e1ef3f83faf0f7255518b18dc45"; + revision = "1"; + editedCabalFile = "dd886d138f237630ab72659d26ede725526dc02edce98b0371265ad1854cac74"; libraryHaskellDepends = [ aeson attoparsec base bytestring containers exceptions hashable scientific text time unordered-containers vector @@ -22696,6 +22780,8 @@ self: { pname = "aeson-extra"; version = "0.2.3.0"; sha256 = "43ace09b9c03c5c55216b2062228bda94e5fd23333a0cc1eca0e5478546f9e77"; + revision = "1"; + editedCabalFile = "bb41b2e6c386698b33d2d8d67571542392afd8984821897a4fbf318f3bb2e844"; libraryHaskellDepends = [ aeson attoparsec base bytestring containers exceptions hashable scientific template-haskell text time unordered-containers vector @@ -22722,8 +22808,8 @@ self: { pname = "aeson-extra"; version = "0.3.0.0"; sha256 = "b9e54cf293c25bbd5646a777cf71a23c4158b708dd358fe3e705add326d5870f"; - revision = "1"; - editedCabalFile = "a6142a2f67fa6c7363339934a13aa920c1b20c5fcd9312932617470fba9b0328"; + revision = "2"; + editedCabalFile = "7b0de3823d241afec75697e2f8e387f85e0bd6f4bcb50937658bb3ba7d115558"; libraryHaskellDepends = [ aeson aeson-compat base base-compat bytestring containers exceptions hashable parsec scientific template-haskell text time @@ -22738,6 +22824,35 @@ self: { homepage = "https://github.com/phadej/aeson-extra#readme"; description = "Extra goodies for aeson"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "aeson-extra_0_3_0_1" = callPackage + ({ mkDerivation, aeson, aeson-compat, base, base-compat, bytestring + , containers, exceptions, hashable, parsec, quickcheck-instances + , scientific, tasty, tasty-hunit, tasty-quickcheck + , template-haskell, text, time, time-parsers, unordered-containers + , vector + }: + mkDerivation { + pname = "aeson-extra"; + version = "0.3.0.1"; + sha256 = "5b1b75c8f10a470975c0f6170d5b786f594acef295c5e23150e81e855b70e6a7"; + libraryHaskellDepends = [ + aeson aeson-compat base base-compat bytestring containers + exceptions hashable parsec scientific template-haskell text time + time-parsers unordered-containers vector + ]; + testHaskellDepends = [ + aeson aeson-compat base base-compat bytestring containers + exceptions hashable parsec quickcheck-instances scientific tasty + tasty-hunit tasty-quickcheck template-haskell text time + time-parsers unordered-containers vector + ]; + homepage = "https://github.com/phadej/aeson-extra#readme"; + description = "Extra goodies for aeson"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "aeson-filthy" = callPackage @@ -23231,18 +23346,19 @@ self: { }) {}; "agda-snippets" = callPackage - ({ mkDerivation, Agda, base, containers, mtl, network-uri, xhtml }: + ({ mkDerivation, Agda, base, containers, mtl, network-uri + , transformers, xhtml + }: mkDerivation { pname = "agda-snippets"; - version = "2.4.2.4"; - sha256 = "c1bba563fe1c2ecceaa21545565ad2678675682ed97518c2c2bebde8692963c0"; + version = "2.4.2.5"; + sha256 = "f1e42f920bb4c4f43836d9844f13ac3942b1048c032b05b043716cd47d11ed22"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ Agda base containers mtl network-uri xhtml ]; - executableHaskellDepends = [ Agda base network-uri ]; - jailbreak = true; + executableHaskellDepends = [ Agda base network-uri transformers ]; homepage = "http://github.com/liamoc/agda-snippets#readme"; description = "Render just the Agda snippets of a literate Agda file to HTML"; license = stdenv.lib.licenses.bsd3; @@ -23260,6 +23376,7 @@ self: { agda-snippets base directory filepath hakyll network-uri pandoc pandoc-types ]; + jailbreak = true; homepage = "https://github.com/liamoc/agda-snippets#readme"; description = "Literate Agda support using agda-snippets, for Hakyll pages"; license = stdenv.lib.licenses.bsd3; @@ -30569,7 +30686,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "async" = callPackage + "async_2_0_2" = callPackage ({ mkDerivation, base, HUnit, stm, test-framework , test-framework-hunit }: @@ -30584,9 +30701,10 @@ self: { homepage = "https://github.com/simonmar/async"; description = "Run IO operations asynchronously and wait for their results"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "async_2_1_0" = callPackage + "async" = callPackage ({ mkDerivation, base, HUnit, stm, test-framework , test-framework-hunit }: @@ -30601,7 +30719,6 @@ self: { homepage = "https://github.com/simonmar/async"; description = "Run IO operations asynchronously and wait for their results"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "async-dejafu" = callPackage @@ -30861,6 +30978,7 @@ self: { ]; description = "Streaming parser/renderer for the Atom 1.0 standard (RFC 4287)."; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "atom-msp430" = callPackage @@ -33375,12 +33493,12 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "base_4_8_1_0" = callPackage + "base_4_8_2_0" = callPackage ({ mkDerivation, ghc-prim, rts }: mkDerivation { pname = "base"; - version = "4.8.1.0"; - sha256 = "52c9afdc4fe1f59e67bfbe266edad57ee4294eae59bfd287fcd66e5808519e67"; + version = "4.8.2.0"; + sha256 = "f2bc9eb2773f74c231a25f32dc3b47b704cccc6b9064b6e1140dded364fafe8c"; libraryHaskellDepends = [ ghc-prim rts ]; description = "Basic libraries"; license = stdenv.lib.licenses.bsd3; @@ -34255,6 +34373,24 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "beam" = callPackage + ({ mkDerivation, base, conduit, containers, convertible, HDBC + , HDBC-sqlite3, microlens, mtl, pretty, semigroups, tagged, text + , time, uniplate + }: + mkDerivation { + pname = "beam"; + version = "0.3.2.0"; + sha256 = "1a6facf70119515b46b05e336bff59254d8e69f38cfeca6a65625e130fb26b5a"; + libraryHaskellDepends = [ + base conduit containers convertible HDBC HDBC-sqlite3 microlens mtl + pretty semigroups tagged text time uniplate + ]; + homepage = "http://travis.athougies.net/projects/beam.html"; + description = "A type-safe SQL mapper for Haskell that doesn't use Template Haskell"; + license = stdenv.lib.licenses.mit; + }) {}; + "beamable" = callPackage ({ mkDerivation, base, blaze-builder, bytestring, ghc-prim , integer-gmp, murmur-hash, QuickCheck, test-framework @@ -34741,6 +34877,29 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "bifunctors_5_2_1" = callPackage + ({ mkDerivation, base, comonad, containers, hspec, QuickCheck + , semigroups, tagged, template-haskell, transformers + , transformers-compat + }: + mkDerivation { + pname = "bifunctors"; + version = "5.2.1"; + sha256 = "cbb459178a8c72cbb695361b518ae17ed3664e3ad207a34276f4d2990107e9cb"; + libraryHaskellDepends = [ + base comonad containers semigroups tagged template-haskell + transformers transformers-compat + ]; + testHaskellDepends = [ + base hspec QuickCheck transformers transformers-compat + ]; + jailbreak = true; + homepage = "http://github.com/ekmett/bifunctors/"; + description = "Bifunctors"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "bighugethesaurus" = callPackage ({ mkDerivation, base, HTTP, split }: mkDerivation { @@ -34971,15 +35130,15 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "binary_0_8_0_0" = callPackage + "binary_0_8_0_1" = callPackage ({ mkDerivation, array, base, bytestring, Cabal, containers , directory, filepath, HUnit, QuickCheck, random, test-framework , test-framework-quickcheck2 }: mkDerivation { pname = "binary"; - version = "0.8.0.0"; - sha256 = "a446ed06e0b3011716b09d129f25c8bab9bda60a5783bab1e778e7ffa30c7d8f"; + version = "0.8.0.1"; + sha256 = "85c6befa618ea1e181ab5e6ac66c07b63746b3cfcde7e69158857d7ade8ed755"; libraryHaskellDepends = [ array base bytestring containers ]; testHaskellDepends = [ array base bytestring Cabal containers directory filepath HUnit @@ -35224,7 +35383,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "binary-orphans" = callPackage + "binary-orphans_0_1_3_0" = callPackage ({ mkDerivation, aeson, base, binary, hashable , quickcheck-instances, scientific, semigroups, tagged, tasty , tasty-quickcheck, text, text-binary, time, unordered-containers @@ -35247,6 +35406,32 @@ self: { homepage = "https://github.com/phadej/binary-orphans#readme"; description = "Orphan instances for binary"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "binary-orphans" = callPackage + ({ mkDerivation, aeson, base, binary, hashable + , quickcheck-instances, scientific, semigroups, tagged, tasty + , tasty-quickcheck, text, text-binary, time, unordered-containers + , vector, vector-binary-instances + }: + mkDerivation { + pname = "binary-orphans"; + version = "0.1.4.0"; + sha256 = "0a952a7521747a7aacf4aa1638674130262f2efacb7121727c1932d49017f742"; + libraryHaskellDepends = [ + aeson base binary hashable scientific semigroups tagged text + text-binary time unordered-containers vector + vector-binary-instances + ]; + testHaskellDepends = [ + aeson base binary hashable quickcheck-instances scientific + semigroups tagged tasty tasty-quickcheck text time + unordered-containers vector + ]; + homepage = "https://github.com/phadej/binary-orphans#readme"; + description = "Orphan instances for binary"; + license = stdenv.lib.licenses.bsd3; }) {}; "binary-parser" = callPackage @@ -35324,8 +35509,10 @@ self: { testHaskellDepends = [ base directory doctest filepath hspec QuickCheck ]; + doCheck = false; description = "Binary and exponential searches"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "binary-shared" = callPackage @@ -36093,6 +36280,7 @@ self: { homepage = "http://bitbucket.org/astanin/hs-libzip/"; description = "Low level bindings to libzip"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) libzip;}; "bindings-libzip_0_11" = callPackage @@ -36544,6 +36732,7 @@ self: { homepage = "http://github.com/udo-stenzel/biohazard"; description = "bioinformatics support library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bioinformatics-toolkit" = callPackage @@ -37929,6 +38118,19 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "blaze-svg_0_3_6" = callPackage + ({ mkDerivation, base, blaze-markup, mtl }: + mkDerivation { + pname = "blaze-svg"; + version = "0.3.6"; + sha256 = "90dff37d78bffe5ee2587bab4281c158d5d1bd3901fe359bfdcc1cb6fb387179"; + libraryHaskellDepends = [ base blaze-markup mtl ]; + homepage = "https://github.com/deepakjois/blaze-svg"; + description = "SVG combinator library"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "blaze-textual_0_2_0_9" = callPackage ({ mkDerivation, base, blaze-builder, bytestring, double-conversion , ghc-prim, integer-gmp, old-locale, QuickCheck, test-framework @@ -38202,6 +38404,7 @@ self: { homepage = "https://github.com/bitemyapp/bloodhound"; description = "ElasticSearch client library for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bloomfilter" = callPackage @@ -40116,6 +40319,8 @@ self: { pname = "bytestring-from"; version = "0.3"; sha256 = "c4def9c8f930ed9c1717fd4547016062c3f7065df341853245bb6212f3cd120c"; + revision = "1"; + editedCabalFile = "b6efc5572f7f26aa1bcc4d930391cb9f0144f6e3df107838ee0adc28d73caa3a"; libraryHaskellDepends = [ attoparsec base bytestring text ]; testHaskellDepends = [ base bytestring QuickCheck tasty tasty-quickcheck @@ -41296,6 +41501,8 @@ self: { pname = "cabal-install"; version = "1.22.7.0"; sha256 = "b30fd14f20fdd11b028cba68fefeed7eeadcacf919e7c29bc4d7289a656d19f3"; + revision = "1"; + editedCabalFile = "9abc9a039f3abe8f7b3be29c11974d2371393df4069285caf7c4385956c30032"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -41612,7 +41819,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "cabal-rpm" = callPackage + "cabal-rpm_0_9_8" = callPackage ({ mkDerivation, base, Cabal, directory, filepath, process, time , unix }: @@ -41628,6 +41835,25 @@ self: { homepage = "https://github.com/juhp/cabal-rpm"; description = "RPM packaging tool for Haskell Cabal-based packages"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "cabal-rpm" = callPackage + ({ mkDerivation, base, Cabal, directory, filepath, process, time + , unix + }: + mkDerivation { + pname = "cabal-rpm"; + version = "0.9.9"; + sha256 = "2f5c487be9395fc34eba40efa73ee95d6419a84a62dc3dd02f4155778a953a6f"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + base Cabal directory filepath process time unix + ]; + homepage = "https://github.com/juhp/cabal-rpm"; + description = "RPM packaging tool for Haskell Cabal-based packages"; + license = stdenv.lib.licenses.gpl3; }) {}; "cabal-scripts" = callPackage @@ -43514,15 +43740,15 @@ self: { "cassava-conduit" = callPackage ({ mkDerivation, array, base, bifunctors, bytestring, cassava - , conduit, conduit-extra, containers, mtl, QuickCheck + , conduit, conduit-extra, containers, mtl, QuickCheck, text }: mkDerivation { pname = "cassava-conduit"; - version = "0.2.1"; - sha256 = "3b75c027d9be6637b5ce550960995eedb4b9e3f7c8acdecdae36c350ba600c55"; + version = "0.3.0"; + sha256 = "ff78cceac3c0f2af3b12c7931d65def5fcd6cb1e9f3507044bdc3cc9c36572a6"; libraryHaskellDepends = [ array base bifunctors bytestring cassava conduit conduit-extra - containers mtl + containers mtl text ]; testHaskellDepends = [ base QuickCheck ]; homepage = "https://github.com/domdere/cassava-conduit"; @@ -44365,8 +44591,8 @@ self: { }: mkDerivation { pname = "cgrep"; - version = "6.5.13"; - sha256 = "03bc20b6879b379b1e22f1e09214d1519b7c7f5b82d7c79de3fd52200ba5550a"; + version = "6.5.15"; + sha256 = "7132cba60d2352fecbc392380cfead394300819974b3d6843fba3ad49dbf64b5"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -45483,6 +45709,7 @@ self: { HTTP json mtl network network-uri old-locale pandoc-types parsec syb time utf8-string ]; + jailbreak = true; homepage = "http://istitutocolli.org/repos/citeproc-hs/"; description = "A Citation Style Language implementation in Haskell"; license = stdenv.lib.licenses.bsd3; @@ -47984,7 +48211,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "cmark" = callPackage + "cmark_0_4_1" = callPackage ({ mkDerivation, base, bytestring, HUnit, text }: mkDerivation { pname = "cmark"; @@ -47995,20 +48222,20 @@ self: { homepage = "https://github.com/jgm/commonmark-hs"; description = "Fast, accurate CommonMark (Markdown) parser and renderer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "cmark_0_5_0" = callPackage + "cmark" = callPackage ({ mkDerivation, base, bytestring, HUnit, text }: mkDerivation { pname = "cmark"; - version = "0.5.0"; - sha256 = "a95dd6c5135159d0d1b797eb99bbad757a298f4a8fb580865323bff37cba2cb8"; + version = "0.5.1"; + sha256 = "e13a2889a74d6c9dd27bbd506b89f4ee8841c98aac36dd22f30a68863efa5446"; libraryHaskellDepends = [ base bytestring text ]; testHaskellDepends = [ base HUnit text ]; homepage = "https://github.com/jgm/commonmark-hs"; description = "Fast, accurate CommonMark (Markdown) parser and renderer"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cmath" = callPackage @@ -49762,17 +49989,16 @@ self: { }) {}; "conceit" = callPackage - ({ mkDerivation, base, bifunctors, exceptions, mtl, semigroupoids - , transformers, void + ({ mkDerivation, base, bifunctors, semigroupoids, semigroups, void }: mkDerivation { pname = "conceit"; - version = "0.3.2.0"; - sha256 = "2f3753f391c011eb71f39cf89c212e8c265612eaf43d51bd09bb58691b48f29a"; + version = "0.4.0.0"; + sha256 = "8972aafc4143cf2f6039d99747a9f1d191762636fd4453e7fc5bdb7c604a980b"; libraryHaskellDepends = [ - base bifunctors exceptions mtl semigroupoids transformers void + base bifunctors semigroupoids semigroups void ]; - description = "Concurrent actions that may fail"; + description = "Concurrent actions that may fail with a value"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -49992,6 +50218,7 @@ self: { async base HUnit random stm test-framework test-framework-hunit unbounded-delays ]; + jailbreak = true; doCheck = false; homepage = "https://github.com/basvandijk/concurrent-extra"; description = "Extra concurrency primitives"; @@ -51117,8 +51344,8 @@ self: { }: mkDerivation { pname = "configifier"; - version = "0.0.8"; - sha256 = "7f56ae97d2d614c26b634ccbd1951b0c958eca20b20401d210027e2f1627cd9b"; + version = "0.1.0"; + sha256 = "bda7c1ae24e838204f972f64816e6e7ec5552b3ea03a2e17eb5c9e9ea9ad030e"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -51407,8 +51634,8 @@ self: { }: mkDerivation { pname = "console-program"; - version = "0.4.0.3"; - sha256 = "89faaa72131c56397b3603ac67d577b4cf7fc5607fc4369f3e0255b403d1fe88"; + version = "0.4.1.0"; + sha256 = "688cbecb6288c5e12c48c2bafaf27f470fe1b9d61c293b529581799cf95c7146"; libraryHaskellDepends = [ ansi-terminal ansi-wl-pprint base containers directory haskeline parsec parsec-extra split transformers unix utility-ht @@ -51562,7 +51789,7 @@ self: { homepage = "http://andersk.mit.edu/haskell/constructible/"; description = "Exact computation with constructible real numbers"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "constructive-algebra" = callPackage @@ -53471,6 +53698,7 @@ self: { mtl mwc-random network semigroups stm text time tinylog transformers transformers-base uuid vector ]; + jailbreak = true; homepage = "https://github.com/twittner/cql-io/"; description = "Cassandra CQL client"; license = stdenv.lib.licenses.mpl20; @@ -53710,8 +53938,8 @@ self: { ({ mkDerivation, base, data-binary-ieee754, ieee754 }: mkDerivation { pname = "crackNum"; - version = "1.4"; - sha256 = "5d66f4f51b8600cdc48a3d4b999322ec8efa0f26fd8a41b4bb125412e3dea009"; + version = "1.5"; + sha256 = "ef41fe4afa6866a578b17f84ee231ed70493696fdca9fe54341e124215c1e205"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base data-binary-ieee754 ieee754 ]; @@ -60599,12 +60827,11 @@ self: { ({ mkDerivation, base, cairo, diagrams-cairo, diagrams-lib, gtk }: mkDerivation { pname = "diagrams-gtk"; - version = "1.3"; - sha256 = "baa2cb35066e37e8bb5ad831aa222b3b5fd8388a62cfc42903ebcb611a20c34d"; + version = "1.3.0.1"; + sha256 = "a328abe54875119b3cc0aaee3b0f913868cc9d24bdf46ac2ab7876b89fd8a309"; libraryHaskellDepends = [ base cairo diagrams-cairo diagrams-lib gtk ]; - jailbreak = true; homepage = "http://projects.haskell.org/diagrams/"; description = "Backend for rendering diagrams directly to GTK windows"; license = stdenv.lib.licenses.bsd3; @@ -61029,6 +61256,7 @@ self: { base diagrams-builder diagrams-cairo diagrams-lib directory filepath linear optparse-applicative pandoc-types ]; + jailbreak = true; description = "A pandoc filter to express diagrams inline using the haskell EDSL _diagrams_"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -62489,6 +62717,7 @@ self: { testHaskellDepends = [ base base16-bytestring bytestring directory HUnit text ]; + doCheck = false; homepage = "https://github.com/IreneKnapp/direct-sqlite"; description = "Low-level binding to SQLite3. Includes UTF8 and BLOB support."; license = stdenv.lib.licenses.bsd3; @@ -62986,6 +63215,7 @@ self: { network-transport network-transport-tcp rematch stm test-framework test-framework-hunit transformers ]; + doCheck = false; homepage = "http://github.com/haskell-distributed/distributed-process-client-server"; description = "The Cloud Haskell Application Platform"; license = stdenv.lib.licenses.bsd3; @@ -63057,6 +63287,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; @@ -63121,6 +63352,7 @@ self: { test-framework test-framework-hunit test-framework-quickcheck2 time transformers unordered-containers ]; + doCheck = false; homepage = "http://github.com/haskell-distributed/distributed-process-extras"; description = "Cloud Haskell Extras"; license = stdenv.lib.licenses.bsd3; @@ -63384,6 +63616,7 @@ self: { rematch stm test-framework test-framework-hunit time transformers unordered-containers ]; + doCheck = false; homepage = "http://github.com/haskell-distributed/distributed-process-supervisor"; description = "Supervisors for The Cloud Haskell Application Platform"; license = stdenv.lib.licenses.bsd3; @@ -63457,6 +63690,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; @@ -63471,8 +63705,8 @@ self: { }: mkDerivation { pname = "distributed-process-tests"; - version = "0.4.3.2"; - sha256 = "ee44041cdfca0712f45b279534ee646eb4a51a70f91a26484dd234d1b0ef4251"; + version = "0.4.3.3"; + sha256 = "fecfbae4d57eb8329486f4e1bfa01c5cbdaff7fed99a0533348f903830609678"; libraryHaskellDepends = [ ansi-terminal base binary bytestring distributed-process distributed-static HUnit network network-transport random rematch @@ -63481,7 +63715,6 @@ self: { testHaskellDepends = [ base network network-transport network-transport-tcp test-framework ]; - jailbreak = true; homepage = "http://github.com/haskell-distributed/distributed-process-tests"; description = "Tests and test support tools for distributed-process"; license = stdenv.lib.licenses.bsd3; @@ -63769,8 +64002,8 @@ self: { }: mkDerivation { pname = "dixi"; - version = "0.6.0.4"; - sha256 = "d4e99071e0c2f5b7922dad5a85c02abbbeed27f71e72d091f8a3a00ae8f97418"; + version = "0.6.0.5"; + sha256 = "2702e771c2c2af3157c5fc6b6ae8001a46ece8b2e23a2c6cd96fdfcc2f9f22c5"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -65763,6 +65996,8 @@ self: { pname = "eager-sockets"; version = "0.1"; sha256 = "abbd5f7565685d756de895600b3f977863e56abd2a6dbda9b90a710841e1e881"; + revision = "1"; + editedCabalFile = "2bf99bcdc9b979fbe9394e8b77bd1fa9b713da8e04981939cb0ae41b0b2a1963"; libraryHaskellDepends = [ base bytestring network ]; jailbreak = true; description = "Socket operations with timeouts"; @@ -67050,7 +67285,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "elm-bridge" = callPackage + "elm-bridge_0_1_0_0" = callPackage ({ mkDerivation, base, hspec, template-haskell }: mkDerivation { pname = "elm-bridge"; @@ -67063,9 +67298,10 @@ self: { homepage = "http://github.com/agrafix/elm-bridge"; description = "Derive Elm types from Haskell types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "elm-bridge_0_2_1_0" = callPackage + "elm-bridge" = callPackage ({ mkDerivation, aeson, base, containers, hspec, QuickCheck , template-haskell, text }: @@ -67080,7 +67316,6 @@ self: { homepage = "http://github.com/agrafix/elm-bridge"; description = "Derive Elm types from Haskell types"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "elm-build-lib" = callPackage @@ -67821,6 +68056,28 @@ self: { free monad-loops mwc-random stm stm-delay text transformers unordered-containers vector websockets ]; + jailbreak = true; + 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_1_2_11" = 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 + ]; + jailbreak = true; homepage = "http://github.com/ocharles/engine.io"; description = "A Haskell implementation of Engine.IO"; license = stdenv.lib.licenses.bsd3; @@ -67834,8 +68091,8 @@ self: { }: mkDerivation { pname = "engine-io"; - version = "1.2.11"; - sha256 = "bd57162b4b2233ef3fbe4ce6cba7d562476da59257b1baaa801847d9809e601d"; + version = "1.2.12"; + sha256 = "06361c560976201923c0db9d010a19d059b902859d88eda18865ebedd55fcc4c"; libraryHaskellDepends = [ aeson async attoparsec base base64-bytestring bytestring either free monad-loops mwc-random stm stm-delay text transformers @@ -68272,8 +68529,10 @@ self: { pname = "epoll"; version = "0.2.2"; sha256 = "d7725bc62beaaf7d54d67928847621447ee4cab69aa9f83481e1acb2a8e9e147"; + revision = "1"; + editedCabalFile = "215673c26bb5d38b7655b5b52d6c21d65d228c4ac231606525991a60add70ab8"; libraryHaskellDepends = [ base unix ]; - homepage = "http://github.com/twittner/epoll/"; + homepage = "https://gitlab.com/twittner/epoll"; description = "epoll bindings"; license = "LGPL"; hydraPlatforms = stdenv.lib.platforms.none; @@ -68839,6 +69098,8 @@ self: { pname = "ersatz-toysat"; version = "0.2.1.0"; sha256 = "b83980c6f537ab812ac8605a9fe8c3bb9764bb5ae098e20ef882fd5aa824f7b6"; + revision = "1"; + editedCabalFile = "146f86cb3df790cd26c0ec2f7061027257c7932a64ff8a6725eee5356a887776"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -69469,15 +69730,15 @@ self: { "eventloop" = callPackage ({ mkDerivation, aeson, base, bytestring, concurrent-utilities - , network, stm, suspend, text, timers, websockets + , deepseq, network, stm, suspend, text, timers, websockets }: mkDerivation { pname = "eventloop"; - version = "0.6.0.0"; - sha256 = "2ec1e143de18418e3c031df78965b27710fd6195c19d348f959393d0ea054d6c"; + version = "0.7.0.1"; + sha256 = "4798d3a5ce6c2daf8f11b3f6aa8eed1ae411894da12a278dd7686b4b4c487b1e"; libraryHaskellDepends = [ - aeson base bytestring concurrent-utilities network stm suspend text - timers websockets + aeson base bytestring concurrent-utilities deepseq network stm + suspend text timers websockets ]; jailbreak = true; homepage = "-"; @@ -70441,8 +70702,8 @@ self: { }: mkDerivation { pname = "extensible-effects"; - version = "1.11.0.0"; - sha256 = "e9d240fb2401da90539d48cce0eb29925290845dc591ab2e1d1609ec9fe9c891"; + version = "1.11.0.3"; + sha256 = "ae44bc66608f000a9da20d8ae53c1e2a0ed4c46fa7b9bab2f5d44c0da1c1ebb3"; libraryHaskellDepends = [ base transformers transformers-base type-aligned void ]; @@ -70450,7 +70711,6 @@ self: { base HUnit QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 test-framework-th void ]; - jailbreak = true; homepage = "https://github.com/suhailshergill/extensible-effects"; description = "An Alternative to Monad Transformers"; license = stdenv.lib.licenses.mit; @@ -71382,6 +71642,8 @@ self: { pname = "fay"; version = "0.23.1.12"; sha256 = "3d9c0a64f6d30923e2e45f27c043a7fa4f451c676466c8ca5b69a4121462f727"; + revision = "1"; + editedCabalFile = "4a5a1a7b9f3854292ddbc73ba9d6cdaf5ffbce062bdc015f3d4765b41ea6df1d"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -72366,6 +72628,7 @@ self: { homepage = "http://rel4tion.org/projects/feed-collect/"; description = "Watch RSS/Atom feeds (and do with them whatever you like)"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "feed-crawl" = callPackage @@ -74808,6 +75071,8 @@ self: { pname = "foldl"; version = "1.0.8"; sha256 = "77ff4cfbbbc53d628966a481214bce72548a09a9ea8f1c9ac85c727a820d0fed"; + revision = "1"; + editedCabalFile = "b624e24b4204e67106912efde9ce4d6219814f9bd88885b6e05a606c34e601c2"; libraryHaskellDepends = [ base bytestring containers primitive text transformers vector ]; @@ -74825,6 +75090,8 @@ self: { pname = "foldl"; version = "1.0.9"; sha256 = "66e4d4b3ddce7f10c4147271b375e49aa44946adc5ebe2ee03ca1a6520c9c983"; + revision = "1"; + editedCabalFile = "affa997426895b4ad248bbfdae6aa01d043bca1109f71508d491cec16f571bcb"; libraryHaskellDepends = [ base bytestring containers primitive text transformers vector ]; @@ -74842,6 +75109,8 @@ self: { pname = "foldl"; version = "1.0.10"; sha256 = "38591b038f94921d5c581c2409336fad66f97a5157d29aa648176b888e5df011"; + revision = "1"; + editedCabalFile = "4b17e66a5637a39627fa46cd3898f4225b188bd685491ac8f2a1e3d8510aca41"; libraryHaskellDepends = [ base bytestring containers mwc-random primitive text transformers vector @@ -74860,6 +75129,8 @@ self: { pname = "foldl"; version = "1.0.11"; sha256 = "b9e731d12fad4a515c70202cb9e57d0da7a0c4dd4d1bfee3746a23b764dfea33"; + revision = "1"; + editedCabalFile = "527e91eb4be5fbe35ce0feedb8674cac9d71ae5981723a3515c8a4bff5586132"; libraryHaskellDepends = [ base bytestring containers mwc-random primitive profunctors text transformers vector @@ -74878,6 +75149,8 @@ self: { pname = "foldl"; version = "1.1.1"; sha256 = "ef49feba75c927ab2a6b9afcdbe7730463ed379f1681ae12c15a1608c7a2f807"; + revision = "1"; + editedCabalFile = "641c802c7ad2ba09a68c6c39f7ba5ae2b8cabaa42b32ed8fa1d531981d28344c"; libraryHaskellDepends = [ base bytestring containers mwc-random primitive profunctors text transformers vector @@ -74896,6 +75169,8 @@ self: { pname = "foldl"; version = "1.1.2"; sha256 = "723b62642b0dd95f0fb8e87102552c76755ad18f300c3429b43fa7b56213c17f"; + revision = "1"; + editedCabalFile = "56f70861e4a386e6677b096c8e6770714ffbef0458347dd2871b533855748522"; libraryHaskellDepends = [ base bytestring comonad containers mwc-random primitive profunctors text transformers vector @@ -74914,6 +75189,8 @@ self: { pname = "foldl"; version = "1.1.3"; sha256 = "af81eb42e6530f6f0ba992965c337d89483d755b50c7c94b12325dd793435474"; + revision = "1"; + editedCabalFile = "e41df2422bd8adfd40d113d49bbb7cc00e7aa466ee145e11793af4bab944484f"; libraryHaskellDepends = [ base bytestring comonad containers mwc-random primitive profunctors text transformers vector @@ -74924,22 +75201,6 @@ self: { }) {}; "foldl" = callPackage - ({ mkDerivation, base, bytestring, comonad, containers, mwc-random - , primitive, profunctors, text, transformers, vector - }: - mkDerivation { - pname = "foldl"; - version = "1.1.4"; - sha256 = "6d6473970896924a7de1c4dd5777b9b094c28ac1a33f6c8b774c0bb82d936943"; - libraryHaskellDepends = [ - base bytestring comonad containers mwc-random primitive profunctors - text transformers vector - ]; - description = "Composable, streaming, and efficient left folds"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "foldl_1_1_5" = callPackage ({ mkDerivation, base, bytestring, comonad, containers, mwc-random , primitive, profunctors, text, transformers, vector }: @@ -74953,7 +75214,6 @@ self: { ]; description = "Composable, streaming, and efficient left folds"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "foldl-incremental" = callPackage @@ -76769,6 +77029,7 @@ self: { homepage = "http://www.github.com/ehamberg/fswatcher/"; description = "Watch a file/directory and run a command when it's modified"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ftdi" = callPackage @@ -77295,6 +77556,7 @@ self: { homepage = "http://github.com/joom/fuzzy"; description = "Filters a list based on a fuzzy string search"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fuzzy-timings" = callPackage @@ -78091,6 +78353,21 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "generic-deriving_1_10_0" = callPackage + ({ mkDerivation, base, containers, ghc-prim, template-haskell }: + mkDerivation { + pname = "generic-deriving"; + version = "1.10.0"; + sha256 = "8378c23213efdba77c3ebbe95e679f64a1e57c511475e69d9b31dda8420d7ae4"; + libraryHaskellDepends = [ + base containers ghc-prim template-haskell + ]; + homepage = "https://github.com/dreixel/generic-deriving"; + description = "Generic programming library for generalised deriving"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "generic-lucid-scaffold" = callPackage ({ mkDerivation, base, lucid, text }: mkDerivation { @@ -78281,41 +78558,22 @@ self: { "generics-eot" = callPackage ({ mkDerivation, base, directory, doctest, filepath, hspec - , interpolate, mockery, QuickCheck, shake + , interpolate, markdown-unlit, mockery, QuickCheck, shake }: mkDerivation { pname = "generics-eot"; - version = "0.1"; - sha256 = "f293d60d5c2a4aa3065f23e022fd74cf27d8f255e6e9cd44d75d7a44f3f2ab1a"; - libraryHaskellDepends = [ base ]; + version = "0.2.1"; + sha256 = "14281d07d0197d9b4b16a9db164e7158b0260b9c823421fa9adbce5fb44c3682"; + libraryHaskellDepends = [ base markdown-unlit ]; testHaskellDepends = [ - base directory doctest filepath hspec interpolate mockery - QuickCheck shake + base directory doctest filepath hspec interpolate markdown-unlit + mockery QuickCheck shake ]; homepage = "https://github.com/soenkehahn/generics-eot#readme"; description = "A library for generic programming that aims to be easy to understand"; license = stdenv.lib.licenses.bsd3; }) {}; - "generics-eot_0_2" = callPackage - ({ mkDerivation, base, directory, doctest, filepath, hspec - , interpolate, mockery, QuickCheck, shake - }: - mkDerivation { - pname = "generics-eot"; - version = "0.2"; - sha256 = "732db9692db812b178a7d0bf4b89321c4630722bfe719966023cc9d7fc00820f"; - libraryHaskellDepends = [ base ]; - testHaskellDepends = [ - base directory doctest filepath hspec interpolate mockery - QuickCheck shake - ]; - homepage = "https://github.com/soenkehahn/generics-eot#readme"; - description = "A library for generic programming that aims to be easy to understand"; - license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "generics-sop_0_1_0_3" = callPackage ({ mkDerivation, base, ghc-prim, template-haskell }: mkDerivation { @@ -79127,29 +79385,29 @@ self: { "ghc-imported-from" = callPackage ({ mkDerivation, base, Cabal, containers, directory, filepath, ghc - , ghc-mod, ghc-paths, ghc-syb-utils, hspec, mtl + , ghc-mod, ghc-paths, ghc-syb-utils, hspec, monad-journal, mtl , optparse-applicative, parsec, process, safe, syb, transformers }: mkDerivation { pname = "ghc-imported-from"; - version = "0.2.1.0"; - sha256 = "2c0af9dbfd887e0f32abd2ffa99acf5ce1344da18402e337eb4a39b59488982c"; + version = "0.2.1.1"; + sha256 = "6ef8612bbcc230323fa844310b504a4174706b99ca769bdcb79168f8f69bc74f"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base Cabal containers directory filepath ghc ghc-mod ghc-paths - ghc-syb-utils mtl optparse-applicative parsec process safe syb - transformers + ghc-syb-utils monad-journal mtl optparse-applicative parsec process + safe syb transformers ]; executableHaskellDepends = [ base Cabal containers directory filepath ghc ghc-mod ghc-paths - ghc-syb-utils hspec mtl optparse-applicative parsec process safe - syb transformers + ghc-syb-utils hspec monad-journal mtl optparse-applicative parsec + process safe syb transformers ]; testHaskellDepends = [ base Cabal containers directory filepath ghc ghc-mod ghc-paths - ghc-syb-utils hspec mtl optparse-applicative parsec process safe - syb transformers + ghc-syb-utils hspec monad-journal mtl optparse-applicative parsec + process safe syb transformers ]; homepage = "https://github.com/carlohamalainen/ghc-imported-from"; description = "Find the Haddock documentation for a symbol"; @@ -80802,6 +81060,72 @@ self: { inherit (pkgs) perl; inherit (pkgs) rsync; inherit (pkgs) wget; inherit (pkgs) which;}; + "git-annex_6_20160126" = callPackage + ({ mkDerivation, aeson, async, aws, base, blaze-builder + , bloomfilter, bup, byteable, bytestring, case-insensitive + , clientsession, concurrent-output, conduit, conduit-extra + , containers, crypto-api, cryptonite, curl, data-default, DAV, dbus + , directory, dlist, dns, edit-distance, esqueleto, exceptions + , fdo-notify, feed, filepath, git, gnupg, gnutls, hinotify + , hslogger, http-client, http-conduit, http-types, IfElse, json + , lsof, MissingH, monad-control, monad-logger, mtl, network + , network-info, network-multicast, network-protocol-xmpp + , network-uri, old-locale, openssh, optparse-applicative + , path-pieces, perl, persistent, persistent-sqlite + , persistent-template, process, QuickCheck, random, regex-tdfa + , resourcet, rsync, SafeSemaphore, sandi, securemem, shakespeare + , stm, tasty, tasty-hunit, tasty-quickcheck, tasty-rerun + , template-haskell, text, time, torrent, transformers, unix + , unix-compat, utf8-string, uuid, wai, wai-extra, warp, warp-tls + , wget, which, xml-types, yesod, yesod-core, yesod-default + , yesod-form, yesod-static + }: + mkDerivation { + pname = "git-annex"; + version = "6.20160126"; + sha256 = "dc59f670a3d0bdb90db8fc6cadba8003708219bb0dc3d56867a9246d825c0d11"; + configureFlags = [ + "-fassistant" "-fcryptonite" "-fdbus" "-fdesktopnotify" "-fdns" + "-ffeed" "-finotify" "-fpairing" "-fproduction" "-fquvi" "-fs3" + "-ftahoe" "-ftdfa" "-ftestsuite" "-ftorrentparser" "-fwebapp" + "-fwebapp-secure" "-fwebdav" "-fxmpp" + ]; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + aeson async aws base blaze-builder bloomfilter byteable bytestring + case-insensitive clientsession concurrent-output conduit + conduit-extra containers crypto-api cryptonite data-default DAV + dbus directory dlist dns edit-distance esqueleto exceptions + fdo-notify feed filepath gnutls hinotify hslogger http-client + http-conduit http-types IfElse json MissingH monad-control + monad-logger mtl network network-info network-multicast + network-protocol-xmpp network-uri old-locale optparse-applicative + path-pieces persistent persistent-sqlite persistent-template + process QuickCheck random regex-tdfa resourcet SafeSemaphore sandi + securemem shakespeare stm tasty tasty-hunit tasty-quickcheck + tasty-rerun template-haskell text time torrent transformers unix + unix-compat utf8-string uuid wai wai-extra warp warp-tls xml-types + yesod yesod-core yesod-default yesod-form yesod-static + ]; + executableSystemDepends = [ + bup curl git gnupg lsof openssh perl rsync wget which + ]; + preConfigure = "export HOME=$TEMPDIR; patchShebangs ."; + postBuild = "ln -sf dist/build/git-annex/git-annex git-annex"; + installPhase = "make PREFIX=$out CABAL=./Setup BUILDER=./Setup install"; + checkPhase = "./git-annex test"; + enableSharedExecutables = false; + homepage = "http://git-annex.branchable.com/"; + description = "manage files with git, without checking their contents into git"; + license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; + maintainers = with stdenv.lib.maintainers; [ simons ]; + }) {inherit (pkgs) bup; inherit (pkgs) curl; inherit (pkgs) git; + inherit (pkgs) gnupg; inherit (pkgs) lsof; inherit (pkgs) openssh; + inherit (pkgs) perl; inherit (pkgs) rsync; inherit (pkgs) wget; + inherit (pkgs) which;}; + "git-checklist" = callPackage ({ mkDerivation, base, directory, filepath, optparse-applicative , parsec, pretty, process @@ -81057,8 +81381,8 @@ self: { }: mkDerivation { pname = "gitHUD"; - version = "1.3.0"; - sha256 = "b186502251e38f439a907eb54284ebb453b63003d91ec83c0c3b455f0da48568"; + version = "1.3.1"; + sha256 = "d770a57be1e746ed39e1c34ae6464ac4fd66599503a8b4e92f1b8a69cf986ccb"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base mtl parsec process unix ]; @@ -81112,30 +81436,32 @@ self: { }) {}; "github" = callPackage - ({ mkDerivation, aeson, attoparsec, base, base16-bytestring - , byteable, bytestring, case-insensitive, conduit, containers - , cryptohash, data-default, failure, hashable, hspec, HTTP - , http-conduit, http-types, network, old-locale, text, time - , unordered-containers, vector + ({ mkDerivation, aeson, aeson-compat, attoparsec, base, base-compat + , base16-bytestring, binary, binary-orphans, byteable, bytestring + , containers, cryptohash, deepseq, deepseq-generics, exceptions + , file-embed, hashable, hspec, http-client, http-client-tls + , http-link-header, http-types, iso8601-time, mtl, network-uri + , semigroups, text, time, transformers, transformers-compat + , unordered-containers, vector, vector-instances }: mkDerivation { pname = "github"; - version = "0.13.2"; - sha256 = "ffa08979a92ad3065982ede7e461939540ebe1a856baa15052b1ab3f219707c4"; + version = "0.14.0"; + sha256 = "33309bc81e33238b0cff333098a754aca625458f69c88778d76e62e2287e3685"; libraryHaskellDepends = [ - aeson attoparsec base base16-bytestring byteable bytestring - case-insensitive conduit containers cryptohash data-default failure - hashable HTTP http-conduit http-types network old-locale text time - unordered-containers vector + aeson aeson-compat attoparsec base base-compat base16-bytestring + binary binary-orphans byteable bytestring containers cryptohash + deepseq deepseq-generics exceptions hashable http-client + http-client-tls http-link-header http-types iso8601-time mtl + network-uri semigroups text time transformers transformers-compat + unordered-containers vector vector-instances ]; testHaskellDepends = [ - aeson attoparsec base base16-bytestring byteable bytestring - case-insensitive conduit containers cryptohash data-default failure - hashable hspec HTTP http-conduit http-types network old-locale text - time unordered-containers vector + aeson-compat base base-compat file-embed hspec unordered-containers + vector ]; - homepage = "https://github.com/jwiegley/github"; - description = "Access to the Github API, v3"; + homepage = "https://github.com/phadej/github"; + description = "Access to the GitHub API, v3"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -84204,6 +84530,144 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "gore-and-ash" = callPackage + ({ mkDerivation, base, containers, deepseq, exceptions, hashable + , linear, mtl, parallel, profunctors, random, semigroups, time + , transformers, unordered-containers + }: + mkDerivation { + pname = "gore-and-ash"; + version = "1.1.0.1"; + sha256 = "3fc41721e92097558f4247a5b195bac9d9d9bd9313b2d92f402d3535aa90d149"; + libraryHaskellDepends = [ + base containers deepseq exceptions hashable linear mtl parallel + profunctors random semigroups time transformers + unordered-containers + ]; + homepage = "https://github.com/Teaspot-Studio/gore-and-ash"; + description = "Core of FRP game engine called Gore&Ash"; + license = stdenv.lib.licenses.bsd3; + }) {}; + + "gore-and-ash-actor" = callPackage + ({ mkDerivation, base, containers, deepseq, exceptions + , gore-and-ash, hashable, mtl, unordered-containers + }: + mkDerivation { + pname = "gore-and-ash-actor"; + version = "1.1.0.0"; + sha256 = "d7d5d9799295f5811f01be4441da968e80ad1da3e00735726235fac8581729aa"; + libraryHaskellDepends = [ + base containers deepseq exceptions gore-and-ash hashable mtl + unordered-containers + ]; + homepage = "https://github.com/Teaspot-Studio/gore-and-ash-actor"; + description = "Gore&Ash engine extension that implements actor style of programming"; + license = stdenv.lib.licenses.bsd3; + }) {}; + + "gore-and-ash-demo" = callPackage + ({ mkDerivation, base, bytestring, cereal, containers, deepseq + , exception-transformers, exceptions, GLFW-b, gore-and-ash + , gore-and-ash-actor, gore-and-ash-logging, gore-and-ash-network + , gore-and-ash-sdl, gore-and-ash-sync, hashable, lens, linear + , network, OpenGL, sdl2, text, text-show, time, transformers + , unordered-containers, vector + }: + mkDerivation { + pname = "gore-and-ash-demo"; + version = "1.0.0.0"; + sha256 = "a9199fc3ad293bff3269494b1a7b96a8f175dd8defd03797ee0b7746f97a595a"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + base bytestring cereal containers deepseq exception-transformers + exceptions GLFW-b gore-and-ash gore-and-ash-actor + gore-and-ash-logging gore-and-ash-network gore-and-ash-sdl + gore-and-ash-sync hashable lens linear network OpenGL sdl2 text + text-show time transformers unordered-containers vector + ]; + homepage = "https://github.com/Teaspot-Studio/gore-and-ash-demo"; + description = "Demonstration game for Gore&Ash game engine"; + license = stdenv.lib.licenses.bsd3; + }) {}; + + "gore-and-ash-logging" = callPackage + ({ mkDerivation, base, containers, deepseq, exceptions + , gore-and-ash, mtl, text, text-show, transformers + }: + mkDerivation { + pname = "gore-and-ash-logging"; + version = "1.1.0.0"; + sha256 = "b23ca7f32dc44894519cf62c1107876da448db703c1254e573f394c31bc7d678"; + libraryHaskellDepends = [ + base containers deepseq exceptions gore-and-ash mtl text text-show + transformers + ]; + homepage = "https://github.com/Teaspot-Studio/gore-and-ash-logging"; + description = "Core module for gore-and-ash with logging utilities"; + license = stdenv.lib.licenses.bsd3; + }) {}; + + "gore-and-ash-network" = callPackage + ({ mkDerivation, base, bytestring, containers, deepseq, exceptions + , extra, ghc-prim, gmp, gore-and-ash, gore-and-ash-logging + , hashable, integer-gmp, mtl, network, text, text-show + , typesafe-endian, unordered-containers + }: + mkDerivation { + pname = "gore-and-ash-network"; + version = "1.1.0.1"; + sha256 = "ef61dd238dde6ba45fb437db60c3d93d5626351d27dbe299d712b9f241e80d69"; + libraryHaskellDepends = [ + base bytestring containers deepseq exceptions extra ghc-prim + gore-and-ash gore-and-ash-logging hashable integer-gmp mtl network + text text-show typesafe-endian unordered-containers + ]; + librarySystemDepends = [ gmp ]; + homepage = "https://github.com/Teaspot-Studio/gore-and-ash-network"; + description = "Core module for Gore&Ash engine with low level network API"; + license = stdenv.lib.licenses.bsd3; + }) {inherit (pkgs) gmp;}; + + "gore-and-ash-sdl" = callPackage + ({ mkDerivation, base, containers, deepseq, exceptions + , gore-and-ash, lens, linear, mtl, sdl2, text, transformers + , unordered-containers + }: + mkDerivation { + pname = "gore-and-ash-sdl"; + version = "1.1.0.1"; + sha256 = "44ab31fc793e2ca7416b920f94c54a08dcf9304e1cc84779c123b3a773674940"; + libraryHaskellDepends = [ + base containers deepseq exceptions gore-and-ash lens linear mtl + sdl2 text transformers unordered-containers + ]; + homepage = "git@github.com:Teaspot-Studio/gore-and-ash-sdl.git"; + description = "Gore&Ash core module for integration with SDL library"; + license = stdenv.lib.licenses.bsd3; + }) {}; + + "gore-and-ash-sync" = callPackage + ({ mkDerivation, base, bytestring, cereal, containers, deepseq + , exceptions, gore-and-ash, gore-and-ash-actor + , gore-and-ash-logging, gore-and-ash-network, hashable, mtl, text + , unordered-containers + }: + mkDerivation { + pname = "gore-and-ash-sync"; + version = "1.1.0.0"; + sha256 = "41aea8a5d021c55c130364f0726be9e4fda7a99c5e777c8b2cdca33c1b901ea2"; + libraryHaskellDepends = [ + base bytestring cereal containers deepseq exceptions gore-and-ash + gore-and-ash-actor gore-and-ash-logging gore-and-ash-network + hashable mtl text unordered-containers + ]; + homepage = "https://github.com/Teaspot-Studio/gore-and-ash-sync"; + description = "Gore&Ash module for high level network synchronization"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "gpah" = callPackage ({ mkDerivation, base, bytestring, Cabal, cmdargs, containers, csv , deepseq, directory, filepath, haskell-src-exts, hint, HTTP @@ -87049,8 +87513,8 @@ self: { }: mkDerivation { pname = "hOpenPGP"; - version = "2.4"; - sha256 = "7c5ce3a314ac0172bc03e6ddca41a8508ab22e1c89ff1458642d56a942974386"; + version = "2.4.1"; + sha256 = "c4a8b3a42381372cb856e2aaf558af7dfefc905ccfc6ea2b06ded2688c2c5dce"; libraryHaskellDepends = [ aeson attoparsec base base64-bytestring bifunctors binary binary-conduit byteable bytestring bzlib conduit conduit-extra @@ -87538,11 +88002,13 @@ self: { pname = "hack-handler-epoll"; version = "0.1.3"; sha256 = "02dd1477efcc58da6f790cccb4b0e928d209c13b19723a8a1f89a19ed0e18c60"; + revision = "1"; + editedCabalFile = "e237061a017229aaa9f0afcfed7c3d331b95a992ed71124a0a3131e96887f139"; libraryHaskellDepends = [ base containers data-default epoll failure hack HTTP network unix utf8-string ]; - homepage = "http://github.com/twittner/hack-handler-epoll/"; + homepage = "https://gitlab.com/twittner/hack-handler-epoll"; description = "hack handler implementation using epoll"; license = "LGPL"; hydraPlatforms = stdenv.lib.platforms.none; @@ -88059,6 +88525,7 @@ self: { libraryHaskellDepends = [ base bytestring hackage-security HTTP mtl network network-uri zlib ]; + jailbreak = true; homepage = "https://github.com/well-typed/hackage-security"; description = "Hackage security bindings against the HTTP library"; license = stdenv.lib.licenses.bsd3; @@ -89089,11 +89556,12 @@ self: { "hakyll_4_7_3_1" = callPackage ({ mkDerivation, base, binary, blaze-html, blaze-markup, bytestring , cmdargs, containers, cryptohash, data-default, deepseq, directory - , filepath, fsnotify, 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 + , 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"; @@ -89104,20 +89572,22 @@ self: { libraryHaskellDepends = [ base binary blaze-html blaze-markup bytestring cmdargs containers cryptohash data-default deepseq directory filepath fsnotify - 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 + 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 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 + 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 ]; + jailbreak = true; doCheck = false; homepage = "http://jaspervdj.be/hakyll"; description = "A static website compiler library"; @@ -89128,11 +89598,12 @@ self: { "hakyll_4_7_4_0" = callPackage ({ mkDerivation, base, binary, blaze-html, blaze-markup, bytestring , cmdargs, containers, cryptohash, data-default, deepseq, directory - , filepath, fsnotify, 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 + , 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"; @@ -89143,20 +89614,22 @@ self: { libraryHaskellDepends = [ base binary blaze-html blaze-markup bytestring cmdargs containers cryptohash data-default deepseq directory filepath fsnotify - 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 + 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 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 + 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 ]; + jailbreak = true; doCheck = false; homepage = "http://jaspervdj.be/hakyll"; description = "A static website compiler library"; @@ -89198,6 +89671,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"; @@ -90861,6 +91335,7 @@ self: { homepage = "https://github.com/markus-git/hardware-edsl"; description = "Deep embedding of hardware descriptions with code generation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hark" = callPackage @@ -94351,8 +94826,8 @@ self: { }: mkDerivation { pname = "hasql"; - version = "0.19.3.1"; - sha256 = "b31e66b2baecbc238e24e0914897bfbb6261124da17efe18e821eb52ec18d6e3"; + version = "0.19.3.3"; + sha256 = "cfface6cef70a7841c233d445610f1bb175de55ea63c25dee7de2942417cd87e"; libraryHaskellDepends = [ aeson attoparsec base base-prelude bytestring contravariant contravariant-extras data-default-class dlist either hashable @@ -94372,38 +94847,6 @@ self: { license = stdenv.lib.licenses.mit; }) {}; - "hasql_0_19_3_2" = callPackage - ({ mkDerivation, aeson, attoparsec, base, base-prelude, bytestring - , contravariant, contravariant-extras, data-default-class, dlist - , either, hashable, hashtables, loch-th, mtl, placeholders - , postgresql-binary, postgresql-libpq, profunctors, QuickCheck - , quickcheck-instances, scientific, tasty, tasty-hunit - , tasty-quickcheck, tasty-smallcheck, text, time, transformers - , uuid, vector - }: - mkDerivation { - pname = "hasql"; - version = "0.19.3.2"; - sha256 = "eabeb40cea7f430add6ed3b25bf3b079427b76e5f5f2a039c5709026ef253949"; - libraryHaskellDepends = [ - aeson attoparsec base base-prelude bytestring contravariant - contravariant-extras data-default-class dlist either hashable - hashtables loch-th mtl placeholders postgresql-binary - postgresql-libpq profunctors scientific text time transformers uuid - vector - ]; - testHaskellDepends = [ - base base-prelude bytestring contravariant contravariant-extras - data-default-class dlist either hashable profunctors QuickCheck - quickcheck-instances scientific tasty tasty-hunit tasty-quickcheck - tasty-smallcheck text time transformers uuid vector - ]; - homepage = "https://github.com/nikita-volkov/hasql"; - description = "A very efficient PostgreSQL driver and a flexible mapping API"; - license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "hasql-backend_0_2_1" = callPackage ({ mkDerivation, base, base-prelude, bytestring, list-t, text , vector @@ -97283,8 +97726,8 @@ self: { ({ mkDerivation, base, doctest, time }: mkDerivation { pname = "herf-time"; - version = "0.2.0"; - sha256 = "7c1c4762af5bbd493841f291855e7de5ab4b12a5260e8fd95d1f6c9e5a012d7a"; + version = "0.2.2"; + sha256 = "9554f70b4399e11d8ea1a49c03ec80d27e471e1a94bbb1542ea5b85aa821d68e"; libraryHaskellDepends = [ base time ]; testHaskellDepends = [ base doctest ]; description = "haskell time manipulation in a 'kerf like' style"; @@ -97337,14 +97780,14 @@ self: { ({ mkDerivation, base, random, text }: mkDerivation { pname = "hero-club-five-tenets"; - version = "0.3.0.1"; - sha256 = "4d89022b55d139afd274318238706ef4c12fbcd22f3191af9008da4b78eb11c6"; + version = "0.3.0.3"; + sha256 = "b706afb5213aa5be028e27193e2df10e8f5de7ad1952f41bb16796949fbada3b"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base random text ]; executableHaskellDepends = [ base random text ]; - homepage = "http://github.com/i-amd3/hero-club-five-tenets"; - description = "Remember the five tenets of hero club"; + homepage = "https://github.com/i-amd3/hero-club-five-tenets"; + description = "Think back of the five tenets of hero club"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -98250,6 +98693,7 @@ self: { HUnit optparse-applicative parsec process silently split template temporary text time ]; + jailbreak = true; homepage = "https://github.com/fujimura/hi"; description = "Generate scaffold for cabal project"; license = stdenv.lib.licenses.bsd3; @@ -102968,7 +103412,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "hopenpgp-tools" = callPackage + "hopenpgp-tools_0_16_3" = callPackage ({ mkDerivation, aeson, alex, ansi-wl-pprint, array, attoparsec , base, base16-bytestring, binary, binary-conduit, bytestring , conduit, conduit-extra, containers, crypto-pubkey, cryptohash @@ -102998,6 +103442,37 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "hopenpgp-tools" = callPackage + ({ mkDerivation, aeson, alex, ansi-wl-pprint, array, attoparsec + , base, base16-bytestring, binary, binary-conduit, bytestring + , conduit, conduit-extra, containers, crypto-pubkey, cryptohash + , directory, errors, fgl, graphviz, happy, hOpenPGP, ixset-typed + , lens, monad-loops, openpgp-asciiarmor, optparse-applicative + , resourcet, text, time, time-locale-compat, transformers + , unordered-containers, wl-pprint-extras, wl-pprint-terminfo, yaml + }: + mkDerivation { + pname = "hopenpgp-tools"; + version = "0.17"; + sha256 = "051b0609099646057981eda5dc4cc8073fa9cf070ef814ca50b5a39fd09d2fe6"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + aeson ansi-wl-pprint array attoparsec base base16-bytestring binary + binary-conduit bytestring conduit conduit-extra containers + crypto-pubkey cryptohash directory errors fgl graphviz hOpenPGP + ixset-typed lens monad-loops openpgp-asciiarmor + optparse-applicative resourcet text time time-locale-compat + transformers unordered-containers wl-pprint-extras + wl-pprint-terminfo yaml + ]; + executableToolDepends = [ alex happy ]; + homepage = "http://floss.scru.org/hopenpgp-tools"; + description = "hOpenPGP-based command-line tools"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "hopenssl" = callPackage ({ mkDerivation, base, bytestring, mtl, openssl }: mkDerivation { @@ -105501,6 +105976,22 @@ self: { license = "GPL"; }) {}; + "hscolour_1_24" = callPackage + ({ mkDerivation, base, containers }: + mkDerivation { + pname = "hscolour"; + version = "1.24"; + sha256 = "54bc45137ba06bd876cf98424f974e325e9b236bd5c18d1c5b2ea0351b1d9332"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base containers ]; + executableHaskellDepends = [ base containers ]; + homepage = "http://code.haskell.org/~malcolm/hscolour/"; + description = "Colourise Haskell code"; + license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "hscope" = callPackage ({ mkDerivation, base, bytestring, cereal, cpphs, deepseq , directory, haskell-src-exts, mtl, process, pure-cdb, test-simple @@ -105625,21 +106116,21 @@ self: { }) {}; "hsdev" = callPackage - ({ mkDerivation, aeson, aeson-pretty, array, async, attoparsec - , base, bin-package-db, bytestring, Cabal, containers, cpphs - , data-default, deepseq, directory, exceptions, filepath, fsnotify - , ghc, ghc-mod, ghc-paths, ghc-syb-utils, haddock-api - , haskell-src-exts, hdocs, hformat, hlint, HTTP, lens, lifted-base - , monad-control, monad-loops, MonadCatchIO-transformers, mtl - , network, optparse-applicative, process, regex-pcre-builtin - , scientific, simple-log, syb, template-haskell, text, text-region - , time, transformers, transformers-base, uniplate, unix - , unordered-containers, vector + ({ mkDerivation, aeson, aeson-lens, aeson-pretty, array, async + , attoparsec, base, bin-package-db, bytestring, Cabal, containers + , cpphs, data-default, deepseq, directory, exceptions, filepath + , fsnotify, ghc, ghc-mod, ghc-paths, ghc-syb-utils, haddock-api + , haskell-src-exts, hdocs, hformat, hlint, hspec, HTTP, lens + , lifted-base, monad-control, monad-loops + , MonadCatchIO-transformers, mtl, network, optparse-applicative + , process, regex-pcre-builtin, scientific, simple-log, syb + , template-haskell, text, text-region, time, transformers + , transformers-base, uniplate, unix, unordered-containers, vector }: mkDerivation { pname = "hsdev"; - version = "0.1.5.2"; - sha256 = "c60c0ff6283a3b3a043f63598440fe9a577409037bb252481171d1ce839df86f"; + version = "0.1.5.4"; + sha256 = "77f92b6fbcf70904e51c843262ab2b40d3cd2b463d57f8583463b4414e3c42b1"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -105659,7 +106150,8 @@ self: { unordered-containers vector ]; testHaskellDepends = [ - async base containers data-default deepseq hformat lens mtl text + aeson aeson-lens async base containers data-default deepseq hformat + hspec lens mtl text ]; jailbreak = true; homepage = "https://github.com/mvoidex/hsdev"; @@ -107443,6 +107935,19 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "hspec-megaparsec" = callPackage + ({ mkDerivation, base, hspec, hspec-expectations, megaparsec }: + mkDerivation { + pname = "hspec-megaparsec"; + version = "0.1.0"; + sha256 = "8fa6c28728fe8f9df354d81dccf3395160c74b28b0c9be9dcfc81f91fc331cfa"; + libraryHaskellDepends = [ base hspec-expectations megaparsec ]; + testHaskellDepends = [ base hspec hspec-expectations megaparsec ]; + homepage = "https://github.com/mrkkrp/hspec-megaparsec"; + description = "Utility functions for testing Megaparsec parsers with Hspec"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "hspec-meta_2_0_0" = callPackage ({ mkDerivation, ansi-terminal, async, base, deepseq, directory , filepath, hspec-expectations, HUnit, QuickCheck, quickcheck-io @@ -110153,6 +110658,8 @@ self: { pname = "http-conduit"; version = "2.1.5"; sha256 = "0300ec74e16799b2eec9d9a3402aaead9beaae1a2ef734e92ceac0018d55626e"; + revision = "1"; + editedCabalFile = "0f535cbb34d4a3614910c50c148e7ff93ebfa2b51976844e43e7c039b9cced65"; libraryHaskellDepends = [ base bytestring conduit http-client http-client-tls http-types lifted-base monad-control mtl resourcet transformers @@ -110183,6 +110690,8 @@ self: { pname = "http-conduit"; version = "2.1.5.1"; sha256 = "821b4891d236c190ee8853f4aa273e46a521a04402bee0bec218a630c040f7e6"; + revision = "1"; + editedCabalFile = "cdb1774981302f416fe1c9fc31e1a66e0ee888bbd3ea714911380650e8820810"; libraryHaskellDepends = [ base bytestring conduit http-client http-client-tls http-types lifted-base monad-control mtl resourcet transformers @@ -110213,6 +110722,8 @@ self: { pname = "http-conduit"; version = "2.1.7.1"; sha256 = "a674bcdede3336bf7cd85ba58763d9267d67adcfa3e95ef987288a131ad78a95"; + revision = "1"; + editedCabalFile = "ac4bbb931c8c5349bb56954062e4b12b51e769784deb49d91e75e8cda0b97d09"; libraryHaskellDepends = [ base bytestring conduit http-client http-client-tls http-types lifted-base monad-control mtl resourcet transformers @@ -110243,6 +110754,8 @@ self: { pname = "http-conduit"; version = "2.1.7.2"; sha256 = "ccd5d034d9c1f185ccf600e7f6d6153df793218233683ba073bab62d5449dc46"; + revision = "1"; + editedCabalFile = "c8c8877562dbf78bd7329907b9e9bb594778ecf0bbd8eb50fda80d82205503ce"; libraryHaskellDepends = [ base bytestring conduit http-client http-client-tls http-types lifted-base monad-control mtl resourcet transformers @@ -112926,6 +113439,24 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "hzaif" = callPackage + ({ mkDerivation, aeson, base, bytestring, http-conduit, text }: + mkDerivation { + pname = "hzaif"; + version = "0.1.0.0"; + sha256 = "1d600bf4940412059c0d3916573fd2042c3695d627993fb1277b38e241fa9a55"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson base bytestring http-conduit text + ]; + executableHaskellDepends = [ base ]; + testHaskellDepends = [ base ]; + homepage = "http://github.com/i-amd3/hzaif"; + description = "This package is Zaif Exchange Api wrapper"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "hzk" = callPackage ({ mkDerivation, base, bytestring, resource-pool, tasty , tasty-hunit, time, zookeeper_mt @@ -113597,6 +114128,7 @@ self: { mtl pretty-show pureMD5 tagged template-haskell temporary text transformers unix ]; + jailbreak = true; description = "Shared library used be ide-backend and ide-backend-server"; license = stdenv.lib.licenses.mit; hydraPlatforms = stdenv.lib.platforms.none; @@ -113618,6 +114150,7 @@ self: { monad-logger mtl pretty-show pureMD5 tagged template-haskell temporary text transformers unix ]; + jailbreak = true; description = "Shared library used be ide-backend and ide-backend-server"; license = stdenv.lib.licenses.mit; hydraPlatforms = stdenv.lib.platforms.none; @@ -113641,6 +114174,7 @@ self: { monad-logger mtl pretty-show pureMD5 tagged template-haskell temporary text transformers unix ]; + jailbreak = true; description = "Shared library used be ide-backend and ide-backend-server"; license = stdenv.lib.licenses.mit; hydraPlatforms = stdenv.lib.platforms.none; @@ -113908,6 +114442,7 @@ self: { executableHaskellDepends = [ base directory filepath haskeline transformers ]; + jailbreak = true; homepage = "http://www.idris-lang.org/"; description = "Functional Programming Language with Dependent Types"; license = stdenv.lib.licenses.bsd3; @@ -114398,8 +114933,8 @@ self: { }: mkDerivation { pname = "ihaskell-inline-r"; - version = "0.1.0.0"; - sha256 = "d2db68091c07fa021dc9bde2468c0cbff950198481476f8e269e34f6ccc000a5"; + version = "0.1.1.0"; + sha256 = "e6584ad3c1140ebbcf26c37ae668b00c8b033574f380b11f486c69f1eb58665a"; libraryHaskellDepends = [ base base64-bytestring blaze-html bytestring filepath ihaskell ihaskell-blaze inline-r template-haskell temporary @@ -114582,8 +115117,8 @@ self: { }: mkDerivation { pname = "imagemagick"; - version = "0.0.4"; - sha256 = "0faa50be5db638cdcd51c0e35fd418041204eff0173547a2d076995fa163b82f"; + version = "0.0.4.1"; + sha256 = "a395fa54e4aa3edca9961f062345247e925e841206c1826e58b31e255062c6ea"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -115043,6 +115578,7 @@ self: { homepage = "https://github.com/blamario/incremental-parser"; description = "Generic parser library capable of providing partial results from partial input"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "incremental-sat-solver" = callPackage @@ -115655,31 +116191,32 @@ self: { }) {}; "inline-r" = callPackage - ({ mkDerivation, aeson, base, bytestring, c2hs, data-default-class - , deepseq, directory, exceptions, filepath, ieee754, mtl, pretty - , primitive, process, quickcheck-assertions, R, setenv, silently - , singletons, strict, tasty, tasty-golden, tasty-hunit + ({ mkDerivation, aeson, base, bytestring, c2hs, containers + , data-default-class, deepseq, directory, exceptions, filepath + , ieee754, mtl, pretty, primitive, process, quickcheck-assertions + , R, reflection, setenv, silently, singletons, strict, tasty + , tasty-expected-failure, tasty-golden, tasty-hunit , tasty-quickcheck, template-haskell, temporary, text, th-lift , th-orphans, transformers, unix, vector }: mkDerivation { pname = "inline-r"; - version = "0.7.3.0"; - sha256 = "4de9508426ad48159502d7e2b3c241367643c8a2645f62b61d896e7b7535e329"; + version = "0.8.0.1"; + sha256 = "4ce2363046cb3173e00e1f60fe666e539d88ab61a4a3d5eb06d550dba0f41e61"; libraryHaskellDepends = [ - aeson base bytestring data-default-class deepseq exceptions mtl - pretty primitive process setenv singletons template-haskell text - th-lift th-orphans transformers unix vector + aeson base bytestring containers data-default-class deepseq + exceptions mtl pretty primitive process reflection setenv + singletons template-haskell text th-lift th-orphans transformers + unix vector ]; libraryPkgconfigDepends = [ R ]; libraryToolDepends = [ c2hs ]; testHaskellDepends = [ base bytestring directory filepath ieee754 mtl process - quickcheck-assertions silently singletons strict tasty tasty-golden - tasty-hunit tasty-quickcheck template-haskell temporary text unix - vector + quickcheck-assertions silently singletons strict tasty + tasty-expected-failure tasty-golden tasty-hunit tasty-quickcheck + template-haskell temporary text unix vector ]; - jailbreak = true; description = "Seamlessly call R from Haskell and vice versa. No FFI required."; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -117952,10 +118489,8 @@ self: { ({ mkDerivation, base, Cabal }: mkDerivation { pname = "jailbreak-cabal"; - version = "1.3"; - sha256 = "a2c36f5a4c69e8a1afdf92e0ebd4007f045f9509686d48d61d991cbcbe428ac4"; - revision = "2"; - editedCabalFile = "eb10d8166cc3a40e8d731ab1fba7d37ef57d155d6122c7234297ddbf776ec28a"; + version = "1.3.1"; + sha256 = "610d8dbd04281eee3d5da05c9eef45bfd1a1ddca20dfe54f283e15ddf6d5c235"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ base Cabal ]; @@ -121209,8 +121744,8 @@ self: { }: mkDerivation { pname = "kicad-data"; - version = "0.1.0.0"; - sha256 = "0122f788610316c0dbb1be46796191c68ccf97b447897f8afdd31c2e83f86f09"; + version = "0.2.0.0"; + sha256 = "436e0187e8df0a0aae2ba5827c0b607334237f9719475ea1fad626f9aea55e06"; libraryHaskellDepends = [ base ieee754 lens-family parsec parsec-numbers pretty-compact ]; @@ -122431,6 +122966,7 @@ self: { testHaskellDepends = [ base hspec QuickCheck quickcheck-text text ]; + jailbreak = true; homepage = "http://github.com/NorfairKing/lambdatex"; description = "Type-Safe LaTeX EDSL"; license = "GPL"; @@ -123854,6 +124390,7 @@ self: { base hakyll latex-formulae-image latex-formulae-pandoc lrucache pandoc-types ]; + jailbreak = true; homepage = "https://github.com/liamoc/latex-formulae#readme"; description = "Use actual LaTeX to render formulae inside Hakyll pages"; license = stdenv.lib.licenses.bsd3; @@ -123930,6 +124467,7 @@ self: { executableHaskellDepends = [ base latex-formulae-image pandoc-types ]; + jailbreak = true; homepage = "http://github.com/liamoc/latex-formulae#readme"; description = "Render LaTeX formulae in pandoc documents to images with an actual LaTeX installation"; license = stdenv.lib.licenses.bsd3; @@ -125120,8 +125658,8 @@ self: { }: mkDerivation { pname = "lentil"; - version = "0.1.8.0"; - sha256 = "2d7a645f25bd98f64e834fa0fe6b721730483efff395343ccd03814ad540435a"; + version = "0.1.9.0"; + sha256 = "661932f5ee624a25f2a343accc88be8442a584938be891b842c1c165b2afa80e"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -125132,7 +125670,6 @@ self: { ansi-wl-pprint base csv directory filemanip filepath hspec natural-sort optparse-applicative parsec regex-tdfa ]; - jailbreak = true; homepage = "http://www.ariis.it/static/articles/lentil/page.html"; description = "frugal issue tracker"; license = stdenv.lib.licenses.gpl3; @@ -128857,6 +129394,7 @@ self: { async base exceptions free monad-control mtl stm stm-delay text time transformers transformers-base wl-pprint-text ]; + jailbreak = true; homepage = "https://github.com/ocharles/logging-effect"; description = "A mtl-style monad transformer for general purpose & compositional logging"; license = stdenv.lib.licenses.bsd3; @@ -128916,8 +129454,8 @@ self: { }: mkDerivation { pname = "logic-TPTP"; - version = "0.4.3.0"; - sha256 = "fb42d26b521ccbad897271061e3df5ae1977051740d259757efcde2892b55f42"; + version = "0.4.4.0"; + sha256 = "5aac97226f53f2be61c1aeb58e9fdd4b3f971aa74af10904944384fa849cbd27"; libraryHaskellDepends = [ ansi-wl-pprint array base containers mtl pointed QuickCheck syb transformers transformers-compat @@ -129384,6 +129922,7 @@ self: { ]; description = "SVG Backend for lp-diagrams"; license = stdenv.lib.licenses.agpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lrucache" = callPackage @@ -131642,6 +132181,22 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "mappy" = callPackage + ({ mkDerivation, base, containers, hspec, parsec, QuickCheck }: + mkDerivation { + pname = "mappy"; + version = "0.1.0.0"; + sha256 = "5164ba7bc9e920252e00e0e01357b929f16795bf7f032e122c8ddaf85e1e038a"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base containers parsec ]; + executableHaskellDepends = [ base parsec ]; + testHaskellDepends = [ base containers hspec parsec QuickCheck ]; + homepage = "http://github.com/githubuser/mappy#readme"; + description = "A functional programming language focused around maps"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "marionetta" = callPackage ({ mkDerivation, base, containers, gloss, mtl, splines, vector , vector-space @@ -133270,6 +133825,7 @@ self: { libraryHaskellDepends = [ base bytestring HTTP http-conduit network ]; + jailbreak = true; homepage = "http://github.com/kaiko/messente-haskell"; description = "Messente SMS Gateway"; license = stdenv.lib.licenses.mit; @@ -133745,8 +134301,8 @@ self: { }: mkDerivation { pname = "microlens-mtl"; - version = "0.1.6.1"; - sha256 = "af2a9763a35ee85bb27a9ff14d7fe1f653407a96a35835f9d182cdfd532ef0c3"; + version = "0.1.7.0"; + sha256 = "521f641ad6f051b13cbb0ee7c418bcba8169f6714a270c28a08fbe1ef75ae34f"; libraryHaskellDepends = [ base microlens mtl transformers transformers-compat ]; @@ -133780,8 +134336,8 @@ self: { }: mkDerivation { pname = "microlens-platform"; - version = "0.2.1.0"; - sha256 = "2afd1e023a4bbbdd88e22d2cb706831af2809a099f183cbf04d24b19b6b32326"; + version = "0.2.2.0"; + sha256 = "35fcf4295733a3ca800dd1bd012c0835fa7b4698e5917e72e0cfbaa86f5b6ea9"; libraryHaskellDepends = [ base hashable microlens microlens-ghc microlens-mtl microlens-th text unordered-containers vector @@ -135216,6 +135772,30 @@ self: { license = stdenv.lib.licenses.asl20; }) {}; + "moesocks_1_0_0_41" = callPackage + ({ mkDerivation, aeson, async, attoparsec, base, binary, bytestring + , containers, cryptohash, hslogger, HsOpenSSL, iproute, lens + , lens-aeson, mtl, network, optparse-applicative, random, stm + , strict, text, time, transformers, unordered-containers + }: + mkDerivation { + pname = "moesocks"; + version = "1.0.0.41"; + sha256 = "85905960363cb617541b0f9ec3a93e73a9b9cd761acdf37174864da865c5cb95"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + aeson async attoparsec base binary bytestring containers cryptohash + hslogger HsOpenSSL iproute lens lens-aeson mtl network + optparse-applicative random stm strict text time transformers + unordered-containers + ]; + homepage = "https://github.com/nfjinjing/moesocks"; + description = "A functional firewall killer"; + license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "mohws" = callPackage ({ mkDerivation, base, bytestring, containers, data-accessor , directory, explicit-exception, filepath, html, HTTP, network @@ -135397,6 +135977,8 @@ self: { pname = "monad-control"; version = "1.0.0.4"; sha256 = "e984b7346af6d31b7ce918e1a0263075af8cbcf5440bc3df698d0354c90df61e"; + revision = "1"; + editedCabalFile = "2df3fbea3354b0d5e0faefe0c441b7d5485a5669caec28a5d9643c15c47c7e76"; libraryHaskellDepends = [ base stm transformers transformers-base transformers-compat ]; @@ -137328,6 +137910,7 @@ self: { homepage = "https://github.com/blamario/monoid-subclasses/"; description = "Subclasses of Monoid"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "monoid-transformer" = callPackage @@ -139031,20 +139614,20 @@ self: { "mustache" = callPackage ({ mkDerivation, aeson, base, base-unicode-symbols, bytestring - , cmdargs, containers, directory, either, filepath, hspec - , ja-base-extra, mtl, parsec, process, scientific, temporary, text + , cmdargs, containers, directory, either, filepath, hspec, mtl + , parsec, process, scientific, temporary, text , unordered-containers, vector, yaml }: mkDerivation { pname = "mustache"; - version = "0.5.1.0"; - sha256 = "c6df193215b024b79bb34ec01d1c8c8fa7084887db2def231b943d47b851d882"; + version = "1.0"; + sha256 = "a928ff0f3430af57c0ce22b45d85d85a64bca7f0ba48de93cfb3271a0a6042af"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ aeson base base-unicode-symbols bytestring containers directory - either filepath ja-base-extra mtl parsec scientific text - unordered-containers vector + either filepath mtl parsec scientific text unordered-containers + vector ]; executableHaskellDepends = [ aeson base base-unicode-symbols bytestring cmdargs filepath text @@ -139054,6 +139637,7 @@ self: { aeson base base-unicode-symbols directory filepath hspec process temporary text unordered-containers yaml ]; + doCheck = false; homepage = "https://github.com/JustusAdam/mustache"; description = "A mustache template parser library"; license = stdenv.lib.licenses.bsd3; @@ -139747,6 +140331,17 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "nano-erl" = callPackage + ({ mkDerivation, base, stm }: + mkDerivation { + pname = "nano-erl"; + version = "0.1.0.1"; + sha256 = "370a60682b38ca77b793ee7326c54d5e74dd688f316f31fdd5cf999ad498ee12"; + libraryHaskellDepends = [ base stm ]; + description = "Small library for Erlang-style actor semantics"; + license = stdenv.lib.licenses.mit; + }) {}; + "nano-hmac" = callPackage ({ mkDerivation, base, bytestring, openssl }: mkDerivation { @@ -140106,13 +140701,12 @@ self: { }: mkDerivation { pname = "natural-transformation"; - version = "0.2"; - sha256 = "b771a07838f7932fc39cde8b2f7e8be00f637561f4320d0579aa4d729c5cafbb"; + version = "0.3"; + sha256 = "dce066be311d19aa14aab9431aacf99117df101db8d68f2d0dddb3ffe1796ed0"; libraryHaskellDepends = [ base ]; testHaskellDepends = [ base containers quickcheck-instances tasty tasty-quickcheck ]; - jailbreak = true; homepage = "https://github.com/ku-fpg/natural-transformation"; description = "A natural transformation package"; license = stdenv.lib.licenses.bsd3; @@ -142148,6 +142742,7 @@ self: { network-transport network-transport-tests stm stm-chans tasty tasty-hunit test-framework zeromq4-haskell ]; + doCheck = false; homepage = "https://github.com/tweag/network-transport-zeromq"; description = "ZeroMQ backend for network-transport"; license = stdenv.lib.licenses.bsd3; @@ -142475,6 +143070,7 @@ self: { homepage = "https://github.com/fhsjaagshs/niagra"; description = "CSS EDSL for Haskell"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "nibblestring" = callPackage @@ -143297,6 +143893,24 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "number-length" = callPackage + ({ mkDerivation, base, HUnit, QuickCheck, test-framework + , test-framework-hunit, test-framework-quickcheck2 + }: + mkDerivation { + pname = "number-length"; + version = "0.1.0.0"; + sha256 = "96b5a43ab1832891bacaf81d5642f6e0686ccd93e79330b46ab0f802e68877c3"; + libraryHaskellDepends = [ base ]; + testHaskellDepends = [ + base HUnit QuickCheck test-framework test-framework-hunit + test-framework-quickcheck2 + ]; + homepage = "https://github.com/trskop/number-length"; + description = "Number of digits in a number in decimal and hexadecimal representation"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "numbering" = callPackage ({ mkDerivation, base, containers, vector }: mkDerivation { @@ -145276,6 +145890,7 @@ self: { homepage = "https://github.com/k0ral/opml-conduit"; description = "Streaming parser/renderer for the OPML 2.0 format."; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "opn" = callPackage @@ -145625,6 +146240,7 @@ self: { jailbreak = true; description = "An API client for http://orchestrate.io/."; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "orchid" = callPackage @@ -146670,11 +147286,11 @@ self: { , 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 + , JuicyPixels, mtl, network, network-uri, old-locale, 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"; @@ -146688,9 +147304,10 @@ self: { 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 + JuicyPixels mtl network network-uri old-locale 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 @@ -146703,6 +147320,7 @@ self: { process QuickCheck syb test-framework test-framework-hunit test-framework-quickcheck2 text zip-archive ]; + jailbreak = true; doCheck = false; homepage = "http://pandoc.org"; description = "Conversion between markup formats"; @@ -146717,11 +147335,11 @@ self: { , 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 + , JuicyPixels, mtl, network, network-uri, old-locale, 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"; @@ -146735,9 +147353,10 @@ self: { 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 + JuicyPixels mtl network network-uri old-locale 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 @@ -146750,6 +147369,7 @@ self: { process QuickCheck syb test-framework test-framework-hunit test-framework-quickcheck2 text zip-archive ]; + jailbreak = true; doCheck = false; homepage = "http://pandoc.org"; description = "Conversion between markup formats"; @@ -146797,6 +147417,7 @@ self: { process QuickCheck syb test-framework test-framework-hunit test-framework-quickcheck2 text zip-archive ]; + jailbreak = true; doCheck = false; homepage = "http://pandoc.org"; description = "Conversion between markup formats"; @@ -146804,7 +147425,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "pandoc" = callPackage + "pandoc_1_15_2_1" = callPackage ({ mkDerivation, aeson, ansi-terminal, array, base , base64-bytestring, binary, blaze-html, blaze-markup, bytestring , cmark, containers, data-default, deepseq-generics, Diff @@ -146844,13 +147465,15 @@ self: { process QuickCheck syb test-framework test-framework-hunit test-framework-quickcheck2 text zip-archive ]; + jailbreak = true; doCheck = false; homepage = "http://pandoc.org"; description = "Conversion between markup formats"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "pandoc_1_16_0_2" = callPackage + "pandoc" = callPackage ({ mkDerivation, aeson, ansi-terminal, array, base , base64-bytestring, binary, blaze-html, blaze-markup, bytestring , cmark, containers, data-default, deepseq, Diff, directory @@ -146890,11 +147513,9 @@ self: { process QuickCheck syb test-framework test-framework-hunit test-framework-quickcheck2 text zip-archive ]; - jailbreak = true; homepage = "http://pandoc.org"; description = "Conversion between markup formats"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pandoc-citeproc_0_6" = callPackage @@ -147058,7 +147679,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "pandoc-citeproc" = callPackage + "pandoc-citeproc_0_8_1_3" = callPackage ({ mkDerivation, aeson, aeson-pretty, attoparsec, base, bytestring , containers, data-default, directory, filepath, hs-bibutils, mtl , old-locale, pandoc, pandoc-types, parsec, process, rfc5051 @@ -147088,9 +147709,10 @@ self: { doCheck = false; description = "Supports using pandoc with citeproc"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "pandoc-citeproc_0_9" = 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 @@ -147117,12 +147739,10 @@ self: { aeson base bytestring directory filepath pandoc pandoc-types process temporary text yaml ]; - jailbreak = true; doCheck = false; homepage = "https://github.com/jgm/pandoc-citeproc"; description = "Supports using pandoc with citeproc"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pandoc-citeproc-preamble" = callPackage @@ -147143,26 +147763,27 @@ self: { }) {}; "pandoc-crossref" = callPackage - ({ mkDerivation, base, bytestring, containers, data-default, hspec - , mtl, pandoc, pandoc-types, process, yaml + ({ mkDerivation, base, bytestring, containers, data-accessor + , data-accessor-transformers, data-default, hspec, mtl, pandoc + , pandoc-types, process, yaml }: mkDerivation { pname = "pandoc-crossref"; - version = "0.1.6.3"; - sha256 = "7ec41e6fa2acf6826889670e7636b209a6833872de3b65034891a402b7bd356b"; + version = "0.1.6.5"; + sha256 = "6b92a2730ed28c0242b81e47c0e21902321f98eb2b580d2114d906ca89a451e2"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - base bytestring containers data-default mtl pandoc pandoc-types - yaml + base bytestring containers data-accessor data-accessor-transformers + data-default mtl pandoc pandoc-types yaml ]; executableHaskellDepends = [ base bytestring containers data-default mtl pandoc pandoc-types yaml ]; testHaskellDepends = [ - base bytestring containers data-default hspec mtl pandoc - pandoc-types process yaml + base bytestring containers data-accessor data-accessor-transformers + data-default hspec mtl pandoc pandoc-types process yaml ]; description = "Pandoc filter for cross-references"; license = stdenv.lib.licenses.gpl2; @@ -147229,6 +147850,7 @@ self: { version = "0.4.1"; sha256 = "bd319f64abf3ebaac915e20135aadb06ab1f77ab562f7bac87580ceda37fc12d"; libraryHaskellDepends = [ base containers lens pandoc-types ]; + jailbreak = true; homepage = "http://github.com/bgamari/pandoc-lens"; description = "Lenses for Pandoc documents"; license = stdenv.lib.licenses.bsd3; @@ -147364,7 +147986,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "pandoc-types" = callPackage + "pandoc-types_1_12_4_7" = callPackage ({ mkDerivation, aeson, base, bytestring, containers , deepseq-generics, ghc-prim, syb }: @@ -147378,9 +148000,10 @@ self: { homepage = "http://johnmacfarlane.net/pandoc"; description = "Types for representing a structured document"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "pandoc-types_1_16_0_1" = callPackage + "pandoc-types" = callPackage ({ mkDerivation, aeson, base, bytestring, containers, deepseq , ghc-prim, syb }: @@ -147394,7 +148017,6 @@ self: { homepage = "http://johnmacfarlane.net/pandoc"; description = "Types for representing a structured document"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pandoc-unlit" = callPackage @@ -148534,22 +149156,6 @@ self: { }) {}; "path-io" = callPackage - ({ mkDerivation, base, directory, exceptions, filepath, path, time - , transformers - }: - mkDerivation { - pname = "path-io"; - version = "0.1.1"; - sha256 = "252633966f9a2c76297260c517b5a4d45597ffe4b3b8f53dbd44a363a4eb55cc"; - libraryHaskellDepends = [ - base directory exceptions filepath path time transformers - ]; - homepage = "https://github.com/mrkkrp/path-io"; - description = "Interface to ‘directory’ package for users of ‘path’"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "path-io_0_2_0" = callPackage ({ mkDerivation, base, directory, exceptions, filepath, path , temporary, time, transformers }: @@ -148563,7 +149169,6 @@ self: { homepage = "https://github.com/mrkkrp/path-io"; description = "Interface to ‘directory’ package for users of ‘path’"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "path-pieces_0_1_4" = callPackage @@ -152076,6 +152681,7 @@ self: { homepage = "https://bitbucket.org/blamario/picoparsec"; description = "Fast combinator parsing for bytestrings and text"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "picosat" = callPackage @@ -152179,6 +152785,25 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "pinchot_0_8_0_0" = callPackage + ({ mkDerivation, base, containers, Earley, lens, template-haskell + , transformers + }: + mkDerivation { + pname = "pinchot"; + version = "0.8.0.0"; + sha256 = "f7567131c274815e8e0ecccff815a8ff94c0912a833055ddc55f46ea26831e3b"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base containers Earley lens template-haskell transformers + ]; + homepage = "http://www.github.com/massysett/pinchot"; + description = "Build parsers and ASTs for context-free grammars"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "pipe-enumerator" = callPackage ({ mkDerivation, base, enumerator, pipes, transformers }: mkDerivation { @@ -152641,6 +153266,7 @@ self: { sha256 = "a8423a1771769917d4989e3c137f6069f62c8ac456f90dd413f0a2d9105c8e3c"; libraryHaskellDepends = [ base pipes stm ]; testHaskellDepends = [ async base pipes stm ]; + jailbreak = true; description = "Concurrency for the pipes ecosystem"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -152654,6 +153280,7 @@ self: { sha256 = "e56a51f71f254dd71b11387c6d0514fb7a951a0d666c63df8c707b433fb54e4b"; libraryHaskellDepends = [ base pipes stm ]; testHaskellDepends = [ async base pipes stm ]; + jailbreak = true; description = "Concurrency for the pipes ecosystem"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -152667,6 +153294,7 @@ self: { sha256 = "195ff8fe0551bc03cca2e150e1bf235276c8f5b3c286ff3fddefa5074d6a85d3"; libraryHaskellDepends = [ base pipes stm ]; testHaskellDepends = [ async base pipes stm ]; + jailbreak = true; description = "Concurrency for the pipes ecosystem"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -153113,6 +153741,7 @@ self: { async base bytestring directory hspec pipes pipes-bytestring pipes-safe process stm stm-chans text ]; + jailbreak = true; description = "Create proper Pipes from System.Process"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -153175,8 +153804,8 @@ self: { }: mkDerivation { pname = "pipes-transduce"; - version = "0.3.0.0"; - sha256 = "073c2ac2534fa8a29d65fb42b49ae1cff752513c69b3752145681b7a8d27c62b"; + version = "0.3.2.0"; + sha256 = "3273d60971ea3995df2cd255061b9705fd7c4fcced2c8162e65a2fad88789e3a"; libraryHaskellDepends = [ base bifunctors bytestring conceit foldl free lens-family-core pipes pipes-bytestring pipes-concurrency pipes-group pipes-parse @@ -153480,6 +154109,23 @@ self: { license = stdenv.lib.licenses.gpl3; }) {}; + "plan-b" = callPackage + ({ mkDerivation, base, exceptions, hspec, path, path-io + , transformers + }: + mkDerivation { + pname = "plan-b"; + version = "0.1.0"; + sha256 = "46aa687c41c5b61302f5b968b8f3f7e2fd488013d6a2c05daa93f422bd50b107"; + libraryHaskellDepends = [ + base exceptions path path-io transformers + ]; + testHaskellDepends = [ base hspec path path-io ]; + homepage = "https://github.com/mrkkrp/plan-b"; + description = "Failure-tolerant file and directory editing"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "planar-graph" = callPackage ({ mkDerivation, attoparsec, base, blaze-builder, bytestring , containers, data-clist, deepseq @@ -154379,6 +155025,7 @@ self: { ]; description = "Polynomial types and operations"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "polynomial" = callPackage @@ -156762,12 +157409,12 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "process_1_4_1_0" = callPackage + "process_1_4_2_0" = callPackage ({ mkDerivation, base, deepseq, directory, filepath, unix }: mkDerivation { pname = "process"; - version = "1.4.1.0"; - sha256 = "26e6e28600b59e1553ad014d47aa0dff7749a5f146af7412c13f37f38e9c85ab"; + version = "1.4.2.0"; + sha256 = "1c2ba524a238e464ae9c22582bea92da2d4c5227e1704a984bb8631dcb562bec"; libraryHaskellDepends = [ base deepseq directory filepath unix ]; testHaskellDepends = [ base ]; description = "Process libraries"; @@ -156880,6 +157527,24 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "process-extras_0_3_3_8" = callPackage + ({ mkDerivation, base, bytestring, deepseq, generic-deriving + , ListLike, process, text + }: + mkDerivation { + pname = "process-extras"; + version = "0.3.3.8"; + sha256 = "d9e26f829d5eab2e2df113383b814bf71c835ff874fdecdc5a125115da485ec3"; + libraryHaskellDepends = [ + base bytestring deepseq generic-deriving ListLike process text + ]; + jailbreak = true; + homepage = "https://github.com/seereason/process-extras"; + description = "Process extras"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "process-iterio" = callPackage ({ mkDerivation, base, bytestring, cpphs, iterIO, process , transformers @@ -156994,6 +157659,7 @@ self: { pipes-safe pipes-text process semigroups tasty tasty-hunit text transformers transformers-compat void ]; + jailbreak = true; description = "Streaming interface to system processes"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -158286,6 +158952,20 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "publicsuffix_0_20160126" = callPackage + ({ mkDerivation, base, filepath, hspec, template-haskell }: + mkDerivation { + pname = "publicsuffix"; + version = "0.20160126"; + sha256 = "7798d15bf7962f6dc4ba65faa28c9975d4691e7f764ff1ef4689fcb5f1cac090"; + libraryHaskellDepends = [ base filepath template-haskell ]; + testHaskellDepends = [ base hspec ]; + homepage = "https://github.com/wereHamster/publicsuffix-haskell/"; + description = "The publicsuffix list exposed as proper Haskell types"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "publicsuffixlist" = callPackage ({ mkDerivation, base, bytestring, cereal, containers, data-default , HUnit, idna, text, utf8-string @@ -159704,7 +160384,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "quickcheck-instances_0_3_11" = callPackage + "quickcheck-instances" = callPackage ({ mkDerivation, array, base, bytestring, containers, hashable , old-time, QuickCheck, text, time, unordered-containers }: @@ -159721,10 +160401,9 @@ self: { homepage = "https://github.com/aslatter/qc-instances"; description = "Common quickcheck instances"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "quickcheck-instances" = callPackage + "quickcheck-instances_0_3_12" = callPackage ({ mkDerivation, array, base, bytestring, containers, hashable , old-time, QuickCheck, scientific, text, time , unordered-containers, vector @@ -159740,6 +160419,7 @@ self: { homepage = "https://github.com/aslatter/qc-instances"; description = "Common quickcheck instances"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "quickcheck-io_0_1_1" = callPackage @@ -160905,7 +161585,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "rank1dynamic" = callPackage + "rank1dynamic_0_3_1_0" = callPackage ({ mkDerivation, base, binary, ghc-prim, HUnit, test-framework , test-framework-hunit }: @@ -160922,6 +161602,25 @@ self: { homepage = "http://haskell-distributed.github.com"; description = "Like Data.Dynamic/Data.Typeable but with support for rank-1 polymorphic types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "rank1dynamic" = callPackage + ({ mkDerivation, base, binary, ghc-prim, HUnit, test-framework + , test-framework-hunit + }: + mkDerivation { + pname = "rank1dynamic"; + version = "0.3.1.1"; + sha256 = "2ef57df7694e3aebc066d7cce59231a9d581c6b447d48aac4fcaeda2406e4dd7"; + libraryHaskellDepends = [ base binary ghc-prim ]; + testHaskellDepends = [ + base HUnit test-framework test-framework-hunit + ]; + doCheck = false; + homepage = "http://haskell-distributed.github.com"; + description = "Like Data.Dynamic/Data.Typeable but with support for rank-1 polymorphic types"; + license = stdenv.lib.licenses.bsd3; }) {}; "rascal" = callPackage @@ -161979,6 +162678,7 @@ self: { async base bytestring bytestring-conversion containers redis-resp tasty tasty-hunit tinylog transformers ]; + jailbreak = true; doCheck = false; homepage = "https://github.com/twittner/redis-io/"; description = "Yet another redis client"; @@ -163574,8 +164274,8 @@ self: { }: mkDerivation { pname = "relational-query"; - version = "0.8.0.1"; - sha256 = "6484cb21a69e27c01edb4ecfe1155ed5780a7b7d608d42c5570eea402755e015"; + version = "0.8.0.2"; + sha256 = "784433068c59871ccfcc50aaba93298a85e96a4ad0917f2fbc9b23290d34f63a"; libraryHaskellDepends = [ array base bytestring containers dlist names-th persistable-record sql-words template-haskell text time time-locale-compat @@ -164814,6 +165514,26 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "resourcet_1_1_7_1" = callPackage + ({ mkDerivation, base, containers, exceptions, hspec, lifted-base + , mmorph, monad-control, mtl, transformers, transformers-base + , transformers-compat + }: + mkDerivation { + pname = "resourcet"; + version = "1.1.7.1"; + sha256 = "25133c9dd1ccdab047ab23b11907184ff319e561794563978768a893b27908ce"; + libraryHaskellDepends = [ + base containers exceptions lifted-base mmorph monad-control mtl + transformers transformers-base transformers-compat + ]; + testHaskellDepends = [ base hspec lifted-base transformers ]; + homepage = "http://github.com/snoyberg/conduit"; + description = "Deterministic allocation and freeing of scarce resources"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "respond" = callPackage ({ mkDerivation, aeson, base, bifunctors, bytestring, containers , data-default-class, exceptions, fast-logger, formatting, HList @@ -165013,6 +165733,8 @@ self: { pname = "rest-client"; version = "0.5.1.0"; sha256 = "9b75fb30f0f101945440c21b38d64b22a9aad81b81bce8e6a21e4675e6c8136e"; + revision = "1"; + editedCabalFile = "792e8084ca7b8c30c3c5870c03c0f2b0e401ea75a7edea9ec598fdbe5213f676"; libraryHaskellDepends = [ aeson-utils base bytestring case-insensitive data-default exceptions http-conduit http-types hxt hxt-pickle-utils @@ -165154,8 +165876,8 @@ self: { pname = "rest-core"; version = "0.37"; sha256 = "6a7e13b5e1ae6aadf53cc0dcbeca99a01b68737833962b2abdd50f4e6e9d066c"; - revision = "1"; - editedCabalFile = "88d214458142c107f807581931c4d9e995b178d2d76801534f6b1239234aa3be"; + revision = "2"; + editedCabalFile = "b402497734ed072efe7f1f989b56082490b8782f53f718821e028e61a4b22fcb"; libraryHaskellDepends = [ aeson aeson-utils base bytestring case-insensitive errors fclabels hxt hxt-pickle-utils json-schema mtl mtl-compat multipart random @@ -166462,6 +167184,7 @@ self: { doHaddock = false; description = "Parse and display time according to RFC3339 (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rfc5051" = callPackage @@ -168752,6 +169475,8 @@ self: { pname = "satchmo-toysat"; version = "0.2.1.0"; sha256 = "c1c0ee4e46975dfc874b43c3145110956bb1a920b123910e9afcb318dbfbd0bc"; + revision = "1"; + editedCabalFile = "c7d42104f5373844f95b97b8e4ed7482712f1ca054ca669a17ccfffaee8acab3"; libraryHaskellDepends = [ array base containers satchmo toysolver ]; @@ -169112,6 +169837,7 @@ self: { homepage = "http://trac.haskell.org/SCC/"; description = "Streaming component combinators"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "scenegraph" = callPackage @@ -169765,6 +170491,33 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "scotty_0_11_0" = callPackage + ({ mkDerivation, aeson, async, base, blaze-builder, bytestring + , case-insensitive, data-default-class, directory, fail, hspec + , hspec-wai, http-types, lifted-base, monad-control, mtl, nats + , network, regex-compat, text, transformers, transformers-base + , transformers-compat, wai, wai-extra, warp + }: + mkDerivation { + pname = "scotty"; + version = "0.11.0"; + sha256 = "892203c937ccf1279f5005ddb78ebea84629b80687a1e38fc118b38011a386ed"; + libraryHaskellDepends = [ + aeson base blaze-builder bytestring case-insensitive + data-default-class fail http-types monad-control mtl nats network + regex-compat text transformers transformers-base + transformers-compat wai wai-extra warp + ]; + testHaskellDepends = [ + async base data-default-class directory hspec hspec-wai http-types + lifted-base network text wai + ]; + homepage = "https://github.com/scotty-web/scotty"; + description = "Haskell web framework inspired by Ruby's Sinatra, using WAI and Warp"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "scotty-binding-play" = callPackage ({ mkDerivation, base, bytestring, hspec, http-client, HUnit, mtl , scotty, template-haskell, text, transformers @@ -170959,6 +171712,8 @@ self: { pname = "semigroups"; version = "0.16.0.1"; sha256 = "46ef9e651bf69634f8e8f0dbe2330629153a7e0c4278af5edaa03f4d6b3113c8"; + revision = "1"; + editedCabalFile = "60b69c696b5a74aeada898545cbc55f5e4f6edbe6601fdaef787c8b88bd10c52"; libraryHaskellDepends = [ base bytestring containers deepseq hashable nats text unordered-containers @@ -170977,6 +171732,8 @@ self: { pname = "semigroups"; version = "0.16.1"; sha256 = "4d0d0706eae1dce2c0abb878b12c8f2b267e00f700fb76339b8bf3f56b3fde39"; + revision = "1"; + editedCabalFile = "7f321fed6eaa98ed2c343173ed31f8535582a2cda92571a50fcc05b360b90daf"; libraryHaskellDepends = [ base bytestring containers deepseq hashable nats text unordered-containers @@ -170995,6 +171752,8 @@ self: { pname = "semigroups"; version = "0.16.2.2"; sha256 = "d17e3e42c8e2457286d5c583dad5d0df57678ce4dcf12acc8a7667e80bd8ed57"; + revision = "1"; + editedCabalFile = "6d7c9c6f7ccb8754b270341b33f39e373906380da03bc198cd008270fb9bd4a0"; libraryHaskellDepends = [ base bytestring containers deepseq hashable nats text unordered-containers @@ -171013,6 +171772,8 @@ self: { pname = "semigroups"; version = "0.18.0.1"; sha256 = "f6e787519acf261e823d529cc3e5d4fca019075f39f8986649f21891d06d3115"; + revision = "1"; + editedCabalFile = "4b2725ee1abfe9519881e4b4da90cd984eee5f7814217e283dd940ebef629003"; libraryHaskellDepends = [ base bytestring containers deepseq hashable tagged text unordered-containers @@ -171022,6 +171783,24 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "semigroups_0_18_1" = callPackage + ({ mkDerivation, base, binary, bytestring, containers, deepseq + , hashable, tagged, text, transformers, unordered-containers + }: + mkDerivation { + pname = "semigroups"; + version = "0.18.1"; + sha256 = "ae7607fb2b497a53192c378dc84c00b45610fdc5de0ac8c1ac3234ec7acee807"; + libraryHaskellDepends = [ + base binary bytestring containers deepseq hashable tagged text + transformers unordered-containers + ]; + homepage = "http://github.com/ekmett/semigroups/"; + description = "Anything that associates"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "semigroups-actions" = callPackage ({ mkDerivation, base, containers, semigroups }: mkDerivation { @@ -172351,6 +173130,7 @@ self: { base bytestring http-media lens pandoc-types servant-docs text unordered-containers ]; + jailbreak = true; description = "Use Pandoc to render servant API documentation"; license = stdenv.lib.licenses.mit; hydraPlatforms = stdenv.lib.platforms.none; @@ -172368,6 +173148,7 @@ self: { base bytestring http-media lens pandoc-types servant-docs text unordered-containers ]; + jailbreak = true; description = "Use Pandoc to render servant API documentation"; license = stdenv.lib.licenses.mit; }) {}; @@ -172671,27 +173452,6 @@ self: { }) {}; "servant-swagger" = callPackage - ({ mkDerivation, aeson, aeson-qq, base, bytestring, hspec - , http-media, lens, servant, swagger2, text, time - , unordered-containers - }: - mkDerivation { - pname = "servant-swagger"; - version = "0.1"; - sha256 = "ee47a6f51afb029abe1add54a1f579340ec48e5b816b592d1b976d0bdfd8346e"; - libraryHaskellDepends = [ - aeson base bytestring http-media lens servant swagger2 text - unordered-containers - ]; - testHaskellDepends = [ - aeson aeson-qq base hspec lens servant swagger2 text time - ]; - homepage = "https://github.com/dmjio/servant-swagger"; - description = "Generate Swagger specification for your servant API"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "servant-swagger_0_1_1" = callPackage ({ mkDerivation, aeson, aeson-qq, base, bytestring, hspec , http-media, lens, servant, swagger2, text, time , unordered-containers @@ -172700,6 +173460,8 @@ self: { pname = "servant-swagger"; version = "0.1.1"; sha256 = "d89df7e8ee82978f6db32c2f278591df26bcdd6ef4282dff53933d3417d53a6c"; + revision = "1"; + editedCabalFile = "4982e79b812758d953cf852474e97882f826f194b09ba66eed74ec52fceb6f8e"; libraryHaskellDepends = [ aeson base bytestring http-media lens servant swagger2 text unordered-containers @@ -172710,7 +173472,6 @@ self: { homepage = "https://github.com/dmjio/servant-swagger"; description = "Generate Swagger specification for your servant API"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "servant-yaml" = callPackage @@ -173069,6 +173830,7 @@ self: { homepage = "http://hub.darcs.net/thielema/set-cover/"; description = "Solve exact set cover problems like Sudoku, 8 Queens, Soma Cube, Tetris Cube"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "set-extra" = callPackage @@ -174570,6 +175332,7 @@ self: { base bytestring directory feed filepath HTTP network-uri process tagsoup temporary transformers xml ]; + jailbreak = true; homepage = "http://github.com/valderman/shellmate"; description = "Simple interface for shell scripting in Haskell"; license = stdenv.lib.licenses.bsd3; @@ -175489,16 +176252,16 @@ self: { }) {}; "simple-log" = callPackage - ({ mkDerivation, base, containers, deepseq, directory, filepath - , MonadCatchIO-transformers, mtl, SafeSemaphore, text, time - , transformers + ({ mkDerivation, async, base, containers, deepseq, directory + , filepath, MonadCatchIO-transformers, mtl, SafeSemaphore, text + , time, transformers }: mkDerivation { pname = "simple-log"; - version = "0.3.2"; - sha256 = "20cf6031d89388b2181a4b8b173893a286c781fd0c20920c98d3992bb6ec96da"; + version = "0.3.3"; + sha256 = "2b4ccfc67b6b4b7dc2a27ebfd9166b911910750e28c86e2e5ca8a8c7cad51783"; libraryHaskellDepends = [ - base containers deepseq directory filepath + async base containers deepseq directory filepath MonadCatchIO-transformers mtl SafeSemaphore text time transformers ]; homepage = "http://github.com/mvoidex/simple-log"; @@ -176426,6 +177189,7 @@ self: { testHaskellDepends = [ base bytestring cereal crypto-api filepath hspec tagged ]; + doCheck = false; homepage = "https://github.com/meteficha/skein"; description = "Skein, a family of cryptographic hash functions. Includes Skein-MAC as well."; license = stdenv.lib.licenses.bsd3; @@ -176794,7 +177558,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "slug" = callPackage + "slug_0_1_1" = callPackage ({ mkDerivation, aeson, base, exceptions, path-pieces, persistent , QuickCheck, test-framework, test-framework-quickcheck2, text }: @@ -176812,9 +177576,10 @@ self: { homepage = "https://github.com/mrkkrp/slug"; description = "Type-safe slugs for Yesod ecosystem"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "slug_0_1_2" = callPackage + "slug" = callPackage ({ mkDerivation, aeson, base, exceptions, path-pieces, persistent , QuickCheck, test-framework, test-framework-quickcheck2, text }: @@ -176829,11 +177594,9 @@ self: { base exceptions path-pieces QuickCheck test-framework test-framework-quickcheck2 text ]; - jailbreak = true; homepage = "https://github.com/mrkkrp/slug"; description = "Type-safe slugs for Yesod ecosystem"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "smallarray" = callPackage @@ -177766,6 +178529,7 @@ self: { async base containers monad-loops MonadCatchIO-transformers snap stm time transformers ]; + jailbreak = true; homepage = "http://github.com/ocharles/snap-error-collector"; description = "Collect errors in batches and dispatch them"; license = stdenv.lib.licenses.bsd3; @@ -177859,6 +178623,8 @@ self: { pname = "snap-predicates"; version = "0.3.1"; sha256 = "c5a3e0eabaacaa198c2e2973b27d26ae448a39357f846190a2f77174c5d2330b"; + revision = "1"; + editedCabalFile = "6fbedca064ea734b7fb4c14324a4b128a54a5bd4e3e18416b9d87087392a46ad"; libraryHaskellDepends = [ attoparsec base bytestring case-insensitive containers monads-tf snap-core text transformers @@ -181873,7 +182639,6 @@ self: { async base extract-dependencies file-modules lens lens-aeson MissingH process stm-containers text time wreq ]; - doCheck = false; homepage = "http://github.com/yamadapc/stack-run-auto#readme"; description = "Initial project template from stack"; license = stdenv.lib.licenses.mit; @@ -186020,6 +186785,8 @@ self: { pname = "swagger2"; version = "1.1.1"; sha256 = "bb441e8c160db9fe91ff62cc14b36ecfce683cd033a61aef7700acf763a526aa"; + revision = "1"; + editedCabalFile = "ac0b019958af896baba1453da3cf22b5437c0bfc23052a4ed8834180f01afcc8"; libraryHaskellDepends = [ aeson base containers hashable http-media lens mtl network scientific text time unordered-containers @@ -186043,6 +186810,8 @@ self: { pname = "swagger2"; version = "1.2.1"; sha256 = "4eba65057202562d1f57bb10dad930f4cf6e4521c414005afb83213b3901d6d9"; + revision = "1"; + editedCabalFile = "dbbae6a2ff27fd977d013d56cc36c4fef7f089cb8f88965b4c6c6ec22b50bebd"; libraryHaskellDepends = [ aeson base containers hashable http-media lens mtl network scientific text time unordered-containers @@ -187668,6 +188437,19 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "tagged_0_8_3" = callPackage + ({ mkDerivation, base, deepseq, template-haskell }: + mkDerivation { + pname = "tagged"; + version = "0.8.3"; + sha256 = "27aa7d3f17a01891fcd03ab7cbedc1fdd568475563cda7927ac3a3c2d3526893"; + libraryHaskellDepends = [ base deepseq template-haskell ]; + homepage = "http://github.com/ekmett/tagged"; + description = "Haskell 98 phantom types to avoid unsafely passing dummy arguments"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "tagged-binary" = callPackage ({ mkDerivation, base, binary, bytestring, pureMD5 }: mkDerivation { @@ -189491,7 +190273,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "temporary" = callPackage + "temporary_1_2_0_3" = callPackage ({ mkDerivation, base, directory, exceptions, filepath , transformers, unix }: @@ -189505,6 +190287,23 @@ self: { homepage = "http://www.github.com/batterseapower/temporary"; description = "Portable temporary file and directory support for Windows and Unix, based on code from Cabal"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "temporary" = callPackage + ({ mkDerivation, base, directory, exceptions, filepath + , transformers, unix + }: + mkDerivation { + pname = "temporary"; + version = "1.2.0.4"; + sha256 = "51e713804246404df8a728919a2e7d1994f8cfda42cfa7a74ea65d8b7d206762"; + libraryHaskellDepends = [ + base directory exceptions filepath transformers unix + ]; + homepage = "http://www.github.com/feuerbach/temporary"; + description = "Portable temporary file and directory support for Windows and Unix, based on code from Cabal"; + license = stdenv.lib.licenses.bsd3; }) {}; "temporary-rc" = callPackage @@ -189781,6 +190580,7 @@ self: { ]; description = "a ternary library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "terrahs" = callPackage @@ -190472,6 +191272,7 @@ self: { base bytestring directory filepath process split temporary text utf8-string xml ]; + jailbreak = true; homepage = "http://github.com/jgm/texmath"; description = "Conversion between formats used to represent mathematics"; license = "GPL"; @@ -190497,6 +191298,7 @@ self: { base bytestring directory filepath process split temporary text utf8-string xml ]; + jailbreak = true; homepage = "http://github.com/jgm/texmath"; description = "Conversion between formats used to represent mathematics"; license = "GPL"; @@ -190522,6 +191324,7 @@ self: { base bytestring directory filepath process split temporary text utf8-string xml ]; + jailbreak = true; homepage = "http://github.com/jgm/texmath"; description = "Conversion between formats used to represent mathematics"; license = "GPL"; @@ -190547,6 +191350,7 @@ self: { base bytestring directory filepath process split temporary text utf8-string xml ]; + jailbreak = true; homepage = "http://github.com/jgm/texmath"; description = "Conversion between formats used to represent mathematics"; license = "GPL"; @@ -190572,6 +191376,7 @@ self: { base bytestring directory filepath process split temporary text utf8-string xml ]; + jailbreak = true; homepage = "http://github.com/jgm/texmath"; description = "Conversion between formats used to represent mathematics"; license = "GPL"; @@ -192469,8 +193274,8 @@ self: { }: mkDerivation { pname = "threepenny-gui"; - version = "0.6.0.4"; - sha256 = "e334bcdb0a09c590b161df6cfe8e79bfd3b5f798711e83705e9d7c6e9dd1eaad"; + version = "0.6.0.5"; + sha256 = "d64c7cd00248efda561642cf8f815b486a9dcbabc6bc17d4108423eb8cb10aa0"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -193346,6 +194151,7 @@ self: { homepage = "https://github.com/HugoDaniel/timerep"; description = "Parse and display time according to some RFCs (RFC3339, RFC2822, RFC822)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "timers" = callPackage @@ -194424,39 +195230,41 @@ self: { ({ mkDerivation, array, base, bytestring, bytestring-builder , containers, data-default-class, data-interval, deepseq , exceptions, extended-reals, filepath, finite-field, ghc-prim - , hashable, heaps, HUnit, intern, loop, mtl, multiset, OptDir - , parse-dimacs, parsec, prettyclass, primes, process - , pseudo-boolean, queue, QuickCheck, random, sign, stm, tasty - , tasty-hunit, tasty-quickcheck, tasty-th, temporary, time - , type-level-numbers, unbounded-delays, unordered-containers - , vector-space + , hashable, haskeline, heaps, intern, loop, mtl, multiset + , mwc-random, OptDir, parse-dimacs, parsec, prettyclass, primes + , process, pseudo-boolean, queue, QuickCheck, semigroups, sign + , split, stm, tasty, tasty-hunit, tasty-quickcheck, tasty-th + , template-haskell, temporary, time, transformers + , transformers-compat, type-level-numbers, unbounded-delays + , unordered-containers, vector, vector-space }: mkDerivation { pname = "toysolver"; - version = "0.3.0"; - sha256 = "28afe735180a12234c7e675f321fdf33dd7336f9c771be2ffe7201f1ebc13007"; + version = "0.4.0"; + sha256 = "e9633a7854e6b67d947da02128098f7a29100e9a185be1a5d267e1d4fbf8e3bf"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ array base bytestring bytestring-builder containers data-default-class data-interval deepseq exceptions extended-reals filepath finite-field ghc-prim hashable heaps intern loop mtl - multiset OptDir parse-dimacs parsec prettyclass primes process - pseudo-boolean queue random sign stm temporary time - type-level-numbers unbounded-delays unordered-containers - vector-space + multiset mwc-random OptDir parse-dimacs parsec prettyclass primes + process pseudo-boolean queue semigroups sign stm template-haskell + temporary time transformers transformers-compat type-level-numbers + unordered-containers vector vector-space ]; executableHaskellDepends = [ - array base bytestring containers data-default-class filepath OptDir - parse-dimacs parsec process pseudo-boolean random time - unbounded-delays vector-space + array base bytestring containers data-default-class filepath + haskeline mtl mwc-random OptDir parse-dimacs parsec process + pseudo-boolean split time transformers transformers-compat + unbounded-delays vector vector-space ]; testHaskellDepends = [ - array base containers data-interval finite-field HUnit mtl OptDir - prettyclass QuickCheck random stm tasty tasty-hunit - tasty-quickcheck tasty-th vector-space + array base containers data-default-class data-interval deepseq + finite-field mtl mwc-random OptDir parsec prettyclass QuickCheck + tasty tasty-hunit tasty-quickcheck tasty-th transformers + transformers-compat vector vector-space ]; - jailbreak = true; description = "Assorted decision procedures for SAT, Max-SAT, PB, MIP, etc"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -195255,10 +196063,8 @@ self: { ({ mkDerivation, base }: mkDerivation { pname = "trivial-constraint"; - version = "0.3.0.0"; - sha256 = "7ef4f1f6892aacb43cb3539f20c661d9b11e47dc8b8d0ea9e3457a131517873a"; - revision = "1"; - editedCabalFile = "c2fb0af78c16b340f5dfeb5bf5935250a7f70b72b9b5c07416aee2c8b9138b4b"; + version = "0.4.0.0"; + sha256 = "17fc46892beaa08c5badd544e71f690784f683efcfc50f482f5f8bc19fdc86c1"; libraryHaskellDepends = [ base ]; homepage = "https://github.com/leftaroundabout/trivial-constraint"; description = "Constraints that any type, resp. no type fulfills"; @@ -195922,6 +196728,7 @@ self: { temporary text time transformers unix ]; testHaskellDepends = [ base doctest ]; + jailbreak = true; description = "Shell programming, Haskell-style"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -195994,8 +196801,8 @@ self: { ({ mkDerivation, base, eventloop }: mkDerivation { pname = "twentefp-eventloop-trees"; - version = "0.1.2.1"; - sha256 = "be748f0f9678027b28808461ed8b69d2dea6bee67354c5f696ed843c1eaf7b3b"; + version = "0.1.2.2"; + sha256 = "5fc63b1739a64e5316fa3c1d91f9d47a34d1f2e494e91658bd0b719c18a2257d"; libraryHaskellDepends = [ base eventloop ]; description = "Tree type and show functions for lab assignment of University of Twente. Contains RoseTree and RedBlackTree"; license = stdenv.lib.licenses.bsd3; @@ -196582,8 +197389,8 @@ self: { ({ mkDerivation, base }: mkDerivation { pname = "type-combinators"; - version = "0.2.2.0"; - sha256 = "52688cdc72f387baa0a39ca4e8cb020ec3018fab03c9da25ae1fb9693d32a1d3"; + version = "0.2.2.1"; + sha256 = "96e3c4954236120f46fa515c75f33a8b641d5263bc3b4b7dd2055858dfeee966"; libraryHaskellDepends = [ base ]; homepage = "https://github.com/kylcarte/type-combinators"; description = "A collection of data types for type-level programming"; @@ -196596,8 +197403,8 @@ self: { }: mkDerivation { pname = "type-combinators-quote"; - version = "0.1.0.0"; - sha256 = "246e8b50dbcebb5bf2c71c8827c66dc740a2e717dac4210da86308c7946c620d"; + version = "0.1.0.1"; + sha256 = "808b305a08443e27e46bbf2c7604eb312d1a44df6bd140f917b485e6eb35f6a7"; libraryHaskellDepends = [ base haskell-src-meta template-haskell type-combinators ]; @@ -197547,6 +198354,7 @@ self: { homepage = "https://github.com/UU-ComputerScience/uhc"; description = "Part of UHC packaged as cabal/hackage installable library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "uhc-util" = callPackage @@ -199647,7 +200455,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "users" = callPackage + "users_0_3_0_0" = callPackage ({ mkDerivation, aeson, base, bcrypt, path-pieces, text, time }: mkDerivation { pname = "users"; @@ -199659,9 +200467,24 @@ self: { homepage = "https://github.com/agrafix/users"; description = "A library simplifying user management for web applications"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "users-persistent" = callPackage + "users" = callPackage + ({ mkDerivation, aeson, base, bcrypt, path-pieces, text, time }: + mkDerivation { + pname = "users"; + version = "0.4.0.0"; + sha256 = "3e4e213090756e04667872fe41872d0af842949087240237298152d72c569f3f"; + libraryHaskellDepends = [ + aeson base bcrypt path-pieces text time + ]; + homepage = "https://github.com/agrafix/users"; + description = "A library simplifying user management for web applications"; + license = stdenv.lib.licenses.mit; + }) {}; + + "users-persistent_0_3_0_0" = callPackage ({ mkDerivation, aeson, base, bytestring, hspec, monad-logger, mtl , persistent, persistent-sqlite, persistent-template, temporary , text, time, users, users-test, uuid @@ -199681,6 +200504,29 @@ self: { homepage = "https://github.com/agrafix/users"; description = "A persistent backend for the users package"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "users-persistent" = callPackage + ({ mkDerivation, aeson, base, bytestring, hspec, monad-logger, mtl + , persistent, persistent-sqlite, persistent-template, temporary + , text, time, transformers, users, users-test, uuid + }: + mkDerivation { + pname = "users-persistent"; + version = "0.4.0.0"; + sha256 = "bbf67ade5bfffaa6490e3f221717e489caa684d506a81139a221ab1589cf6347"; + libraryHaskellDepends = [ + aeson base bytestring mtl persistent persistent-template text time + transformers users uuid + ]; + testHaskellDepends = [ + base hspec monad-logger persistent-sqlite temporary text users-test + ]; + doCheck = false; + homepage = "https://github.com/agrafix/users"; + description = "A persistent backend for the users package"; + license = stdenv.lib.licenses.mit; }) {}; "users-postgresql-simple_0_1_0_1" = callPackage @@ -199702,7 +200548,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "users-postgresql-simple" = callPackage + "users-postgresql-simple_0_3_0_0" = callPackage ({ mkDerivation, aeson, base, bytestring, hspec, mtl , postgresql-simple, text, time, users, users-test, uuid }: @@ -199718,6 +200564,25 @@ self: { homepage = "https://github.com/agrafix/users"; description = "A PostgreSQL backend for the users package"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "users-postgresql-simple" = callPackage + ({ mkDerivation, aeson, base, bytestring, hspec, mtl + , postgresql-simple, text, time, users, users-test, uuid + }: + mkDerivation { + pname = "users-postgresql-simple"; + version = "0.4.0.0"; + sha256 = "953b326d097edd95ddf5d47832dc392ee70631dfeab38a076556d66a20b26859"; + libraryHaskellDepends = [ + aeson base bytestring mtl postgresql-simple text time users uuid + ]; + testHaskellDepends = [ base hspec postgresql-simple users-test ]; + doCheck = false; + homepage = "https://github.com/agrafix/users"; + description = "A PostgreSQL backend for the users package"; + license = stdenv.lib.licenses.mit; }) {}; "users-test_0_1_0_0" = callPackage @@ -199733,7 +200598,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "users-test" = callPackage + "users-test_0_3_0_0" = callPackage ({ mkDerivation, aeson, base, hspec, text, users }: mkDerivation { pname = "users-test"; @@ -199743,6 +200608,19 @@ self: { homepage = "https://github.com/agrafix/users"; description = "Library to test backends for the users library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "users-test" = callPackage + ({ mkDerivation, aeson, base, hspec, text, users }: + mkDerivation { + pname = "users-test"; + version = "0.4.0.0"; + sha256 = "d1f122a3b7876c16fa0a72a644b0c3f016a25fbcd10e04efb2eedd04730c5136"; + libraryHaskellDepends = [ aeson base hspec text users ]; + homepage = "https://github.com/agrafix/users"; + description = "Library to test backends for the users library"; + license = stdenv.lib.licenses.mit; }) {}; "utc" = callPackage @@ -207105,6 +207983,7 @@ self: { homepage = "https://github.com/fhsjaagshs/webapp"; description = "Haskell web app framework based on WAI & Warp"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "webcrank" = callPackage @@ -208035,8 +208914,8 @@ self: { }: mkDerivation { pname = "werewolf"; - version = "0.3.3.2"; - sha256 = "828d060f58e92ce91f22e9b732abe5f8058a0592e701d4baf2abdd207b475440"; + version = "0.3.4.0"; + sha256 = "fadf96e8c8aa76a2c2d8d56eb8ac09a0babe2eba31b987d79e6f34d487f5b2e5"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -209191,8 +210070,8 @@ self: { }: mkDerivation { pname = "wsdl"; - version = "0.1.0.0"; - sha256 = "bbf461d30db337ba3e8c7519aa752d470088932189342325ca877919cb94cba1"; + version = "0.1.0.1"; + sha256 = "2e4d565f9d45f420f07b34b6309a15a7f5cac96c657e4afdfa035cf46c135c06"; libraryHaskellDepends = [ base bytestring conduit exceptions mtl network-uri resourcet text xml-conduit xml-types @@ -210554,6 +211433,7 @@ self: { homepage = "https://github.com/qrilka/xlsx"; description = "Simple and incomplete Excel file parser/writer"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xlsx-templater" = callPackage @@ -216185,8 +217065,8 @@ self: { }: mkDerivation { pname = "yesod-core"; - version = "1.4.18.2"; - sha256 = "298088fbccd63a323a5bab689464848cacd014ea73ef845969c898a59c022d64"; + version = "1.4.19"; + sha256 = "8425c1df703521b020b476035f572e953ac356ce6f5e35c424b29f0d5ff76ded"; libraryHaskellDepends = [ aeson auto-update base blaze-builder blaze-html blaze-markup byteable bytestring case-insensitive cereal clientsession conduit @@ -216864,6 +217744,7 @@ self: { shakespeare texmath text xss-sanitize yesod-core yesod-form ]; testHaskellDepends = [ base blaze-html hspec text ]; + jailbreak = true; homepage = "http://github.com/pbrisbin/yesod-markdown"; description = "Tools for using markdown in a yesod application"; license = stdenv.lib.licenses.gpl2; @@ -219026,6 +219907,7 @@ self: { testHaskellDepends = [ async base bytestring QuickCheck tasty tasty-hunit tasty-quickcheck ]; + jailbreak = true; homepage = "http://github.com/twittner/zeromq-haskell/"; description = "Bindings to ZeroMQ 4.x"; license = stdenv.lib.licenses.mit; From b57e4fa8133dc0eaad3e55db9fe037f0a9bcd72e Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sun, 24 Jan 2016 13:53:04 +0100 Subject: [PATCH 209/268] configuration-hackage2nix.yaml: update list of broken builds --- .../configuration-hackage2nix.yaml | 32 +++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml index 89cc68e584f..eea3adad2f8 100644 --- a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml +++ b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml @@ -192,6 +192,7 @@ dont-distribute-packages: AERN-RnToRm-Plot: [ i686-linux, x86_64-linux, x86_64-darwin ] aeson-bson: [ i686-linux, x86_64-linux, x86_64-darwin ] AesonBson: [ i686-linux, x86_64-linux, x86_64-darwin ] + aeson-extra: [ i686-linux, x86_64-linux, x86_64-darwin ] aeson-native: [ i686-linux, x86_64-linux, x86_64-darwin ] aeson-smart: [ i686-linux, x86_64-linux, x86_64-darwin ] afv: [ i686-linux, x86_64-linux, x86_64-darwin ] @@ -288,6 +289,7 @@ dont-distribute-packages: aterm-utils: [ i686-linux, x86_64-linux, x86_64-darwin ] atlassian-connect-core: [ i686-linux, x86_64-linux, x86_64-darwin ] atlassian-connect-descriptor: [ i686-linux, x86_64-linux, x86_64-darwin ] + atom-conduit: [ i686-linux, x86_64-linux, x86_64-darwin ] atomic-primops-foreign: [ x86_64-darwin ] atomic-primops-vector: [ i686-linux, x86_64-linux, x86_64-darwin ] atom-msp430: [ i686-linux, x86_64-linux, x86_64-darwin ] @@ -372,6 +374,7 @@ dont-distribute-packages: binary-file: [ i686-linux, x86_64-linux, x86_64-darwin ] binary-indexed-tree: [ i686-linux, x86_64-linux, x86_64-darwin ] binary-protocol-zmq: [ i686-linux, x86_64-linux, x86_64-darwin ] + binary-search: [ i686-linux, x86_64-linux, x86_64-darwin ] binary-streams: [ i686-linux, x86_64-linux, x86_64-darwin ] binary-strict: [ i686-linux, x86_64-linux, x86_64-darwin ] binding-gtk: [ i686-linux, x86_64-linux, x86_64-darwin ] @@ -399,6 +402,7 @@ dont-distribute-packages: bindings-librrd: [ i686-linux, x86_64-linux, x86_64-darwin ] bindings-libstemmer: [ i686-linux, x86_64-linux, x86_64-darwin ] bindings-libv4l2: [ i686-linux, x86_64-linux, x86_64-darwin ] + bindings-libzip: [ i686-linux, x86_64-linux, x86_64-darwin ] bindings-linux-videodev2: [ i686-linux, x86_64-linux, x86_64-darwin ] bindings-lxc: [ x86_64-darwin ] bindings-mpdecimal: [ i686-linux, x86_64-linux, x86_64-darwin ] @@ -421,6 +425,7 @@ dont-distribute-packages: BiobaseTrainingData: [ i686-linux, x86_64-linux, x86_64-darwin ] BiobaseTurner: [ i686-linux, x86_64-linux, x86_64-darwin ] BiobaseVienna: [ i686-linux, x86_64-linux, x86_64-darwin ] + biohazard: [ i686-linux, x86_64-linux, x86_64-darwin ] bio: [ i686-linux, x86_64-linux, x86_64-darwin ] bioinformatics-toolkit: [ i686-linux, x86_64-linux, x86_64-darwin ] biosff: [ i686-linux, x86_64-linux, x86_64-darwin ] @@ -455,6 +460,7 @@ dont-distribute-packages: blip: [ i686-linux, x86_64-linux, x86_64-darwin ] Blobs: [ i686-linux, x86_64-linux, x86_64-darwin ] blogination: [ i686-linux, x86_64-linux, x86_64-darwin ] + bloodhound: [ i686-linux, x86_64-linux, x86_64-darwin ] bloxorz: [ x86_64-darwin ] blubber: [ x86_64-darwin ] Blueprint: [ i686-linux, x86_64-linux, x86_64-darwin ] @@ -463,6 +469,7 @@ dont-distribute-packages: board-games: [ i686-linux, x86_64-linux, x86_64-darwin ] bogre-banana: [ i686-linux, x86_64-linux, x86_64-darwin ] bond: [ i686-linux, x86_64-linux, x86_64-darwin ] + Bookshelf: [ i686-linux, x86_64-linux, x86_64-darwin ] boolean-normal-forms: [ i686-linux, x86_64-linux, x86_64-darwin ] boolsimplifier: [ i686-linux, x86_64-linux, x86_64-darwin ] boomslang: [ i686-linux, x86_64-linux, x86_64-darwin ] @@ -695,6 +702,7 @@ dont-distribute-packages: const-math-ghc-plugin: [ i686-linux, x86_64-linux, x86_64-darwin ] ConstraintKinds: [ i686-linux, x86_64-linux, x86_64-darwin ] constructible: [ i686-linux ] + constructible: [ i686-linux, x86_64-linux, x86_64-darwin ] constructive-algebra: [ i686-linux, x86_64-linux, x86_64-darwin ] Consumer: [ i686-linux, x86_64-linux, x86_64-darwin ] consumers: [ x86_64-darwin ] @@ -1079,6 +1087,7 @@ dont-distribute-packages: feed2lj: [ i686-linux, x86_64-linux, x86_64-darwin ] feed2twitter: [ i686-linux, x86_64-linux, x86_64-darwin ] feed-cli: [ i686-linux, x86_64-linux, x86_64-darwin ] + feed-collect: [ i686-linux, x86_64-linux, x86_64-darwin ] feed-translator: [ i686-linux, x86_64-linux, x86_64-darwin ] feldspar-compiler: [ i686-linux, x86_64-linux, x86_64-darwin ] feldspar-language: [ i686-linux, x86_64-linux, x86_64-darwin ] @@ -1129,6 +1138,7 @@ dont-distribute-packages: flower: [ i686-linux, x86_64-linux, x86_64-darwin ] flowlocks-framework: [ i686-linux, x86_64-linux, x86_64-darwin ] flowsim: [ i686-linux, x86_64-linux, x86_64-darwin ] + fltkhs-hello-world: [ i686-linux, x86_64-linux, x86_64-darwin ] fluidsynth: [ x86_64-darwin ] FModExRaw: [ i686-linux, x86_64-linux, x86_64-darwin ] FM-SBLEX: [ i686-linux, x86_64-linux, x86_64-darwin ] @@ -1183,6 +1193,7 @@ dont-distribute-packages: frpnow-gloss: [ x86_64-darwin ] fs-events: [ i686-linux, x86_64-linux, x86_64-darwin ] fsmActions: [ i686-linux, x86_64-linux, x86_64-darwin ] + fswatcher: [ i686-linux, x86_64-linux, x86_64-darwin ] ftdi: [ i686-linux, x86_64-linux, x86_64-darwin ] FTGL-bytestring: [ x86_64-darwin ] FTGL: [ x86_64-darwin ] @@ -1199,6 +1210,7 @@ dont-distribute-packages: funion: [ i686-linux, x86_64-linux, x86_64-darwin ] funsat: [ i686-linux, x86_64-linux, x86_64-darwin ] future: [ i686-linux, x86_64-linux, x86_64-darwin ] + fuzzy: [ i686-linux, x86_64-linux, x86_64-darwin ] fuzzytime: [ i686-linux, x86_64-linux, x86_64-darwin ] fwgl-glfw: [ x86_64-darwin ] gact: [ i686-linux, x86_64-linux, x86_64-darwin ] @@ -1472,6 +1484,7 @@ dont-distribute-packages: happybara-webkit: [ i686-linux, x86_64-linux, x86_64-darwin ] happybara-webkit-server: [ i686-linux, x86_64-linux, x86_64-darwin ] harchive: [ i686-linux, x86_64-linux, x86_64-darwin ] + hardware-edsl: [ i686-linux, x86_64-linux, x86_64-darwin ] HaRe: [ i686-linux, x86_64-linux, x86_64-darwin ] hark: [ i686-linux, x86_64-linux, x86_64-darwin ] HARM: [ i686-linux, x86_64-linux, x86_64-darwin ] @@ -1743,6 +1756,7 @@ dont-distribute-packages: hlogger: [ i686-linux, x86_64-linux, x86_64-darwin ] HLogger: [ i686-linux, x86_64-linux, x86_64-darwin ] hly: [ i686-linux, x86_64-linux, x86_64-darwin ] + HMap: [ i686-linux, x86_64-linux, x86_64-darwin ] hmark: [ i686-linux, x86_64-linux, x86_64-darwin ] hmarkup: [ i686-linux, x86_64-linux, x86_64-darwin ] hmatrix-banded: [ i686-linux, x86_64-linux, x86_64-darwin ] @@ -2039,6 +2053,7 @@ dont-distribute-packages: INblobs: [ i686-linux, x86_64-linux, x86_64-darwin ] inch: [ i686-linux, x86_64-linux, x86_64-darwin ] incremental-computing: [ i686-linux, x86_64-linux, x86_64-darwin ] + incremental-parser: [ i686-linux, x86_64-linux, x86_64-darwin ] incremental-sat-solver: [ i686-linux, x86_64-linux, x86_64-darwin ] increments: [ i686-linux, x86_64-linux, x86_64-darwin ] index-core: [ i686-linux, x86_64-linux, x86_64-darwin ] @@ -2284,6 +2299,7 @@ dont-distribute-packages: libvirt-hs: [ i686-linux, x86_64-linux, x86_64-darwin ] libxml: [ i686-linux, x86_64-linux, x86_64-darwin ] libxslt: [ i686-linux, x86_64-linux, x86_64-darwin ] + LibZip: [ i686-linux, x86_64-linux, x86_64-darwin ] life: [ x86_64-darwin ] lifter: [ i686-linux, x86_64-linux, x86_64-darwin ] lighttpd-conf: [ i686-linux, x86_64-linux, x86_64-darwin ] @@ -2359,6 +2375,7 @@ dont-distribute-packages: lord: [ i686-linux, x86_64-linux, x86_64-darwin ] loris: [ i686-linux, x86_64-linux, x86_64-darwin ] lostcities: [ i686-linux, x86_64-linux, x86_64-darwin ] + lp-diagrams-svg: [ i686-linux, x86_64-linux, x86_64-darwin ] lscabal: [ i686-linux, x86_64-linux, x86_64-darwin ] L-seed: [ i686-linux, x86_64-linux, x86_64-darwin ] LslPlus: [ i686-linux, x86_64-linux, x86_64-darwin ] @@ -2519,6 +2536,7 @@ dont-distribute-packages: monoid-owns: [ i686-linux, x86_64-linux, x86_64-darwin ] monoidplus: [ i686-linux, x86_64-linux, x86_64-darwin ] monoids: [ i686-linux, x86_64-linux, x86_64-darwin ] + monoid-subclasses: [ i686-linux, x86_64-linux, x86_64-darwin ] monte-carlo: [ i686-linux, x86_64-linux, x86_64-darwin ] moo: [ i686-linux, x86_64-linux, x86_64-darwin ] morfette: [ i686-linux, x86_64-linux, x86_64-darwin ] @@ -2618,6 +2636,7 @@ dont-distribute-packages: newt: [ i686-linux, x86_64-linux, x86_64-darwin ] newtype-th: [ i686-linux, x86_64-linux, x86_64-darwin ] NGrams: [ i686-linux, x86_64-linux, x86_64-darwin ] + niagra: [ i686-linux, x86_64-linux, x86_64-darwin ] nibblestring: [ i686-linux, x86_64-linux, x86_64-darwin ] nikepub: [ i686-linux, x86_64-linux, x86_64-darwin ] nimber: [ i686-linux ] @@ -2704,9 +2723,11 @@ dont-distribute-packages: OpenVGRaw: [ i686-linux, x86_64-linux, x86_64-darwin ] open-witness: [ i686-linux, x86_64-linux, x86_64-darwin ] Operads: [ i686-linux, x86_64-linux, x86_64-darwin ] + opml-conduit: [ i686-linux, x86_64-linux, x86_64-darwin ] optimal-blocks: [ i686-linux, x86_64-linux, x86_64-darwin ] optimusprime: [ i686-linux, x86_64-linux, x86_64-darwin ] OrchestrateDB: [ i686-linux, x86_64-linux, x86_64-darwin ] + orchestrate: [ i686-linux, x86_64-linux, x86_64-darwin ] orchid-demo: [ i686-linux, x86_64-linux, x86_64-darwin ] orchid: [ i686-linux, x86_64-linux, x86_64-darwin ] order-maintenance: [ i686-linux, x86_64-linux, x86_64-darwin ] @@ -2790,6 +2811,7 @@ dont-distribute-packages: phybin: [ i686-linux, x86_64-linux, x86_64-darwin ] pianola: [ i686-linux, x86_64-linux, x86_64-darwin ] pi-calculus: [ i686-linux, x86_64-linux, x86_64-darwin ] + picoparsec: [ i686-linux, x86_64-linux, x86_64-darwin ] piet: [ i686-linux, x86_64-linux, x86_64-darwin ] piki: [ i686-linux, x86_64-linux, x86_64-darwin ] Pipe: [ i686-linux, x86_64-linux, x86_64-darwin ] @@ -2821,6 +2843,7 @@ dont-distribute-packages: polar-configfile: [ i686-linux, x86_64-linux, x86_64-darwin ] polh-lexicon: [ i686-linux, x86_64-linux, x86_64-darwin ] Pollutocracy: [ i686-linux, x86_64-linux, x86_64-darwin ] + polynom: [ i686-linux, x86_64-linux, x86_64-darwin ] polyseq: [ i686-linux, x86_64-linux, x86_64-darwin ] polysoup: [ i686-linux, x86_64-linux, x86_64-darwin ] polytypeable: [ i686-linux, x86_64-linux, x86_64-darwin ] @@ -2906,6 +2929,7 @@ dont-distribute-packages: pugs-hsregex: [ i686-linux, x86_64-linux, x86_64-darwin ] pugs-HsSyck: [ i686-linux, x86_64-linux, x86_64-darwin ] Pugs: [ i686-linux, x86_64-linux, x86_64-darwin ] + PUH-Project: [ i686-linux, x86_64-linux, x86_64-darwin ] pulse-simple: [ x86_64-darwin ] punkt: [ i686-linux, x86_64-linux, x86_64-darwin ] Pup-Events-Demo: [ i686-linux, x86_64-linux, x86_64-darwin ] @@ -3055,6 +3079,7 @@ dont-distribute-packages: rewrite: [ i686-linux, x86_64-linux, x86_64-darwin ] rewriting: [ i686-linux, x86_64-linux, x86_64-darwin ] rezoom: [ i686-linux, x86_64-linux, x86_64-darwin ] + rfc3339: [ i686-linux, x86_64-linux, x86_64-darwin ] rhythm-game-tutorial: [ i686-linux, x86_64-linux, x86_64-darwin ] riemann: [ i686-linux, x86_64-linux, x86_64-darwin ] riot: [ i686-linux, x86_64-linux, x86_64-darwin ] @@ -3136,6 +3161,7 @@ dont-distribute-packages: scaleimage: [ i686-linux, x86_64-linux, x86_64-darwin ] scalp-webhooks: [ i686-linux, x86_64-linux, x86_64-darwin ] scan-vector-machine: [ i686-linux, x86_64-linux, x86_64-darwin ] + scc: [ i686-linux, x86_64-linux, x86_64-darwin ] scenegraph: [ i686-linux, x86_64-linux, x86_64-darwin ] schedevr: [ i686-linux, x86_64-linux, x86_64-darwin ] scholdoc-citeproc: [ i686-linux, x86_64-linux, x86_64-darwin ] @@ -3202,6 +3228,7 @@ dont-distribute-packages: ses-html-snaplet: [ i686-linux, x86_64-linux, x86_64-darwin ] SessionLogger: [ i686-linux, x86_64-linux, x86_64-darwin ] sessions: [ i686-linux, x86_64-linux, x86_64-darwin ] + set-cover: [ i686-linux, x86_64-linux, x86_64-darwin ] set-with: [ i686-linux, x86_64-linux, x86_64-darwin ] sexp-grammar: [ i686-linux, x86_64-linux, x86_64-darwin ] sexp: [ i686-linux, x86_64-linux, x86_64-darwin ] @@ -3480,6 +3507,7 @@ dont-distribute-packages: tensor: [ i686-linux, x86_64-linux, x86_64-darwin ] termbox-bindings: [ i686-linux, x86_64-linux, x86_64-darwin ] term-rewriting: [ i686-linux, x86_64-linux, x86_64-darwin ] + terntup: [ i686-linux, x86_64-linux, x86_64-darwin ] terrahs: [ i686-linux, x86_64-linux, x86_64-darwin ] test-framework-doctest: [ i686-linux, x86_64-linux, x86_64-darwin ] test-framework-quickcheck: [ i686-linux, x86_64-linux, x86_64-darwin ] @@ -3528,6 +3556,7 @@ dont-distribute-packages: timeplot: [ i686-linux, x86_64-linux, x86_64-darwin ] time-qq: [ i686-linux ] time-recurrence: [ i686-linux, x86_64-linux, x86_64-darwin ] + timerep: [ i686-linux, x86_64-linux, x86_64-darwin ] time-series: [ i686-linux, x86_64-linux, x86_64-darwin ] timestamp-subprocess-lines: [ i686-linux, x86_64-linux, x86_64-darwin ] time-w3c: [ i686-linux, x86_64-linux, x86_64-darwin ] @@ -3625,6 +3654,7 @@ dont-distribute-packages: udbus: [ i686-linux, x86_64-linux, x86_64-darwin ] udbus-model: [ i686-linux, x86_64-linux, x86_64-darwin ] udev: [ i686-linux, x86_64-linux, x86_64-darwin ] + uhc-light: [ i686-linux, x86_64-linux, x86_64-darwin ] ui-command: [ i686-linux, x86_64-linux, x86_64-darwin ] UISF: [ x86_64-darwin ] UMM: [ i686-linux, x86_64-linux, x86_64-darwin ] @@ -3745,6 +3775,7 @@ dont-distribute-packages: wavesurfer: [ i686-linux, x86_64-linux, x86_64-darwin ] weather-api: [ i686-linux, x86_64-linux, x86_64-darwin ] webapi: [ i686-linux, x86_64-linux, x86_64-darwin ] + webapp: [ i686-linux, x86_64-linux, x86_64-darwin ] WebBits-Html: [ i686-linux, x86_64-linux, x86_64-darwin ] WebBits-multiplate: [ i686-linux, x86_64-linux, x86_64-darwin ] web-browser-in-haskell: [ i686-linux, x86_64-linux, x86_64-darwin ] @@ -3828,6 +3859,7 @@ dont-distribute-packages: xing-api: [ i686-linux, x86_64-linux, x86_64-darwin ] xkbcommon: [ i686-linux, x86_64-linux, x86_64-darwin ] xkcd: [ i686-linux, x86_64-linux, x86_64-darwin ] + xlsx: [ i686-linux, x86_64-linux, x86_64-darwin ] xlsx-templater: [ i686-linux, x86_64-linux, x86_64-darwin ] xml2json: [ i686-linux, x86_64-linux, x86_64-darwin ] xml2x: [ i686-linux, x86_64-linux, x86_64-darwin ] From 64a872863dc98a1cc7c5febe5c4930b8e2742eba Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sun, 24 Jan 2016 13:45:19 +0100 Subject: [PATCH 210/268] haskell-binary: update pre-7.8.x compilers from 0.8.0.0 to 0.8.0.1 --- pkgs/development/haskell-modules/configuration-ghc-6.12.x.nix | 2 +- pkgs/development/haskell-modules/configuration-ghc-7.2.x.nix | 2 +- pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix | 4 ++-- pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix | 4 ++-- 4 files changed, 6 insertions(+), 6 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 322d7ea3093..3324eb6e321 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-6.12.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-6.12.x.nix @@ -41,7 +41,7 @@ self: super: { unix = null; # These packages are core libraries in GHC 7.10.x, but not here. - binary = self.binary_0_8_0_0; + binary = self.binary_0_8_0_1; deepseq = self.deepseq_1_3_0_1; haskeline = self.haskeline_0_7_2_1; hoopl = self.hoopl_3_10_2_0; 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 63aab9e4567..771e24b3fe2 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.2.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.2.x.nix @@ -42,7 +42,7 @@ self: super: { 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_8_0_0; process = self.process_1_2_3_0; }; + Cabal_1_22_4_0 = super.Cabal_1_22_4_0.override { binary = self.binary_0_8_0_1; process = self.process_1_2_3_0; }; # Newer versions don't compile. Cabal_1_18_1_6 = dontJailbreak super.Cabal_1_18_1_6; 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 da7008b63f1..16d3a43f668 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix @@ -41,10 +41,10 @@ self: super: { 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_8_0_0; }; + Cabal_1_22_4_0 = super.Cabal_1_22_4_0.override { binary = dontCheck self.binary_0_8_0_1; }; # Avoid inconsistent 'binary' versions from 'text' and 'Cabal'. - cabal-install = super.cabal-install.overrideScope (self: super: { binary = dontCheck self.binary_0_8_0_0; }); + cabal-install = super.cabal-install.overrideScope (self: super: { binary = dontCheck self.binary_0_8_0_1; }); # https://github.com/tibbe/hashable/issues/85 hashable = dontCheck super.hashable; 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 5c0d09127b9..63ca4663caa 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix @@ -40,10 +40,10 @@ self: super: { 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_8_0_0; }; + Cabal_1_22_4_0 = super.Cabal_1_22_4_0.override { binary = dontCheck self.binary_0_8_0_1; }; # Avoid inconsistent 'binary' versions from 'text' and 'Cabal'. - cabal-install = super.cabal-install.overrideScope (self: super: { binary = dontCheck self.binary_0_8_0_0; }); + cabal-install = super.cabal-install.overrideScope (self: super: { binary = dontCheck self.binary_0_8_0_1; }); # https://github.com/tibbe/hashable/issues/85 hashable = dontCheck super.hashable; From 2e3c8d55f743aa8ac1400d33cbfd904b9fa318a2 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sun, 24 Jan 2016 19:14:22 +0100 Subject: [PATCH 211/268] haskell-async: remove obsolete override --- pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix | 3 --- 1 file changed, 3 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix b/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix index dd544a76972..cc5034008bb 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix @@ -51,7 +51,4 @@ self: super: { # https://github.com/hspec/HUnit/issues/7 HUnit = dontCheck super.HUnit; - # Older versions don't support our version of base. - async = self.async_2_1_0; - } From c68c8655f1420ed546f963123bf2efc934a88b5e Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Mon, 25 Jan 2016 11:15:11 +0100 Subject: [PATCH 212/268] haskell: update use of Cabal 1.20.0.3 to 1.20.0.4 This affects mostly jailbreak-cabal, which uses the old version on most platforms due to bugs introduced to Cabal in later releases. --- pkgs/development/haskell-modules/configuration-common.nix | 4 ++-- pkgs/development/haskell-modules/configuration-ghc-7.0.x.nix | 2 +- pkgs/development/haskell-modules/configuration-ghc-7.2.x.nix | 2 +- pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix | 2 +- pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix | 2 +- pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 1b5b3b74f18..28fec422cfa 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -6,13 +6,13 @@ self: super: { # Some packages need a non-core version of Cabal. Cabal_1_18_1_6 = dontCheck super.Cabal_1_18_1_6; - Cabal_1_20_0_3 = dontCheck super.Cabal_1_20_0_3; + Cabal_1_20_0_4 = dontCheck super.Cabal_1_20_0_4; Cabal_1_22_4_0 = dontCheck super.Cabal_1_22_4_0; cabal-install = (dontCheck super.cabal-install).overrideScope (self: super: { Cabal = self.Cabal_1_22_4_0; }); cabal-install_1_18_1_0 = (dontCheck super.cabal-install_1_18_1_0).overrideScope (self: super: { Cabal = self.Cabal_1_18_1_6; }); # Link statically to avoid runtime dependency on GHC. - jailbreak-cabal = (disableSharedExecutables super.jailbreak-cabal).override { Cabal = dontJailbreak self.Cabal_1_20_0_3; }; + jailbreak-cabal = (disableSharedExecutables super.jailbreak-cabal).override { Cabal = dontJailbreak self.Cabal_1_20_0_4; }; # Apply NixOS-specific patches. ghc-paths = appendPatch super.ghc-paths ./patches/ghc-paths-nix.patch; 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 6147be8f0f4..a4f2d9b7ea7 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.0.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.0.x.nix @@ -52,7 +52,7 @@ self: super: { # https://github.com/peti/jailbreak-cabal/issues/9 jailbreak-cabal = super.jailbreak-cabal.override { - Cabal = dontJailbreak (self.Cabal_1_20_0_3.override { deepseq = dontJailbreak self.deepseq_1_3_0_1; }); + Cabal = dontJailbreak (self.Cabal_1_20_0_4.override { deepseq = dontJailbreak self.deepseq_1_3_0_1; }); }; # Haddock chokes on the prologue from the cabal file. 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 771e24b3fe2..b20572aa0b2 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.2.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.2.x.nix @@ -53,7 +53,7 @@ self: super: { # https://github.com/peti/jailbreak-cabal/issues/9 jailbreak-cabal = super.jailbreak-cabal.override { - Cabal = dontJailbreak (self.Cabal_1_20_0_3.override { deepseq = dontJailbreak self.deepseq_1_3_0_1; }); + Cabal = dontJailbreak (self.Cabal_1_20_0_4.override { deepseq = dontJailbreak self.deepseq_1_3_0_1; }); }; # Haddock chokes on the prologue from the cabal file. 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 16d3a43f668..a1dad7f3cd9 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix @@ -50,7 +50,7 @@ self: super: { hashable = dontCheck super.hashable; # https://github.com/peti/jailbreak-cabal/issues/9 - jailbreak-cabal = super.jailbreak-cabal.override { Cabal = dontJailbreak self.Cabal_1_20_0_3; }; + jailbreak-cabal = super.jailbreak-cabal.override { Cabal = dontJailbreak self.Cabal_1_20_0_4; }; # Haddock chokes on the prologue from the cabal file. ChasingBottoms = dontHaddock super.ChasingBottoms; 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 63ca4663caa..c5e5802903d 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix @@ -49,7 +49,7 @@ self: super: { hashable = dontCheck super.hashable; # https://github.com/peti/jailbreak-cabal/issues/9 - jailbreak-cabal = super.jailbreak-cabal.override { Cabal = dontJailbreak self.Cabal_1_20_0_3; }; + jailbreak-cabal = super.jailbreak-cabal.override { Cabal = dontJailbreak self.Cabal_1_20_0_4; }; # Haddock chokes on the prologue from the cabal file. ChasingBottoms = dontHaddock super.ChasingBottoms; 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 81379ce9c37..c7ef534d785 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix @@ -38,7 +38,7 @@ self: super: { xhtml = null; # https://github.com/peti/jailbreak-cabal/issues/9 - jailbreak-cabal = super.jailbreak-cabal.override { Cabal = dontJailbreak self.Cabal_1_20_0_3; }; + jailbreak-cabal = super.jailbreak-cabal.override { Cabal = dontJailbreak self.Cabal_1_20_0_4; }; # mtl 2.2.x needs the latest transformers. mtl_2_2_1 = super.mtl.override { transformers = self.transformers_0_4_3_0; }; From d487783174c4042e2d8bec8ca3dcbefe2adc6777 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Mon, 25 Jan 2016 11:54:27 +0100 Subject: [PATCH 213/268] haskell: update use of Cabal 1.18.1.6 to 1.18.1.7 This affects GHC versions 7.2.x and earlier, which cannot compile more recent versions of Cabal. --- .../haskell-modules/configuration-common.nix | 4 ++-- .../haskell-modules/configuration-ghc-6.12.x.nix | 10 +++++----- .../haskell-modules/configuration-ghc-7.0.x.nix | 2 +- .../haskell-modules/configuration-ghc-7.2.x.nix | 2 +- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 28fec422cfa..1f746802c7b 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -5,11 +5,11 @@ with import ./lib.nix { inherit pkgs; }; self: super: { # Some packages need a non-core version of Cabal. - Cabal_1_18_1_6 = dontCheck super.Cabal_1_18_1_6; + Cabal_1_18_1_7 = dontCheck super.Cabal_1_18_1_7; Cabal_1_20_0_4 = dontCheck super.Cabal_1_20_0_4; Cabal_1_22_4_0 = dontCheck super.Cabal_1_22_4_0; cabal-install = (dontCheck super.cabal-install).overrideScope (self: super: { Cabal = self.Cabal_1_22_4_0; }); - cabal-install_1_18_1_0 = (dontCheck super.cabal-install_1_18_1_0).overrideScope (self: super: { Cabal = self.Cabal_1_18_1_6; }); + cabal-install_1_18_1_0 = (dontCheck super.cabal-install_1_18_1_0).overrideScope (self: super: { Cabal = self.Cabal_1_18_1_7; }); # Link statically to avoid runtime dependency on GHC. jailbreak-cabal = (disableSharedExecutables super.jailbreak-cabal).override { Cabal = dontJailbreak self.Cabal_1_20_0_4; }; 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 3324eb6e321..c16c9d962e7 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-6.12.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-6.12.x.nix @@ -53,7 +53,7 @@ self: super: { deepseq_1_3_0_1 = dontJailbreak super.deepseq_1_3_0_1; # Newer versions don't compile. - Cabal_1_18_1_6 = dontJailbreak super.Cabal_1_18_1_6; + Cabal_1_18_1_7 = dontJailbreak super.Cabal_1_18_1_7; # We have no working cabal-install at the moment. cabal-install_1_18_1_0 = markBroken super.cabal-install_1_18_1_0; @@ -63,7 +63,7 @@ self: super: { hashable = dontCheck super.hashable; # Needs Cabal >= 1.18.x. - jailbreak-cabal = super.jailbreak-cabal.override { Cabal = self.Cabal_1_18_1_6; }; + jailbreak-cabal = super.jailbreak-cabal.override { Cabal = self.Cabal_1_18_1_7; }; # Haddock chokes on the prologue from the cabal file. ChasingBottoms = dontHaddock super.ChasingBottoms; @@ -83,9 +83,9 @@ self: super: { vector = self.vector_0_10_9_3; # These packages need more recent versions of core libraries to compile. - happy = addBuildTools super.happy [self.Cabal_1_18_1_6 self.containers_0_4_2_1]; - network-uri = addBuildTool super.network-uri self.Cabal_1_18_1_6; - stm = addBuildTool super.stm self.Cabal_1_18_1_6; + happy = addBuildTools super.happy [self.Cabal_1_18_1_7 self.containers_0_4_2_1]; + network-uri = addBuildTool super.network-uri self.Cabal_1_18_1_7; + stm = addBuildTool super.stm self.Cabal_1_18_1_7; split = super.split_0_1_4_3; # Needs hashable on pre 7.10.x compilers. 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 a4f2d9b7ea7..77735182d0e 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.0.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.0.x.nix @@ -47,7 +47,7 @@ self: super: { hashable = dontCheck super.hashable; # Newer versions don't compile. - Cabal_1_18_1_6 = dontJailbreak super.Cabal_1_18_1_6; + Cabal_1_18_1_7 = dontJailbreak super.Cabal_1_18_1_7; cabal-install = self.cabal-install_1_18_1_0; # https://github.com/peti/jailbreak-cabal/issues/9 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 b20572aa0b2..9ba96214d6f 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.2.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.2.x.nix @@ -45,7 +45,7 @@ self: super: { Cabal_1_22_4_0 = super.Cabal_1_22_4_0.override { binary = self.binary_0_8_0_1; process = self.process_1_2_3_0; }; # Newer versions don't compile. - Cabal_1_18_1_6 = dontJailbreak super.Cabal_1_18_1_6; + Cabal_1_18_1_7 = dontJailbreak super.Cabal_1_18_1_7; cabal-install = self.cabal-install_1_18_1_0; # https://github.com/tibbe/hashable/issues/85 From ffabca8f92207455a3cd6cfdb64314779253b0f6 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Mon, 25 Jan 2016 12:14:40 +0100 Subject: [PATCH 214/268] haskell-hspec-core: disable test suite when building with GHC 8.0.x. --- pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix b/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix index cc5034008bb..d6603ce9c23 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix @@ -51,4 +51,7 @@ self: super: { # https://github.com/hspec/HUnit/issues/7 HUnit = dontCheck super.HUnit; + # https://github.com/hspec/hspec/issues/253 + hspec-core = dontCheck super.hspec-core; + } From 40b0b45fceea4f84ed563053bd85ff2c314142a4 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Wed, 27 Jan 2016 00:17:48 +0100 Subject: [PATCH 215/268] jailbreak-cabal: use native Cabal library with GHC 8.0.x or later --- .../configuration-ghc-8.0.x.nix | 7 +------ .../configuration-ghc-head.nix | 19 ++----------------- 2 files changed, 3 insertions(+), 23 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix b/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix index d6603ce9c23..118d9966b68 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix @@ -35,12 +35,7 @@ self: super: { xhtml = null; # jailbreak-cabal can use the native Cabal library. - jailbreak-cabal = super.jailbreak-cabal.override { - Cabal = null; - mkDerivation = drv: self.mkDerivation (drv // { - preConfigure = "sed -i -e 's/Cabal == 1.20\\.\\*/Cabal >= 1.23/' jailbreak-cabal.cabal"; - }); - }; + jailbreak-cabal = super.jailbreak-cabal.override { Cabal = null; }; # Older versions of QuickCheck don't support our version of Template Haskell. QuickCheck = self.QuickCheck_2_8_2; diff --git a/pkgs/development/haskell-modules/configuration-ghc-head.nix b/pkgs/development/haskell-modules/configuration-ghc-head.nix index 2f1d9b24580..559096ebd28 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-head.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-head.nix @@ -33,23 +33,8 @@ self: super: { unix = null; xhtml = null; - # Don't use jailbreak built with Cabal 1.22.x because of https://github.com/peti/jailbreak-cabal/issues/9. - Cabal_1_23_0_0 = overrideCabal super.Cabal_1_22_4_0 (drv: { - version = "1.23.0.0"; - src = pkgs.fetchFromGitHub { - owner = "haskell"; - repo = "cabal"; - rev = "fe7b8784ac0a5848974066bdab76ce376ba67277"; - sha256 = "1d70ryz1l49pkr70g8r9ysqyg1rnx84wwzx8hsg6vwnmg0l5am7s"; - }; - jailbreak = false; - doHaddock = false; - postUnpack = "sourceRoot+=/Cabal"; - }); - jailbreak-cabal = overrideCabal super.jailbreak-cabal (drv: { - executableHaskellDepends = [ self.Cabal_1_23_0_0 ]; - preConfigure = "sed -i -e 's/Cabal == 1.20\\.\\*/Cabal >= 1.23/' jailbreak-cabal.cabal"; - }); + # jailbreak-cabal can use the native Cabal library. + jailbreak-cabal = super.jailbreak-cabal.override { Cabal = null; }; # haddock: No input file(s). nats = dontHaddock super.nats; From 4a48931bb7a068f1a132f65411bbb5b0b1557fc0 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Wed, 27 Jan 2016 00:28:19 +0100 Subject: [PATCH 216/268] Add LTS Haskell 5.0. --- pkgs/top-level/haskell-packages.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/top-level/haskell-packages.nix b/pkgs/top-level/haskell-packages.nix index e6986a5b549..a802623df8e 100644 --- a/pkgs/top-level/haskell-packages.nix +++ b/pkgs/top-level/haskell-packages.nix @@ -334,5 +334,9 @@ rec { packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-4.2.nix { }; }; + lts-5_0 = packages.ghc7103.override { + packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-5.0.nix { }; + }; + }; } From 32f4fb1ef533e387603a72ac5e5475add4ee7e1c Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Tue, 26 Jan 2016 18:46:45 +0100 Subject: [PATCH 217/268] nfs-utils: 1.3.2 -> 1.3.3 A very noisy change log is available for download at: http://sourceforge.net/projects/nfs/files/nfs-utils/1.3.3/1.3.3-Changelog/download --- pkgs/os-specific/linux/nfs-utils/default.nix | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/pkgs/os-specific/linux/nfs-utils/default.nix b/pkgs/os-specific/linux/nfs-utils/default.nix index 75f25e26804..0dde3bca4e4 100644 --- a/pkgs/os-specific/linux/nfs-utils/default.nix +++ b/pkgs/os-specific/linux/nfs-utils/default.nix @@ -3,11 +3,11 @@ }: stdenv.mkDerivation rec { - name = "nfs-utils-1.3.2"; # NOTE: when updating, remove the HACK BUG FIX below + name = "nfs-utils-1.3.3"; src = fetchurl { url = "mirror://sourceforge/nfs/${name}.tar.bz2"; - sha256 = "1xwilpdr1vizq2yhpzxpwqqr9f8kn0dy2wcpc626mf30ybp7572v"; + sha256 = "1svn27j5c873nixm46l111g7cgyaj5zd51ahfq8mx5v9m3vh93py"; }; buildInputs = @@ -31,10 +31,6 @@ stdenv.mkDerivation rec { chmod +x "$i" done sed -i s,/usr/sbin,$out/sbin, utils/statd/statd.c - - # HACK BUG FIX: needed for 1.3.2 - # http://git.linux-nfs.org/?p=steved/nfs-utils.git;a=commit;h=17a3e5bffb7110d46de1bf42b64b90713ff5ea50 - sed -e 's,daemon_init(!,daemon_init(,' -i utils/statd/statd.c ''; preBuild = From fa247fa213be33c2ffd31419bde909457b261ded Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Wed, 27 Jan 2016 02:45:20 +0100 Subject: [PATCH 218/268] zstd: init at 0.4.7 --- pkgs/tools/compression/zstd/default.nix | 45 +++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 47 insertions(+) create mode 100644 pkgs/tools/compression/zstd/default.nix diff --git a/pkgs/tools/compression/zstd/default.nix b/pkgs/tools/compression/zstd/default.nix new file mode 100644 index 00000000000..d60b4b3614a --- /dev/null +++ b/pkgs/tools/compression/zstd/default.nix @@ -0,0 +1,45 @@ +{ stdenv, fetchFromGitHub +, legacySupport ? false }: + +stdenv.mkDerivation rec { + name = "zstd-${version}"; + version = "0.4.7"; + + src = fetchFromGitHub { + sha256 = "09l917979qfqk44dbgsa9vs37a2qj4ga43553zcgvnps02wlja8s"; + rev = "v${version}"; + repo = "zstd"; + owner = "Cyan4973"; + }; + + # The Makefiles don't properly use file targets, but blindly rebuild + # all dependencies on every make invocation. So no nice phases. :-( + phases = [ "unpackPhase" "installPhase" "fixupPhase" ]; + + makeFlags = [ + "ZSTD_LEGACY_SUPPORT=${if legacySupport then "1" else "0"}" + ]; + + installFlags = [ + "PREFIX=$(out)" + ]; + + meta = with stdenv.lib; { + description = "Zstandard real-time compression algorithm"; + longDescription = '' + Zstd, short for Zstandard, is a fast lossless compression algorithm, + targeting real-time compression scenarios at zlib-level compression + ratio. Zstd can also offer stronger compression ratio at the cost of + compression speed. Speed/ratio trade-off is configurable by small + increment, to fit different situations. Note however that decompression + speed is preserved and remain roughly the same at all settings, a + property shared by most LZ compression algorithms, such as zlib. + ''; + homepage = http://www.zstd.net/; + # The licence of the CLI programme is GPLv2+, that of the library BSD-2. + license = with licenses; [ gpl2Plus bsd2 ]; + + platforms = platforms.linux; + maintainers = with maintainers; [ nckx ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 96f91be7505..9d5f304d756 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -3759,6 +3759,8 @@ let zsh-navigation-tools = callPackage ../tools/misc/zsh-navigation-tools { }; + zstd = callPackage ../tools/compression/zstd { }; + zsync = callPackage ../tools/compression/zsync { }; zxing = callPackage ../tools/graphics/zxing {}; From de43878f0900056930b464f374f2515a6a39a492 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Wed, 27 Jan 2016 04:42:12 +0100 Subject: [PATCH 219/268] pagemon: init at 0.01.06 --- pkgs/os-specific/linux/pagemon/default.nix | 38 ++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 40 insertions(+) create mode 100644 pkgs/os-specific/linux/pagemon/default.nix diff --git a/pkgs/os-specific/linux/pagemon/default.nix b/pkgs/os-specific/linux/pagemon/default.nix new file mode 100644 index 00000000000..3c94362b820 --- /dev/null +++ b/pkgs/os-specific/linux/pagemon/default.nix @@ -0,0 +1,38 @@ +{ stdenv, fetchFromGitHub, ncurses }: + +stdenv.mkDerivation rec { + name = "pagemon-${version}"; + version = "0.01.06"; + + src = fetchFromGitHub { + sha256 = "0p6mzmyjn5dq1ma9ld47gnrszyf0yph76dd5k7hl60a5zq5741aa"; + rev = "V${version}"; + repo = "pagemon"; + owner = "ColinIanKing"; + }; + + buildInputs = [ ncurses ]; + + makeFlags = [ + "BINDIR=$(out)/bin" + "MANDIR=$(out)/share/man/man8" + ]; + + meta = with stdenv.lib; { + inherit (src.meta) homepage; + description = "Interactive memory/page monitor for Linux"; + longDescription = '' + pagemon is an ncurses based interactive memory/page monitoring tool + allowing one to browse the memory map of an active running process + on Linux. + pagemon reads the PTEs of a given process and display the soft/dirty + activity in real time. The tool identifies the type of memory mapping + a page belongs to, so one can easily scan through memory looking at + pages of memory belonging data, code, heap, stack, anonymous mappings + or even swapped-out pages. + ''; + license = licenses.gpl2Plus; + platforms = platforms.linux; + maintainers = with maintainers; [ nckx ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 9d5f304d756..5c6e584ca26 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10467,6 +10467,8 @@ let nss_ldap = callPackage ../os-specific/linux/nss_ldap { }; + pagemon = callPackage ../os-specific/linux/pagemon { }; + pam = callPackage ../os-specific/linux/pam { }; # pam_bioapi ( see http://www.thinkwiki.org/wiki/How_to_enable_the_fingerprint_reader ) From 367144768506a783aedb501ac2ce1e29d7412cb1 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Wed, 27 Jan 2016 04:59:51 +0100 Subject: [PATCH 220/268] bruteforce-luks: init at 1.2.0 --- .../security/bruteforce-luks/default.nix | 36 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 38 insertions(+) create mode 100644 pkgs/tools/security/bruteforce-luks/default.nix diff --git a/pkgs/tools/security/bruteforce-luks/default.nix b/pkgs/tools/security/bruteforce-luks/default.nix new file mode 100644 index 00000000000..a28f949c7fd --- /dev/null +++ b/pkgs/tools/security/bruteforce-luks/default.nix @@ -0,0 +1,36 @@ +{ stdenv, fetchFromGitHub, autoreconfHook, cryptsetup }: + +stdenv.mkDerivation rec { + name = "bruteforce-luks-${version}"; + version = "1.2.0"; + + src = fetchFromGitHub { + sha256 = "0d01rn45dg7ysa75r8z0b31hj1z7w47vv5vr359pl71zxgzngjd2"; + rev = version; + repo = "bruteforce-luks"; + owner = "glv2"; + }; + + nativeBuildInputs = [ autoreconfHook ]; + buildInputs = [ cryptsetup ]; + + enableParallelBuilding = true; + + doCheck = true; + + meta = with stdenv.lib; { + inherit (src.meta) homepage; + description = "Cracks passwords of LUKS encrypted volumes"; + longDescription = '' + The program tries to decrypt at least one of the key slots by trying + all the possible passwords. It is especially useful if you know + something about the password (i.e. you forgot a part of your password but + still remember most of it). Finding the password of a volume without + knowing anything about it would take way too much time (unless the + password is really short and/or weak). It can also use a dictionary. + ''; + license = licenses.gpl3Plus; + platforms = platforms.linux; + maintainers = with maintainers; [ nckx ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 5c6e584ca26..1848c35737b 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -740,6 +740,8 @@ let }; bro = callPackage ../applications/networking/ids/bro { }; + bruteforce-luks = callPackage ../tools/security/bruteforce-luks { }; + bsod = callPackage ../misc/emulators/bsod { }; btrfs-progs = callPackage ../tools/filesystems/btrfs-progs { }; From dbc58b6eef5a0e198ab31319554e76db55f9c7a0 Mon Sep 17 00:00:00 2001 From: Damien Cassou Date: Wed, 27 Jan 2016 10:22:57 +0100 Subject: [PATCH 221/268] git-latexdiff: init at 1.1.2 --- .../typesetting/git-latexdiff/default.nix | 36 +++++++++++++++++++ .../typesetting/git-latexdiff/shebang.patch | 10 ++++++ .../git-latexdiff/version-test.patch | 17 +++++++++ pkgs/top-level/all-packages.nix | 2 ++ 4 files changed, 65 insertions(+) create mode 100644 pkgs/tools/typesetting/git-latexdiff/default.nix create mode 100644 pkgs/tools/typesetting/git-latexdiff/shebang.patch create mode 100644 pkgs/tools/typesetting/git-latexdiff/version-test.patch diff --git a/pkgs/tools/typesetting/git-latexdiff/default.nix b/pkgs/tools/typesetting/git-latexdiff/default.nix new file mode 100644 index 00000000000..76536190f34 --- /dev/null +++ b/pkgs/tools/typesetting/git-latexdiff/default.nix @@ -0,0 +1,36 @@ +{ stdenv, fetchFromGitLab, git, bash }: + +stdenv.mkDerivation rec { + version = "1.1.2"; + name = "git-latexdiff-${version}"; + + src = fetchFromGitLab { + sha256 = "1alnrjcf3f1qv7fk8h9yachmdz7mjgcynlgsvchfgcb2cpdavxjg"; + rev = "v${version}"; + repo = "git-latexdiff"; + owner = "git-latexdiff"; + }; + + buildInputs = [ git bash ]; + + dontBuild = true; + + patches = [ ./shebang.patch ./version-test.patch ]; + + postPatch = '' + substituteInPlace git-latexdiff \ + --replace "@GIT_LATEXDIFF_VERSION@" "v${version}" + ''; + + installPhase = '' + mkdir -p $prefix/bin + mv git-latexdiff $prefix/bin + chmod +x $prefix/bin/git-latexdiff + ''; + + meta = with stdenv.lib; { + description = "View diff on LaTeX source files on the generated PDF files"; + maintainers = [ maintainers.DamienCassou ]; + license = licenses.free; # https://gitlab.com/git-latexdiff/git-latexdiff/issues/9 + }; +} diff --git a/pkgs/tools/typesetting/git-latexdiff/shebang.patch b/pkgs/tools/typesetting/git-latexdiff/shebang.patch new file mode 100644 index 00000000000..1d6d27c6e31 --- /dev/null +++ b/pkgs/tools/typesetting/git-latexdiff/shebang.patch @@ -0,0 +1,10 @@ +Fix for https://gitlab.com/git-latexdiff/git-latexdiff/issues/8 +--- +--- src/git-latexdiff 2016-01-26 14:04:54.338568955 +0100 ++++ src/git-latexdiff 2016-01-26 14:40:23.700381943 +0100 +@@ -1,4 +1,4 @@ +-#! /bin/bash ++#!/usr/bin/env bash + + # Main author: Matthieu Moy (2012 - 2015) + # (See the Git history for other contributors) diff --git a/pkgs/tools/typesetting/git-latexdiff/version-test.patch b/pkgs/tools/typesetting/git-latexdiff/version-test.patch new file mode 100644 index 00000000000..e116bbd2c24 --- /dev/null +++ b/pkgs/tools/typesetting/git-latexdiff/version-test.patch @@ -0,0 +1,17 @@ +Fix for https://gitlab.com/git-latexdiff/git-latexdiff/issues/7 +--- +--- src/git-latexdiff 2016-01-26 14:04:54.338568955 +0100 ++++ src/git-latexdiff 2016-01-26 14:40:23.700381943 +0100 +@@ -44,11 +44,7 @@ + git_latexdiff_version='@GIT_LATEXDIFF_VERSION@' + + git_latexdiff_compute_version () { +- if [ "$git_latexdiff_version" = '@GIT_LATEXDIFF_VERSION@' ]; then +- (cd "$(dirname "$0")" && git describe --tags HEAD 2>/dev/null || echo 'Unknown version') +- else +- echo "$git_latexdiff_version" +- fi ++ echo "$git_latexdiff_version" + } + + usage () { diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 1c283e4acb1..09b4b337703 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1640,6 +1640,8 @@ let gitlab-git-http-server = callPackage ../applications/version-management/gitlab-git-http-server { }; + git-latexdiff = callPackage ../tools/typesetting/git-latexdiff { }; + glusterfs = callPackage ../tools/filesystems/glusterfs { }; glmark2 = callPackage ../tools/graphics/glmark2 { }; From dc4a9dcfc577c6dc22fea253360058d7228a5988 Mon Sep 17 00:00:00 2001 From: Leroy Hopson Date: Wed, 27 Jan 2016 22:48:50 +1300 Subject: [PATCH 222/268] deis: 1.10.0 -> 1.12.2 --- pkgs/top-level/go-packages.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index a519233e3af..0493ae92c56 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -610,10 +610,10 @@ let }; deis = buildFromGitHub { - rev = "v1.10.0"; + rev = "v1.12.2"; owner = "deis"; repo = "deis"; - sha256 = "0qji0dcfqgvjrfn5fjagjib606n24iy9qank2ckh202s75rxx5w9"; + sha256 = "03lznzcij3gn08kqj2p6skifcdv5aw09dm6zxgvqw7nxx2n1j2ib"; subPackages = [ "client" ]; buildInputs = [ docopt-go crypto yaml-v2 ]; postInstall = '' From 07049a7edf7dc5151cd5f1c7b82e2777bc47cb25 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Mon, 25 Jan 2016 09:14:16 +0100 Subject: [PATCH 223/268] python generic builder: fix typos --- pkgs/development/python-modules/generic/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/generic/default.nix b/pkgs/development/python-modules/generic/default.nix index 902dd50fbbf..dab20b2f744 100644 --- a/pkgs/development/python-modules/generic/default.nix +++ b/pkgs/development/python-modules/generic/default.nix @@ -112,7 +112,7 @@ python.stdenv.mkDerivation (builtins.removeAttrs attrs ["disabled" "doCheck"] // postFixup = attrs.postFixup or '' wrapPythonPrograms - # check if we have two packagegs with the same name in closure and fail + # check if we have two packages with the same name in closure and fail # this shouldn't happen, something went wrong with dependencies specs ${python.interpreter} ${./catch_conflicts.py} ''; @@ -135,7 +135,7 @@ python.stdenv.mkDerivation (builtins.removeAttrs attrs ["disabled" "doCheck"] // } // meta // { # add extra maintainer(s) to every package maintainers = (meta.maintainers or []) ++ [ chaoflow iElectric ]; - # a marker for release utilies to discover python packages + # a marker for release utilities to discover python packages isBuildPythonPackage = python.meta.platforms; }; }) From 10478adc6beb2978d51ab860c1a2d2a3b7c84eee Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Mon, 25 Jan 2016 09:49:28 +0100 Subject: [PATCH 224/268] pythonPackages.aiodns: 1.0.0 -> 1.0.1, fix test runner --- pkgs/top-level/python-packages.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 8a4e29cd266..4817666884b 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -377,18 +377,18 @@ in modules // { aiodns = buildPythonPackage rec { name = "aiodns-${version}"; - version = "1.0.0"; + version = "1.0.1"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/a/aiodns/${name}.tar.gz"; - sha256 = "95140e4d2b67ee16dfbf357d9b54d7453b58f1732e81f869a1803a3ba3773b0d"; + sha256 = "595b78b8d54115d937cf60d778c02dad76b6f789fd527dab308f99e5601e7f3d"; }; propagatedBuildInputs = with self; [ pycares ] ++ optional isPy33 asyncio ++ optional (isPy26 || isPy27 || isPyPy) trollius; - # Tests are not distributed - # https://github.com/saghul/aiodns/issues/13 - doCheck = false; + checkPhase = '' + ${python.interpreter} tests.py + ''; meta = { homepage = http://github.com/saghul/aiodns; From 38f83390b6303d78552e86e6778cb6cadaa4eaac Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Mon, 25 Jan 2016 14:39:36 +0100 Subject: [PATCH 225/268] pythonPackages.pycparser: disable tests 3.5 --- 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 4817666884b..0873134e966 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -3843,8 +3843,8 @@ in modules // { sha256 = "7959b4a74abdc27b312fed1c21e6caf9309ce0b29ea86b591fd2e99ecdf27f73"; }; - # Unsupported - disabled = isPy35; + # 3.5 is not supported but has been working fine + doCheck = !isPy35; meta = { description = "C parser in Python"; From e78dcf77ef60070f7dd1ca6cb1d55b2f83116455 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Mon, 25 Jan 2016 14:40:35 +0100 Subject: [PATCH 226/268] pythonPackages.sounddevice: init at 0.3.1 --- pkgs/top-level/python-packages.nix | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 0873134e966..72df33ab673 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -18953,6 +18953,32 @@ in modules // { }; }; + sounddevice = buildPythonPackage rec { + name = "sounddevice-${version}"; + version = "0.3.1"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/s/sounddevice/${name}.tar.gz"; + sha256 = "8e5a6816b369c7aea77e06092b2fee99c8b6efbeef4851f53ea3cb208a7607f5"; + }; + + propagatedBuildInputs = with self; [ cffi numpy pkgs.portaudio ]; + + # No tests included nor upstream available. + doCheck = false; + + prePatch = '' + substituteInPlace sounddevice.py --replace "'portaudio'" "'${pkgs.portaudio}/lib/libportaudio.so.2'" + ''; + + meta = { + description = "Play and Record Sound with Python"; + homepage = http://python-sounddevice.rtfd.org/; + license = with licenses; [ mit ]; + maintainers = with maintainers; [ fridh ]; + }; + }; + stevedore = buildPythonPackage rec { name = "stevedore-1.7.0"; From 2ee23ca8f82f155d1a61dd2c5c4bfc4d6a756f0c Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Mon, 25 Jan 2016 18:53:50 +0100 Subject: [PATCH 227/268] pythonPackages.bedup: disable tests --- pkgs/top-level/python-packages.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 72df33ab673..6540f3167c4 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -1633,6 +1633,9 @@ in modules // { propagatedBuildInputs = with self; [ contextlib2 pyxdg pycparser alembic ] ++ optionals (!isPyPy) [ cffi ]; + # No proper test suite. Included tests cannot be run because of relative import + doCheck = false; + meta = { description = "Deduplication for Btrfs"; longDescription = '' From 57a2defad2495c4fbbb2f99251eb3451bdec56c3 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Mon, 25 Jan 2016 18:55:47 +0100 Subject: [PATCH 228/268] pythonPackages.aiodns: disable tests --- pkgs/top-level/python-packages.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 6540f3167c4..c3108365a61 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -390,6 +390,9 @@ in modules // { ${python.interpreter} tests.py ''; + # 'Could not contact DNS servers' + doCheck = false; + meta = { homepage = http://github.com/saghul/aiodns; license = licenses.mit; From 93f62fcf0b02a547424c8d4ea2c5e0998dd68ecb Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Mon, 25 Jan 2016 19:04:18 +0100 Subject: [PATCH 229/268] pythonPackages.xkcdpass: disable tests --- pkgs/top-level/python-packages.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index c3108365a61..0a6255c024f 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -24760,6 +24760,11 @@ in modules // { url = "https://pypi.python.org/packages/source/x/xkcdpass/xkcdpass-1.4.2.tar.gz"; sha256 = "4c1f8bee886820c42ccc64c15c3a2275dc6d01028cf6af7c481ded87267d8269"; }; + + # No tests included + # https://github.com/redacted/XKCD-password-generator/issues/32 + doCheck = false; + meta = { homepage = https://pypi.python.org/pypi/xkcdpass/; description = "Generate secure multiword passwords/passphrases, inspired by XKCD"; From ef4f65293bf859e1105699d204c49b0415a9c0d0 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Mon, 25 Jan 2016 19:09:38 +0100 Subject: [PATCH 230/268] pythonPackages.youtube-dl: disable tests --- pkgs/tools/misc/youtube-dl/default.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pkgs/tools/misc/youtube-dl/default.nix b/pkgs/tools/misc/youtube-dl/default.nix index 09328c8d8ab..8baa5cc9174 100644 --- a/pkgs/tools/misc/youtube-dl/default.nix +++ b/pkgs/tools/misc/youtube-dl/default.nix @@ -11,7 +11,8 @@ buildPythonPackage rec { - name = "youtube-dl-2016.01.01"; + name = "youtube-dl-${version}"; + version = "2016.01.01"; src = fetchurl { url = "http://yt-dl.org/downloads/${stdenv.lib.getVersion name}/${name}.tar.gz"; @@ -24,6 +25,9 @@ buildPythonPackage rec { postInstall = stdenv.lib.optionalString (ffmpeg != null) ''wrapProgram $out/bin/youtube-dl --prefix PATH : "${ffmpeg}/bin"''; + # Requires network + doCheck = false; + meta = with stdenv.lib; { homepage = http://rg3.github.io/youtube-dl/; repositories.git = https://github.com/rg3/youtube-dl.git; From 063f5e3d0bcaf19f1853ea72d44ce3ae83aa9612 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Wed, 27 Jan 2016 06:26:14 -0600 Subject: [PATCH 231/268] remove autonix --- pkgs/build-support/autonix/default.nix | 136 ------------------------- pkgs/build-support/autonix/manifest.sh | 44 -------- pkgs/top-level/all-packages.nix | 2 - 3 files changed, 182 deletions(-) delete mode 100644 pkgs/build-support/autonix/default.nix delete mode 100755 pkgs/build-support/autonix/manifest.sh diff --git a/pkgs/build-support/autonix/default.nix b/pkgs/build-support/autonix/default.nix deleted file mode 100644 index 1f71d2cbb3b..00000000000 --- a/pkgs/build-support/autonix/default.nix +++ /dev/null @@ -1,136 +0,0 @@ -{ pkgs }: - -let inherit (pkgs) bash coreutils findutils nix wget; - inherit (pkgs) callPackage fetchurl runCommand stdenv substituteAll writeText; -in - -/* autonix is a collection of tools to automate packaging large collections - * of software, particularly KDE. It consists of three components: - * 1. a script (manifest) to download and hash the packages - * 2. a dependency scanner (autonix-deps) written in Haskell that examines - * the package sources and tries to guess their dependencies - * 3. a library of Nix routines (generateCollection) to generate Nix - * expressions from the output of the previous steps. - */ - -let inherit (stdenv) lib; in - -let - - resolveDeps = scope: deps: - let resolve = dep: - let res = scope."${dep}" or []; - in if lib.isList res then res else [res]; - in lib.concatMap resolve deps; - -in rec { - - /* Download the packages into the Nix store, compute their hashes, - * and generate a package manifest in ./manifest.nix. - */ - manifest = - let - script = - substituteAll - { - src = ./manifest.sh; - inherit bash coreutils findutils nix wget; - }; - in - runCommand "autonix-manifest" {} - '' - cp ${script} $out - chmod +x $out - ''; - - mkPackage = callPackage: defaultOverride: name: pkg: let drv = - { mkDerivation, fetchurl, scope }: - - mkDerivation (defaultOverride { - inherit (pkg) name; - - src = fetchurl pkg.src; - - buildInputs = resolveDeps scope pkg.buildInputs; - nativeBuildInputs = resolveDeps scope pkg.nativeBuildInputs; - propagatedBuildInputs = resolveDeps scope pkg.propagatedBuildInputs; - propagatedNativeBuildInputs = - resolveDeps scope pkg.propagatedNativeBuildInputs; - propagatedUserEnvPkgs = resolveDeps scope pkg.propagatedUserEnvPkgs; - - enableParallelBuilding = true; - }); - in callPackage drv {}; - - renameDeps = renames: lib.mapAttrs (name: pkg: - let breakCycles = lib.filter (dep: dep != name); - rename = dep: renames."${dep}" or dep; - in pkg // { - buildInputs = breakCycles (map rename pkg.buildInputs); - nativeBuildInputs = breakCycles (map rename pkg.nativeBuildInputs); - propagatedBuildInputs = breakCycles (map rename pkg.propagatedBuildInputs); - propagatedNativeBuildInputs = - breakCycles (map rename pkg.propagatedNativeBuildInputs); - propagatedUserEnvPkgs = breakCycles (map rename pkg.propagatedUserEnvPkgs); - }); - - propagateDeps = propagated: lib.mapAttrs (name: pkg: - let isPropagated = dep: lib.elem dep propagated; - isNotPropagated = dep: !(isPropagated dep); - in pkg // { - buildInputs = lib.filter isNotPropagated pkg.buildInputs; - nativeBuildInputs = lib.filter isNotPropagated pkg.nativeBuildInputs; - propagatedBuildInputs = - pkg.propagatedBuildInputs - ++ lib.filter isPropagated pkg.buildInputs; - propagatedNativeBuildInputs = - pkg.propagatedNativeBuildInputs - ++ lib.filter isPropagated pkg.nativeBuildInputs; - }); - - nativeDeps = native: lib.mapAttrs (name: pkg: - let isNative = dep: lib.elem dep native; - isNotNative = dep: !(isNative dep); - in pkg // { - buildInputs = lib.filter isNotNative pkg.buildInputs; - nativeBuildInputs = - pkg.nativeBuildInputs - ++ lib.filter isNative pkg.buildInputs; - propagatedBuildInputs = lib.filter isNotNative pkg.propagatedBuildInputs; - propagatedNativeBuildInputs = - pkg.propagatedNativeBuildInputs - ++ lib.filter isNative pkg.propagatedBuildInputs; - }); - - userEnvDeps = user: lib.mapAttrs (name: pkg: - let allDeps = with pkg; lib.concatLists [ - buildInputs - nativeBuildInputs - propagatedBuildInputs - propagatedNativeBuildInputs - ]; - in assert (lib.isList allDeps); pkg // { - propagatedUserEnvPkgs = lib.filter (dep: lib.elem dep user) allDeps; - }); - - overrideDerivation = pkg: f: pkg.override (super: super // { - mkDerivation = drv: super.mkDerivation (drv // f drv); - }); - - extendDerivation = pkg: attrs: - let mergeAttrBy = lib.mergeAttrBy // { - propagatedNativeBuildInputs = a: b: a ++ b; - NIX_CFLAGS_COMPILE = a: b: "${a} ${b}"; - cmakeFlags = a: b: a ++ b; - }; - mergeAttrsByFunc = sets: - let merged = lib.foldl lib.mergeAttrByFunc { inherit mergeAttrBy; } sets; - in builtins.removeAttrs merged ["mergeAttrBy"]; - in overrideDerivation pkg (drv: mergeAttrsByFunc [ drv attrs ]); - - overrideScope = pkg: fnOrSet: pkg.override (super: super // { - scope = if builtins.isFunction fnOrSet - then super.scope // fnOrSet super.scope - else super.scope // fnOrSet; - }); -} diff --git a/pkgs/build-support/autonix/manifest.sh b/pkgs/build-support/autonix/manifest.sh deleted file mode 100755 index 5be69cc6175..00000000000 --- a/pkgs/build-support/autonix/manifest.sh +++ /dev/null @@ -1,44 +0,0 @@ -#!@bash@/bin/bash - -@coreutils@/bin/mkdir tmp; cd tmp - -@wget@/bin/wget -nH -r -c --no-parent $* - -cat >../manifest.json <>../manifest.json - url="${path:2}" - # Sanitize file name - filename=$(@coreutils@/bin/basename "${path}" | tr '@' '_') - nameversion="${filename%.tar.*}" - name="${nameversion%-*}" - dirname=$(@coreutils@/bin/dirname "${path}") - mv "${workdir}/${path}" "${workdir}/${dirname}/${filename}" - # Prefetch and hash source file - sha256=$(@nix@/bin/nix-prefetch-url "file://${workdir}/${dirname}/${filename}") - store=$(@nix@/bin/nix-store --print-fixed-path sha256 "$sha256" "$filename") - cat >>../manifest.json <>../manifest.json - -cd .. diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 5582341a9b1..ccabbaa7bd9 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -255,8 +255,6 @@ let theAttrSet = arg; }; - autonix = import ../build-support/autonix { inherit pkgs; }; - autoreconfHook = makeSetupHook { substitutions = { inherit autoconf automake gettext libtool; }; } ../build-support/setup-hooks/autoreconf.sh; From c5c3082e4e149fa04db5f4f5027d9be1e626c9ee Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Wed, 27 Jan 2016 06:29:19 -0600 Subject: [PATCH 232/268] kde5.plasma: 5.5.3 -> 5.5.4 --- pkgs/desktops/plasma-5.5/fetchsrcs.sh | 2 +- pkgs/desktops/plasma-5.5/srcs.nix | 304 +++++++++++++------------- 2 files changed, 153 insertions(+), 153 deletions(-) diff --git a/pkgs/desktops/plasma-5.5/fetchsrcs.sh b/pkgs/desktops/plasma-5.5/fetchsrcs.sh index 7d80ec7890d..714e0fc7509 100755 --- a/pkgs/desktops/plasma-5.5/fetchsrcs.sh +++ b/pkgs/desktops/plasma-5.5/fetchsrcs.sh @@ -4,7 +4,7 @@ set -x # The trailing slash at the end is necessary! -RELEASE_URL="http://download.kde.org/stable/plasma/5.5.3/" +RELEASE_URL="http://download.kde.org/stable/plasma/5.5.4/" EXTRA_WGET_ARGS='-A *.tar.xz' mkdir tmp; cd tmp diff --git a/pkgs/desktops/plasma-5.5/srcs.nix b/pkgs/desktops/plasma-5.5/srcs.nix index a96450b482d..3b63c864045 100644 --- a/pkgs/desktops/plasma-5.5/srcs.nix +++ b/pkgs/desktops/plasma-5.5/srcs.nix @@ -3,307 +3,307 @@ { bluedevil = { - version = "5.5.3"; + version = "5.5.4"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.3/bluedevil-5.5.3.tar.xz"; - sha256 = "079bj1s86w9xycijs7imfwkhbg6k8sw22dh6p52q0kzsbz4sh7mk"; - name = "bluedevil-5.5.3.tar.xz"; + url = "${mirror}/stable/plasma/5.5.4/bluedevil-5.5.4.tar.xz"; + sha256 = "1r20dlsg83d3lrnbdb92cpd7h0s2fmh0vjv3xi5z6rf741463p14"; + name = "bluedevil-5.5.4.tar.xz"; }; }; breeze = { - version = "5.5.3"; + version = "5.5.4"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.3/breeze-5.5.3.tar.xz"; - sha256 = "1kaw4mv86lw0igqhbl7v60k11s9az2cj14rs6yqrl96k2ki3931x"; - name = "breeze-5.5.3.tar.xz"; + url = "${mirror}/stable/plasma/5.5.4/breeze-5.5.4.tar.xz"; + sha256 = "0chlp5z5zz19rh9k4ffjr92hn07dmavfcwx0wwffy8qhiw6qw7w3"; + name = "breeze-5.5.4.tar.xz"; }; }; breeze-gtk = { - version = "5.5.3"; + version = "5.5.4"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.3/breeze-gtk-5.5.3.tar.xz"; - sha256 = "0ph3n77s37rklcjmh5g9rj047hmiym6h4dn27zxmfnfybr52zfjv"; - name = "breeze-gtk-5.5.3.tar.xz"; + url = "${mirror}/stable/plasma/5.5.4/breeze-gtk-5.5.4.tar.xz"; + sha256 = "1r6ihmpgha1s4hvgr4jliqvbraw06fnaa4sjrhzqbx9dh00y5d8v"; + name = "breeze-gtk-5.5.4.tar.xz"; }; }; discover = { - version = "5.5.3"; + version = "5.5.4"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.3/discover-5.5.3.tar.xz"; - sha256 = "0qhhgnjpwdir3y6i3z4cvfvgigbrmsblwkxhsafg015ralklgcnd"; - name = "discover-5.5.3.tar.xz"; + url = "${mirror}/stable/plasma/5.5.4/discover-5.5.4.tar.xz"; + sha256 = "0d5s8b9f5az40ajviijc67rz5l2345wlrqacjm4pdi8fqvxivb1v"; + name = "discover-5.5.4.tar.xz"; }; }; kde-cli-tools = { - version = "5.5.3"; + version = "5.5.4"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.3/kde-cli-tools-5.5.3.tar.xz"; - sha256 = "0aw936amj3jigi3n8ldhlihmp4v9m7mbjbxlhp8s7643963f3n3w"; - name = "kde-cli-tools-5.5.3.tar.xz"; + url = "${mirror}/stable/plasma/5.5.4/kde-cli-tools-5.5.4.tar.xz"; + sha256 = "1w9l8lh05k6xjdz0nccfygp76lp3wf3xa6pizmgv27wq21pw4wxy"; + name = "kde-cli-tools-5.5.4.tar.xz"; }; }; kdecoration = { - version = "5.5.3"; + version = "5.5.4"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.3/kdecoration-5.5.3.tar.xz"; - sha256 = "1lhzbk9bwn7biilqbk7n8dd453a7580n50571lyxxr6b7kfs6ikv"; - name = "kdecoration-5.5.3.tar.xz"; + url = "${mirror}/stable/plasma/5.5.4/kdecoration-5.5.4.tar.xz"; + sha256 = "1ghgvg0lfjjlgl3a9ryw1y8aqihdwrkr7qjph4v3p9brlpqm5326"; + name = "kdecoration-5.5.4.tar.xz"; }; }; kde-gtk-config = { - version = "5.5.3"; + version = "5.5.4"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.3/kde-gtk-config-5.5.3.tar.xz"; - sha256 = "0dk2gda8qc1mg8fra3lgb4mizl5q2bx8zx5j2w3r8gqrw2g6vk5v"; - name = "kde-gtk-config-5.5.3.tar.xz"; + url = "${mirror}/stable/plasma/5.5.4/kde-gtk-config-5.5.4.tar.xz"; + sha256 = "062jgc2sqd93yz5n1z4n7h50k7zsiayi3z901y2rq0x62nndff1m"; + name = "kde-gtk-config-5.5.4.tar.xz"; }; }; kdeplasma-addons = { - version = "5.5.3"; + version = "5.5.4"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.3/kdeplasma-addons-5.5.3.tar.xz"; - sha256 = "0i2j5m51dlbrh54ndspk9zl4ggwpfampsbdjs6kzwisxa4ksyz1s"; - name = "kdeplasma-addons-5.5.3.tar.xz"; + url = "${mirror}/stable/plasma/5.5.4/kdeplasma-addons-5.5.4.tar.xz"; + sha256 = "0yrrjkh632q3ns068j7avaf2rkn2n54sf594jyl30q5fxc22mhq1"; + name = "kdeplasma-addons-5.5.4.tar.xz"; }; }; kgamma5 = { - version = "5.5.3"; + version = "5.5.4"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.3/kgamma5-5.5.3.tar.xz"; - sha256 = "0pm41wfihayp980z4zb5jdsh7qvyd93bql36jzicv8mmj2z7p3g4"; - name = "kgamma5-5.5.3.tar.xz"; + url = "${mirror}/stable/plasma/5.5.4/kgamma5-5.5.4.tar.xz"; + sha256 = "0w63m1sxq2fa0wabyyry4prbzc2c54adc56hfhkh84rflccfbnc2"; + name = "kgamma5-5.5.4.tar.xz"; }; }; khelpcenter = { - version = "5.5.3"; + version = "5.5.4"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.3/khelpcenter-5.5.3.tar.xz"; - sha256 = "0gazbv5z1145zv0d7zrm41byqs9blis2x6ij2yha7h8i0vf748rc"; - name = "khelpcenter-5.5.3.tar.xz"; + url = "${mirror}/stable/plasma/5.5.4/khelpcenter-5.5.4.tar.xz"; + sha256 = "01kw97p1xz2gghghykkv953bvypcyd080fxknjrzn4v9gl5mrjv0"; + name = "khelpcenter-5.5.4.tar.xz"; }; }; khotkeys = { - version = "5.5.3"; + version = "5.5.4"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.3/khotkeys-5.5.3.tar.xz"; - sha256 = "0mmszjnwcza30b5npd6ddkj88g4zy3nhnpw7bdghz053cn1lb1m0"; - name = "khotkeys-5.5.3.tar.xz"; + url = "${mirror}/stable/plasma/5.5.4/khotkeys-5.5.4.tar.xz"; + sha256 = "1jlpzqrww2n9zf5cwlvpyvxcz0wv0cyln1xjhm49ayl5iin3m9yn"; + name = "khotkeys-5.5.4.tar.xz"; }; }; kinfocenter = { - version = "5.5.3"; + version = "5.5.4"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.3/kinfocenter-5.5.3.tar.xz"; - sha256 = "1c5bbvkfmdizkmd4n0mqbg6mpixkxvmahprsrlczh4fyd12j1r00"; - name = "kinfocenter-5.5.3.tar.xz"; + url = "${mirror}/stable/plasma/5.5.4/kinfocenter-5.5.4.tar.xz"; + sha256 = "10qhq76ha1mahpmgrj4kw660zf92k7ys3mz2dkiid7ib6gsimir4"; + name = "kinfocenter-5.5.4.tar.xz"; }; }; kmenuedit = { - version = "5.5.3"; + version = "5.5.4"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.3/kmenuedit-5.5.3.tar.xz"; - sha256 = "1vihqqc431na4b29hliflcv61lhw1r43l0m4bficcy0l6xkmiyxz"; - name = "kmenuedit-5.5.3.tar.xz"; + url = "${mirror}/stable/plasma/5.5.4/kmenuedit-5.5.4.tar.xz"; + sha256 = "0scsr3isf4d0hlk85pk0snn6j5cwm7qlqnl6iqs0df32g8ysirs6"; + name = "kmenuedit-5.5.4.tar.xz"; }; }; kscreen = { - version = "5.5.3"; + version = "5.5.4"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.3/kscreen-5.5.3.tar.xz"; - sha256 = "12r4k9ihlx62wgra7aw3pj5gjscg3jw1akkjrw9dkjy1vbpdxmpg"; - name = "kscreen-5.5.3.tar.xz"; + url = "${mirror}/stable/plasma/5.5.4/kscreen-5.5.4.tar.xz"; + sha256 = "0ax67gqfjw59jk3wh3sflk3q10xqrjwf2qmvx6jky6q2x4kdixvv"; + name = "kscreen-5.5.4.tar.xz"; }; }; kscreenlocker = { - version = "5.5.3"; + version = "5.5.4"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.3/kscreenlocker-5.5.3.tar.xz"; - sha256 = "1crgnq6hwi7hy1yx2brs8hln57ib889ifz5ba72v9j4wk0439p49"; - name = "kscreenlocker-5.5.3.tar.xz"; + url = "${mirror}/stable/plasma/5.5.4/kscreenlocker-5.5.4.tar.xz"; + sha256 = "18r53f5vri8xaj53zskadnxqxs60akxmwkq54xnb4lvg5cks9hrr"; + name = "kscreenlocker-5.5.4.tar.xz"; }; }; ksshaskpass = { - version = "5.5.3"; + version = "5.5.4"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.3/ksshaskpass-5.5.3.tar.xz"; - sha256 = "14xlvbb411vc3rfkdfcyx7jdgdnaf9gwy6xd6bivvdlj9hq2nikb"; - name = "ksshaskpass-5.5.3.tar.xz"; + url = "${mirror}/stable/plasma/5.5.4/ksshaskpass-5.5.4.tar.xz"; + sha256 = "0hlgf7896qksivmf79ks0xcqndjvmmq13ywrkc0l43pcj50ydhj2"; + name = "ksshaskpass-5.5.4.tar.xz"; }; }; ksysguard = { - version = "5.5.3"; + version = "5.5.4"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.3/ksysguard-5.5.3.tar.xz"; - sha256 = "1y5x3n1rqncnzvs7j1icb4k3i2254l5mvvw6rrr6ymd1mvl8h1hx"; - name = "ksysguard-5.5.3.tar.xz"; + url = "${mirror}/stable/plasma/5.5.4/ksysguard-5.5.4.tar.xz"; + sha256 = "1hbq8ppz9ijkk032aldrxyfwk1yrpjchfy6w6mg836bi8f69i1kc"; + name = "ksysguard-5.5.4.tar.xz"; }; }; kwallet-pam = { - version = "5.5.3"; + version = "5.5.4"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.3/kwallet-pam-5.5.3.tar.xz"; - sha256 = "0nlzrvdzf339pjcvm359brf0dmlx983gamjr75wm4277hhxwmphd"; - name = "kwallet-pam-5.5.3.tar.xz"; + url = "${mirror}/stable/plasma/5.5.4/kwallet-pam-5.5.4.tar.xz"; + sha256 = "0cj9iq7ba24lccgj3h4fpa97bcm3lw3yz43hfhldiwdkzl1pydhl"; + name = "kwallet-pam-5.5.4.tar.xz"; }; }; kwayland = { - version = "5.5.3"; + version = "5.5.4"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.3/kwayland-5.5.3.tar.xz"; - sha256 = "0jmv4zphy2fb1pnkxcgsy1qcd926llqgqcdqn0kiwlxaznll0lnz"; - name = "kwayland-5.5.3.tar.xz"; + url = "${mirror}/stable/plasma/5.5.4/kwayland-5.5.4.tar.xz"; + sha256 = "1cprg187h8pny86910m08pzyvknbcqa9x3xbqh7flrpw0rvrg5wp"; + name = "kwayland-5.5.4.tar.xz"; }; }; kwayland-integration = { - version = "5.5.3"; + version = "5.5.4"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.3/kwayland-integration-5.5.3.tar.xz"; - sha256 = "1yyp8vq6b544gbphpfcdayn1n0g4i3lyb5n1pnxb71nvv2j5ji95"; - name = "kwayland-integration-5.5.3.tar.xz"; + url = "${mirror}/stable/plasma/5.5.4/kwayland-integration-5.5.4.tar.xz"; + sha256 = "07vv7gjqgmgn766p6nifn2i835rdhs6kvp24a5fqnh8ad24m8fjy"; + name = "kwayland-integration-5.5.4.tar.xz"; }; }; kwin = { - version = "5.5.3"; + version = "5.5.4"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.3/kwin-5.5.3.tar.xz"; - sha256 = "1hjgxm8l25vdc7zfv6kivgdwhbjvjfia7lqdsv8r4rf110f4an70"; - name = "kwin-5.5.3.tar.xz"; + url = "${mirror}/stable/plasma/5.5.4/kwin-5.5.4.tar.xz"; + sha256 = "1015a0d3yi5b4isfkrl3w3mdslh0r1xyhvy9z8liz3wnxgrajwj8"; + name = "kwin-5.5.4.tar.xz"; }; }; kwrited = { - version = "5.5.3"; + version = "5.5.4"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.3/kwrited-5.5.3.tar.xz"; - sha256 = "1bggps8icam3ngkzxz6hkf8r5slz4x25wd1c47651y8prvqdagx9"; - name = "kwrited-5.5.3.tar.xz"; + url = "${mirror}/stable/plasma/5.5.4/kwrited-5.5.4.tar.xz"; + sha256 = "01d8q3hj5frhmafsavgvyz2nlbd4ma4fsx12dhjyxqsgxdvvgffh"; + name = "kwrited-5.5.4.tar.xz"; }; }; libkscreen = { - version = "5.5.3"; + version = "5.5.4"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.3/libkscreen-5.5.3.tar.xz"; - sha256 = "04gm7sqpij0mnivrhx7n2y0y1dpsffsvbn5l5l754q5bis6f182y"; - name = "libkscreen-5.5.3.tar.xz"; + url = "${mirror}/stable/plasma/5.5.4/libkscreen-5.5.4.tar.xz"; + sha256 = "15q7x844x8cz15b3mkh4lwygvrx66s0fl706b221p3my54n63ymf"; + name = "libkscreen-5.5.4.tar.xz"; }; }; libksysguard = { - version = "5.5.3"; + version = "5.5.4"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.3/libksysguard-5.5.3.tar.xz"; - sha256 = "1p35agppwplfz396irdprsjgqjqpin4vbcigzylxflbvp7yp5sgl"; - name = "libksysguard-5.5.3.tar.xz"; + url = "${mirror}/stable/plasma/5.5.4/libksysguard-5.5.4.tar.xz"; + sha256 = "1irrb3im0gr8yhkp570bqipbqz8igpxr2k4kxb2c04111npkqmw1"; + name = "libksysguard-5.5.4.tar.xz"; }; }; milou = { - version = "5.5.3"; + version = "5.5.4"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.3/milou-5.5.3.tar.xz"; - sha256 = "0sddp3x8hm5d300bxn2m6j0vvy49kw8hidqmc7yim5gvimipzn92"; - name = "milou-5.5.3.tar.xz"; + url = "${mirror}/stable/plasma/5.5.4/milou-5.5.4.tar.xz"; + sha256 = "0dc8jbk0yihqv5jxd4i12rmvfyyp63b6hx9q22qjrj5gkda1cddl"; + name = "milou-5.5.4.tar.xz"; }; }; oxygen = { - version = "5.5.3"; + version = "5.5.4"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.3/oxygen-5.5.3.tar.xz"; - sha256 = "1rynv9scc4pm682imjc8w8czcf4yryzkwvsviyl86iqx1v14jydn"; - name = "oxygen-5.5.3.tar.xz"; + url = "${mirror}/stable/plasma/5.5.4/oxygen-5.5.4.tar.xz"; + sha256 = "10fjwk1aznpkrnal961kfwpjjil2iy2n0x96h26bh91l4insix1v"; + name = "oxygen-5.5.4.tar.xz"; }; }; plasma-desktop = { - version = "5.5.3"; + version = "5.5.4"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.3/plasma-desktop-5.5.3.tar.xz"; - sha256 = "1w5bphy231722ly2f8ybpgdck0sbrlibjjxvkby2r2pynzsgbr0m"; - name = "plasma-desktop-5.5.3.tar.xz"; + url = "${mirror}/stable/plasma/5.5.4/plasma-desktop-5.5.4.tar.xz"; + sha256 = "0lkjgbqinxy40w6z01akpihljqpm7bachmxqmcp6fjnzawql2xqd"; + name = "plasma-desktop-5.5.4.tar.xz"; }; }; plasma-mediacenter = { - version = "5.5.3"; + version = "5.5.4"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.3/plasma-mediacenter-5.5.3.tar.xz"; - sha256 = "15sisk0pyggrirfkvbq2qcy17m1jgxn43vznfnbzp8dp9yrz0wbv"; - name = "plasma-mediacenter-5.5.3.tar.xz"; + url = "${mirror}/stable/plasma/5.5.4/plasma-mediacenter-5.5.4.tar.xz"; + sha256 = "1rn7qffd11dljx1il7cw74wbqf4lwmmlcv19yxj08fdrp5ylqr8a"; + name = "plasma-mediacenter-5.5.4.tar.xz"; }; }; plasma-nm = { - version = "5.5.3"; + version = "5.5.4"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.3/plasma-nm-5.5.3.tar.xz"; - sha256 = "1ijqx0aphdhk5zffy4mnc1lbkkzdhj0qng0v4978kkxxjdq7g26q"; - name = "plasma-nm-5.5.3.tar.xz"; + url = "${mirror}/stable/plasma/5.5.4/plasma-nm-5.5.4.tar.xz"; + sha256 = "0bjfcsavrqx4i4c0ynfmdna7fnmabm8970h3dnx7ihwsqgjf5q31"; + name = "plasma-nm-5.5.4.tar.xz"; }; }; plasma-pa = { - version = "5.5.3"; + version = "5.5.4"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.3/plasma-pa-5.5.3.tar.xz"; - sha256 = "0hpdf9vhsys0jbv8fya2dqdnig8bvbnaxp01x0zwa59lxb6b3czf"; - name = "plasma-pa-5.5.3.tar.xz"; + url = "${mirror}/stable/plasma/5.5.4/plasma-pa-5.5.4.tar.xz"; + sha256 = "0d1cdixgxa2vsgv47hinh5nsbf2bln3ppdlrnzz9vglian0z7879"; + name = "plasma-pa-5.5.4.tar.xz"; }; }; plasma-sdk = { - version = "5.5.3"; + version = "5.5.4"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.3/plasma-sdk-5.5.3.tar.xz"; - sha256 = "0cqg8a3gmmifgicca7fg559didqmr7hgpfybw7j8rlibsh8wdlk5"; - name = "plasma-sdk-5.5.3.tar.xz"; + url = "${mirror}/stable/plasma/5.5.4/plasma-sdk-5.5.4.tar.xz"; + sha256 = "0fdx4f8z00276s1p1v1bkbrhy59jswk2dj8kcj96r2rk3xzcg0ax"; + name = "plasma-sdk-5.5.4.tar.xz"; }; }; plasma-workspace = { - version = "5.5.3"; + version = "5.5.4"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.3/plasma-workspace-5.5.3.tar.xz"; - sha256 = "0wpsmw1rbidr8fc4zcfp84h05gs6cfxcl6cn0azb8lc2zh3v4ja9"; - name = "plasma-workspace-5.5.3.tar.xz"; + url = "${mirror}/stable/plasma/5.5.4/plasma-workspace-5.5.4.tar.xz"; + sha256 = "0zh96qq0nl1c6bni7vnciba548f3cjacsi06n2rv05356j1fp87h"; + name = "plasma-workspace-5.5.4.tar.xz"; }; }; plasma-workspace-wallpapers = { - version = "5.5.3"; + version = "5.5.4"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.3/plasma-workspace-wallpapers-5.5.3.tar.xz"; - sha256 = "1i1gysw489spvpbfr654yncf8yjpg29aggk21ykmmmyc2qpz1jxp"; - name = "plasma-workspace-wallpapers-5.5.3.tar.xz"; + url = "${mirror}/stable/plasma/5.5.4/plasma-workspace-wallpapers-5.5.4.tar.xz"; + sha256 = "0p111f95di11k4v19c1mg694c71825najmi8dzj2qrif5sb2vvsn"; + name = "plasma-workspace-wallpapers-5.5.4.tar.xz"; }; }; polkit-kde-agent = { - version = "1-5.5.3"; + version = "1-5.5.4"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.3/polkit-kde-agent-1-5.5.3.tar.xz"; - sha256 = "1hh3i0chc817bvxaydb2ak1wq65wzrqyj7dl3q1wl4l7a4yyh8ab"; - name = "polkit-kde-agent-1-5.5.3.tar.xz"; + url = "${mirror}/stable/plasma/5.5.4/polkit-kde-agent-1-5.5.4.tar.xz"; + sha256 = "116sj9s45n3qcgfsdz5hh6a73b0hldgcnxbpvi4320xpny316vh2"; + name = "polkit-kde-agent-1-5.5.4.tar.xz"; }; }; powerdevil = { - version = "5.5.3"; + version = "5.5.4"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.3/powerdevil-5.5.3.tar.xz"; - sha256 = "0ilx44rhy0z8c0kv439nypr5rrs7wk30a1hnhdzssqbhc4d43kzy"; - name = "powerdevil-5.5.3.tar.xz"; + url = "${mirror}/stable/plasma/5.5.4/powerdevil-5.5.4.tar.xz"; + sha256 = "0i0i55g72yb9z8agv1yyrx98l3s0fs5wn51kz571vqqrw6m3wn7l"; + name = "powerdevil-5.5.4.tar.xz"; }; }; sddm-kcm = { - version = "5.5.3"; + version = "5.5.4"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.3/sddm-kcm-5.5.3.tar.xz"; - sha256 = "0gijb75bzqih7h4m6r6kqg16p5l7rj4nb1cc959gqqkkqxghgfd0"; - name = "sddm-kcm-5.5.3.tar.xz"; + url = "${mirror}/stable/plasma/5.5.4/sddm-kcm-5.5.4.tar.xz"; + sha256 = "04vh4f2hg5584acb5ywf1i8z6lvz0fcs7zh085bm7pkx5l60l59b"; + name = "sddm-kcm-5.5.4.tar.xz"; }; }; systemsettings = { - version = "5.5.3"; + version = "5.5.4"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.3/systemsettings-5.5.3.tar.xz"; - sha256 = "1wcbgs10shhgip1dxz80wxpgxifrcal863h6ygzpqwj9jb53dj7x"; - name = "systemsettings-5.5.3.tar.xz"; + url = "${mirror}/stable/plasma/5.5.4/systemsettings-5.5.4.tar.xz"; + sha256 = "1i7ljxsnwf2kwd05kzxirbyaxj3w5kyr0jq9j0iy3jlz97p4jkpv"; + name = "systemsettings-5.5.4.tar.xz"; }; }; user-manager = { - version = "5.5.3"; + version = "5.5.4"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.3/user-manager-5.5.3.tar.xz"; - sha256 = "1v421xfy089m6kj7x5175lvvsaqjk9y9zr7s33jsnhg8zd1hwwcm"; - name = "user-manager-5.5.3.tar.xz"; + url = "${mirror}/stable/plasma/5.5.4/user-manager-5.5.4.tar.xz"; + sha256 = "17lki4y77rq1n100p74q4n6sm3l5dxvv996wf4w1j2n2aiw89p4j"; + name = "user-manager-5.5.4.tar.xz"; }; }; } From 7683f3e8eb46fd174f4949c4443a73b504e70068 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Wed, 27 Jan 2016 06:30:42 -0600 Subject: [PATCH 233/268] bluedevil: propagated bluez-qt --- pkgs/desktops/plasma-5.5/bluedevil.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/desktops/plasma-5.5/bluedevil.nix b/pkgs/desktops/plasma-5.5/bluedevil.nix index d099e95a16b..dc11ee170b3 100644 --- a/pkgs/desktops/plasma-5.5/bluedevil.nix +++ b/pkgs/desktops/plasma-5.5/bluedevil.nix @@ -16,6 +16,7 @@ plasmaPackage { propagatedBuildInputs = [ bluez-qt ki18n kio kwindowsystem plasma-framework qtdeclarative ]; + propagatedUserEnvPkgs = [ bluez-qt ]; postInstall = '' wrapQtProgram "$out/bin/bluedevil-wizard" wrapQtProgram "$out/bin/bluedevil-sendfile" From 85f5394c5f822f03b61d5b9a0c62cd72b3e7fe93 Mon Sep 17 00:00:00 2001 From: taku0 Date: Wed, 27 Jan 2016 23:34:42 +0900 Subject: [PATCH 234/268] firefox-bin: 43.0.4 -> 44.0 --- .../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 14806cef25a..bde8830145b 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_sources.rb > sources.nix { - version = "43.0.4"; + version = "44.0"; sources = [ - { locale = "ach"; arch = "linux-i686"; sha256 = "88e62cbc7a46a4bdc9822a7155a7a92fd856472323fe93c2c6684262b8e71056"; } - { locale = "ach"; arch = "linux-x86_64"; sha256 = "e0eb56995f078a72c0bcf8a38a68e3087ca6c229181d0ca75052d2b784acd6f3"; } - { locale = "af"; arch = "linux-i686"; sha256 = "826a7c46b08813698c6fc6cfa3faf8d8fb3c6bfa2d9126d2668f91f34fa5874a"; } - { locale = "af"; arch = "linux-x86_64"; sha256 = "74efde0018f1c0a0d8afab8a069c7dc2ace12a9c2e8ccc5021601aa472581ea1"; } - { locale = "an"; arch = "linux-i686"; sha256 = "bd7c8cd1473fa7b15905fc2a9aa5595a7ffe4e6a53a4c832dfbe3393236a2706"; } - { locale = "an"; arch = "linux-x86_64"; sha256 = "73e97be9965dea6416d88b7edb609ed1c7cecbb48c363370dec68854ebcc2b05"; } - { locale = "ar"; arch = "linux-i686"; sha256 = "30fbc1adfda1487093ed3ca3571bc4c02132b8fd65a67c937e10d5a53fffe2c5"; } - { locale = "ar"; arch = "linux-x86_64"; sha256 = "5c7b899f37cd894b79c74e95c03e131e8809fd147316d21ac5d9e0165840bdbb"; } - { locale = "as"; arch = "linux-i686"; sha256 = "2dc43867cd934830c79050e2080570e86fe63ab9ce80252599a7ac29ef21408a"; } - { locale = "as"; arch = "linux-x86_64"; sha256 = "73c6712729087bbebc335e631505dca89fbfc9eedf6fcec220f66f50e013f938"; } - { locale = "ast"; arch = "linux-i686"; sha256 = "3b76e984e74737f0bd22e10c017bbfc3ff9346a9bf83ec09d959cdc0c5b4c36c"; } - { locale = "ast"; arch = "linux-x86_64"; sha256 = "2b9b732d19498b78c72d8f0bcf0852c7d209c3a3e0c891fbef6be753e39bc9a3"; } - { locale = "az"; arch = "linux-i686"; sha256 = "8889cf66294a788b59754a4331c6fe4ceccf5d4efedb402d144f27384e491b46"; } - { locale = "az"; arch = "linux-x86_64"; sha256 = "cca620118720374edf45b8dba81ffa5086f640bb1c10b67cfe6286aa2afc3a6f"; } - { locale = "be"; arch = "linux-i686"; sha256 = "33543ed7c2f68457573729fa95fb306a3c509d8ecda937d5d638d6d158979ced"; } - { locale = "be"; arch = "linux-x86_64"; sha256 = "58c567f2b6657f533bcc20d39f29715a503a0a9d59e05ccf9b4f3f3ba64280ca"; } - { locale = "bg"; arch = "linux-i686"; sha256 = "5b87663b5887a8eeceee3c0e54c99c66ca673bbf78b434cdcac659891c1f3333"; } - { locale = "bg"; arch = "linux-x86_64"; sha256 = "ebcf93c8b5ae952f244426988defbfe0638cf81a8dc4c372613be08f9e0d8f45"; } - { locale = "bn-BD"; arch = "linux-i686"; sha256 = "30af81108a6f9ea31a623666ebfb68d99ec256e27cc8d18921bfe2780753ba4c"; } - { locale = "bn-BD"; arch = "linux-x86_64"; sha256 = "082ddb0fce87e1399dc95cb94fcc71ebe334f7e611497c0b0bb8186edf46e8e5"; } - { locale = "bn-IN"; arch = "linux-i686"; sha256 = "3e8af6555a65ee403b8fdd3a78842ec4f7c16fb3c590f77d9ddd76e9631d564c"; } - { locale = "bn-IN"; arch = "linux-x86_64"; sha256 = "78bf008a03318c1d58788433a07b71b63bd52cd2befcc68f8c6320d5ff5dc387"; } - { locale = "br"; arch = "linux-i686"; sha256 = "77ff1b40b9cc81b1c6bc63d74e68687ad92f5eb0cee265cd5d9528c38a36bd12"; } - { locale = "br"; arch = "linux-x86_64"; sha256 = "a4784a6b2d356f633deefefbc237f5aa662334765a334f968d60afc0aa76ccab"; } - { locale = "bs"; arch = "linux-i686"; sha256 = "5fc7d9cbd892c83f40e0cda6b8e6b4e993948530bef355457015a6976ce097f6"; } - { locale = "bs"; arch = "linux-x86_64"; sha256 = "4fc83306fca0a6458e66fa082eb8afe6d07ecbf5a3b309d3906ca16f00fc5d31"; } - { locale = "ca"; arch = "linux-i686"; sha256 = "c72b7f343e62f479dd2fc37f22af3c462890a886727a2b5a1f140992e3069c92"; } - { locale = "ca"; arch = "linux-x86_64"; sha256 = "81d44ab8e493816180ce46d86a0b061ddada85b820c21b91d18f62b3fdfa455e"; } - { locale = "cs"; arch = "linux-i686"; sha256 = "c2fb062c3fce0c4c174bcf3987108176d9cbe8da19a06b5db46e0b6d65b244ec"; } - { locale = "cs"; arch = "linux-x86_64"; sha256 = "81afcae57081c20a7a1e03c28a4d8dd26b3c89608591b7a7171be91bd24789d6"; } - { locale = "cy"; arch = "linux-i686"; sha256 = "bf5f4bdb6fbaea7d0de662921d5e6096d413f799fd3ca1876d42146f14667e5d"; } - { locale = "cy"; arch = "linux-x86_64"; sha256 = "cc4057fb04da6db0d2ba315fe9ff015a0e0fc1542843adb4a65621936f849d98"; } - { locale = "da"; arch = "linux-i686"; sha256 = "10468470db91eccc1234b34fc4f933b909df68284f9cee8125fbdb5c5802a45a"; } - { locale = "da"; arch = "linux-x86_64"; sha256 = "34e29284e753686f00e4019902b75aa071d0eb87bafec8c31cc4029989ec210f"; } - { locale = "de"; arch = "linux-i686"; sha256 = "f5b2e2c7fdbd0f91e0ce581dfcbbb253d627a4aac45a914eab763de6b2fb6750"; } - { locale = "de"; arch = "linux-x86_64"; sha256 = "7366de80f3717f62768055613bb6767a39716808e394d623cff18e649b1a5a02"; } - { locale = "dsb"; arch = "linux-i686"; sha256 = "1a69cb59bd213323ddf5576f2f060def74735b50576c5048f030170a8e4a54d1"; } - { locale = "dsb"; arch = "linux-x86_64"; sha256 = "89c431dc58a91ff9c7b31b9a5f988aabd7265a23697e870cd746320c0dde9760"; } - { locale = "el"; arch = "linux-i686"; sha256 = "cb6c72d842895714a7ce5f0acc7e2de721befd8605ce567811f5e626f9349a50"; } - { locale = "el"; arch = "linux-x86_64"; sha256 = "8b33af54b8e00acba75446a5921ebf41e570f66cf86d38bf46b9238d2b2b57ef"; } - { locale = "en-GB"; arch = "linux-i686"; sha256 = "17685f4d47efa9ca8a2ca220960d7819e11c728516d4c0f67f789f5dc29e9606"; } - { locale = "en-GB"; arch = "linux-x86_64"; sha256 = "702f8da239eadcbf92cc8e286716836ec889a64276a92e51ee26cc5338e4398e"; } - { locale = "en-US"; arch = "linux-i686"; sha256 = "be03a282b7da67899c988f89423594b91e017ce5f4569d55ea23f6ba28f59414"; } - { locale = "en-US"; arch = "linux-x86_64"; sha256 = "0ba5a1868386c715ea1f48393b035305d4bef67ed1838b7bfacf5bff8b36716f"; } - { locale = "en-ZA"; arch = "linux-i686"; sha256 = "790462e745744b05a5fc27d9518f02e88f678bc1f95140dad970abdff0ec7aaf"; } - { locale = "en-ZA"; arch = "linux-x86_64"; sha256 = "ab1ff49b84beb7a5a02a70cbaba9d3110cdd76653486799038fd05936b9db499"; } - { locale = "eo"; arch = "linux-i686"; sha256 = "d6be5d333050ca0d1ecd78082b9daf7955a068915af6ef2694b3f6d60595cd94"; } - { locale = "eo"; arch = "linux-x86_64"; sha256 = "6ea5dd2bd55bd0211ce67f398b24a37f26b012250b8e7b1b4a9d5ef619e19051"; } - { locale = "es-AR"; arch = "linux-i686"; sha256 = "1b16ed83eed980b0ea8b99e989bab1882b6d2a497fd643f109f0610425c693d8"; } - { locale = "es-AR"; arch = "linux-x86_64"; sha256 = "3aad55c9d10012c5b22154e8562a034e30ce6ef0b579047649a43afd0645d6e2"; } - { locale = "es-CL"; arch = "linux-i686"; sha256 = "f22705f5dee51be7bdced48c6c8f48780529f22a566d9d8784a10c2fe8427b92"; } - { locale = "es-CL"; arch = "linux-x86_64"; sha256 = "8dc4c8854169db3c22c09b723002852c452cdcf8d0bde94b089af9fcf0ae0f28"; } - { locale = "es-ES"; arch = "linux-i686"; sha256 = "7bd24886bc72db5479c1aa2c8a48359858c1e87e8444a5cc8f0ef3e141744806"; } - { locale = "es-ES"; arch = "linux-x86_64"; sha256 = "c69a6be864d1c865013b00a1b8fb748da96be2ddc65cb178eeca6e165aa1ccff"; } - { locale = "es-MX"; arch = "linux-i686"; sha256 = "a52775fe1038fbef208d760c4069187943387b0717076b32a54647d9e319890b"; } - { locale = "es-MX"; arch = "linux-x86_64"; sha256 = "56c2e14770c2c6d40213f159715a3c269bf3b6c5985ddb4851b6f50f2ca93a39"; } - { locale = "et"; arch = "linux-i686"; sha256 = "648fbeb1dc15d76685d80afdad2b6a797eb25f30b27bb405e11725ccc53ef164"; } - { locale = "et"; arch = "linux-x86_64"; sha256 = "400f9cd73854034edd7b392367a7961638c921e78885064bdbc567ed3c508d38"; } - { locale = "eu"; arch = "linux-i686"; sha256 = "727e0d1d692be4f472f1172d8901d94d58e201ab9c2e30b80684564b3ecaf325"; } - { locale = "eu"; arch = "linux-x86_64"; sha256 = "476f207657fb9a5c3bc89493b06900b4fe46a06aca7854e4f37bbe8c8d98c064"; } - { locale = "fa"; arch = "linux-i686"; sha256 = "2de4b2b0f02918c8ff538db66272196479ad95cf8e239ccf9e1a244d5553456e"; } - { locale = "fa"; arch = "linux-x86_64"; sha256 = "3c04ec5ebd27b815a215ff815dcc86ec05f81a5a0d606e60ed14135b76679fe2"; } - { locale = "ff"; arch = "linux-i686"; sha256 = "07b19ce6be53c16c6f299a2640a3a597475644fef63edf702242e245001b1eb0"; } - { locale = "ff"; arch = "linux-x86_64"; sha256 = "d0a4e2d3b155c0fd5fa12162dd73d6077be30a9cdd3ccdf5566748a7af4fe2c6"; } - { locale = "fi"; arch = "linux-i686"; sha256 = "f5e9e4222bfc1c34d58befaccf501d741cdcf3ee9bfda034ea8600a906c9a912"; } - { locale = "fi"; arch = "linux-x86_64"; sha256 = "d48f0673a768b6265119a3097061ae437711a81fbf7f665b8fec079f0516b1ca"; } - { locale = "fr"; arch = "linux-i686"; sha256 = "67eb797623354f037b49745c9ef7ddfa3a0cfce03f984add560a33ab2955fc97"; } - { locale = "fr"; arch = "linux-x86_64"; sha256 = "6bcba534539f9b5f42397c82e2c1a6affa6eec473c09e6d71c5315f9acef35b0"; } - { locale = "fy-NL"; arch = "linux-i686"; sha256 = "fe4b44c9b50abc001bb4bcf6e046a9b18f30a42170b4662daf5d35c17089f4ad"; } - { locale = "fy-NL"; arch = "linux-x86_64"; sha256 = "8238342ac06af2d4e0b7ef8ea26d1960af996ac7d401f0e11b3b666ebafe0df8"; } - { locale = "ga-IE"; arch = "linux-i686"; sha256 = "9f59d32123141d624b9fa16f885ff9e1cc989628e33074bb2a546d9c54be07eb"; } - { locale = "ga-IE"; arch = "linux-x86_64"; sha256 = "29785a5a2cc09750c8ea391ca6b2d8812e5a68185807d76ec295c3ca86c21da9"; } - { locale = "gd"; arch = "linux-i686"; sha256 = "bd4dcb330e8733c3443e763a2fcd49085b5027ec032ee6f641ac1211534fdb6a"; } - { locale = "gd"; arch = "linux-x86_64"; sha256 = "5508260caa85a450a2496a7e261aebff847301d4f981bd0caf0208aa65c0bc10"; } - { locale = "gl"; arch = "linux-i686"; sha256 = "7e6df6be5937c01d8bbf65cd6d107fba76f1c59794f7e2ed81ac9db1384abe34"; } - { locale = "gl"; arch = "linux-x86_64"; sha256 = "b5370fd005569fa1544099fb4629ea344f81b43fc10188dbb3cbc5926b5df53a"; } - { locale = "gu-IN"; arch = "linux-i686"; sha256 = "5256e889efd097decc2b55f4d928c9847f6e9499b25947de068d357db4d70c59"; } - { locale = "gu-IN"; arch = "linux-x86_64"; sha256 = "2b51d50b49965c766081d35b1a426e1c3a858038bb88807522a7dcbc8c97b815"; } - { locale = "he"; arch = "linux-i686"; sha256 = "b71d83c274d82f63ab175978bd661e047ad73586249f6e24d33d17c1e9ba4ec6"; } - { locale = "he"; arch = "linux-x86_64"; sha256 = "4c3dd5066a9b5ca04ab222af8d7009419fe34d0bc41bf5f78e6370d6e975c4e5"; } - { locale = "hi-IN"; arch = "linux-i686"; sha256 = "33f3591e2d75bcc539cc57e68e865183b307a8eb8153c0b48bacc0bc62ea48f4"; } - { locale = "hi-IN"; arch = "linux-x86_64"; sha256 = "25eef40150db99b56dc46deaf78525951d8ae838886427838c9d78bab41c6b7e"; } - { locale = "hr"; arch = "linux-i686"; sha256 = "d83ab7b48cd7fc4637fbb4c19edd0974db121186289b04da01414fbdc78ad7e9"; } - { locale = "hr"; arch = "linux-x86_64"; sha256 = "8a1d3055aedc504cf0f34e41931464752148dd1859c807f689978fb80504a5ab"; } - { locale = "hsb"; arch = "linux-i686"; sha256 = "d9dfc43216b0c6281a311edc6c0fed79344cbb4f4cfdcf153f3ba37a4221199b"; } - { locale = "hsb"; arch = "linux-x86_64"; sha256 = "2ec46b326249e0049de0a110896672191edf0837d4f224ff3b0f88a21edf1a22"; } - { locale = "hu"; arch = "linux-i686"; sha256 = "6c7cecaf0865bd80eceefe2541b5cbdbdc457a367b66a3cb7f8f3d73cf3118f4"; } - { locale = "hu"; arch = "linux-x86_64"; sha256 = "d33903cda04f3be9e147dd69c55a58fa76f1bfc0abdb8346c641b76c5f20aacf"; } - { locale = "hy-AM"; arch = "linux-i686"; sha256 = "a7006e239fc119c1af332e1fdcd3ed42aed59deb6e22a092c9d3ed5c7eafa11e"; } - { locale = "hy-AM"; arch = "linux-x86_64"; sha256 = "89b0def0f9d9177fa0c0f1f7630d52bf3d6380ab27c475019fc6b1dddeca32b6"; } - { locale = "id"; arch = "linux-i686"; sha256 = "15fd16ebb3c82755a1ff70a172658c3928ad495194b975de8270b0dadf8fd10b"; } - { locale = "id"; arch = "linux-x86_64"; sha256 = "7cfe30a94db8722d0cf3c5f68f636c76e7e98c8f34f67f95724c80499c89ec64"; } - { locale = "is"; arch = "linux-i686"; sha256 = "0a066fed6ed9ca4a1514166c8b1ac5e097b5d32522dc39bee3a644f241f7448a"; } - { locale = "is"; arch = "linux-x86_64"; sha256 = "4fbef4c8c25690e3c23f3fcd27196714c691c9ea023d81b82763867a7547deab"; } - { locale = "it"; arch = "linux-i686"; sha256 = "451b17760fd2f3b99cda0f1711fc3e74320ef0e86b41ea89205c00395b1ac46a"; } - { locale = "it"; arch = "linux-x86_64"; sha256 = "e12206fd4993e75ecd3398130758cb1cc4f103c5792a9b59956766d975840653"; } - { locale = "ja"; arch = "linux-i686"; sha256 = "ef954070ef7f3eafb9727ee848627145dfc884fc46445374d5b618d344359432"; } - { locale = "ja"; arch = "linux-x86_64"; sha256 = "6795c8d63e2cbad65d347bb07503725f85ef464767020df605bdc5dfbdd4cf60"; } - { locale = "kk"; arch = "linux-i686"; sha256 = "752594014a72770d33784a99782b24bebaadeb83bda57880f3d0bdb94c2ef56e"; } - { locale = "kk"; arch = "linux-x86_64"; sha256 = "a5b26f9f5b9194592e4749770e85cfe35d308ce5cffceea00e9aea5a90a5ef95"; } - { locale = "km"; arch = "linux-i686"; sha256 = "57c6072b4dd026daa11b7877fc05ff8aea383eb1d0a8cd1798bd26246f013145"; } - { locale = "km"; arch = "linux-x86_64"; sha256 = "fe5a4aae238d74a26614014547294226b49155a7c7fe5fe8a4d2955ee9bfc457"; } - { locale = "kn"; arch = "linux-i686"; sha256 = "53b5a81b33115e6892dc6d98a275d675a576eb721290af271262314f33a8a5d3"; } - { locale = "kn"; arch = "linux-x86_64"; sha256 = "7a73aea8c228b3491c12735240fbdb8715d8236e89b8634f8b8eae435a6b33f2"; } - { locale = "ko"; arch = "linux-i686"; sha256 = "7060ad8b0e78eaebcb6ef7b4976866ddbcca8123daca4ebd7e0ace9792c55a00"; } - { locale = "ko"; arch = "linux-x86_64"; sha256 = "b3858ed759dc5c3bf383bff0620d28e939e2a906b266bf9ad28409c45835da82"; } - { locale = "lij"; arch = "linux-i686"; sha256 = "efda293d3583806b80695c0f102151574623180a192826e66e90c34599e13444"; } - { locale = "lij"; arch = "linux-x86_64"; sha256 = "235138d5b83242a50e194c09d687edfad8a4f912d8434c749dec15a271a38d8e"; } - { locale = "lt"; arch = "linux-i686"; sha256 = "0fccd7402f84ef47bc14cd91da4c9aecfceda90588293e47c3473ba5849e8ba2"; } - { locale = "lt"; arch = "linux-x86_64"; sha256 = "de27a346f47ad06ade89b4da1809b7ab8aff10e491352b88185d4fab1aaa5613"; } - { locale = "lv"; arch = "linux-i686"; sha256 = "e4daced301792d86a7d5bb194da1ff4b9fb1ab7e8583ff3810ed5dca2c57c2c2"; } - { locale = "lv"; arch = "linux-x86_64"; sha256 = "e6f6b914d0b8e1a349087c893cd91807e6d8159f4f8db27c2c89b8304a21aca8"; } - { locale = "mai"; arch = "linux-i686"; sha256 = "f61a475f0646b6935abf6ca4b07d88a65e782ad6a5fbd17ab2c7cbc0e386f9b0"; } - { locale = "mai"; arch = "linux-x86_64"; sha256 = "091597ef122a51e27e69aa02d84c0de37b3bcc4aab38326a160d8836f82d9235"; } - { locale = "mk"; arch = "linux-i686"; sha256 = "336f74b4f6f0fc0ca24af1b287bb049ba37aedd760c60b71560c32aa21d902a4"; } - { locale = "mk"; arch = "linux-x86_64"; sha256 = "7026aaee3d615fd5401881728fce02d69a74dd08bcf4ad32cdbde6e48e9750fa"; } - { locale = "ml"; arch = "linux-i686"; sha256 = "412212198a4bfb35964baa84d55bdec89a30ad47be0e54c7be64e3bbaa8166f9"; } - { locale = "ml"; arch = "linux-x86_64"; sha256 = "50c0c3f6931e6a1a498d075847dec4796db804d296b0bcb7254576d910c88f51"; } - { locale = "mr"; arch = "linux-i686"; sha256 = "f457de6b5e6692cdac57f9cc8b5bace0f3c678cb40848963f91dad36aa53e7cb"; } - { locale = "mr"; arch = "linux-x86_64"; sha256 = "9a88a56a56d5448e6ffdcc2aa15b70bc6300750dae11c25047036873bd0f1bf7"; } - { locale = "ms"; arch = "linux-i686"; sha256 = "1254482bd8d0c2fef0a728415e0053b1e68951c1a4de32ea38e3a8435ef8be11"; } - { locale = "ms"; arch = "linux-x86_64"; sha256 = "6daecbd8ab6eaeab01139037a950e5e48766f20290bd13daa9f2177a0bed7a37"; } - { locale = "nb-NO"; arch = "linux-i686"; sha256 = "ae92dcc94f43a80e335b9dcbc82a1831ede646e173eb1a6b76a3a5c076f70598"; } - { locale = "nb-NO"; arch = "linux-x86_64"; sha256 = "813d1965cd6b15e8bd1b40f77e787086ff38dfbafbfdb6ef3d958543ec566d9e"; } - { locale = "nl"; arch = "linux-i686"; sha256 = "bfe3bd48305674bc3e7f9edc318585e605e31e59bf55c1095ba08f82f1e92fe6"; } - { locale = "nl"; arch = "linux-x86_64"; sha256 = "d9f6062d09d4c505656e4f1c3fe098b896beffb9ee299ba5d544a91d97288d8c"; } - { locale = "nn-NO"; arch = "linux-i686"; sha256 = "9c5b3343070f2f986aa13cd6f03a184643cfa5a0214fe2d3696cfd5f81efa4cb"; } - { locale = "nn-NO"; arch = "linux-x86_64"; sha256 = "bb128791f7f9dc18b282aec0892987b2d315103bd56d646b22113f74e379db0f"; } - { locale = "or"; arch = "linux-i686"; sha256 = "2a5e0a25d654015bec541cca26491312746552b052a6ff1e93daa7e83d5c5539"; } - { locale = "or"; arch = "linux-x86_64"; sha256 = "97f524aa830ebbbe80396db69b798463c1bb973a57edb3bf04350cf343b9f345"; } - { locale = "pa-IN"; arch = "linux-i686"; sha256 = "f4e38e9124fc916766c1b7d3b1eb5612e5358d5ff7cb60127f6c9ef00360ca2f"; } - { locale = "pa-IN"; arch = "linux-x86_64"; sha256 = "415b0f6e0c9ca0c9a415d96c821ab72c15b5d2863109c6411d1d35f3835fc92a"; } - { locale = "pl"; arch = "linux-i686"; sha256 = "d001a0047d2ef866ae2ad7675b3e45a7055ceaf84e031a24c72b239b42fdd98e"; } - { locale = "pl"; arch = "linux-x86_64"; sha256 = "cbea32c4b8989fc5f0bf948ab5d80ab715fac7fcc179dee169ac9d725ab2b43a"; } - { locale = "pt-BR"; arch = "linux-i686"; sha256 = "ea9073faecd9cb850dae9c69a85368f9ad8ec9e00c9aba988205aedfc2e63bd3"; } - { locale = "pt-BR"; arch = "linux-x86_64"; sha256 = "c3c57dcc4a5790b36668b8e255674945e61ee9d6ef69704f39d499ad57510a79"; } - { locale = "pt-PT"; arch = "linux-i686"; sha256 = "854692a0be4be1b34e958c34a7318dd818e310439d01ee552910a067cf6f6624"; } - { locale = "pt-PT"; arch = "linux-x86_64"; sha256 = "0143d2dc4cf2979f8744dd282f937f9e8084393e4c7836219eb182618062d1cc"; } - { locale = "rm"; arch = "linux-i686"; sha256 = "81f96f818ce68ee25fe1ed7b1c831ed95d26a3fb034bac836707bf93ffaa140a"; } - { locale = "rm"; arch = "linux-x86_64"; sha256 = "3824d40ecbebc2df46f865e0375119c9fe5dd1dd5a0f4c193de984134ee6e7c7"; } - { locale = "ro"; arch = "linux-i686"; sha256 = "218b36a99038e08dde7677bc8e89f1b74b5456da2f5e5e1a081eea7ab19bb7e5"; } - { locale = "ro"; arch = "linux-x86_64"; sha256 = "2007623afeacb1b11ed4e93dafad6f47d1365ff8505282c858168ef95d31b724"; } - { locale = "ru"; arch = "linux-i686"; sha256 = "708780c7f96b0f48f177780fe48c4613b3548eb5b08ba37d1471781de2fe5653"; } - { locale = "ru"; arch = "linux-x86_64"; sha256 = "589e950adc3258ad2064233ecfc5e385d301096e0fc08b3a5cc9eebc0454ac6e"; } - { locale = "si"; arch = "linux-i686"; sha256 = "eec26f6c23c5e58913387264ad9cd52d5571ad95b1047490530c2c7cecee4584"; } - { locale = "si"; arch = "linux-x86_64"; sha256 = "3c71e67434e42be6ef9970c948030c58198cb941ee39d50845afc2a96c85abe0"; } - { locale = "sk"; arch = "linux-i686"; sha256 = "558f5ab75ade19ac57fc939c4314233004fbafb2232e9d4bdc6ee938cf0d0e2c"; } - { locale = "sk"; arch = "linux-x86_64"; sha256 = "d8a19e75930a0e902b261b6a4872f47daa16baa736fcf4b6e86ba3e947a05fb2"; } - { locale = "sl"; arch = "linux-i686"; sha256 = "c69f8782bdfddc06e4fcce994ce8bf79031c47fd60132fbdab42083d7645fbac"; } - { locale = "sl"; arch = "linux-x86_64"; sha256 = "ed1da31169d61b4eb6f3f7858dfd5ab7bb436a9c3ae66882d00a19929d48ded0"; } - { locale = "son"; arch = "linux-i686"; sha256 = "e1e4b663f699ed623ccf4d91966d1d0b6f17aa831a14b86316898590b559790f"; } - { locale = "son"; arch = "linux-x86_64"; sha256 = "5c51bfb471b8870aa04d3e66bb1cc465a7e3d7f36badb91bb0cdd56789ba9657"; } - { locale = "sq"; arch = "linux-i686"; sha256 = "7523bdbc44826267f710d1758c3d64fc5b2711ea26559e8eee8d803174a5f801"; } - { locale = "sq"; arch = "linux-x86_64"; sha256 = "929bca0a3d2eb67d02c1af5df073fca04db1e70ec95cae622f87c70c5138559c"; } - { locale = "sr"; arch = "linux-i686"; sha256 = "464da5be343009f180d829cc88e01cc7eaef953195f4b3396156a019fd17a36e"; } - { locale = "sr"; arch = "linux-x86_64"; sha256 = "f84234ba1c6c0eaaf9b73d40546e482dd024bad6bc1aa9b0f19351af064abacf"; } - { locale = "sv-SE"; arch = "linux-i686"; sha256 = "c1c25d2226f47102969272777fa985694430e227a6e58c1a3fc3da479ed6a69f"; } - { locale = "sv-SE"; arch = "linux-x86_64"; sha256 = "10ae8036fc64d7bd0226ec9b8e9614b5bb24d995d0701d23b471f65767de81cf"; } - { locale = "ta"; arch = "linux-i686"; sha256 = "ca3fb46ad1d80fb9d37bc0b3844b8d3972640772edba1ab6485eaf10d257654f"; } - { locale = "ta"; arch = "linux-x86_64"; sha256 = "f8d229cb8257262adac057831f7080f431e356eb4ffdd512e8ea8b6ba8e6d702"; } - { locale = "te"; arch = "linux-i686"; sha256 = "78d326fc7baed0aee612b542fda5333a83d2874c20a396a4cea0ae4d4c9b45e3"; } - { locale = "te"; arch = "linux-x86_64"; sha256 = "fc827807c3793c15fa7650614da558773fd884d5aabf8e181c8822e4109a6832"; } - { locale = "th"; arch = "linux-i686"; sha256 = "37681476c04f02dd5fe3e815da3c6569cfedf1d1627826122c934caab8bca74c"; } - { locale = "th"; arch = "linux-x86_64"; sha256 = "d63640093f26d53257b5f1b6ea3c8b620498a21cd7ad1144bb3b5d85d63967ac"; } - { locale = "tr"; arch = "linux-i686"; sha256 = "a37e2833f4ad4e9c13d4da88f22f8a9cf7ad77b238f2d00f914a27f276ba99da"; } - { locale = "tr"; arch = "linux-x86_64"; sha256 = "869fc9c719a7a619e15b98007f60b3f92dd8f7c46fd27e4fc864a8b829e13da0"; } - { locale = "uk"; arch = "linux-i686"; sha256 = "c832506a00c22cbc2589814642340bbb1067fd31e414db4f426a8a451991083e"; } - { locale = "uk"; arch = "linux-x86_64"; sha256 = "9597216b353369221867741de9f9fcd030adccf1d9ffe2b127c7b858b51e04f4"; } - { locale = "uz"; arch = "linux-i686"; sha256 = "d67274f1e39b479674b4909b0e072dff712db0146577f4ea36736ac0d94e3dae"; } - { locale = "uz"; arch = "linux-x86_64"; sha256 = "95477afad170df8efcedb493e5ffa9366f1abc8d451860b899457c8a296afbe0"; } - { locale = "vi"; arch = "linux-i686"; sha256 = "d453f7cb7f1fd662d1a1fecc701880a3d45c223d842d91061ab5f815333b8680"; } - { locale = "vi"; arch = "linux-x86_64"; sha256 = "f19bf0b83a4389aa4bb1e1f7d434be12c266c0575b13cabed541a4ac38c2d810"; } - { locale = "xh"; arch = "linux-i686"; sha256 = "4d1c8c365511b195da7e18c10cda8f6599d840598e4623bffb445a67a42590cf"; } - { locale = "xh"; arch = "linux-x86_64"; sha256 = "607a62d71718fb2ba89c2a3b75acc13fde048f5d05a692783da955af344a16d1"; } - { locale = "zh-CN"; arch = "linux-i686"; sha256 = "635a980f48bd8c0f93ff2666ad7f761e80a255fb54647704e2514c6ba7b9bf60"; } - { locale = "zh-CN"; arch = "linux-x86_64"; sha256 = "3eb083c8de026db0727b4fd206fc9045981c5672af7ebf6e0653ee28f5aa8bc0"; } - { locale = "zh-TW"; arch = "linux-i686"; sha256 = "515749c690b64a7d047df00291aed071dc90e5582e9ab0e4bc560635ef7d888a"; } - { locale = "zh-TW"; arch = "linux-x86_64"; sha256 = "256316348c9d5cf525f0b2f2c09db968714135e21677d122b6bca6e87471a9f3"; } + { locale = "ach"; arch = "linux-i686"; sha256 = "c0c65ced611dcc7b788aff7f0e32cd1823467c06dc99ced2e0aca0539ce545a2"; } + { locale = "ach"; arch = "linux-x86_64"; sha256 = "87068d8072d0312af90524c7470c874d33e23c2b3e94be3fe9d934998330e898"; } + { locale = "af"; arch = "linux-i686"; sha256 = "7c8f08471fe561a345175c350c6414e72721baeb41a3ff47a429f5b79c33c82c"; } + { locale = "af"; arch = "linux-x86_64"; sha256 = "4768a53842d40e81a2e357ba58da56b0a81d2224878b6ab2ffad0bfc50c20ec1"; } + { locale = "an"; arch = "linux-i686"; sha256 = "cdb921661a6b20738f38ab2d0fb285aa81a323401f360f77b9ae6d9e8642210d"; } + { locale = "an"; arch = "linux-x86_64"; sha256 = "cff97655831940b84bfa5f73dfa3dc48de084ae6503e7a5824c3e57e373f0ff0"; } + { locale = "ar"; arch = "linux-i686"; sha256 = "9f6322577809b557f325168953170706af6d29a29b5347886f928b5f495799b8"; } + { locale = "ar"; arch = "linux-x86_64"; sha256 = "d5a1a956d7f9afe5867e2dbeaea4ba2a94e743d291062d18232d20ace29d2c94"; } + { locale = "as"; arch = "linux-i686"; sha256 = "750c5cddd2d436993a4630f0ebf31e9d0ac679cc23a84298071a682e7a8a8de1"; } + { locale = "as"; arch = "linux-x86_64"; sha256 = "5b5a2376daef30eae3ff1a94213937381148ade79783546b1f38687c9fc4489e"; } + { locale = "ast"; arch = "linux-i686"; sha256 = "99b5bc2c709a923a43debfe746c70c3613c206424c88d553f7593c200053a8b6"; } + { locale = "ast"; arch = "linux-x86_64"; sha256 = "2fd75ff22d3b75f03c6a9ab005e369373f999ef4c38ea49438ab2adaa8e9a2c2"; } + { locale = "az"; arch = "linux-i686"; sha256 = "0781239c9c8f237d66ce0c8d9f39136e0eb71365f6ca8b695014648060c18c38"; } + { locale = "az"; arch = "linux-x86_64"; sha256 = "9fd6f6047ec3c4103c4aa761882053d4e00e018a1509fa1fbede1757394aa3fe"; } + { locale = "be"; arch = "linux-i686"; sha256 = "098e932b708ebc71a2aa7fe86ced4835dbc6725f8714904b25e7ebd1ca7b7d69"; } + { locale = "be"; arch = "linux-x86_64"; sha256 = "d9284a84e7e55ad6d73e7d599c5b6824774d7a9e6f7484064fd2985e5634d102"; } + { locale = "bg"; arch = "linux-i686"; sha256 = "02879ea328d1536781f2f9765db51bcb9fa05d0a0b7ad426fd659156c293f347"; } + { locale = "bg"; arch = "linux-x86_64"; sha256 = "70f55197d8ff67d52f090bd58dcc106fcc08492fe6989494eee3aa3cd1c3552a"; } + { locale = "bn-BD"; arch = "linux-i686"; sha256 = "227873ac53fdac5f27b569a5b6a1f3d45caa4e3c822610a5f294a3abdbc2c0fd"; } + { locale = "bn-BD"; arch = "linux-x86_64"; sha256 = "0a46de9bfc19fba878104ae2865a092fba7a9eea62a64a31c0decc9fc021b3af"; } + { locale = "bn-IN"; arch = "linux-i686"; sha256 = "2cc4d364852fc987e97f169de9039992d4ecb848125eae38c09bced34aae8653"; } + { locale = "bn-IN"; arch = "linux-x86_64"; sha256 = "6a722ed42f251e3433d46d9b56ca06f7bc1cf0854de782da10285db6ee4a1bfd"; } + { locale = "br"; arch = "linux-i686"; sha256 = "14b75dc8278a946d705210306b50a85795f70d83d0527d2c77a60b13662e89e3"; } + { locale = "br"; arch = "linux-x86_64"; sha256 = "73e62d2869fb450b4597ec3d65ae3c36ef78984462a158dbf565bbac539b1fa5"; } + { locale = "bs"; arch = "linux-i686"; sha256 = "01e02d4a0e140d962e27e4f1a4ec24837c0646e9373f3ce2eb8337437c274ecf"; } + { locale = "bs"; arch = "linux-x86_64"; sha256 = "59fef5429b639a52ee113e855a18080870a2f905212dd0e4aefdd838d040133d"; } + { locale = "ca"; arch = "linux-i686"; sha256 = "62f96267e91fb9a8df1c436adb78945f32eb14bccc57e706104ae0547b723682"; } + { locale = "ca"; arch = "linux-x86_64"; sha256 = "0be231034e076e162b5568a5247da47ca2038011928f89c729fe9a7e139dd922"; } + { locale = "cs"; arch = "linux-i686"; sha256 = "15c8a066fe101a5b9151c96611e2390008ac54a9a1909b9430ed6f440c856920"; } + { locale = "cs"; arch = "linux-x86_64"; sha256 = "40400da9851782418a12b224b74c3b5c8c112912bb98dc8f368972cc898ea155"; } + { locale = "cy"; arch = "linux-i686"; sha256 = "b9b8d3d4c5160eb1676f6c4531123ec28dc0ca6b51e7dcf20716611f93f1c975"; } + { locale = "cy"; arch = "linux-x86_64"; sha256 = "6e00d5e5c7e50aa24468b802bd53377d8962b146fed8a8588dd5c8db4162da93"; } + { locale = "da"; arch = "linux-i686"; sha256 = "760c9d95fe6941847dfd53b254cd662a83f4c9f2d66f84a96b4dd1d3127adbb8"; } + { locale = "da"; arch = "linux-x86_64"; sha256 = "e168e7e7e11aabe54f773c960d4c9b9920e15e4ccadef9f728e2016f0240555f"; } + { locale = "de"; arch = "linux-i686"; sha256 = "e5c6372f3fd732fddfaa31ed3ddc81cf803386d7842e103fddd0685739ea63c7"; } + { locale = "de"; arch = "linux-x86_64"; sha256 = "73da0a0c66c18dddf5de7b7dda677cb9cef1e0b3c8cff5e22f48bf743ece8116"; } + { locale = "dsb"; arch = "linux-i686"; sha256 = "509b8233c403b629803fb0d67a29f2d6f649627d4b91c592121acd3e2ff62282"; } + { locale = "dsb"; arch = "linux-x86_64"; sha256 = "6089971aa6e19e2cbcb49724e2eea7922d9408936aa8e2d396b8f1966ea81eec"; } + { locale = "el"; arch = "linux-i686"; sha256 = "451f1a7caea7553fc18e440c2716e1954e7d7ba66f5fbe15cc6954224a36444e"; } + { locale = "el"; arch = "linux-x86_64"; sha256 = "d02f4b813cc16b4293f9441bdbdef56acd0a7a510d9edcce223d04270e65f2e4"; } + { locale = "en-GB"; arch = "linux-i686"; sha256 = "663b7a6300fa46c4e62e7542135ab2632117496a5b0365276ec5ac94183a1d55"; } + { locale = "en-GB"; arch = "linux-x86_64"; sha256 = "d50895a71408e74d8b5b1965be279011214c50eba56e0046f360f216326f1135"; } + { locale = "en-US"; arch = "linux-i686"; sha256 = "84a5fa00271f90356bbfedb1fdbcc033489d1759fef53c4dda92bd285633ae3d"; } + { locale = "en-US"; arch = "linux-x86_64"; sha256 = "49e55275df9e902bc234fa59b4b614a084d76dc2c256ce6218fa96663cabe2dd"; } + { locale = "en-ZA"; arch = "linux-i686"; sha256 = "dfe926680b0bc5852db920ba8b3e4febecf1ead33d9865568ac69e9494337072"; } + { locale = "en-ZA"; arch = "linux-x86_64"; sha256 = "83c8480482dd154519d26e43a3f79d32c82f149d81a1c6e8ef98e9511ecbf35a"; } + { locale = "eo"; arch = "linux-i686"; sha256 = "a27703068ff3be53e8944c750bde0316414f51ee4c10569018d121db7ec1b705"; } + { locale = "eo"; arch = "linux-x86_64"; sha256 = "981462cf59716c17fc0630d0cf12b03e7cc96d72c2d8d33109c1db633895f18a"; } + { locale = "es-AR"; arch = "linux-i686"; sha256 = "16b2efda57842f29c6f4432cd51296d5e9a709d30f2310e885c786fc68a96e65"; } + { locale = "es-AR"; arch = "linux-x86_64"; sha256 = "7b6c8a2bbae8e72ec820df741b8f4a2e162c4b628db8e669a5e85dc190db6c51"; } + { locale = "es-CL"; arch = "linux-i686"; sha256 = "ad18bc224500c834a159d91fa568461cbf131edd1b044ae8c97e887b2151e112"; } + { locale = "es-CL"; arch = "linux-x86_64"; sha256 = "84c414c64bff02d8e82a4ca4c01e1b4dfae21991ee9a6850203ccbe15469cfe8"; } + { locale = "es-ES"; arch = "linux-i686"; sha256 = "142db7f0bb92976345aace30d9ba53ab4ba98a47332c3f7ae7372d9d80300781"; } + { locale = "es-ES"; arch = "linux-x86_64"; sha256 = "337de34606e018ec5b600d559d928e35c79fb28800c9b5ad28e2defe259f9b58"; } + { locale = "es-MX"; arch = "linux-i686"; sha256 = "51cecc939011135842bb51c41cfda0fb4ae53c5180e49bd66a810c243b1d68be"; } + { locale = "es-MX"; arch = "linux-x86_64"; sha256 = "cfe309df7412f68abf487c1f9065e6b9d4b4f384254576c8d1098878012e5b53"; } + { locale = "et"; arch = "linux-i686"; sha256 = "1540b0f0c1d867c87d1e109b4e9ad417be51306c324a03e07706d7e215f7ae4f"; } + { locale = "et"; arch = "linux-x86_64"; sha256 = "e7c0e4e61d17164a648ae51bcff92d99f76055a1a6a29dfec6ea12a0359f1285"; } + { locale = "eu"; arch = "linux-i686"; sha256 = "c2c88bf65329b168fde8fe02613eb89069d85da8b2a3114ac647158b8a345055"; } + { locale = "eu"; arch = "linux-x86_64"; sha256 = "9d10a2f8a0e889a6ebe99bc486cf56cc44535b6f67ce3667ac61e87430a24eea"; } + { locale = "fa"; arch = "linux-i686"; sha256 = "21ba5e79f5fbe3c3a8a8a71f8fe9a4280f8e47d4c58070443bbf53305c906175"; } + { locale = "fa"; arch = "linux-x86_64"; sha256 = "99d8d2e81e2a8f495d5568d7a9cbbfbcdc8a0e1d67fa297adf8a021988948a80"; } + { locale = "ff"; arch = "linux-i686"; sha256 = "3e1812cd98e04fcf575783eafdef2c89739c51e6648f4cd7ba7bed44fbe5f960"; } + { locale = "ff"; arch = "linux-x86_64"; sha256 = "cbe37600da8bfdabe683473dbb4f2ccc96beda89a9ca15810432a8fce65a591f"; } + { locale = "fi"; arch = "linux-i686"; sha256 = "ecf982266072b4a15a06b939d4f0cc22c3653982404974baa51871af0e411ab5"; } + { locale = "fi"; arch = "linux-x86_64"; sha256 = "345b7f038e454e6efd513e923ad2aa0a45d76d846539563bbfc79293ec84a6ec"; } + { locale = "fr"; arch = "linux-i686"; sha256 = "e71b05083a122ef20b5d75481129fa2e3d1e2ac608cea2c5baf7b300a5fbe5df"; } + { locale = "fr"; arch = "linux-x86_64"; sha256 = "1897112ce462b341abba4c2b1664fbf39b5072a11ea6fb61c66cbfb3336358f0"; } + { locale = "fy-NL"; arch = "linux-i686"; sha256 = "5557347f19ab6d7c90a34bf8a9729d39eb65a02a021040091cc1863e08fb72c9"; } + { locale = "fy-NL"; arch = "linux-x86_64"; sha256 = "c77b86d5512f8343674248b9b4d31165975f0eeea002313311339ae45d9effe3"; } + { locale = "ga-IE"; arch = "linux-i686"; sha256 = "7a68d7de10abf095fd9240807a6a553b60ba75f3d8edc56afcf5ad1832a05eaf"; } + { locale = "ga-IE"; arch = "linux-x86_64"; sha256 = "f935b317c5aadd60553f497ceae2cc663dec3729b2fc8e48e6a98d1eb91fe263"; } + { locale = "gd"; arch = "linux-i686"; sha256 = "21bbca4e12b3fa230b879f190d279ba9314090454e0263b65e77dbf8f99dcbf3"; } + { locale = "gd"; arch = "linux-x86_64"; sha256 = "027630690ecff7ad56f6e992ef243d2a734dac1a3e6365bb22c56a571f938fcb"; } + { locale = "gl"; arch = "linux-i686"; sha256 = "6973787b5136491ef28bb2e10976d49c3717a866ec6fe357a995dbf3179a751c"; } + { locale = "gl"; arch = "linux-x86_64"; sha256 = "0ca57d72bf11ddf74eb79904be607c479c01f31f11fc0ff567a9ad7beef8067d"; } + { locale = "gu-IN"; arch = "linux-i686"; sha256 = "6f422fdcf2fd514e132b33fa079631a6bd4b12deab17a3463b1f3f1ce3f2f535"; } + { locale = "gu-IN"; arch = "linux-x86_64"; sha256 = "19cc20d1bd838ebfb8518b8076800cc3255376e4928cf2f37be86258307f1104"; } + { locale = "he"; arch = "linux-i686"; sha256 = "f8eb56fea0e73c247fc767541bc97cc3556e4db75ad446e01b0978a5c0b11d3f"; } + { locale = "he"; arch = "linux-x86_64"; sha256 = "8ee0ae75d179bfec9e081777e9a34fdae72d8d55ade73983fdac433649b596ac"; } + { locale = "hi-IN"; arch = "linux-i686"; sha256 = "bb64fc5285bca12542669ef83bfc465bf593154f9bca2548510f525bde5a55f3"; } + { locale = "hi-IN"; arch = "linux-x86_64"; sha256 = "52bb0b68a5f282e65d077166a3a0716fe6c9368ab88f6d5e2a8669515bcc000a"; } + { locale = "hr"; arch = "linux-i686"; sha256 = "f36e7b656e5898191801d6e04f3ebef9f9f7080c011dd695ddccfe12c3cb2f6b"; } + { locale = "hr"; arch = "linux-x86_64"; sha256 = "9c553d5312363980364c6a9a6591fe5e0229668ff1de3a78943af18235098eee"; } + { locale = "hsb"; arch = "linux-i686"; sha256 = "e58662111147e836ac404cf7fc9d9e52ac141b204004c813c6b8d180a378af57"; } + { locale = "hsb"; arch = "linux-x86_64"; sha256 = "5aa7dcce6e48dfcb7b8b4f9f48b4bdd496bd606d901896fd37f2a2cd6b4a06bf"; } + { locale = "hu"; arch = "linux-i686"; sha256 = "d352b7d67ebbd5e45f972a804cccbb769f6a79700506297c0808d2f9b0f5ca8d"; } + { locale = "hu"; arch = "linux-x86_64"; sha256 = "0f7e5cf8306e1fa9b8ab56cdb39b5ca1fe2ff1a3f4ded38e5982bbd842438dde"; } + { locale = "hy-AM"; arch = "linux-i686"; sha256 = "bf057113e03190fbfc6947f24a0fb432f53991f02e56d2b5e8270002cd742d4d"; } + { locale = "hy-AM"; arch = "linux-x86_64"; sha256 = "aa0fdba0a703f06ab5a6b667448316f9de9729c20602fecaf872d14e43a0b822"; } + { locale = "id"; arch = "linux-i686"; sha256 = "eb8fc36302a63113e9891f8153aeffc1da4f990f1473d9d779f28df6658bada0"; } + { locale = "id"; arch = "linux-x86_64"; sha256 = "6f2262e13a649499a0783922a3f2d85a71727ef37629a529f084590828746bca"; } + { locale = "is"; arch = "linux-i686"; sha256 = "312f1af8601c24417672383063085f1c588d9301a09ddeef15b8c54e130547ff"; } + { locale = "is"; arch = "linux-x86_64"; sha256 = "ed3165767c2a14329869930d2b618a5a795d3c3d34e06cbae0d1694ccdfb0c97"; } + { locale = "it"; arch = "linux-i686"; sha256 = "7555b6f4aac9bcc270fcd5204d15a3cb7b84cdd845f66cea2fbb843315100107"; } + { locale = "it"; arch = "linux-x86_64"; sha256 = "b6c2799434bceda271a004769372dfe416584953be5950fe7125920e4e428737"; } + { locale = "ja"; arch = "linux-i686"; sha256 = "e8606fc60aaf6ba91a2616dc991d268e8099eb8d5d3eb3c19fdeace93c6453a7"; } + { locale = "ja"; arch = "linux-x86_64"; sha256 = "5da4d4c307d661868ff7076e2fc1d929e9d3b9816be25adeba02bd4f9a56f15b"; } + { locale = "kk"; arch = "linux-i686"; sha256 = "f77db4c679c687bd33ed125419666226989ef5da88c2a4c8a81aea0ece602e25"; } + { locale = "kk"; arch = "linux-x86_64"; sha256 = "3af207c5e2b6bf089739056f2be6e585529c87d5f142e7100fee55728faaf785"; } + { locale = "km"; arch = "linux-i686"; sha256 = "d48c3f0952d354b9c6539d9e333a8e9c359006a25f1ca6a0895f7e3344504f70"; } + { locale = "km"; arch = "linux-x86_64"; sha256 = "5bc3f65a205a78b110293df5a94a9bde27a491d61b1f9e340a7fe983c1ee1b3f"; } + { locale = "kn"; arch = "linux-i686"; sha256 = "50efbbad9ea231a9281a00dc702d9c6103bfd09b712b45b6809d78a176714897"; } + { locale = "kn"; arch = "linux-x86_64"; sha256 = "001f41e86fcf93fd6a714e5ee0450fe8424bbb3ff40cebad29cb233cb0667bca"; } + { locale = "ko"; arch = "linux-i686"; sha256 = "11539b78bc650b19be2d25af10242a61ee043b47a15000f2e07e50df00875e2e"; } + { locale = "ko"; arch = "linux-x86_64"; sha256 = "a4f0b466c5d544f0abecec8861e1d24132755fff54091a49370414ba27c9cc7f"; } + { locale = "lij"; arch = "linux-i686"; sha256 = "eede4d95ac6c7f55b312aaadce690016732bb143f3926c1d1533f64efd7306e8"; } + { locale = "lij"; arch = "linux-x86_64"; sha256 = "6900bfd4af3146881cc045eed187b88a58ea0fe3e0ed6acbff034f68f43b5935"; } + { locale = "lt"; arch = "linux-i686"; sha256 = "4cdf1ced9a687daa34235ae82aa439d69e517d5c31b8f61e12615f361440a54a"; } + { locale = "lt"; arch = "linux-x86_64"; sha256 = "873f75d77adc9c142f64523c199799f7e9b0460ae0252c514fc1caa5ac5dcdb0"; } + { locale = "lv"; arch = "linux-i686"; sha256 = "65af6b876aeda23827c57d5886cc67665fe2c3fe93cfc2cc5b614400828b6eb7"; } + { locale = "lv"; arch = "linux-x86_64"; sha256 = "1b2f6ef94bb5a1ea999af797e2aa8ff267b4a9945fd0e8afc6c9df12273ce60d"; } + { locale = "mai"; arch = "linux-i686"; sha256 = "65fec172ddfce096f367338c8b95b32fb2415655e900f8dc628b8ac660270e48"; } + { locale = "mai"; arch = "linux-x86_64"; sha256 = "238a78c2bb240609fd0c777399d3307ef659b95cf4e88ae85700321030000eb7"; } + { locale = "mk"; arch = "linux-i686"; sha256 = "e591486c66c9b7175b1ab180e9646976a413338dca225eb50d7db457f95afe98"; } + { locale = "mk"; arch = "linux-x86_64"; sha256 = "f8d04696d02b0af221b8642d4780d79a76be68c07096c7f9c5915a9db6d5f768"; } + { locale = "ml"; arch = "linux-i686"; sha256 = "19dd334052bd9c98ec9afe7b8e5141728b25d2278b7b946921b031aaedd01b2d"; } + { locale = "ml"; arch = "linux-x86_64"; sha256 = "a307739cb6de6f80258c28797125f78fe7746d0edd3182e3716f312f1b0915f8"; } + { locale = "mr"; arch = "linux-i686"; sha256 = "c86343db611dbca1b8fac25ea1e9364b30fcd6c31d5c856f699bacf6e4128c3c"; } + { locale = "mr"; arch = "linux-x86_64"; sha256 = "b25fd422e6b3b1535fbb8839d04a77dec22dfcc0abf14062f5465c0a5aa5c99c"; } + { locale = "ms"; arch = "linux-i686"; sha256 = "e437939df4de54d415224db8fbf6ce9e8ae21fc0402052a72612085c73faa493"; } + { locale = "ms"; arch = "linux-x86_64"; sha256 = "5d9051de7a1bdc68018511d38e29658f00c0db113438a3ec84e68fa99b89f760"; } + { locale = "nb-NO"; arch = "linux-i686"; sha256 = "04d0bdd6235a9321d1a5467c48240cbdb790485b580c1b818b048817fae22f49"; } + { locale = "nb-NO"; arch = "linux-x86_64"; sha256 = "30afe02bd7090929841edc88eadcd745435f64189782d95477568b3b41cb107c"; } + { locale = "nl"; arch = "linux-i686"; sha256 = "83b01feb621cb9c7c64edb125c19aa0765bc2d16b2c20551be12690f835539da"; } + { locale = "nl"; arch = "linux-x86_64"; sha256 = "c5af070524b828313a5e819f4c446cdc7a72f6bffd62e734bb8752438e5d28ef"; } + { locale = "nn-NO"; arch = "linux-i686"; sha256 = "527c9c2dd61a318c5b6ca5e9b26ee9b81b71ae8d7c23cdab6efee1bb5caaa685"; } + { locale = "nn-NO"; arch = "linux-x86_64"; sha256 = "6f3d800c347a70c5ed7a8838365599c7401e4805037f5e980865794d395b416a"; } + { locale = "or"; arch = "linux-i686"; sha256 = "e5f9ba3ebe3d641b3dd948ec51dd25671327a35e5ee87b274079a8a3ce7a26b1"; } + { locale = "or"; arch = "linux-x86_64"; sha256 = "53fea5b84051fea6c247fe2baf9f9d3c87b3f78d4655fc8509068fd60ff3c942"; } + { locale = "pa-IN"; arch = "linux-i686"; sha256 = "dc8d60a3f94da475fea5c1c748c52072f69d4642ea2c3b305e92c56fb3b09324"; } + { locale = "pa-IN"; arch = "linux-x86_64"; sha256 = "c06eb60b39cef2564e248e3d9dd711b863e46cc6d45803002c641a1335927bdc"; } + { locale = "pl"; arch = "linux-i686"; sha256 = "95cbcf68c03ed83590b6e257003282d710c8dd366fd75bd218880735731ed7d2"; } + { locale = "pl"; arch = "linux-x86_64"; sha256 = "9f59a86501cbb9d8813fbf5812646e87d400f136f2cca5d791dd5ac0bc4964c9"; } + { locale = "pt-BR"; arch = "linux-i686"; sha256 = "690772121588229f34e9a9d5e6042c56a3fdb9fdcafea53f45a12997cd1d1e53"; } + { locale = "pt-BR"; arch = "linux-x86_64"; sha256 = "fce60e0a3787a2362bdab4d566766c22a4b4f777d1dde7552e195eefc8fe98b1"; } + { locale = "pt-PT"; arch = "linux-i686"; sha256 = "35a4981bc819fa7cba9e2f73ebb28eafd68b464eacc9da4e3e651882ae8b84bd"; } + { locale = "pt-PT"; arch = "linux-x86_64"; sha256 = "eb4f25e99cc681a6113f9de016a6993e46575caba84f5cba6195c88379e4e661"; } + { locale = "rm"; arch = "linux-i686"; sha256 = "cef140f0b0c4da31235147871679d009f05aeec3e1b138e56bd6acabf79cb666"; } + { locale = "rm"; arch = "linux-x86_64"; sha256 = "e6aba016e9909cc43a9ab285ed8cbfc15dadf2cf7bba9c78ba340512dd9bbcc5"; } + { locale = "ro"; arch = "linux-i686"; sha256 = "d159bd682f8db01fea12e25bc0d4c24ef2ffffca07b3c5d64223ae75d6f77d23"; } + { locale = "ro"; arch = "linux-x86_64"; sha256 = "e82f1ad5461e25c25a8c6db480a733e95b81578ec280e93a52b00b650211a0ac"; } + { locale = "ru"; arch = "linux-i686"; sha256 = "fc2e1166c4d9614bcf9c8ccd01aa157bc229cccbdcd2854bbc52302465d24d75"; } + { locale = "ru"; arch = "linux-x86_64"; sha256 = "c08fcc4457bad70ff5861168364306753df7f03d7817a52dda8c6aad74bde389"; } + { locale = "si"; arch = "linux-i686"; sha256 = "78f60d4ba047d323ec2a36e2f8a775d86bb2c00bb671009105f5fe368419366f"; } + { locale = "si"; arch = "linux-x86_64"; sha256 = "d9c84c673378721c0bc45e767176b879858ba0feacdeeca503e600567569ad33"; } + { locale = "sk"; arch = "linux-i686"; sha256 = "1bbddd4c07cffc083997d3b43034438eccf8647bd9b078cbca86f63c50c588ae"; } + { locale = "sk"; arch = "linux-x86_64"; sha256 = "f8278a40b25bd24a951855b633218c8d0884fec7468291d947890f2e98310acb"; } + { locale = "sl"; arch = "linux-i686"; sha256 = "18e9f99de5847e996ab66202e8718d9844f26ffef771a236ae16ee68098853fa"; } + { locale = "sl"; arch = "linux-x86_64"; sha256 = "bbc818432701696fd140e914943d076e4d11741180a04ea27f4be75ec3558d1c"; } + { locale = "son"; arch = "linux-i686"; sha256 = "e1d8c54d8b1149f98adb1b46c4973e01fa76bb132f0df9b0f090c4ead0ec4676"; } + { locale = "son"; arch = "linux-x86_64"; sha256 = "a57f3971825a40c8dfce2d987384292f1ad3ebe6a96ff762bc38e69c6ce2889f"; } + { locale = "sq"; arch = "linux-i686"; sha256 = "b452ab04c4bae6079bbdc293bc6c41882dac30ec1b1483340e49d072ecf2ced4"; } + { locale = "sq"; arch = "linux-x86_64"; sha256 = "b8aaff5e70e7690481a5c22fb2da97ce63de67246217fb106441173573aeb4d9"; } + { locale = "sr"; arch = "linux-i686"; sha256 = "135f60c2012e63622d1a75cab6fd5f686fee71138b1f1f01e367fac0b3b583c8"; } + { locale = "sr"; arch = "linux-x86_64"; sha256 = "ce464a8ec58fe19e037a26a1b94e346ad314eacbe94232f4b136e0fc7b3919ac"; } + { locale = "sv-SE"; arch = "linux-i686"; sha256 = "937bb415ca95996207c371d111a888f68a24d690db8c31b8c1df530b2b7b30a7"; } + { locale = "sv-SE"; arch = "linux-x86_64"; sha256 = "0ee83de9b3bb77a6e3d1120194700b720d441ee116f9728823c5a78f59d28a10"; } + { locale = "ta"; arch = "linux-i686"; sha256 = "fb908dcbc4fa42c6472e4cb5bd9d8ae7c845bbf9965498091b32f7d1669ede24"; } + { locale = "ta"; arch = "linux-x86_64"; sha256 = "5c8f1c1c09ff2eccf6becf9136f9da3517fabbb0192f157676962fd3bfd31bb8"; } + { locale = "te"; arch = "linux-i686"; sha256 = "5478af8e757d8282993afacd10fc78bc7a207fbdc50705d2d8a665aa98e5f910"; } + { locale = "te"; arch = "linux-x86_64"; sha256 = "719945b8d7a945e556137cc3bdc4a8d7ddf5693e4ac49a3884f912ec471da1f5"; } + { locale = "th"; arch = "linux-i686"; sha256 = "4f0dfccef932beec90f7de951bb2d454bedc192b376caf25c3ba89ecdb5de9df"; } + { locale = "th"; arch = "linux-x86_64"; sha256 = "e14a4cdff4cc89f85043efbf56a82211f1040bc5b369c2113866efb639969017"; } + { locale = "tr"; arch = "linux-i686"; sha256 = "aa5bc43997a6669b1c8da7b04a12c7a16ce8b1fedae8b0bb1a317c83176e88c5"; } + { locale = "tr"; arch = "linux-x86_64"; sha256 = "3a0a5883b4e4442985fa8e24a80d0849ac450a20d278858e1b3847974cc212f2"; } + { locale = "uk"; arch = "linux-i686"; sha256 = "3ea926ea98fd3506cdcccc32266fd8910f7c6b563818d58fa9708872712daad9"; } + { locale = "uk"; arch = "linux-x86_64"; sha256 = "c1d596a00831ed30446f8a6f9e7b455329a402939d5c7318616ad182e9564aa5"; } + { locale = "uz"; arch = "linux-i686"; sha256 = "d17a26657562ee017388c878867ff43a1d1d86f80c86a18fcf63268b477bd889"; } + { locale = "uz"; arch = "linux-x86_64"; sha256 = "7115c30ae7c0528f54aa8629402ddcfc54687e3a439d7a96c18f15e903e283c8"; } + { locale = "vi"; arch = "linux-i686"; sha256 = "37fe2af25d7068569770573e605f3d325e41169b3b0a82ca4ff007a0636b155b"; } + { locale = "vi"; arch = "linux-x86_64"; sha256 = "5bb2b8a27065b9a71a06dbec136a1774e43fbe27a30a03092f718042d58ec26c"; } + { locale = "xh"; arch = "linux-i686"; sha256 = "fa44efebbc0f1174ad10f540668447ddf6bd26a2c918694dd11e63e4d6f36b9c"; } + { locale = "xh"; arch = "linux-x86_64"; sha256 = "2c179d4613b0b7456d900f9b6c02a1041c39d4cf98a0ca0ea2ea97d1d7546199"; } + { locale = "zh-CN"; arch = "linux-i686"; sha256 = "e3c06fbffb4b2c135d31499d1a3490d23baedbed5125b46a4153ad9d60ea2fa8"; } + { locale = "zh-CN"; arch = "linux-x86_64"; sha256 = "3402f491b016e791c9f40f8ac5df5f7017dd6dd71d872020a27eae3634e4fb52"; } + { locale = "zh-TW"; arch = "linux-i686"; sha256 = "c77d79a6b1602c9f8c6538be18c974b8557af3ad3898910e1bccfe0a54993207"; } + { locale = "zh-TW"; arch = "linux-x86_64"; sha256 = "651e4a28750ea9376636293b934cf646b0e6981825a9801fe8bf47785114e34d"; } ]; } From 9afbbcb2a5f74369319c702d05d367dc44df5835 Mon Sep 17 00:00:00 2001 From: Jascha Geerds Date: Wed, 27 Jan 2016 16:58:51 +0100 Subject: [PATCH 235/268] gnome3.nautilus: 3.18.4 -> 3.18.5 --- pkgs/desktops/gnome-3/3.18/core/nautilus/src.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/desktops/gnome-3/3.18/core/nautilus/src.nix b/pkgs/desktops/gnome-3/3.18/core/nautilus/src.nix index 83809052efc..9314e202a88 100644 --- a/pkgs/desktops/gnome-3/3.18/core/nautilus/src.nix +++ b/pkgs/desktops/gnome-3/3.18/core/nautilus/src.nix @@ -1,10 +1,10 @@ # Autogenerated by maintainers/scripts/gnome.sh update fetchurl: { - name = "nautilus-3.18.4"; + name = "nautilus-3.18.5"; src = fetchurl { - url = mirror://gnome/sources/nautilus/3.18/nautilus-3.18.4.tar.xz; - sha256 = "4ff2c78dba352b4666bb30e0c80ed786eed09199fd624f00810fce4d987fcd26"; + url = mirror://gnome/sources/nautilus/3.18/nautilus-3.18.5.tar.xz; + sha256 = "60a927c0522b4cced9d8f62baed2ee5e2fd4305be4523eb5bc44805971a6cc15"; }; } From 286e9a00f80239e18eebb854ef2bfbfbd78bd1bd Mon Sep 17 00:00:00 2001 From: Jascha Geerds Date: Wed, 27 Jan 2016 16:59:10 +0100 Subject: [PATCH 236/268] gnome3.gnome-calculator: 3.18.2 -> 3.18.3 --- pkgs/desktops/gnome-3/3.18/core/gnome-calculator/src.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/desktops/gnome-3/3.18/core/gnome-calculator/src.nix b/pkgs/desktops/gnome-3/3.18/core/gnome-calculator/src.nix index 501e4ed0b1e..41b03825303 100644 --- a/pkgs/desktops/gnome-3/3.18/core/gnome-calculator/src.nix +++ b/pkgs/desktops/gnome-3/3.18/core/gnome-calculator/src.nix @@ -1,10 +1,10 @@ # Autogenerated by maintainers/scripts/gnome.sh update fetchurl: { - name = "gnome-calculator-3.18.2"; + name = "gnome-calculator-3.18.3"; src = fetchurl { - url = mirror://gnome/sources/gnome-calculator/3.18/gnome-calculator-3.18.2.tar.xz; - sha256 = "c86c5857409ce1d01896904e97ccf0a1a880f3dcf428a524e5c0fec27b274d64"; + url = mirror://gnome/sources/gnome-calculator/3.18/gnome-calculator-3.18.3.tar.xz; + sha256 = "c376a4a14a3f7946b799b8458ac4cf2694735fc7c20e90cfda29e209439e32ff"; }; } From f7578a4d327560300965bd666932c11d9cdd74a8 Mon Sep 17 00:00:00 2001 From: Jascha Geerds Date: Wed, 27 Jan 2016 17:15:42 +0100 Subject: [PATCH 237/268] gitflow: 1.8.0 -> 1.9.1 --- .../git-and-tools/gitflow/default.nix | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/pkgs/applications/version-management/git-and-tools/gitflow/default.nix b/pkgs/applications/version-management/git-and-tools/gitflow/default.nix index 99c1db20fb2..3fe7dec8f3b 100644 --- a/pkgs/applications/version-management/git-and-tools/gitflow/default.nix +++ b/pkgs/applications/version-management/git-and-tools/gitflow/default.nix @@ -1,12 +1,15 @@ -{ stdenv, fetchurl }: +{ stdenv, fetchFromGitHub }: stdenv.mkDerivation rec { - name = "gitflow-${version}"; - version = "1.8.0"; + pname = "gitflow"; + version = "1.9.1"; + name = "${pname}-${version}"; - src = fetchurl { - url = "https://github.com/petervanderdoes/gitflow/archive/${version}.tar.gz"; - sha256 = "1vxdawx4sinl19g59ifmrdalmr2dl5pkgawyj9z0s5mcildi6fc2"; + src = fetchFromGitHub { + owner = "petervanderdoes"; + repo = pname; + rev = version; + sha256 = "0ad2421r3iq4xrdy46f4rrqbm8r3xphqcsdj3gqy8fnlrmxw5dfw"; }; preBuild = '' From 1bc91e43553d1c202f907f9b77682a5e35a54d28 Mon Sep 17 00:00:00 2001 From: Jascha Geerds Date: Wed, 27 Jan 2016 17:24:23 +0100 Subject: [PATCH 238/268] pithos: 1.1.1 -> 1.1.2 --- pkgs/applications/audio/pithos/default.nix | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/pkgs/applications/audio/pithos/default.nix b/pkgs/applications/audio/pithos/default.nix index 955c776d904..4095d672f82 100644 --- a/pkgs/applications/audio/pithos/default.nix +++ b/pkgs/applications/audio/pithos/default.nix @@ -2,16 +2,17 @@ , gst_all_1, wrapGAppsHook }: pythonPackages.buildPythonPackage rec { - name = "pithos-${version}"; - version = "1.1.1"; + pname = "pithos"; + version = "1.1.2"; + name = "${pname}-${version}"; namePrefix = ""; src = fetchFromGitHub { - owner = "pithos"; - repo = "pithos"; + owner = pname; + repo = pname; rev = version; - sha256 = "0373z7g1wd3g1xl8m4ipx5n2ka67a2wcn387nyk8yvgdikm14jm3"; + sha256 = "0zk9clfawsnwmgjbk7y5d526ksxd1pkh09ln6sb06v4ygaiifcxp"; }; postPatch = '' From f8fae306a050af61ce26080ceac4e3c0af7ca2fe Mon Sep 17 00:00:00 2001 From: Jascha Geerds Date: Wed, 27 Jan 2016 17:33:14 +0100 Subject: [PATCH 239/268] sshfs: Update homepage URL --- pkgs/tools/filesystems/sshfs-fuse/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/tools/filesystems/sshfs-fuse/default.nix b/pkgs/tools/filesystems/sshfs-fuse/default.nix index d1e33098a94..a5b01db4cd2 100644 --- a/pkgs/tools/filesystems/sshfs-fuse/default.nix +++ b/pkgs/tools/filesystems/sshfs-fuse/default.nix @@ -15,7 +15,7 @@ stdenv.mkDerivation rec { ''; meta = with stdenv.lib; { - homepage = http://fuse.sourceforge.net/sshfs.html; + homepage = https://github.com/libfuse/sshfs; description = "FUSE-based filesystem that allows remote filesystems to be mounted over SSH"; platforms = platforms.linux; maintainers = with maintainers; [ jgeerds ]; From a4fb3c27ccdc42c4793a333a75c3d02c477401b8 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Wed, 27 Jan 2016 17:59:23 +0100 Subject: [PATCH 240/268] wcslib: 5.12 -> 5.13 + enableParallelBuilding --- pkgs/development/libraries/wcslib/default.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/wcslib/default.nix b/pkgs/development/libraries/wcslib/default.nix index ba2d1ab11fc..12741379aaa 100644 --- a/pkgs/development/libraries/wcslib/default.nix +++ b/pkgs/development/libraries/wcslib/default.nix @@ -1,16 +1,18 @@ { fetchurl, stdenv, flex }: stdenv.mkDerivation rec { - version = "5.12"; + version = "5.13"; name = "wcslib-${version}"; buildInputs = [ flex ]; src = fetchurl { url = "ftp://ftp.atnf.csiro.au/pub/software/wcslib/${name}.tar.bz2"; - sha256 ="1r4dz5514pba2d5cc2ydpnqm85xsvy65hlvzdqayl6sl40liizsh"; + sha256 ="1rxlp7p1b84r9fnk7m9p2ivg2cajfj88afyccrg64zlrqn5kx66n"; }; + enableParallelBuilding = true; + meta = { description = "World Coordinate System Library for Astronomy"; homepage = http://www.atnf.csiro.au/people/mcalabre/WCS/; From 49f55ebf97cdfbacb13f5a3a71571cdeecb6efcf Mon Sep 17 00:00:00 2001 From: Robert Helgesson Date: Wed, 27 Jan 2016 00:39:42 +0100 Subject: [PATCH 241/268] eclipse-plugin-scala: 4.1.1.20151201 -> 4.3.0.201512011535 --- pkgs/applications/editors/eclipse/plugins.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/editors/eclipse/plugins.nix b/pkgs/applications/editors/eclipse/plugins.nix index 7a1643e6d2a..627266b6af0 100644 --- a/pkgs/applications/editors/eclipse/plugins.nix +++ b/pkgs/applications/editors/eclipse/plugins.nix @@ -317,11 +317,11 @@ rec { scala = buildEclipseUpdateSite rec { name = "scala-${version}"; - version = "4.1.1.20151201"; + version = "4.3.0.201512011535"; src = fetchzip { url = "http://download.scala-ide.org/sdk/lithium/e44/scala211/stable/update-site.zip"; - sha256 = "19iqaha9c5n5hkyn83xj8znkvshm4823d65zigbj97fz8gzrr0la"; + sha256 = "1j0qw4frkvvmyl64wdbznglgjjr9sfg8wb9npar0x7qv1hj4hw3x"; }; meta = with stdenv.lib; { From 71a4d369832e54cb8bb732c97d1773eb14ed4bd6 Mon Sep 17 00:00:00 2001 From: Shea Levy Date: Wed, 27 Jan 2016 14:00:46 -0500 Subject: [PATCH 242/268] zip: disable nls patch by default. This patch breaks zip -y (symlinks are turned into regular files). See https://bugs.gentoo.org/show_bug.cgi?id=571676#c4 --- pkgs/tools/archivers/zip/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/tools/archivers/zip/default.nix b/pkgs/tools/archivers/zip/default.nix index 585bc72ad96..431ed354d21 100644 --- a/pkgs/tools/archivers/zip/default.nix +++ b/pkgs/tools/archivers/zip/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, enableNLS ? true, libnatspec ? null, libiconv }: +{ stdenv, fetchurl, enableNLS ? false, libnatspec ? null, libiconv }: assert enableNLS -> libnatspec != null; From f9ab62431c8dd955ac5f68c4187f08de586c7eed Mon Sep 17 00:00:00 2001 From: Sergey Mironov Date: Wed, 27 Jan 2016 23:12:28 +0300 Subject: [PATCH 243/268] urweb: version bump --- pkgs/development/compilers/urweb/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/compilers/urweb/default.nix b/pkgs/development/compilers/urweb/default.nix index 3e4b0bcae5b..f99571c6a10 100644 --- a/pkgs/development/compilers/urweb/default.nix +++ b/pkgs/development/compilers/urweb/default.nix @@ -4,11 +4,11 @@ stdenv.mkDerivation rec { name = "urweb-${version}"; - version = "20151018"; + version = "20151220"; src = fetchurl { url = "http://www.impredicative.com/ur/${name}.tgz"; - sha256 = "08p52p5m1xl2gzdchnayky44mm2b0x8hv0f00iviyyv1gnx3lpy0"; + sha256 = "155maalm4l1ni7az3yqs0lrgl5f2xr3pz4118ag1hnk82qldd4s5"; }; buildInputs = [ openssl mlton mysql postgresql sqlite ]; From 903129f770307954936c85fb5f8b0645540922b7 Mon Sep 17 00:00:00 2001 From: Arthur Noel Date: Wed, 27 Jan 2016 19:48:04 +0000 Subject: [PATCH 244/268] dockerTools: private registry support * authorization token is optional * registry url is taken from X-Docker-Endpoints header * pull.sh correctly resumes partial layer downloads * detjson.py does not fail on missing keys --- doc/functions.xml | 5 ++- pkgs/build-support/docker/detjson.py | 4 ++- pkgs/build-support/docker/pull.nix | 9 ++--- pkgs/build-support/docker/pull.sh | 53 +++++++++++++++++----------- 4 files changed, 40 insertions(+), 31 deletions(-) diff --git a/doc/functions.xml b/doc/functions.xml index 5a350a23e0a..7d250824f78 100644 --- a/doc/functions.xml +++ b/doc/functions.xml @@ -489,7 +489,6 @@ c = lib.makeOverridable f { a = 1; b = 2; } sha256 = "1bhw5hkz6chrnrih0ymjbmn69hyfriza2lr550xyvpdrnbzr4gk2"; indexUrl = "https://index.docker.io"; - registryUrl = "https://registry-1.docker.io"; registryVersion = "v1"; } @@ -534,8 +533,8 @@ c = lib.makeOverridable f { a = 1; b = 2; } - In the above example the default values are shown for the variables indexUrl, - registryUrl and registryVersion. + In the above example the default values are shown for the variables + indexUrl and registryVersion. Hence by default the Docker.io registry is used to pull the images. diff --git a/pkgs/build-support/docker/detjson.py b/pkgs/build-support/docker/detjson.py index ba2c20a475a..439c2131387 100644 --- a/pkgs/build-support/docker/detjson.py +++ b/pkgs/build-support/docker/detjson.py @@ -24,9 +24,11 @@ SAFEDELS["container_config"] = SAFEDELS["config"] def makedet(j, safedels): for k,v in safedels.items(): + if k not in j: + continue if type(v) == dict: makedet(j[k], v) - elif k in j and j[k] == v: + elif j[k] == v: del j[k] def main(): diff --git a/pkgs/build-support/docker/pull.nix b/pkgs/build-support/docker/pull.nix index 7115a83df42..a5e7acaf159 100644 --- a/pkgs/build-support/docker/pull.nix +++ b/pkgs/build-support/docker/pull.nix @@ -8,13 +8,14 @@ { imageName, imageTag ? "latest", imageId ? null , sha256, name ? "${imageName}-${imageTag}" , indexUrl ? "https://index.docker.io" -, registryUrl ? "https://registry-1.docker.io" , registryVersion ? "v1" , curlOpts ? "" }: +assert registryVersion == "v1"; + let layer = stdenv.mkDerivation { inherit name imageName imageTag imageId - indexUrl registryUrl registryVersion curlOpts; + indexUrl registryVersion curlOpts; builder = ./pull.sh; detjson = ./detjson.py; @@ -34,10 +35,6 @@ let layer = stdenv.mkDerivation { # This variable allows the user to pass additional options to curl "NIX_CURL_FLAGS" - - # This variable allows overriding the timeout for connecting to - # the hashed mirrors. - "NIX_CONNECT_TIMEOUT" ]; # Doing the download on a remote machine just duplicates network diff --git a/pkgs/build-support/docker/pull.sh b/pkgs/build-support/docker/pull.sh index 8a0782780af..7ba146e9de0 100644 --- a/pkgs/build-support/docker/pull.sh +++ b/pkgs/build-support/docker/pull.sh @@ -6,17 +6,20 @@ source $stdenv/setup # servers to need them during redirects, and work on SSL without a # certificate (this isn't a security problem because we check the # cryptographic hash of the output anyway). -curl="curl \ - --location --max-redirs 20 \ - --retry 3 \ - --fail \ - --disable-epsv \ - --cookie-jar cookies \ - --insecure \ - $curlOpts \ - $NIX_CURL_FLAGS" - -baseUrl="$registryUrl/$registryVersion" +curl=$(command -v curl) +curl() { + [[ -n ${token:-} ]] && set -- -H "Authorization: Token $token" "$@" + $curl \ + --location --max-redirs 20 \ + --retry 3 \ + --fail \ + --disable-epsv \ + --cookie-jar cookies \ + --insecure \ + $curlOpts \ + $NIX_CURL_FLAGS \ + "$@" +} fetchLayer() { local url="$1" @@ -26,7 +29,7 @@ fetchLayer() { # if we get error code 18, resume partial download while [ $curlexit -eq 18 ]; do # keep this inside an if statement, since on failure it doesn't abort the script - if $curl -H "Authorization: Token $token" "$url" --output "$dest"; then + if curl -C - "$url" --output "$dest"; then return 0 else curlexit=$?; @@ -36,17 +39,25 @@ fetchLayer() { return $curlexit } -token="$($curl -o /dev/null -D- -H 'X-Docker-Token: true' "$indexUrl/$registryVersion/repositories/$imageName/images" | grep X-Docker-Token | tr -d '\r' | cut -d ' ' -f 2)" +headers=$(curl -o /dev/null -D- -H 'X-Docker-Token: true' \ + "$indexUrl/$registryVersion/repositories/$imageName/images") -if [ -z "$token" ]; then - echo "error: registry returned no token" - exit 1 +header() { + grep $1 <<< "$headers" | tr -d '\r' | cut -d ' ' -f 2 +} + +# this only takes the first endpoint, more may be provided +# https://docs.docker.com/v1.6/reference/api/docker-io_api/ +if ! registryUrl=$(header X-Docker-Endpoints); then + echo "error: index returned no endpoint" + exit 1 fi +baseUrl="https://$registryUrl/$registryVersion" -# token="${token//\"/\\\"}" +token="$(header X-Docker-Token || true)"; if [ -z "$imageId" ]; then - imageId="$($curl -H "Authorization: Token $token" "$baseUrl/repositories/$imageName/tags/$imageTag")" + imageId="$(curl "$baseUrl/repositories/$imageName/tags/$imageTag")" imageId="${imageId//\"/}" if [ -z "$imageId" ]; then echo "error: no image ID found for ${imageName}:${imageTag}" @@ -62,7 +73,7 @@ jshon -n object \ -n object -s "$imageId" -i "$imageTag" \ -i "$imageName" > $out/repositories -$curl -H "Authorization: Token $token" "$baseUrl/images/$imageId/ancestry" -o ancestry.json +curl "$baseUrl/images/$imageId/ancestry" -o ancestry.json layerIds=$(jshon -a -u < ancestry.json) for layerId in $layerIds; do @@ -70,6 +81,6 @@ for layerId in $layerIds; do mkdir "$out/$layerId" echo '1.0' > "$out/$layerId/VERSION" - $curl -H "Authorization: Token $token" "$baseUrl/images/$layerId/json" | python $detjson > "$out/$layerId/json" + curl "$baseUrl/images/$layerId/json" | python $detjson > "$out/$layerId/json" fetchLayer "$baseUrl/images/$layerId/layer" "$out/$layerId/layer.tar" -done \ No newline at end of file +done From a6bda1a62a0555215a0fc35019154c7d922de27a Mon Sep 17 00:00:00 2001 From: Sander van der Burg Date: Wed, 27 Jan 2016 22:32:34 +0000 Subject: [PATCH 245/268] disnix: bump to version 0.5 --- .../disnix/DisnixWebService/default.nix | 6 +++--- pkgs/tools/package-management/disnix/default.nix | 10 +++++----- .../package-management/disnix/disnixos/default.nix | 6 +++--- .../package-management/disnix/dysnomia/default.nix | 6 +++--- 4 files changed, 14 insertions(+), 14 deletions(-) diff --git a/pkgs/tools/package-management/disnix/DisnixWebService/default.nix b/pkgs/tools/package-management/disnix/DisnixWebService/default.nix index 65a90bfae96..a4599cf049f 100644 --- a/pkgs/tools/package-management/disnix/DisnixWebService/default.nix +++ b/pkgs/tools/package-management/disnix/DisnixWebService/default.nix @@ -1,10 +1,10 @@ {stdenv, fetchurl, apacheAnt, jdk, axis2, dbus_java}: stdenv.mkDerivation { - name = "DisnixWebService-0.4"; + name = "DisnixWebService-0.5"; src = fetchurl { - url = http://hydra.nixos.org/build/23484798/download/4/DisnixWebService-0.4.tar.bz2; - sha256 = "1rfzmh4rxip8nq25fvi6vw51xb7h0nch4l06s0xgwwv4gw8p0lhm"; + url = http://hydra.nixos.org/build/31143438/download/4/DisnixWebService-0.5.tar.bz2; + sha256 = "0wddrb9cf62hzfcrnyq5jn2pb8vc0bzfcl5z53aczkij0rbamw7k"; }; buildInputs = [ apacheAnt jdk ]; PREFIX = ''''${env.out}''; diff --git a/pkgs/tools/package-management/disnix/default.nix b/pkgs/tools/package-management/disnix/default.nix index 39d8132ba09..bd215b769d4 100644 --- a/pkgs/tools/package-management/disnix/default.nix +++ b/pkgs/tools/package-management/disnix/default.nix @@ -1,14 +1,14 @@ -{ stdenv, fetchurl, pkgconfig, dbus_glib, libxml2, libxslt, getopt, nixUnstable, dysnomia, libintlOrEmpty, libiconv }: +{ stdenv, fetchurl, pkgconfig, glib, libxml2, libxslt, getopt, nixUnstable, dysnomia, libintlOrEmpty, libiconv }: stdenv.mkDerivation { - name = "disnix-0.4"; + name = "disnix-0.5"; src = fetchurl { - url = http://hydra.nixos.org/build/23484781/download/4/disnix-0.4.tar.gz; - sha256 = "1hvjy19br4x7cvgn0rslysrp3w7jfh30s7piq6v9j2b6k6wmh2hk"; + url = http://hydra.nixos.org/build/31143411/download/4/disnix-0.5.tar.gz; + sha256 = "0v0gbbcspaj67sn8ncrripa5af0m2xykyjjn2n55smz5fwx6d124"; }; - buildInputs = [ pkgconfig dbus_glib libxml2 libxslt getopt nixUnstable libintlOrEmpty libiconv dysnomia ]; + buildInputs = [ pkgconfig glib libxml2 libxslt getopt nixUnstable libintlOrEmpty libiconv dysnomia ]; dontStrip = true; diff --git a/pkgs/tools/package-management/disnix/disnixos/default.nix b/pkgs/tools/package-management/disnix/disnixos/default.nix index 4603f108d37..0dd6d5e09b6 100644 --- a/pkgs/tools/package-management/disnix/disnixos/default.nix +++ b/pkgs/tools/package-management/disnix/disnixos/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, disnix, socat, pkgconfig, getopt }: stdenv.mkDerivation { - name = "disnixos-0.3"; + name = "disnixos-0.4"; src = fetchurl { - url = http://hydra.nixos.org/build/23484787/download/3/disnixos-0.3.tar.gz; - sha256 = "08v9vbg3727mv4iyzwfnf5x3la2xjj1agbbzm8aaa09q7alqasvw"; + url = http://hydra.nixos.org/build/31143419/download/3/disnixos-0.4.tar.gz; + sha256 = "0ff2k15j34b947b8pnw5xhsv9blk9kq350pcp3p3p2qclgf9ahfh"; }; buildInputs = [ socat pkgconfig disnix getopt ]; diff --git a/pkgs/tools/package-management/disnix/dysnomia/default.nix b/pkgs/tools/package-management/disnix/dysnomia/default.nix index b5969aa327d..720526d72a6 100644 --- a/pkgs/tools/package-management/disnix/dysnomia/default.nix +++ b/pkgs/tools/package-management/disnix/dysnomia/default.nix @@ -20,10 +20,10 @@ assert enableEjabberdDump -> ejabberd != null; assert enableMongoDatabase -> (mongodb != null && mongodb-tools != null); stdenv.mkDerivation { - name = "dysnomia-0.4.1"; + name = "dysnomia-0.5"; src = fetchurl { - url = http://hydra.nixos.org/build/26970202/download/1/dysnomia-0.4.1.tar.gz; - sha256 = "03ljlsmdpglimvql2qnr4wj8ci2hj7wcc8bqipndqcahcpcc8k0f"; + url = http://hydra.nixos.org/build/31143399/download/1/dysnomia-0.5.tar.gz; + sha256 = "1dxilzcqnv60l418k1ihyh0gkai5xgzj13s9hcbbb0yp71mv7n9x"; }; preConfigure = if enableEjabberdDump then "export PATH=$PATH:${ejabberd}/sbin" else ""; From 8975148a16df483765aac2445d233b41187947b2 Mon Sep 17 00:00:00 2001 From: Christian Albrecht Date: Wed, 27 Jan 2016 15:40:37 +0100 Subject: [PATCH 246/268] vagrant: 1.8.0 -> 1.8.1 --- pkgs/development/tools/vagrant/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/tools/vagrant/default.nix b/pkgs/development/tools/vagrant/default.nix index 36df8bba1b9..c113dcbfb7b 100644 --- a/pkgs/development/tools/vagrant/default.nix +++ b/pkgs/development/tools/vagrant/default.nix @@ -4,7 +4,7 @@ assert stdenv.system == "x86_64-linux" || stdenv.system == "i686-linux"; let - version = "1.8.0"; + version = "1.8.1"; rake = buildRubyGem { inherit ruby; gemName = "rake"; @@ -20,12 +20,12 @@ stdenv.mkDerivation rec { if stdenv.system == "x86_64-linux" then fetchurl { url = "https://releases.hashicorp.com/vagrant/${version}/vagrant_${version}_x86_64.deb"; - sha256 = "0hvi6db5lphgzsykm1wn76jj4wwmm6lshvvd0qz7ipyyyhnd7sjp"; + sha256 = "0gb999ql4kfxd9473cx3xn6a11094dm4iyrx1dzd9v2sygh1l3pd"; } else fetchurl { url = "https://releases.hashicorp.com/vagrant/${version}/vagrant_${version}_i686.deb"; - sha256 = "1jvscbxqbhavw4q81y5718qbyj74b9lwfw3gb4c1f4jmgm08wxxk"; + sha256 = "1nzg6i9i270xgaih381q096lb23rwxkif4ba9j62y3zjmj6az4xf"; }; meta = with stdenv.lib; { From 06527f7783fd5a6db3b1f54430bb8d8fb282ba8c Mon Sep 17 00:00:00 2001 From: Damien Cassou Date: Wed, 20 Jan 2016 17:13:31 +0100 Subject: [PATCH 247/268] gpaste: 3.18.2 -> 3.18.3 --- pkgs/desktops/gnome-3/3.18/misc/gpaste/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/desktops/gnome-3/3.18/misc/gpaste/default.nix b/pkgs/desktops/gnome-3/3.18/misc/gpaste/default.nix index 690d0ac2006..eeb2cee86cd 100644 --- a/pkgs/desktops/gnome-3/3.18/misc/gpaste/default.nix +++ b/pkgs/desktops/gnome-3/3.18/misc/gpaste/default.nix @@ -2,12 +2,12 @@ , pango, gtk3, gnome3, dbus, clutter, appstream-glib, makeWrapper }: stdenv.mkDerivation rec { - version = "${gnome3.version}.2"; + version = "${gnome3.version}.3"; name = "gpaste-${version}"; src = fetchurl { url = "https://github.com/Keruspe/GPaste/archive/v${version}.tar.gz"; - sha256 = "0w9d0vbqhvc78vqlsyaywmrpzibr7137398azpfh416bm6vh6d3h"; + sha256 = "1fyrdgsn4m3fh8450qcic243sl7llfs44cdbspwpn5zb4h2hk8rj"; }; buildInputs = [ intltool autoreconfHook pkgconfig vala glib From c67c27dc82ffc3da915d8c02cb6c41ac7011f33f Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Thu, 28 Jan 2016 10:14:27 +0100 Subject: [PATCH 248/268] pycairo: add darwin to meta.platforms --- pkgs/development/python-modules/pycairo/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/pycairo/default.nix b/pkgs/development/python-modules/pycairo/default.nix index 07a8e05730b..84dfdd32a10 100644 --- a/pkgs/development/python-modules/pycairo/default.nix +++ b/pkgs/development/python-modules/pycairo/default.nix @@ -37,5 +37,5 @@ if (isPyPy || isPy35) then throw "pycairo not supported for interpreter ${python buildPhase = "${python.executable} waf"; installPhase = "${python.executable} waf install"; - meta.platforms = stdenv.lib.platforms.linux; + meta.platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin; } From 2dbd7410092b5aaec6a3a100f58e4e525a35a939 Mon Sep 17 00:00:00 2001 From: Christian Albrecht Date: Thu, 28 Jan 2016 13:27:40 +0100 Subject: [PATCH 249/268] nodejs-5_x: 5.4.1 -> 5.5.0 --- pkgs/development/web/nodejs/v5.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/web/nodejs/v5.nix b/pkgs/development/web/nodejs/v5.nix index 8068e0163ce..5c6fc9f644b 100644 --- a/pkgs/development/web/nodejs/v5.nix +++ b/pkgs/development/web/nodejs/v5.nix @@ -7,7 +7,7 @@ assert stdenv.system != "armv5tel-linux"; let - version = "5.4.1"; + version = "5.5.0"; deps = { inherit openssl zlib libuv; @@ -31,7 +31,7 @@ in stdenv.mkDerivation { src = fetchurl { url = "http://nodejs.org/dist/v${version}/node-v${version}.tar.gz"; - sha256 = "032ylpjrnjpc4cjqkrax3slli40025kw74yk2dynp86ywgr5wibq"; + sha256 = "0cmlk13skwag9gn1198h0ql64rv1jwwqbysq911kb6k94361i6yn"; }; configureFlags = concatMap sharedConfigureFlags (builtins.attrNames deps) ++ [ "--without-dtrace" ]; From b205b587e7ab22e5e5763646369ce63ffd2ee150 Mon Sep 17 00:00:00 2001 From: Sander van der Burg Date: Thu, 28 Jan 2016 13:32:21 +0000 Subject: [PATCH 250/268] titaniumenv: remove obsolete iosWwdrCertificate parameter --- pkgs/development/mobile/titaniumenv/examples/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/mobile/titaniumenv/examples/default.nix b/pkgs/development/mobile/titaniumenv/examples/default.nix index be2ee419ff4..02e493a83c5 100644 --- a/pkgs/development/mobile/titaniumenv/examples/default.nix +++ b/pkgs/development/mobile/titaniumenv/examples/default.nix @@ -4,7 +4,7 @@ , xcodeBaseDir ? "/Applications/Xcode.app" , tiVersion ? "5.1.1.GA" , rename ? false -, newBundleId ? "com.example.kitchensink", iosMobileProvisioningProfile ? null, iosCertificate ? null, iosCertificateName ? "Example", iosCertificatePassword ? "", iosVersion ? "9.2", iosWwdrCertificate ? null +, newBundleId ? "com.example.kitchensink", iosMobileProvisioningProfile ? null, iosCertificate ? null, iosCertificateName ? "Example", iosCertificatePassword ? "", iosVersion ? "9.2" , allowUnfree ? false , enableWirelessDistribution ? false, installURL ? null }: @@ -84,7 +84,7 @@ rec { inherit tiVersion; release = true; rename = true; - inherit newBundleId iosMobileProvisioningProfile iosCertificate iosCertificateName iosCertificatePassword iosVersion iosWwdrCertificate; + inherit newBundleId iosMobileProvisioningProfile iosCertificate iosCertificateName iosCertificatePassword iosVersion; inherit enableWirelessDistribution installURL; }; } From ab84149c9986af066bd518e0970be0a344f6a5fa Mon Sep 17 00:00:00 2001 From: aszlig Date: Wed, 27 Jan 2016 12:44:56 +0100 Subject: [PATCH 251/268] buildEnv: Pass the right number of args to addPkg Regression introduced by 4529ed12590d7f814e40223437c7df4fea492e2d. I've missed this in #5096, not because of a messed up rebase as I have guessed from a comment on #12635 but missed this in the first place. The testing I did while working on the pull request weren't exhaustive enough to cover this, because I haven't tested with packages that use the propagatedUserEnvPkgs attribute. In order to make the test a bit more exhaustive this time, let's test it using: nix-build -E 'with import ./. {}; buildEnv { name = "testenv"; paths = [ pkgs.hello pkgs.binutils pkgs.libsoup pkgs.gnome3.yelp pkgs.gnome3.totem ]; }' And with this commit the errors no longer show up and the environment is built correctly. Signed-off-by: aszlig Fixes: #12635 --- pkgs/build-support/buildenv/builder.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/build-support/buildenv/builder.pl b/pkgs/build-support/buildenv/builder.pl index c505473ee72..f6cfe52dc31 100755 --- a/pkgs/build-support/buildenv/builder.pl +++ b/pkgs/build-support/buildenv/builder.pl @@ -169,7 +169,7 @@ while (scalar(keys %postponed) > 0) { my @pkgDirs = keys %postponed; %postponed = (); foreach my $pkgDir (sort @pkgDirs) { - addPkg($pkgDir, 2, $priorityCounter++); + addPkg($pkgDir, 2, $ENV{"checkCollisionContents"} eq "1", $priorityCounter++); } } From 4dc36b12270cffc040fc2d862cf1ee15e3f1fa26 Mon Sep 17 00:00:00 2001 From: Sander van der Burg Date: Thu, 28 Jan 2016 14:35:54 +0000 Subject: [PATCH 252/268] titaniumenv: use version 5.1.2 by default in the example --- pkgs/development/mobile/titaniumenv/examples/default.nix | 2 +- .../mobile/titaniumenv/examples/kitchensink/default.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/mobile/titaniumenv/examples/default.nix b/pkgs/development/mobile/titaniumenv/examples/default.nix index 02e493a83c5..6dd80a216de 100644 --- a/pkgs/development/mobile/titaniumenv/examples/default.nix +++ b/pkgs/development/mobile/titaniumenv/examples/default.nix @@ -2,7 +2,7 @@ , systems ? [ "x86_64-linux" "x86_64-darwin" ] , xcodeVersion ? "7.2" , xcodeBaseDir ? "/Applications/Xcode.app" -, tiVersion ? "5.1.1.GA" +, tiVersion ? "5.1.2.GA" , rename ? false , newBundleId ? "com.example.kitchensink", iosMobileProvisioningProfile ? null, iosCertificate ? null, iosCertificateName ? "Example", iosCertificatePassword ? "", iosVersion ? "9.2" , allowUnfree ? false diff --git a/pkgs/development/mobile/titaniumenv/examples/kitchensink/default.nix b/pkgs/development/mobile/titaniumenv/examples/kitchensink/default.nix index b6c012a77ef..c2c12438b61 100644 --- a/pkgs/development/mobile/titaniumenv/examples/kitchensink/default.nix +++ b/pkgs/development/mobile/titaniumenv/examples/kitchensink/default.nix @@ -1,4 +1,4 @@ -{ titaniumenv, fetchgit, target, androidPlatformVersions ? [ "23" ], tiVersion ? "5.1.1.GA", release ? false +{ titaniumenv, fetchgit, target, androidPlatformVersions ? [ "23" ], tiVersion ? "5.1.2.GA", release ? false , rename ? false, stdenv ? null, newBundleId ? null, iosMobileProvisioningProfile ? null, iosCertificate ? null, iosCertificateName ? null, iosCertificatePassword ? null, iosVersion ? "8.1" , enableWirelessDistribution ? false, installURL ? null }: From b4e47d1ab8dc887ec57ae42a04822eb45e43bc52 Mon Sep 17 00:00:00 2001 From: Sander van der Burg Date: Thu, 28 Jan 2016 14:39:21 +0000 Subject: [PATCH 253/268] titaniumenv: change identifier to 5.1.2.GA --- pkgs/development/mobile/titaniumenv/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/mobile/titaniumenv/default.nix b/pkgs/development/mobile/titaniumenv/default.nix index f1ea4dc2342..f9bb61ef43a 100644 --- a/pkgs/development/mobile/titaniumenv/default.nix +++ b/pkgs/development/mobile/titaniumenv/default.nix @@ -9,7 +9,7 @@ rec { } else null; titaniumsdk = let - titaniumSdkFile = if tiVersion == "5.1.1.GA" then ./titaniumsdk-5.1.nix + titaniumSdkFile = if tiVersion == "5.1.2.GA" then ./titaniumsdk-5.1.nix else throw "Titanium version not supported: "+tiVersion; in import titaniumSdkFile { From 81c8babb388a71468fea992be34e31aede01cce2 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Wed, 27 Jan 2016 01:31:23 +0100 Subject: [PATCH 254/268] hackage-packages.nix: update Haskell package set This update was generated by hackage2nix v20151217-9-geddefc2 using the following inputs: - Nixpkgs: https://github.com/NixOS/nixpkgs/commit/34e1e2890fe8124c7b262c0f514e160f14676684 - Hackage: https://github.com/commercialhaskell/all-cabal-hashes/commit/152c587fd11879bf3e53adc3d8d0e1463f71f7ba - LTS Haskell: https://github.com/fpco/lts-haskell/commit/9b9c0dc0e337ee769438a8da43f3a7af0279b809 - Stackage Nightly: https://github.com/fpco/stackage-nightly/commit/486fdffc718b1599b6007f40530e31ea44c39f5d --- .../haskell-modules/configuration-lts-0.0.nix | 4 + .../haskell-modules/configuration-lts-0.1.nix | 4 + .../haskell-modules/configuration-lts-0.2.nix | 4 + .../haskell-modules/configuration-lts-0.3.nix | 4 + .../haskell-modules/configuration-lts-0.4.nix | 4 + .../haskell-modules/configuration-lts-0.5.nix | 4 + .../haskell-modules/configuration-lts-0.6.nix | 4 + .../haskell-modules/configuration-lts-0.7.nix | 4 + .../haskell-modules/configuration-lts-1.0.nix | 4 + .../haskell-modules/configuration-lts-1.1.nix | 4 + .../configuration-lts-1.10.nix | 4 + .../configuration-lts-1.11.nix | 4 + .../configuration-lts-1.12.nix | 4 + .../configuration-lts-1.13.nix | 4 + .../configuration-lts-1.14.nix | 4 + .../configuration-lts-1.15.nix | 4 + .../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 | 4 + .../haskell-modules/configuration-lts-2.0.nix | 4 + .../haskell-modules/configuration-lts-2.1.nix | 4 + .../configuration-lts-2.10.nix | 4 + .../configuration-lts-2.11.nix | 4 + .../configuration-lts-2.12.nix | 4 + .../configuration-lts-2.13.nix | 4 + .../configuration-lts-2.14.nix | 4 + .../configuration-lts-2.15.nix | 4 + .../configuration-lts-2.16.nix | 4 + .../configuration-lts-2.17.nix | 4 + .../configuration-lts-2.18.nix | 4 + .../configuration-lts-2.19.nix | 4 + .../haskell-modules/configuration-lts-2.2.nix | 4 + .../configuration-lts-2.20.nix | 4 + .../configuration-lts-2.21.nix | 4 + .../configuration-lts-2.22.nix | 4 + .../haskell-modules/configuration-lts-2.3.nix | 4 + .../haskell-modules/configuration-lts-2.4.nix | 4 + .../haskell-modules/configuration-lts-2.5.nix | 4 + .../haskell-modules/configuration-lts-2.6.nix | 4 + .../haskell-modules/configuration-lts-2.7.nix | 4 + .../haskell-modules/configuration-lts-2.8.nix | 4 + .../haskell-modules/configuration-lts-2.9.nix | 4 + .../haskell-modules/configuration-lts-3.0.nix | 5 + .../haskell-modules/configuration-lts-3.1.nix | 5 + .../configuration-lts-3.10.nix | 5 + .../configuration-lts-3.11.nix | 5 + .../configuration-lts-3.12.nix | 5 + .../configuration-lts-3.13.nix | 5 + .../configuration-lts-3.14.nix | 5 + .../configuration-lts-3.15.nix | 5 + .../configuration-lts-3.16.nix | 5 + .../configuration-lts-3.17.nix | 6 + .../configuration-lts-3.18.nix | 6 + .../configuration-lts-3.19.nix | 6 + .../haskell-modules/configuration-lts-3.2.nix | 5 + .../configuration-lts-3.20.nix | 6 + .../configuration-lts-3.21.nix | 7 + .../configuration-lts-3.22.nix | 7 + .../haskell-modules/configuration-lts-3.3.nix | 5 + .../haskell-modules/configuration-lts-3.4.nix | 5 + .../haskell-modules/configuration-lts-3.5.nix | 5 + .../haskell-modules/configuration-lts-3.6.nix | 5 + .../haskell-modules/configuration-lts-3.7.nix | 5 + .../haskell-modules/configuration-lts-3.8.nix | 5 + .../haskell-modules/configuration-lts-3.9.nix | 5 + .../haskell-modules/configuration-lts-4.0.nix | 11 + .../haskell-modules/configuration-lts-4.1.nix | 11 + .../haskell-modules/configuration-lts-4.2.nix | 11 + .../haskell-modules/configuration-lts-5.0.nix | 14 + .../haskell-modules/hackage-packages.nix | 687 ++++++++++++++---- 73 files changed, 888 insertions(+), 149 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-lts-0.0.nix b/pkgs/development/haskell-modules/configuration-lts-0.0.nix index 9cda25a9057..e9ab7886bf2 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.0.nix @@ -172,6 +172,7 @@ self: super: { "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; + "ChannelT" = dontDistribute super."ChannelT"; "Chart" = doDistribute super."Chart_1_3_2"; "Chart-cairo" = dontDistribute super."Chart-cairo"; "Chart-diagrams" = doDistribute super."Chart-diagrams_1_3_2"; @@ -4976,6 +4977,7 @@ self: super: { "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; "irc-fun-messages" = dontDistribute super."irc-fun-messages"; + "irc-fun-types" = dontDistribute super."irc-fun-types"; "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; @@ -5060,6 +5062,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json" = dontDistribute super."json"; "json-assertions" = dontDistribute super."json-assertions"; + "json-ast" = dontDistribute super."json-ast"; "json-autotype" = dontDistribute super."json-autotype"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; @@ -7776,6 +7779,7 @@ self: super: { "string-qq" = dontDistribute super."string-qq"; "string-quote" = dontDistribute super."string-quote"; "string-similarity" = dontDistribute super."string-similarity"; + "string-typelits" = dontDistribute super."string-typelits"; "stringlike" = dontDistribute super."stringlike"; "strings" = dontDistribute super."strings"; "stringsearch" = doDistribute super."stringsearch_0_3_6_5"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.1.nix b/pkgs/development/haskell-modules/configuration-lts-0.1.nix index 300a95e2c17..f5ffa31c0b9 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.1.nix @@ -172,6 +172,7 @@ self: super: { "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; + "ChannelT" = dontDistribute super."ChannelT"; "Chart" = doDistribute super."Chart_1_3_2"; "Chart-cairo" = dontDistribute super."Chart-cairo"; "Chart-diagrams" = doDistribute super."Chart-diagrams_1_3_2"; @@ -4976,6 +4977,7 @@ self: super: { "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; "irc-fun-messages" = dontDistribute super."irc-fun-messages"; + "irc-fun-types" = dontDistribute super."irc-fun-types"; "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; @@ -5060,6 +5062,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json" = dontDistribute super."json"; "json-assertions" = dontDistribute super."json-assertions"; + "json-ast" = dontDistribute super."json-ast"; "json-autotype" = dontDistribute super."json-autotype"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; @@ -7776,6 +7779,7 @@ self: super: { "string-qq" = dontDistribute super."string-qq"; "string-quote" = dontDistribute super."string-quote"; "string-similarity" = dontDistribute super."string-similarity"; + "string-typelits" = dontDistribute super."string-typelits"; "stringlike" = dontDistribute super."stringlike"; "strings" = dontDistribute super."strings"; "stringsearch" = doDistribute super."stringsearch_0_3_6_5"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.2.nix b/pkgs/development/haskell-modules/configuration-lts-0.2.nix index 12c95ce49f9..7bfff631729 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.2.nix @@ -172,6 +172,7 @@ self: super: { "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; + "ChannelT" = dontDistribute super."ChannelT"; "Chart" = doDistribute super."Chart_1_3_2"; "Chart-cairo" = dontDistribute super."Chart-cairo"; "Chart-diagrams" = doDistribute super."Chart-diagrams_1_3_2"; @@ -4976,6 +4977,7 @@ self: super: { "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; "irc-fun-messages" = dontDistribute super."irc-fun-messages"; + "irc-fun-types" = dontDistribute super."irc-fun-types"; "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; @@ -5060,6 +5062,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json" = dontDistribute super."json"; "json-assertions" = dontDistribute super."json-assertions"; + "json-ast" = dontDistribute super."json-ast"; "json-autotype" = dontDistribute super."json-autotype"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; @@ -7776,6 +7779,7 @@ self: super: { "string-qq" = dontDistribute super."string-qq"; "string-quote" = dontDistribute super."string-quote"; "string-similarity" = dontDistribute super."string-similarity"; + "string-typelits" = dontDistribute super."string-typelits"; "stringlike" = dontDistribute super."stringlike"; "strings" = dontDistribute super."strings"; "stringsearch" = doDistribute super."stringsearch_0_3_6_5"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.3.nix b/pkgs/development/haskell-modules/configuration-lts-0.3.nix index 6e5603e3a84..0041c132ac4 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.3.nix @@ -172,6 +172,7 @@ self: super: { "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; + "ChannelT" = dontDistribute super."ChannelT"; "Chart" = doDistribute super."Chart_1_3_2"; "Chart-cairo" = dontDistribute super."Chart-cairo"; "Chart-diagrams" = doDistribute super."Chart-diagrams_1_3_2"; @@ -4976,6 +4977,7 @@ self: super: { "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; "irc-fun-messages" = dontDistribute super."irc-fun-messages"; + "irc-fun-types" = dontDistribute super."irc-fun-types"; "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; @@ -5060,6 +5062,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json" = dontDistribute super."json"; "json-assertions" = dontDistribute super."json-assertions"; + "json-ast" = dontDistribute super."json-ast"; "json-autotype" = dontDistribute super."json-autotype"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; @@ -7776,6 +7779,7 @@ self: super: { "string-qq" = dontDistribute super."string-qq"; "string-quote" = dontDistribute super."string-quote"; "string-similarity" = dontDistribute super."string-similarity"; + "string-typelits" = dontDistribute super."string-typelits"; "stringlike" = dontDistribute super."stringlike"; "strings" = dontDistribute super."strings"; "stringsearch" = doDistribute super."stringsearch_0_3_6_5"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.4.nix b/pkgs/development/haskell-modules/configuration-lts-0.4.nix index a69e82064c4..f4c19fe7570 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.4.nix @@ -172,6 +172,7 @@ self: super: { "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; + "ChannelT" = dontDistribute super."ChannelT"; "Chart" = doDistribute super."Chart_1_3_2"; "Chart-cairo" = dontDistribute super."Chart-cairo"; "Chart-diagrams" = doDistribute super."Chart-diagrams_1_3_2"; @@ -4973,6 +4974,7 @@ self: super: { "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; "irc-fun-messages" = dontDistribute super."irc-fun-messages"; + "irc-fun-types" = dontDistribute super."irc-fun-types"; "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; @@ -5057,6 +5059,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json" = dontDistribute super."json"; "json-assertions" = dontDistribute super."json-assertions"; + "json-ast" = dontDistribute super."json-ast"; "json-autotype" = dontDistribute super."json-autotype"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; @@ -7772,6 +7775,7 @@ self: super: { "string-qq" = dontDistribute super."string-qq"; "string-quote" = dontDistribute super."string-quote"; "string-similarity" = dontDistribute super."string-similarity"; + "string-typelits" = dontDistribute super."string-typelits"; "stringlike" = dontDistribute super."stringlike"; "strings" = dontDistribute super."strings"; "stringsearch" = doDistribute super."stringsearch_0_3_6_5"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.5.nix b/pkgs/development/haskell-modules/configuration-lts-0.5.nix index be91dee6bc6..fdcd0e2bab6 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.5.nix @@ -172,6 +172,7 @@ self: super: { "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; + "ChannelT" = dontDistribute super."ChannelT"; "Chart" = doDistribute super."Chart_1_3_2"; "Chart-cairo" = dontDistribute super."Chart-cairo"; "Chart-diagrams" = doDistribute super."Chart-diagrams_1_3_2"; @@ -4973,6 +4974,7 @@ self: super: { "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; "irc-fun-messages" = dontDistribute super."irc-fun-messages"; + "irc-fun-types" = dontDistribute super."irc-fun-types"; "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; @@ -5057,6 +5059,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json" = dontDistribute super."json"; "json-assertions" = dontDistribute super."json-assertions"; + "json-ast" = dontDistribute super."json-ast"; "json-autotype" = dontDistribute super."json-autotype"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; @@ -7772,6 +7775,7 @@ self: super: { "string-qq" = dontDistribute super."string-qq"; "string-quote" = dontDistribute super."string-quote"; "string-similarity" = dontDistribute super."string-similarity"; + "string-typelits" = dontDistribute super."string-typelits"; "stringlike" = dontDistribute super."stringlike"; "strings" = dontDistribute super."strings"; "stringsearch" = doDistribute super."stringsearch_0_3_6_5"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.6.nix b/pkgs/development/haskell-modules/configuration-lts-0.6.nix index d62988266a9..70339bd0bb7 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.6.nix @@ -172,6 +172,7 @@ self: super: { "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; + "ChannelT" = dontDistribute super."ChannelT"; "Chart" = doDistribute super."Chart_1_3_2"; "Chart-cairo" = dontDistribute super."Chart-cairo"; "Chart-diagrams" = doDistribute super."Chart-diagrams_1_3_2"; @@ -4971,6 +4972,7 @@ self: super: { "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; "irc-fun-messages" = dontDistribute super."irc-fun-messages"; + "irc-fun-types" = dontDistribute super."irc-fun-types"; "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; @@ -5055,6 +5057,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json" = dontDistribute super."json"; "json-assertions" = dontDistribute super."json-assertions"; + "json-ast" = dontDistribute super."json-ast"; "json-autotype" = dontDistribute super."json-autotype"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; @@ -7768,6 +7771,7 @@ self: super: { "string-qq" = dontDistribute super."string-qq"; "string-quote" = dontDistribute super."string-quote"; "string-similarity" = dontDistribute super."string-similarity"; + "string-typelits" = dontDistribute super."string-typelits"; "stringlike" = dontDistribute super."stringlike"; "strings" = dontDistribute super."strings"; "stringsearch" = doDistribute super."stringsearch_0_3_6_5"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.7.nix b/pkgs/development/haskell-modules/configuration-lts-0.7.nix index 5e546e41bc2..38156ce2ed5 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.7.nix @@ -172,6 +172,7 @@ self: super: { "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; + "ChannelT" = dontDistribute super."ChannelT"; "Chart" = doDistribute super."Chart_1_3_2"; "Chart-cairo" = dontDistribute super."Chart-cairo"; "Chart-diagrams" = doDistribute super."Chart-diagrams_1_3_2"; @@ -4971,6 +4972,7 @@ self: super: { "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; "irc-fun-messages" = dontDistribute super."irc-fun-messages"; + "irc-fun-types" = dontDistribute super."irc-fun-types"; "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; @@ -5055,6 +5057,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json" = dontDistribute super."json"; "json-assertions" = dontDistribute super."json-assertions"; + "json-ast" = dontDistribute super."json-ast"; "json-autotype" = dontDistribute super."json-autotype"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; @@ -7768,6 +7771,7 @@ self: super: { "string-qq" = dontDistribute super."string-qq"; "string-quote" = dontDistribute super."string-quote"; "string-similarity" = dontDistribute super."string-similarity"; + "string-typelits" = dontDistribute super."string-typelits"; "stringlike" = dontDistribute super."stringlike"; "strings" = dontDistribute super."strings"; "stringsearch" = doDistribute super."stringsearch_0_3_6_5"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.0.nix b/pkgs/development/haskell-modules/configuration-lts-1.0.nix index 977351aaf2a..f6622404e5f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.0.nix @@ -172,6 +172,7 @@ self: super: { "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; + "ChannelT" = dontDistribute super."ChannelT"; "Chart" = doDistribute super."Chart_1_3_2"; "Chart-cairo" = dontDistribute super."Chart-cairo"; "Chart-diagrams" = doDistribute super."Chart-diagrams_1_3_2"; @@ -4959,6 +4960,7 @@ self: super: { "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; "irc-fun-messages" = dontDistribute super."irc-fun-messages"; + "irc-fun-types" = dontDistribute super."irc-fun-types"; "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; @@ -5043,6 +5045,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json" = dontDistribute super."json"; "json-assertions" = dontDistribute super."json-assertions"; + "json-ast" = dontDistribute super."json-ast"; "json-autotype" = doDistribute super."json-autotype_0_2_5_4"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; @@ -7754,6 +7757,7 @@ self: super: { "string-qq" = dontDistribute super."string-qq"; "string-quote" = dontDistribute super."string-quote"; "string-similarity" = dontDistribute super."string-similarity"; + "string-typelits" = dontDistribute super."string-typelits"; "stringlike" = dontDistribute super."stringlike"; "strings" = dontDistribute super."strings"; "stringsearch" = doDistribute super."stringsearch_0_3_6_5"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.1.nix b/pkgs/development/haskell-modules/configuration-lts-1.1.nix index 865b55aa960..dcab2aa2832 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.1.nix @@ -172,6 +172,7 @@ self: super: { "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; + "ChannelT" = dontDistribute super."ChannelT"; "Chart" = doDistribute super."Chart_1_3_2"; "Chart-cairo" = dontDistribute super."Chart-cairo"; "Chart-diagrams" = doDistribute super."Chart-diagrams_1_3_2"; @@ -4953,6 +4954,7 @@ self: super: { "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; "irc-fun-messages" = dontDistribute super."irc-fun-messages"; + "irc-fun-types" = dontDistribute super."irc-fun-types"; "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; @@ -5037,6 +5039,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json" = dontDistribute super."json"; "json-assertions" = dontDistribute super."json-assertions"; + "json-ast" = dontDistribute super."json-ast"; "json-autotype" = doDistribute super."json-autotype_0_2_5_4"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; @@ -7745,6 +7748,7 @@ self: super: { "string-qq" = dontDistribute super."string-qq"; "string-quote" = dontDistribute super."string-quote"; "string-similarity" = dontDistribute super."string-similarity"; + "string-typelits" = dontDistribute super."string-typelits"; "stringlike" = dontDistribute super."stringlike"; "strings" = dontDistribute super."strings"; "stringsearch" = doDistribute super."stringsearch_0_3_6_5"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.10.nix b/pkgs/development/haskell-modules/configuration-lts-1.10.nix index a420ff8f774..6b041938ec1 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.10.nix @@ -172,6 +172,7 @@ self: super: { "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; + "ChannelT" = dontDistribute super."ChannelT"; "Chart" = doDistribute super."Chart_1_3_3"; "Chart-cairo" = dontDistribute super."Chart-cairo"; "Chart-diagrams" = doDistribute super."Chart-diagrams_1_3_3"; @@ -4937,6 +4938,7 @@ self: super: { "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; "irc-fun-messages" = dontDistribute super."irc-fun-messages"; + "irc-fun-types" = dontDistribute super."irc-fun-types"; "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; @@ -5021,6 +5023,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json" = dontDistribute super."json"; "json-assertions" = dontDistribute super."json-assertions"; + "json-ast" = dontDistribute super."json-ast"; "json-autotype" = doDistribute super."json-autotype_0_2_5_4"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; @@ -7722,6 +7725,7 @@ self: super: { "string-qq" = dontDistribute super."string-qq"; "string-quote" = dontDistribute super."string-quote"; "string-similarity" = dontDistribute super."string-similarity"; + "string-typelits" = dontDistribute super."string-typelits"; "stringlike" = dontDistribute super."stringlike"; "strings" = dontDistribute super."strings"; "stringsearch" = doDistribute super."stringsearch_0_3_6_5"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.11.nix b/pkgs/development/haskell-modules/configuration-lts-1.11.nix index 28c5d043681..6851fcfd4cb 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.11.nix @@ -172,6 +172,7 @@ self: super: { "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; + "ChannelT" = dontDistribute super."ChannelT"; "Chart" = doDistribute super."Chart_1_3_3"; "Chart-cairo" = dontDistribute super."Chart-cairo"; "Chart-diagrams" = doDistribute super."Chart-diagrams_1_3_3"; @@ -4934,6 +4935,7 @@ self: super: { "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; "irc-fun-messages" = dontDistribute super."irc-fun-messages"; + "irc-fun-types" = dontDistribute super."irc-fun-types"; "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; @@ -5018,6 +5020,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json" = dontDistribute super."json"; "json-assertions" = dontDistribute super."json-assertions"; + "json-ast" = dontDistribute super."json-ast"; "json-autotype" = doDistribute super."json-autotype_0_2_5_4"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; @@ -7718,6 +7721,7 @@ self: super: { "string-qq" = dontDistribute super."string-qq"; "string-quote" = dontDistribute super."string-quote"; "string-similarity" = dontDistribute super."string-similarity"; + "string-typelits" = dontDistribute super."string-typelits"; "stringlike" = dontDistribute super."stringlike"; "strings" = dontDistribute super."strings"; "stringsearch" = doDistribute super."stringsearch_0_3_6_5"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.12.nix b/pkgs/development/haskell-modules/configuration-lts-1.12.nix index 2f285e680dd..50ee12bb52d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.12.nix @@ -172,6 +172,7 @@ self: super: { "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; + "ChannelT" = dontDistribute super."ChannelT"; "Chart" = doDistribute super."Chart_1_3_3"; "Chart-cairo" = dontDistribute super."Chart-cairo"; "Chart-diagrams" = doDistribute super."Chart-diagrams_1_3_3"; @@ -4933,6 +4934,7 @@ self: super: { "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; "irc-fun-messages" = dontDistribute super."irc-fun-messages"; + "irc-fun-types" = dontDistribute super."irc-fun-types"; "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; @@ -5017,6 +5019,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json" = dontDistribute super."json"; "json-assertions" = dontDistribute super."json-assertions"; + "json-ast" = dontDistribute super."json-ast"; "json-autotype" = doDistribute super."json-autotype_0_2_5_8"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; @@ -7717,6 +7720,7 @@ self: super: { "string-qq" = dontDistribute super."string-qq"; "string-quote" = dontDistribute super."string-quote"; "string-similarity" = dontDistribute super."string-similarity"; + "string-typelits" = dontDistribute super."string-typelits"; "stringlike" = dontDistribute super."stringlike"; "strings" = dontDistribute super."strings"; "stringsearch" = doDistribute super."stringsearch_0_3_6_5"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.13.nix b/pkgs/development/haskell-modules/configuration-lts-1.13.nix index 01a2bf5d082..318f7595f64 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.13.nix @@ -172,6 +172,7 @@ self: super: { "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; + "ChannelT" = dontDistribute super."ChannelT"; "Chart" = doDistribute super."Chart_1_3_3"; "Chart-cairo" = dontDistribute super."Chart-cairo"; "Chart-diagrams" = doDistribute super."Chart-diagrams_1_3_3"; @@ -4932,6 +4933,7 @@ self: super: { "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; "irc-fun-messages" = dontDistribute super."irc-fun-messages"; + "irc-fun-types" = dontDistribute super."irc-fun-types"; "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; @@ -5016,6 +5018,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json" = dontDistribute super."json"; "json-assertions" = dontDistribute super."json-assertions"; + "json-ast" = dontDistribute super."json-ast"; "json-autotype" = doDistribute super."json-autotype_0_2_5_8"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; @@ -7716,6 +7719,7 @@ self: super: { "string-qq" = dontDistribute super."string-qq"; "string-quote" = dontDistribute super."string-quote"; "string-similarity" = dontDistribute super."string-similarity"; + "string-typelits" = dontDistribute super."string-typelits"; "stringlike" = dontDistribute super."stringlike"; "strings" = dontDistribute super."strings"; "stringsearch" = doDistribute super."stringsearch_0_3_6_5"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.14.nix b/pkgs/development/haskell-modules/configuration-lts-1.14.nix index 6a6e7ca8097..3a378f0f3c9 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.14.nix @@ -172,6 +172,7 @@ self: super: { "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; + "ChannelT" = dontDistribute super."ChannelT"; "Chart" = doDistribute super."Chart_1_3_3"; "Chart-cairo" = dontDistribute super."Chart-cairo"; "Chart-diagrams" = doDistribute super."Chart-diagrams_1_3_3"; @@ -4928,6 +4929,7 @@ self: super: { "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; "irc-fun-messages" = dontDistribute super."irc-fun-messages"; + "irc-fun-types" = dontDistribute super."irc-fun-types"; "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; @@ -5012,6 +5014,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json" = dontDistribute super."json"; "json-assertions" = dontDistribute super."json-assertions"; + "json-ast" = dontDistribute super."json-ast"; "json-autotype" = doDistribute super."json-autotype_0_2_5_9"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; @@ -7709,6 +7712,7 @@ self: super: { "string-qq" = dontDistribute super."string-qq"; "string-quote" = dontDistribute super."string-quote"; "string-similarity" = dontDistribute super."string-similarity"; + "string-typelits" = dontDistribute super."string-typelits"; "stringlike" = dontDistribute super."stringlike"; "strings" = dontDistribute super."strings"; "stringsearch" = doDistribute super."stringsearch_0_3_6_5"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.15.nix b/pkgs/development/haskell-modules/configuration-lts-1.15.nix index 76f95bd450e..2fa448b07e1 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.15.nix @@ -172,6 +172,7 @@ self: super: { "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; + "ChannelT" = dontDistribute super."ChannelT"; "Chart" = doDistribute super."Chart_1_3_3"; "Chart-cairo" = dontDistribute super."Chart-cairo"; "Chart-diagrams" = doDistribute super."Chart-diagrams_1_3_3"; @@ -4924,6 +4925,7 @@ self: super: { "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; "irc-fun-messages" = dontDistribute super."irc-fun-messages"; + "irc-fun-types" = dontDistribute super."irc-fun-types"; "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; @@ -5008,6 +5010,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json" = dontDistribute super."json"; "json-assertions" = dontDistribute super."json-assertions"; + "json-ast" = dontDistribute super."json-ast"; "json-autotype" = doDistribute super."json-autotype_0_2_5_9"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; @@ -7700,6 +7703,7 @@ self: super: { "string-qq" = dontDistribute super."string-qq"; "string-quote" = dontDistribute super."string-quote"; "string-similarity" = dontDistribute super."string-similarity"; + "string-typelits" = dontDistribute super."string-typelits"; "stringlike" = dontDistribute super."stringlike"; "strings" = dontDistribute super."strings"; "stringtable-atom" = dontDistribute super."stringtable-atom"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.2.nix b/pkgs/development/haskell-modules/configuration-lts-1.2.nix index 8ab51220e9a..b84ea04fd9a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.2.nix @@ -172,6 +172,7 @@ self: super: { "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; + "ChannelT" = dontDistribute super."ChannelT"; "Chart" = doDistribute super."Chart_1_3_2"; "Chart-cairo" = dontDistribute super."Chart-cairo"; "Chart-diagrams" = doDistribute super."Chart-diagrams_1_3_2"; @@ -4950,6 +4951,7 @@ self: super: { "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; "irc-fun-messages" = dontDistribute super."irc-fun-messages"; + "irc-fun-types" = dontDistribute super."irc-fun-types"; "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; @@ -5034,6 +5036,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json" = dontDistribute super."json"; "json-assertions" = dontDistribute super."json-assertions"; + "json-ast" = dontDistribute super."json-ast"; "json-autotype" = doDistribute super."json-autotype_0_2_5_4"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; @@ -7739,6 +7742,7 @@ self: super: { "string-qq" = dontDistribute super."string-qq"; "string-quote" = dontDistribute super."string-quote"; "string-similarity" = dontDistribute super."string-similarity"; + "string-typelits" = dontDistribute super."string-typelits"; "stringlike" = dontDistribute super."stringlike"; "strings" = dontDistribute super."strings"; "stringsearch" = doDistribute super."stringsearch_0_3_6_5"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.4.nix b/pkgs/development/haskell-modules/configuration-lts-1.4.nix index e4dbbab7387..2bbcedea2eb 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.4.nix @@ -172,6 +172,7 @@ self: super: { "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; + "ChannelT" = dontDistribute super."ChannelT"; "Chart" = doDistribute super."Chart_1_3_3"; "Chart-cairo" = dontDistribute super."Chart-cairo"; "Chart-diagrams" = doDistribute super."Chart-diagrams_1_3_3"; @@ -4947,6 +4948,7 @@ self: super: { "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; "irc-fun-messages" = dontDistribute super."irc-fun-messages"; + "irc-fun-types" = dontDistribute super."irc-fun-types"; "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; @@ -5031,6 +5033,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json" = dontDistribute super."json"; "json-assertions" = dontDistribute super."json-assertions"; + "json-ast" = dontDistribute super."json-ast"; "json-autotype" = doDistribute super."json-autotype_0_2_5_4"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; @@ -7735,6 +7738,7 @@ self: super: { "string-qq" = dontDistribute super."string-qq"; "string-quote" = dontDistribute super."string-quote"; "string-similarity" = dontDistribute super."string-similarity"; + "string-typelits" = dontDistribute super."string-typelits"; "stringlike" = dontDistribute super."stringlike"; "strings" = dontDistribute super."strings"; "stringsearch" = doDistribute super."stringsearch_0_3_6_5"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.5.nix b/pkgs/development/haskell-modules/configuration-lts-1.5.nix index be2d731b3f3..95267671455 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.5.nix @@ -172,6 +172,7 @@ self: super: { "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; + "ChannelT" = dontDistribute super."ChannelT"; "Chart" = doDistribute super."Chart_1_3_3"; "Chart-cairo" = dontDistribute super."Chart-cairo"; "Chart-diagrams" = doDistribute super."Chart-diagrams_1_3_3"; @@ -4946,6 +4947,7 @@ self: super: { "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; "irc-fun-messages" = dontDistribute super."irc-fun-messages"; + "irc-fun-types" = dontDistribute super."irc-fun-types"; "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; @@ -5030,6 +5032,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json" = dontDistribute super."json"; "json-assertions" = dontDistribute super."json-assertions"; + "json-ast" = dontDistribute super."json-ast"; "json-autotype" = doDistribute super."json-autotype_0_2_5_4"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; @@ -7734,6 +7737,7 @@ self: super: { "string-qq" = dontDistribute super."string-qq"; "string-quote" = dontDistribute super."string-quote"; "string-similarity" = dontDistribute super."string-similarity"; + "string-typelits" = dontDistribute super."string-typelits"; "stringlike" = dontDistribute super."stringlike"; "strings" = dontDistribute super."strings"; "stringsearch" = doDistribute super."stringsearch_0_3_6_5"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.7.nix b/pkgs/development/haskell-modules/configuration-lts-1.7.nix index 6617b79bd82..adcdd01ed26 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.7.nix @@ -172,6 +172,7 @@ self: super: { "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; + "ChannelT" = dontDistribute super."ChannelT"; "Chart" = doDistribute super."Chart_1_3_3"; "Chart-cairo" = dontDistribute super."Chart-cairo"; "Chart-diagrams" = doDistribute super."Chart-diagrams_1_3_3"; @@ -4941,6 +4942,7 @@ self: super: { "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; "irc-fun-messages" = dontDistribute super."irc-fun-messages"; + "irc-fun-types" = dontDistribute super."irc-fun-types"; "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; @@ -5025,6 +5027,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json" = dontDistribute super."json"; "json-assertions" = dontDistribute super."json-assertions"; + "json-ast" = dontDistribute super."json-ast"; "json-autotype" = doDistribute super."json-autotype_0_2_5_4"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; @@ -7729,6 +7732,7 @@ self: super: { "string-qq" = dontDistribute super."string-qq"; "string-quote" = dontDistribute super."string-quote"; "string-similarity" = dontDistribute super."string-similarity"; + "string-typelits" = dontDistribute super."string-typelits"; "stringlike" = dontDistribute super."stringlike"; "strings" = dontDistribute super."strings"; "stringsearch" = doDistribute super."stringsearch_0_3_6_5"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.8.nix b/pkgs/development/haskell-modules/configuration-lts-1.8.nix index a9a8963aa99..553dd0774d2 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.8.nix @@ -172,6 +172,7 @@ self: super: { "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; + "ChannelT" = dontDistribute super."ChannelT"; "Chart" = doDistribute super."Chart_1_3_3"; "Chart-cairo" = dontDistribute super."Chart-cairo"; "Chart-diagrams" = doDistribute super."Chart-diagrams_1_3_3"; @@ -4938,6 +4939,7 @@ self: super: { "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; "irc-fun-messages" = dontDistribute super."irc-fun-messages"; + "irc-fun-types" = dontDistribute super."irc-fun-types"; "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; @@ -5022,6 +5024,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json" = dontDistribute super."json"; "json-assertions" = dontDistribute super."json-assertions"; + "json-ast" = dontDistribute super."json-ast"; "json-autotype" = doDistribute super."json-autotype_0_2_5_4"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; @@ -7725,6 +7728,7 @@ self: super: { "string-qq" = dontDistribute super."string-qq"; "string-quote" = dontDistribute super."string-quote"; "string-similarity" = dontDistribute super."string-similarity"; + "string-typelits" = dontDistribute super."string-typelits"; "stringlike" = dontDistribute super."stringlike"; "strings" = dontDistribute super."strings"; "stringsearch" = doDistribute super."stringsearch_0_3_6_5"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.9.nix b/pkgs/development/haskell-modules/configuration-lts-1.9.nix index f14ff623409..eb92109fd38 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.9.nix @@ -172,6 +172,7 @@ self: super: { "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; + "ChannelT" = dontDistribute super."ChannelT"; "Chart" = doDistribute super."Chart_1_3_3"; "Chart-cairo" = dontDistribute super."Chart-cairo"; "Chart-diagrams" = doDistribute super."Chart-diagrams_1_3_3"; @@ -4937,6 +4938,7 @@ self: super: { "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; "irc-fun-messages" = dontDistribute super."irc-fun-messages"; + "irc-fun-types" = dontDistribute super."irc-fun-types"; "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; @@ -5021,6 +5023,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json" = dontDistribute super."json"; "json-assertions" = dontDistribute super."json-assertions"; + "json-ast" = dontDistribute super."json-ast"; "json-autotype" = doDistribute super."json-autotype_0_2_5_4"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; @@ -7724,6 +7727,7 @@ self: super: { "string-qq" = dontDistribute super."string-qq"; "string-quote" = dontDistribute super."string-quote"; "string-similarity" = dontDistribute super."string-similarity"; + "string-typelits" = dontDistribute super."string-typelits"; "stringlike" = dontDistribute super."stringlike"; "strings" = dontDistribute super."strings"; "stringsearch" = doDistribute super."stringsearch_0_3_6_5"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.0.nix b/pkgs/development/haskell-modules/configuration-lts-2.0.nix index 94b073c821d..8e1c69f9d0a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.0.nix @@ -171,6 +171,7 @@ self: super: { "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; + "ChannelT" = dontDistribute super."ChannelT"; "Chart" = doDistribute super."Chart_1_3_3"; "Chart-cairo" = dontDistribute super."Chart-cairo"; "Chart-diagrams" = doDistribute super."Chart-diagrams_1_3_3"; @@ -4894,6 +4895,7 @@ self: super: { "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; "irc-fun-messages" = dontDistribute super."irc-fun-messages"; + "irc-fun-types" = dontDistribute super."irc-fun-types"; "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; @@ -4976,6 +4978,7 @@ self: super: { "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; + "json-ast" = dontDistribute super."json-ast"; "json-autotype" = doDistribute super."json-autotype_0_2_5_11"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; @@ -7641,6 +7644,7 @@ self: super: { "string-qq" = dontDistribute super."string-qq"; "string-quote" = dontDistribute super."string-quote"; "string-similarity" = dontDistribute super."string-similarity"; + "string-typelits" = dontDistribute super."string-typelits"; "stringlike" = dontDistribute super."stringlike"; "strings" = dontDistribute super."strings"; "stringtable-atom" = dontDistribute super."stringtable-atom"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.1.nix b/pkgs/development/haskell-modules/configuration-lts-2.1.nix index ddcf5efcae6..18261e8ccb9 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.1.nix @@ -171,6 +171,7 @@ self: super: { "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; + "ChannelT" = dontDistribute super."ChannelT"; "Chart" = doDistribute super."Chart_1_3_3"; "Chart-cairo" = dontDistribute super."Chart-cairo"; "Chart-diagrams" = doDistribute super."Chart-diagrams_1_3_3"; @@ -4893,6 +4894,7 @@ self: super: { "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; "irc-fun-messages" = dontDistribute super."irc-fun-messages"; + "irc-fun-types" = dontDistribute super."irc-fun-types"; "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; @@ -4975,6 +4977,7 @@ self: super: { "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; + "json-ast" = dontDistribute super."json-ast"; "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; @@ -7640,6 +7643,7 @@ self: super: { "string-qq" = dontDistribute super."string-qq"; "string-quote" = dontDistribute super."string-quote"; "string-similarity" = dontDistribute super."string-similarity"; + "string-typelits" = dontDistribute super."string-typelits"; "stringlike" = dontDistribute super."stringlike"; "strings" = dontDistribute super."strings"; "stringtable-atom" = dontDistribute super."stringtable-atom"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.10.nix b/pkgs/development/haskell-modules/configuration-lts-2.10.nix index c98889fa2aa..95b74fb6cca 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.10.nix @@ -171,6 +171,7 @@ self: super: { "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; + "ChannelT" = dontDistribute super."ChannelT"; "Chart" = doDistribute super."Chart_1_3_3"; "Chart-cairo" = dontDistribute super."Chart-cairo"; "Chart-diagrams" = doDistribute super."Chart-diagrams_1_3_3"; @@ -4867,6 +4868,7 @@ self: super: { "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; "irc-fun-messages" = dontDistribute super."irc-fun-messages"; + "irc-fun-types" = dontDistribute super."irc-fun-types"; "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; @@ -4947,6 +4949,7 @@ self: super: { "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; + "json-ast" = dontDistribute super."json-ast"; "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; @@ -7592,6 +7595,7 @@ self: super: { "string-qq" = dontDistribute super."string-qq"; "string-quote" = dontDistribute super."string-quote"; "string-similarity" = dontDistribute super."string-similarity"; + "string-typelits" = dontDistribute super."string-typelits"; "stringlike" = dontDistribute super."stringlike"; "strings" = dontDistribute super."strings"; "stringtable-atom" = dontDistribute super."stringtable-atom"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.11.nix b/pkgs/development/haskell-modules/configuration-lts-2.11.nix index 472a9215257..9a47f9dda6f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.11.nix @@ -171,6 +171,7 @@ self: super: { "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; + "ChannelT" = dontDistribute super."ChannelT"; "Chart" = doDistribute super."Chart_1_3_3"; "Chart-cairo" = dontDistribute super."Chart-cairo"; "Chart-diagrams" = doDistribute super."Chart-diagrams_1_3_3"; @@ -4864,6 +4865,7 @@ self: super: { "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; "irc-fun-messages" = dontDistribute super."irc-fun-messages"; + "irc-fun-types" = dontDistribute super."irc-fun-types"; "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; @@ -4943,6 +4945,7 @@ self: super: { "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; + "json-ast" = dontDistribute super."json-ast"; "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; @@ -7584,6 +7587,7 @@ self: super: { "string-qq" = dontDistribute super."string-qq"; "string-quote" = dontDistribute super."string-quote"; "string-similarity" = dontDistribute super."string-similarity"; + "string-typelits" = dontDistribute super."string-typelits"; "stringlike" = dontDistribute super."stringlike"; "strings" = dontDistribute super."strings"; "stringtable-atom" = dontDistribute super."stringtable-atom"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.12.nix b/pkgs/development/haskell-modules/configuration-lts-2.12.nix index 0a81ae1cdf5..eddd47d1c87 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.12.nix @@ -171,6 +171,7 @@ self: super: { "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; + "ChannelT" = dontDistribute super."ChannelT"; "Chart" = doDistribute super."Chart_1_3_3"; "Chart-cairo" = dontDistribute super."Chart-cairo"; "Chart-diagrams" = doDistribute super."Chart-diagrams_1_3_3"; @@ -4864,6 +4865,7 @@ self: super: { "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; "irc-fun-messages" = dontDistribute super."irc-fun-messages"; + "irc-fun-types" = dontDistribute super."irc-fun-types"; "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; @@ -4943,6 +4945,7 @@ self: super: { "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; + "json-ast" = dontDistribute super."json-ast"; "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; @@ -7583,6 +7586,7 @@ self: super: { "string-qq" = dontDistribute super."string-qq"; "string-quote" = dontDistribute super."string-quote"; "string-similarity" = dontDistribute super."string-similarity"; + "string-typelits" = dontDistribute super."string-typelits"; "stringlike" = dontDistribute super."stringlike"; "strings" = dontDistribute super."strings"; "stringtable-atom" = dontDistribute super."stringtable-atom"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.13.nix b/pkgs/development/haskell-modules/configuration-lts-2.13.nix index 7c33ed9182e..b4614ffe878 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.13.nix @@ -171,6 +171,7 @@ self: super: { "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; + "ChannelT" = dontDistribute super."ChannelT"; "Chart" = doDistribute super."Chart_1_3_3"; "Chart-cairo" = dontDistribute super."Chart-cairo"; "Chart-diagrams" = doDistribute super."Chart-diagrams_1_3_3"; @@ -4862,6 +4863,7 @@ self: super: { "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; "irc-fun-messages" = dontDistribute super."irc-fun-messages"; + "irc-fun-types" = dontDistribute super."irc-fun-types"; "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; @@ -4941,6 +4943,7 @@ self: super: { "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; + "json-ast" = dontDistribute super."json-ast"; "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; @@ -7581,6 +7584,7 @@ self: super: { "string-qq" = dontDistribute super."string-qq"; "string-quote" = dontDistribute super."string-quote"; "string-similarity" = dontDistribute super."string-similarity"; + "string-typelits" = dontDistribute super."string-typelits"; "stringlike" = dontDistribute super."stringlike"; "strings" = dontDistribute super."strings"; "stringtable-atom" = dontDistribute super."stringtable-atom"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.14.nix b/pkgs/development/haskell-modules/configuration-lts-2.14.nix index 16a9b422305..4d8ef2724d6 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.14.nix @@ -171,6 +171,7 @@ self: super: { "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; + "ChannelT" = dontDistribute super."ChannelT"; "Chart" = doDistribute super."Chart_1_3_3"; "Chart-cairo" = dontDistribute super."Chart-cairo"; "Chart-diagrams" = doDistribute super."Chart-diagrams_1_3_3"; @@ -4859,6 +4860,7 @@ self: super: { "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; "irc-fun-messages" = dontDistribute super."irc-fun-messages"; + "irc-fun-types" = dontDistribute super."irc-fun-types"; "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; @@ -4938,6 +4940,7 @@ self: super: { "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; + "json-ast" = dontDistribute super."json-ast"; "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; @@ -7577,6 +7580,7 @@ self: super: { "string-qq" = dontDistribute super."string-qq"; "string-quote" = dontDistribute super."string-quote"; "string-similarity" = dontDistribute super."string-similarity"; + "string-typelits" = dontDistribute super."string-typelits"; "stringlike" = dontDistribute super."stringlike"; "strings" = dontDistribute super."strings"; "stringtable-atom" = dontDistribute super."stringtable-atom"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.15.nix b/pkgs/development/haskell-modules/configuration-lts-2.15.nix index 140483b7ade..94e9eb0184e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.15.nix @@ -171,6 +171,7 @@ self: super: { "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; + "ChannelT" = dontDistribute super."ChannelT"; "Chart" = doDistribute super."Chart_1_3_3"; "Chart-cairo" = dontDistribute super."Chart-cairo"; "Chart-diagrams" = doDistribute super."Chart-diagrams_1_3_3"; @@ -4858,6 +4859,7 @@ self: super: { "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; "irc-fun-messages" = dontDistribute super."irc-fun-messages"; + "irc-fun-types" = dontDistribute super."irc-fun-types"; "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; @@ -4937,6 +4939,7 @@ self: super: { "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; + "json-ast" = dontDistribute super."json-ast"; "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; @@ -7572,6 +7575,7 @@ self: super: { "string-qq" = dontDistribute super."string-qq"; "string-quote" = dontDistribute super."string-quote"; "string-similarity" = dontDistribute super."string-similarity"; + "string-typelits" = dontDistribute super."string-typelits"; "stringlike" = dontDistribute super."stringlike"; "strings" = dontDistribute super."strings"; "stringtable-atom" = dontDistribute super."stringtable-atom"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.16.nix b/pkgs/development/haskell-modules/configuration-lts-2.16.nix index 0fcd9376f8e..8fc73ea3a05 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.16.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.16.nix @@ -171,6 +171,7 @@ self: super: { "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; + "ChannelT" = dontDistribute super."ChannelT"; "Chart" = doDistribute super."Chart_1_3_3"; "Chart-cairo" = dontDistribute super."Chart-cairo"; "Chart-diagrams" = doDistribute super."Chart-diagrams_1_3_3"; @@ -4853,6 +4854,7 @@ self: super: { "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; "irc-fun-messages" = dontDistribute super."irc-fun-messages"; + "irc-fun-types" = dontDistribute super."irc-fun-types"; "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; @@ -4932,6 +4934,7 @@ self: super: { "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; + "json-ast" = dontDistribute super."json-ast"; "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; @@ -7566,6 +7569,7 @@ self: super: { "string-qq" = dontDistribute super."string-qq"; "string-quote" = dontDistribute super."string-quote"; "string-similarity" = dontDistribute super."string-similarity"; + "string-typelits" = dontDistribute super."string-typelits"; "stringlike" = dontDistribute super."stringlike"; "strings" = dontDistribute super."strings"; "stringtable-atom" = dontDistribute super."stringtable-atom"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.17.nix b/pkgs/development/haskell-modules/configuration-lts-2.17.nix index 94cf59753ec..4b57e8e021f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.17.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.17.nix @@ -171,6 +171,7 @@ self: super: { "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; + "ChannelT" = dontDistribute super."ChannelT"; "Chart" = doDistribute super."Chart_1_3_3"; "Chart-cairo" = dontDistribute super."Chart-cairo"; "Chart-diagrams" = doDistribute super."Chart-diagrams_1_3_3"; @@ -4848,6 +4849,7 @@ self: super: { "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; "irc-fun-messages" = dontDistribute super."irc-fun-messages"; + "irc-fun-types" = dontDistribute super."irc-fun-types"; "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; @@ -4927,6 +4929,7 @@ self: super: { "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; + "json-ast" = dontDistribute super."json-ast"; "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; @@ -7560,6 +7563,7 @@ self: super: { "string-qq" = dontDistribute super."string-qq"; "string-quote" = dontDistribute super."string-quote"; "string-similarity" = dontDistribute super."string-similarity"; + "string-typelits" = dontDistribute super."string-typelits"; "stringlike" = dontDistribute super."stringlike"; "strings" = dontDistribute super."strings"; "stringtable-atom" = dontDistribute super."stringtable-atom"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.18.nix b/pkgs/development/haskell-modules/configuration-lts-2.18.nix index 1426832df28..c299d34ec02 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.18.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.18.nix @@ -171,6 +171,7 @@ self: super: { "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; + "ChannelT" = dontDistribute super."ChannelT"; "Chart" = doDistribute super."Chart_1_3_3"; "Chart-cairo" = dontDistribute super."Chart-cairo"; "Chart-diagrams" = doDistribute super."Chart-diagrams_1_3_3"; @@ -4845,6 +4846,7 @@ self: super: { "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; "irc-fun-messages" = dontDistribute super."irc-fun-messages"; + "irc-fun-types" = dontDistribute super."irc-fun-types"; "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; @@ -4924,6 +4926,7 @@ self: super: { "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; + "json-ast" = dontDistribute super."json-ast"; "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; @@ -7554,6 +7557,7 @@ self: super: { "string-qq" = dontDistribute super."string-qq"; "string-quote" = dontDistribute super."string-quote"; "string-similarity" = dontDistribute super."string-similarity"; + "string-typelits" = dontDistribute super."string-typelits"; "stringlike" = dontDistribute super."stringlike"; "strings" = dontDistribute super."strings"; "stringtable-atom" = dontDistribute super."stringtable-atom"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.19.nix b/pkgs/development/haskell-modules/configuration-lts-2.19.nix index 9a009d2ceeb..ad3e0bad7db 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.19.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.19.nix @@ -171,6 +171,7 @@ self: super: { "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; + "ChannelT" = dontDistribute super."ChannelT"; "Chart" = doDistribute super."Chart_1_3_3"; "Chart-cairo" = dontDistribute super."Chart-cairo"; "Chart-diagrams" = doDistribute super."Chart-diagrams_1_3_3"; @@ -4844,6 +4845,7 @@ self: super: { "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; "irc-fun-messages" = dontDistribute super."irc-fun-messages"; + "irc-fun-types" = dontDistribute super."irc-fun-types"; "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; @@ -4923,6 +4925,7 @@ self: super: { "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; + "json-ast" = dontDistribute super."json-ast"; "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; @@ -7549,6 +7552,7 @@ self: super: { "string-qq" = dontDistribute super."string-qq"; "string-quote" = dontDistribute super."string-quote"; "string-similarity" = dontDistribute super."string-similarity"; + "string-typelits" = dontDistribute super."string-typelits"; "stringlike" = dontDistribute super."stringlike"; "strings" = dontDistribute super."strings"; "stringtable-atom" = dontDistribute super."stringtable-atom"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.2.nix b/pkgs/development/haskell-modules/configuration-lts-2.2.nix index 534c29e8325..69e76d6b569 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.2.nix @@ -171,6 +171,7 @@ self: super: { "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; + "ChannelT" = dontDistribute super."ChannelT"; "Chart" = doDistribute super."Chart_1_3_3"; "Chart-cairo" = dontDistribute super."Chart-cairo"; "Chart-diagrams" = doDistribute super."Chart-diagrams_1_3_3"; @@ -4890,6 +4891,7 @@ self: super: { "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; "irc-fun-messages" = dontDistribute super."irc-fun-messages"; + "irc-fun-types" = dontDistribute super."irc-fun-types"; "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; @@ -4972,6 +4974,7 @@ self: super: { "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; + "json-ast" = dontDistribute super."json-ast"; "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; @@ -7637,6 +7640,7 @@ self: super: { "string-qq" = dontDistribute super."string-qq"; "string-quote" = dontDistribute super."string-quote"; "string-similarity" = dontDistribute super."string-similarity"; + "string-typelits" = dontDistribute super."string-typelits"; "stringlike" = dontDistribute super."stringlike"; "strings" = dontDistribute super."strings"; "stringtable-atom" = dontDistribute super."stringtable-atom"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.20.nix b/pkgs/development/haskell-modules/configuration-lts-2.20.nix index 5016b16e2fa..c107ba1cc83 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.20.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.20.nix @@ -171,6 +171,7 @@ self: super: { "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; + "ChannelT" = dontDistribute super."ChannelT"; "Chart" = doDistribute super."Chart_1_3_3"; "Chart-cairo" = dontDistribute super."Chart-cairo"; "Chart-diagrams" = doDistribute super."Chart-diagrams_1_3_3"; @@ -4843,6 +4844,7 @@ self: super: { "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; "irc-fun-messages" = dontDistribute super."irc-fun-messages"; + "irc-fun-types" = dontDistribute super."irc-fun-types"; "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; @@ -4922,6 +4924,7 @@ self: super: { "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; + "json-ast" = dontDistribute super."json-ast"; "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; @@ -7546,6 +7549,7 @@ self: super: { "string-qq" = dontDistribute super."string-qq"; "string-quote" = dontDistribute super."string-quote"; "string-similarity" = dontDistribute super."string-similarity"; + "string-typelits" = dontDistribute super."string-typelits"; "stringlike" = dontDistribute super."stringlike"; "strings" = dontDistribute super."strings"; "stringtable-atom" = dontDistribute super."stringtable-atom"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.21.nix b/pkgs/development/haskell-modules/configuration-lts-2.21.nix index 0fbfc8cd3a3..414d0d4a4d2 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.21.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.21.nix @@ -171,6 +171,7 @@ self: super: { "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; + "ChannelT" = dontDistribute super."ChannelT"; "Chart" = doDistribute super."Chart_1_3_3"; "Chart-cairo" = dontDistribute super."Chart-cairo"; "Chart-diagrams" = doDistribute super."Chart-diagrams_1_3_3"; @@ -4843,6 +4844,7 @@ self: super: { "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; "irc-fun-messages" = dontDistribute super."irc-fun-messages"; + "irc-fun-types" = dontDistribute super."irc-fun-types"; "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; @@ -4922,6 +4924,7 @@ self: super: { "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; + "json-ast" = dontDistribute super."json-ast"; "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; @@ -7544,6 +7547,7 @@ self: super: { "string-qq" = dontDistribute super."string-qq"; "string-quote" = dontDistribute super."string-quote"; "string-similarity" = dontDistribute super."string-similarity"; + "string-typelits" = dontDistribute super."string-typelits"; "stringlike" = dontDistribute super."stringlike"; "strings" = dontDistribute super."strings"; "stringtable-atom" = dontDistribute super."stringtable-atom"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.22.nix b/pkgs/development/haskell-modules/configuration-lts-2.22.nix index 75fc329a187..3915f14e98d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.22.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.22.nix @@ -171,6 +171,7 @@ self: super: { "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; + "ChannelT" = dontDistribute super."ChannelT"; "Chart" = doDistribute super."Chart_1_3_3"; "Chart-cairo" = dontDistribute super."Chart-cairo"; "Chart-diagrams" = doDistribute super."Chart-diagrams_1_3_3"; @@ -4842,6 +4843,7 @@ self: super: { "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; "irc-fun-messages" = dontDistribute super."irc-fun-messages"; + "irc-fun-types" = dontDistribute super."irc-fun-types"; "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; @@ -4921,6 +4923,7 @@ self: super: { "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; + "json-ast" = dontDistribute super."json-ast"; "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; @@ -7542,6 +7545,7 @@ self: super: { "string-qq" = dontDistribute super."string-qq"; "string-quote" = dontDistribute super."string-quote"; "string-similarity" = dontDistribute super."string-similarity"; + "string-typelits" = dontDistribute super."string-typelits"; "stringlike" = dontDistribute super."stringlike"; "strings" = dontDistribute super."strings"; "stringtable-atom" = dontDistribute super."stringtable-atom"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.3.nix b/pkgs/development/haskell-modules/configuration-lts-2.3.nix index e5d4da7183f..a6e8bdea0bf 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.3.nix @@ -171,6 +171,7 @@ self: super: { "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; + "ChannelT" = dontDistribute super."ChannelT"; "Chart" = doDistribute super."Chart_1_3_3"; "Chart-cairo" = dontDistribute super."Chart-cairo"; "Chart-diagrams" = doDistribute super."Chart-diagrams_1_3_3"; @@ -4888,6 +4889,7 @@ self: super: { "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; "irc-fun-messages" = dontDistribute super."irc-fun-messages"; + "irc-fun-types" = dontDistribute super."irc-fun-types"; "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; @@ -4970,6 +4972,7 @@ self: super: { "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; + "json-ast" = dontDistribute super."json-ast"; "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; @@ -7635,6 +7638,7 @@ self: super: { "string-qq" = dontDistribute super."string-qq"; "string-quote" = dontDistribute super."string-quote"; "string-similarity" = dontDistribute super."string-similarity"; + "string-typelits" = dontDistribute super."string-typelits"; "stringlike" = dontDistribute super."stringlike"; "strings" = dontDistribute super."strings"; "stringtable-atom" = dontDistribute super."stringtable-atom"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.4.nix b/pkgs/development/haskell-modules/configuration-lts-2.4.nix index 71121161455..fbf589da2a4 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.4.nix @@ -171,6 +171,7 @@ self: super: { "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; + "ChannelT" = dontDistribute super."ChannelT"; "Chart" = doDistribute super."Chart_1_3_3"; "Chart-cairo" = dontDistribute super."Chart-cairo"; "Chart-diagrams" = doDistribute super."Chart-diagrams_1_3_3"; @@ -4887,6 +4888,7 @@ self: super: { "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; "irc-fun-messages" = dontDistribute super."irc-fun-messages"; + "irc-fun-types" = dontDistribute super."irc-fun-types"; "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; @@ -4969,6 +4971,7 @@ self: super: { "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; + "json-ast" = dontDistribute super."json-ast"; "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; @@ -7630,6 +7633,7 @@ self: super: { "string-qq" = dontDistribute super."string-qq"; "string-quote" = dontDistribute super."string-quote"; "string-similarity" = dontDistribute super."string-similarity"; + "string-typelits" = dontDistribute super."string-typelits"; "stringlike" = dontDistribute super."stringlike"; "strings" = dontDistribute super."strings"; "stringtable-atom" = dontDistribute super."stringtable-atom"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.5.nix b/pkgs/development/haskell-modules/configuration-lts-2.5.nix index 535b00d98b8..950c96577cb 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.5.nix @@ -171,6 +171,7 @@ self: super: { "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; + "ChannelT" = dontDistribute super."ChannelT"; "Chart" = doDistribute super."Chart_1_3_3"; "Chart-cairo" = dontDistribute super."Chart-cairo"; "Chart-diagrams" = doDistribute super."Chart-diagrams_1_3_3"; @@ -4886,6 +4887,7 @@ self: super: { "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; "irc-fun-messages" = dontDistribute super."irc-fun-messages"; + "irc-fun-types" = dontDistribute super."irc-fun-types"; "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; @@ -4968,6 +4970,7 @@ self: super: { "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; + "json-ast" = dontDistribute super."json-ast"; "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; @@ -7628,6 +7631,7 @@ self: super: { "string-qq" = dontDistribute super."string-qq"; "string-quote" = dontDistribute super."string-quote"; "string-similarity" = dontDistribute super."string-similarity"; + "string-typelits" = dontDistribute super."string-typelits"; "stringlike" = dontDistribute super."stringlike"; "strings" = dontDistribute super."strings"; "stringtable-atom" = dontDistribute super."stringtable-atom"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.6.nix b/pkgs/development/haskell-modules/configuration-lts-2.6.nix index b395091088a..38c75d61d58 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.6.nix @@ -171,6 +171,7 @@ self: super: { "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; + "ChannelT" = dontDistribute super."ChannelT"; "Chart" = doDistribute super."Chart_1_3_3"; "Chart-cairo" = dontDistribute super."Chart-cairo"; "Chart-diagrams" = doDistribute super."Chart-diagrams_1_3_3"; @@ -4881,6 +4882,7 @@ self: super: { "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; "irc-fun-messages" = dontDistribute super."irc-fun-messages"; + "irc-fun-types" = dontDistribute super."irc-fun-types"; "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; @@ -4963,6 +4965,7 @@ self: super: { "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; + "json-ast" = dontDistribute super."json-ast"; "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; @@ -7622,6 +7625,7 @@ self: super: { "string-qq" = dontDistribute super."string-qq"; "string-quote" = dontDistribute super."string-quote"; "string-similarity" = dontDistribute super."string-similarity"; + "string-typelits" = dontDistribute super."string-typelits"; "stringlike" = dontDistribute super."stringlike"; "strings" = dontDistribute super."strings"; "stringtable-atom" = dontDistribute super."stringtable-atom"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.7.nix b/pkgs/development/haskell-modules/configuration-lts-2.7.nix index d6d8ea55305..997a567ddd3 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.7.nix @@ -171,6 +171,7 @@ self: super: { "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; + "ChannelT" = dontDistribute super."ChannelT"; "Chart" = doDistribute super."Chart_1_3_3"; "Chart-cairo" = dontDistribute super."Chart-cairo"; "Chart-diagrams" = doDistribute super."Chart-diagrams_1_3_3"; @@ -4880,6 +4881,7 @@ self: super: { "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; "irc-fun-messages" = dontDistribute super."irc-fun-messages"; + "irc-fun-types" = dontDistribute super."irc-fun-types"; "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; @@ -4962,6 +4964,7 @@ self: super: { "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; + "json-ast" = dontDistribute super."json-ast"; "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; @@ -7621,6 +7624,7 @@ self: super: { "string-qq" = dontDistribute super."string-qq"; "string-quote" = dontDistribute super."string-quote"; "string-similarity" = dontDistribute super."string-similarity"; + "string-typelits" = dontDistribute super."string-typelits"; "stringlike" = dontDistribute super."stringlike"; "strings" = dontDistribute super."strings"; "stringtable-atom" = dontDistribute super."stringtable-atom"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.8.nix b/pkgs/development/haskell-modules/configuration-lts-2.8.nix index 1186a62ceec..ad0e17a2b4a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.8.nix @@ -171,6 +171,7 @@ self: super: { "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; + "ChannelT" = dontDistribute super."ChannelT"; "Chart" = doDistribute super."Chart_1_3_3"; "Chart-cairo" = dontDistribute super."Chart-cairo"; "Chart-diagrams" = doDistribute super."Chart-diagrams_1_3_3"; @@ -4877,6 +4878,7 @@ self: super: { "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; "irc-fun-messages" = dontDistribute super."irc-fun-messages"; + "irc-fun-types" = dontDistribute super."irc-fun-types"; "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; @@ -4959,6 +4961,7 @@ self: super: { "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; + "json-ast" = dontDistribute super."json-ast"; "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; @@ -7614,6 +7617,7 @@ self: super: { "string-qq" = dontDistribute super."string-qq"; "string-quote" = dontDistribute super."string-quote"; "string-similarity" = dontDistribute super."string-similarity"; + "string-typelits" = dontDistribute super."string-typelits"; "stringlike" = dontDistribute super."stringlike"; "strings" = dontDistribute super."strings"; "stringtable-atom" = dontDistribute super."stringtable-atom"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.9.nix b/pkgs/development/haskell-modules/configuration-lts-2.9.nix index cbc857982ef..70df2406a7e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.9.nix @@ -171,6 +171,7 @@ self: super: { "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; + "ChannelT" = dontDistribute super."ChannelT"; "Chart" = doDistribute super."Chart_1_3_3"; "Chart-cairo" = dontDistribute super."Chart-cairo"; "Chart-diagrams" = doDistribute super."Chart-diagrams_1_3_3"; @@ -4870,6 +4871,7 @@ self: super: { "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; "irc-fun-messages" = dontDistribute super."irc-fun-messages"; + "irc-fun-types" = dontDistribute super."irc-fun-types"; "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; @@ -4952,6 +4954,7 @@ self: super: { "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; + "json-ast" = dontDistribute super."json-ast"; "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; @@ -7602,6 +7605,7 @@ self: super: { "string-qq" = dontDistribute super."string-qq"; "string-quote" = dontDistribute super."string-quote"; "string-similarity" = dontDistribute super."string-similarity"; + "string-typelits" = dontDistribute super."string-typelits"; "stringlike" = dontDistribute super."stringlike"; "strings" = dontDistribute super."strings"; "stringtable-atom" = dontDistribute super."stringtable-atom"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.0.nix b/pkgs/development/haskell-modules/configuration-lts-3.0.nix index afbede23b99..cd610a659c4 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.0.nix @@ -163,6 +163,7 @@ self: super: { "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; + "ChannelT" = dontDistribute super."ChannelT"; "Chart" = doDistribute super."Chart_1_5_1"; "Chart-cairo" = doDistribute super."Chart-cairo_1_5_1"; "Chart-diagrams" = doDistribute super."Chart-diagrams_1_5_1"; @@ -4316,6 +4317,7 @@ self: super: { "hscassandra" = dontDistribute super."hscassandra"; "hscd" = dontDistribute super."hscd"; "hsclock" = dontDistribute super."hsclock"; + "hscolour" = doDistribute super."hscolour_1_23"; "hscope" = dontDistribute super."hscope"; "hscrtmpl" = dontDistribute super."hscrtmpl"; "hscuid" = dontDistribute super."hscuid"; @@ -4716,6 +4718,7 @@ self: super: { "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; "irc-fun-messages" = dontDistribute super."irc-fun-messages"; + "irc-fun-types" = dontDistribute super."irc-fun-types"; "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; @@ -4792,6 +4795,7 @@ self: super: { "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; + "json-ast" = dontDistribute super."json-ast"; "json-autotype" = doDistribute super."json-autotype_1_0_7"; "json-b" = dontDistribute super."json-b"; "json-encoder" = dontDistribute super."json-encoder"; @@ -7333,6 +7337,7 @@ self: super: { "string-qq" = dontDistribute super."string-qq"; "string-quote" = dontDistribute super."string-quote"; "string-similarity" = dontDistribute super."string-similarity"; + "string-typelits" = dontDistribute super."string-typelits"; "stringlike" = dontDistribute super."stringlike"; "stringprep" = dontDistribute super."stringprep"; "strings" = dontDistribute super."strings"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.1.nix b/pkgs/development/haskell-modules/configuration-lts-3.1.nix index b6ef780dd64..54efeb53169 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.1.nix @@ -163,6 +163,7 @@ self: super: { "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; + "ChannelT" = dontDistribute super."ChannelT"; "Chart" = doDistribute super."Chart_1_5_1"; "Chart-cairo" = doDistribute super."Chart-cairo_1_5_1"; "Chart-diagrams" = doDistribute super."Chart-diagrams_1_5_1"; @@ -4313,6 +4314,7 @@ self: super: { "hscassandra" = dontDistribute super."hscassandra"; "hscd" = dontDistribute super."hscd"; "hsclock" = dontDistribute super."hsclock"; + "hscolour" = doDistribute super."hscolour_1_23"; "hscope" = dontDistribute super."hscope"; "hscrtmpl" = dontDistribute super."hscrtmpl"; "hscuid" = dontDistribute super."hscuid"; @@ -4713,6 +4715,7 @@ self: super: { "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; "irc-fun-messages" = dontDistribute super."irc-fun-messages"; + "irc-fun-types" = dontDistribute super."irc-fun-types"; "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; @@ -4789,6 +4792,7 @@ self: super: { "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; + "json-ast" = dontDistribute super."json-ast"; "json-autotype" = doDistribute super."json-autotype_1_0_7"; "json-b" = dontDistribute super."json-b"; "json-encoder" = dontDistribute super."json-encoder"; @@ -7326,6 +7330,7 @@ self: super: { "string-qq" = dontDistribute super."string-qq"; "string-quote" = dontDistribute super."string-quote"; "string-similarity" = dontDistribute super."string-similarity"; + "string-typelits" = dontDistribute super."string-typelits"; "stringlike" = dontDistribute super."stringlike"; "stringprep" = dontDistribute super."stringprep"; "strings" = dontDistribute super."strings"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.10.nix b/pkgs/development/haskell-modules/configuration-lts-3.10.nix index 02f10dd4858..31a89af13be 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.10.nix @@ -163,6 +163,7 @@ self: super: { "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; + "ChannelT" = dontDistribute super."ChannelT"; "Chart-cairo" = doDistribute super."Chart-cairo_1_5_1"; "Chart-gtk" = dontDistribute super."Chart-gtk"; "Chart-simple" = dontDistribute super."Chart-simple"; @@ -4269,6 +4270,7 @@ self: super: { "hscassandra" = dontDistribute super."hscassandra"; "hscd" = dontDistribute super."hscd"; "hsclock" = dontDistribute super."hsclock"; + "hscolour" = doDistribute super."hscolour_1_23"; "hscope" = dontDistribute super."hscope"; "hscrtmpl" = dontDistribute super."hscrtmpl"; "hscuid" = dontDistribute super."hscuid"; @@ -4666,6 +4668,7 @@ self: super: { "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; "irc-fun-messages" = dontDistribute super."irc-fun-messages"; + "irc-fun-types" = dontDistribute super."irc-fun-types"; "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; @@ -4742,6 +4745,7 @@ self: super: { "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; + "json-ast" = dontDistribute super."json-ast"; "json-b" = dontDistribute super."json-b"; "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; @@ -7241,6 +7245,7 @@ self: super: { "string-qq" = dontDistribute super."string-qq"; "string-quote" = dontDistribute super."string-quote"; "string-similarity" = dontDistribute super."string-similarity"; + "string-typelits" = dontDistribute super."string-typelits"; "stringlike" = dontDistribute super."stringlike"; "stringprep" = dontDistribute super."stringprep"; "strings" = dontDistribute super."strings"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.11.nix b/pkgs/development/haskell-modules/configuration-lts-3.11.nix index bbd0f94695a..2a0ccf1d854 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.11.nix @@ -163,6 +163,7 @@ self: super: { "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; + "ChannelT" = dontDistribute super."ChannelT"; "Chart-cairo" = doDistribute super."Chart-cairo_1_5_1"; "Chart-gtk" = dontDistribute super."Chart-gtk"; "Chart-simple" = dontDistribute super."Chart-simple"; @@ -4266,6 +4267,7 @@ self: super: { "hscassandra" = dontDistribute super."hscassandra"; "hscd" = dontDistribute super."hscd"; "hsclock" = dontDistribute super."hsclock"; + "hscolour" = doDistribute super."hscolour_1_23"; "hscope" = dontDistribute super."hscope"; "hscrtmpl" = dontDistribute super."hscrtmpl"; "hscuid" = dontDistribute super."hscuid"; @@ -4663,6 +4665,7 @@ self: super: { "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; "irc-fun-messages" = dontDistribute super."irc-fun-messages"; + "irc-fun-types" = dontDistribute super."irc-fun-types"; "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; @@ -4739,6 +4742,7 @@ self: super: { "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; + "json-ast" = dontDistribute super."json-ast"; "json-b" = dontDistribute super."json-b"; "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; @@ -7236,6 +7240,7 @@ self: super: { "string-qq" = dontDistribute super."string-qq"; "string-quote" = dontDistribute super."string-quote"; "string-similarity" = dontDistribute super."string-similarity"; + "string-typelits" = dontDistribute super."string-typelits"; "stringlike" = dontDistribute super."stringlike"; "stringprep" = dontDistribute super."stringprep"; "strings" = dontDistribute super."strings"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.12.nix b/pkgs/development/haskell-modules/configuration-lts-3.12.nix index a6de95aeb09..bae9a9efad8 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.12.nix @@ -163,6 +163,7 @@ self: super: { "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; + "ChannelT" = dontDistribute super."ChannelT"; "Chart-gtk" = dontDistribute super."Chart-gtk"; "Chart-simple" = dontDistribute super."Chart-simple"; "CheatSheet" = dontDistribute super."CheatSheet"; @@ -4260,6 +4261,7 @@ self: super: { "hscassandra" = dontDistribute super."hscassandra"; "hscd" = dontDistribute super."hscd"; "hsclock" = dontDistribute super."hsclock"; + "hscolour" = doDistribute super."hscolour_1_23"; "hscope" = dontDistribute super."hscope"; "hscrtmpl" = dontDistribute super."hscrtmpl"; "hscuid" = dontDistribute super."hscuid"; @@ -4657,6 +4659,7 @@ self: super: { "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; "irc-fun-messages" = dontDistribute super."irc-fun-messages"; + "irc-fun-types" = dontDistribute super."irc-fun-types"; "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; @@ -4733,6 +4736,7 @@ self: super: { "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; + "json-ast" = dontDistribute super."json-ast"; "json-b" = dontDistribute super."json-b"; "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; @@ -7229,6 +7233,7 @@ self: super: { "string-qq" = dontDistribute super."string-qq"; "string-quote" = dontDistribute super."string-quote"; "string-similarity" = dontDistribute super."string-similarity"; + "string-typelits" = dontDistribute super."string-typelits"; "stringlike" = dontDistribute super."stringlike"; "stringprep" = dontDistribute super."stringprep"; "strings" = dontDistribute super."strings"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.13.nix b/pkgs/development/haskell-modules/configuration-lts-3.13.nix index b556af7d18d..1c0bfd5e48e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.13.nix @@ -163,6 +163,7 @@ self: super: { "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; + "ChannelT" = dontDistribute super."ChannelT"; "Chart-gtk" = dontDistribute super."Chart-gtk"; "Chart-simple" = dontDistribute super."Chart-simple"; "CheatSheet" = dontDistribute super."CheatSheet"; @@ -4259,6 +4260,7 @@ self: super: { "hscassandra" = dontDistribute super."hscassandra"; "hscd" = dontDistribute super."hscd"; "hsclock" = dontDistribute super."hsclock"; + "hscolour" = doDistribute super."hscolour_1_23"; "hscope" = dontDistribute super."hscope"; "hscrtmpl" = dontDistribute super."hscrtmpl"; "hscuid" = dontDistribute super."hscuid"; @@ -4656,6 +4658,7 @@ self: super: { "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; "irc-fun-messages" = dontDistribute super."irc-fun-messages"; + "irc-fun-types" = dontDistribute super."irc-fun-types"; "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; @@ -4732,6 +4735,7 @@ self: super: { "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; + "json-ast" = dontDistribute super."json-ast"; "json-b" = dontDistribute super."json-b"; "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; @@ -7226,6 +7230,7 @@ self: super: { "string-qq" = dontDistribute super."string-qq"; "string-quote" = dontDistribute super."string-quote"; "string-similarity" = dontDistribute super."string-similarity"; + "string-typelits" = dontDistribute super."string-typelits"; "stringlike" = dontDistribute super."stringlike"; "stringprep" = dontDistribute super."stringprep"; "strings" = dontDistribute super."strings"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.14.nix b/pkgs/development/haskell-modules/configuration-lts-3.14.nix index c1d6d27fe83..46b637d6e69 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.14.nix @@ -163,6 +163,7 @@ self: super: { "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; + "ChannelT" = dontDistribute super."ChannelT"; "Chart-gtk" = dontDistribute super."Chart-gtk"; "Chart-simple" = dontDistribute super."Chart-simple"; "CheatSheet" = dontDistribute super."CheatSheet"; @@ -4252,6 +4253,7 @@ self: super: { "hscassandra" = dontDistribute super."hscassandra"; "hscd" = dontDistribute super."hscd"; "hsclock" = dontDistribute super."hsclock"; + "hscolour" = doDistribute super."hscolour_1_23"; "hscope" = dontDistribute super."hscope"; "hscrtmpl" = dontDistribute super."hscrtmpl"; "hscuid" = dontDistribute super."hscuid"; @@ -4648,6 +4650,7 @@ self: super: { "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; "irc-fun-messages" = dontDistribute super."irc-fun-messages"; + "irc-fun-types" = dontDistribute super."irc-fun-types"; "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; @@ -4724,6 +4727,7 @@ self: super: { "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; + "json-ast" = dontDistribute super."json-ast"; "json-b" = dontDistribute super."json-b"; "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; @@ -7216,6 +7220,7 @@ self: super: { "string-qq" = dontDistribute super."string-qq"; "string-quote" = dontDistribute super."string-quote"; "string-similarity" = dontDistribute super."string-similarity"; + "string-typelits" = dontDistribute super."string-typelits"; "stringlike" = dontDistribute super."stringlike"; "stringprep" = dontDistribute super."stringprep"; "strings" = dontDistribute super."strings"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.15.nix b/pkgs/development/haskell-modules/configuration-lts-3.15.nix index 3fc3ebf8165..99fd4d5a0a8 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.15.nix @@ -163,6 +163,7 @@ self: super: { "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; + "ChannelT" = dontDistribute super."ChannelT"; "Chart-gtk" = dontDistribute super."Chart-gtk"; "Chart-simple" = dontDistribute super."Chart-simple"; "CheatSheet" = dontDistribute super."CheatSheet"; @@ -4249,6 +4250,7 @@ self: super: { "hscassandra" = dontDistribute super."hscassandra"; "hscd" = dontDistribute super."hscd"; "hsclock" = dontDistribute super."hsclock"; + "hscolour" = doDistribute super."hscolour_1_23"; "hscope" = dontDistribute super."hscope"; "hscrtmpl" = dontDistribute super."hscrtmpl"; "hscuid" = dontDistribute super."hscuid"; @@ -4644,6 +4646,7 @@ self: super: { "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; "irc-fun-messages" = dontDistribute super."irc-fun-messages"; + "irc-fun-types" = dontDistribute super."irc-fun-types"; "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; @@ -4720,6 +4723,7 @@ self: super: { "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; + "json-ast" = dontDistribute super."json-ast"; "json-b" = dontDistribute super."json-b"; "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; @@ -7210,6 +7214,7 @@ self: super: { "string-qq" = dontDistribute super."string-qq"; "string-quote" = dontDistribute super."string-quote"; "string-similarity" = dontDistribute super."string-similarity"; + "string-typelits" = dontDistribute super."string-typelits"; "stringlike" = dontDistribute super."stringlike"; "stringprep" = dontDistribute super."stringprep"; "strings" = dontDistribute super."strings"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.16.nix b/pkgs/development/haskell-modules/configuration-lts-3.16.nix index 7b3293b2895..d8fd3a98d38 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.16.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.16.nix @@ -163,6 +163,7 @@ self: super: { "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; + "ChannelT" = dontDistribute super."ChannelT"; "Chart-gtk" = dontDistribute super."Chart-gtk"; "Chart-simple" = dontDistribute super."Chart-simple"; "CheatSheet" = dontDistribute super."CheatSheet"; @@ -4245,6 +4246,7 @@ self: super: { "hscassandra" = dontDistribute super."hscassandra"; "hscd" = dontDistribute super."hscd"; "hsclock" = dontDistribute super."hsclock"; + "hscolour" = doDistribute super."hscolour_1_23"; "hscope" = dontDistribute super."hscope"; "hscrtmpl" = dontDistribute super."hscrtmpl"; "hscuid" = dontDistribute super."hscuid"; @@ -4640,6 +4642,7 @@ self: super: { "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; "irc-fun-messages" = dontDistribute super."irc-fun-messages"; + "irc-fun-types" = dontDistribute super."irc-fun-types"; "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; @@ -4716,6 +4719,7 @@ self: super: { "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; + "json-ast" = dontDistribute super."json-ast"; "json-b" = dontDistribute super."json-b"; "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; @@ -7199,6 +7203,7 @@ self: super: { "string-qq" = dontDistribute super."string-qq"; "string-quote" = dontDistribute super."string-quote"; "string-similarity" = dontDistribute super."string-similarity"; + "string-typelits" = dontDistribute super."string-typelits"; "stringlike" = dontDistribute super."stringlike"; "stringprep" = dontDistribute super."stringprep"; "strings" = dontDistribute super."strings"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.17.nix b/pkgs/development/haskell-modules/configuration-lts-3.17.nix index 186a88404c2..bdc78a32769 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.17.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.17.nix @@ -163,6 +163,7 @@ self: super: { "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; + "ChannelT" = dontDistribute super."ChannelT"; "Chart-gtk" = dontDistribute super."Chart-gtk"; "Chart-simple" = dontDistribute super."Chart-simple"; "CheatSheet" = dontDistribute super."CheatSheet"; @@ -4241,6 +4242,7 @@ self: super: { "hscassandra" = dontDistribute super."hscassandra"; "hscd" = dontDistribute super."hscd"; "hsclock" = dontDistribute super."hsclock"; + "hscolour" = doDistribute super."hscolour_1_23"; "hscope" = dontDistribute super."hscope"; "hscrtmpl" = dontDistribute super."hscrtmpl"; "hscuid" = dontDistribute super."hscuid"; @@ -4635,6 +4637,7 @@ self: super: { "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; "irc-fun-messages" = dontDistribute super."irc-fun-messages"; + "irc-fun-types" = dontDistribute super."irc-fun-types"; "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; @@ -4711,6 +4714,7 @@ self: super: { "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; + "json-ast" = dontDistribute super."json-ast"; "json-b" = dontDistribute super."json-b"; "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; @@ -6496,6 +6500,7 @@ self: super: { "resource-pool-catchio" = dontDistribute super."resource-pool-catchio"; "resource-pool-monad" = dontDistribute super."resource-pool-monad"; "resource-simple" = dontDistribute super."resource-simple"; + "resourcet" = doDistribute super."resourcet_1_1_7"; "respond" = dontDistribute super."respond"; "rest-client" = doDistribute super."rest-client_0_5_0_4"; "rest-core" = doDistribute super."rest-core_0_36_0_6"; @@ -7191,6 +7196,7 @@ self: super: { "string-qq" = dontDistribute super."string-qq"; "string-quote" = dontDistribute super."string-quote"; "string-similarity" = dontDistribute super."string-similarity"; + "string-typelits" = dontDistribute super."string-typelits"; "stringlike" = dontDistribute super."stringlike"; "stringprep" = dontDistribute super."stringprep"; "strings" = dontDistribute super."strings"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.18.nix b/pkgs/development/haskell-modules/configuration-lts-3.18.nix index beb24114b59..367f95328dc 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.18.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.18.nix @@ -163,6 +163,7 @@ self: super: { "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; + "ChannelT" = dontDistribute super."ChannelT"; "Chart-gtk" = dontDistribute super."Chart-gtk"; "Chart-simple" = dontDistribute super."Chart-simple"; "CheatSheet" = dontDistribute super."CheatSheet"; @@ -4234,6 +4235,7 @@ self: super: { "hscassandra" = dontDistribute super."hscassandra"; "hscd" = dontDistribute super."hscd"; "hsclock" = dontDistribute super."hsclock"; + "hscolour" = doDistribute super."hscolour_1_23"; "hscope" = dontDistribute super."hscope"; "hscrtmpl" = dontDistribute super."hscrtmpl"; "hscuid" = dontDistribute super."hscuid"; @@ -4626,6 +4628,7 @@ self: super: { "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; "irc-fun-messages" = dontDistribute super."irc-fun-messages"; + "irc-fun-types" = dontDistribute super."irc-fun-types"; "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; @@ -4702,6 +4705,7 @@ self: super: { "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; + "json-ast" = dontDistribute super."json-ast"; "json-b" = dontDistribute super."json-b"; "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; @@ -6484,6 +6488,7 @@ self: super: { "resource-pool-catchio" = dontDistribute super."resource-pool-catchio"; "resource-pool-monad" = dontDistribute super."resource-pool-monad"; "resource-simple" = dontDistribute super."resource-simple"; + "resourcet" = doDistribute super."resourcet_1_1_7"; "respond" = dontDistribute super."respond"; "rest-client" = doDistribute super."rest-client_0_5_0_4"; "rest-core" = doDistribute super."rest-core_0_36_0_6"; @@ -7178,6 +7183,7 @@ self: super: { "string-qq" = dontDistribute super."string-qq"; "string-quote" = dontDistribute super."string-quote"; "string-similarity" = dontDistribute super."string-similarity"; + "string-typelits" = dontDistribute super."string-typelits"; "stringlike" = dontDistribute super."stringlike"; "stringprep" = dontDistribute super."stringprep"; "strings" = dontDistribute super."strings"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.19.nix b/pkgs/development/haskell-modules/configuration-lts-3.19.nix index b755da4a37f..a14789bb313 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.19.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.19.nix @@ -162,6 +162,7 @@ self: super: { "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; + "ChannelT" = dontDistribute super."ChannelT"; "Chart-gtk" = dontDistribute super."Chart-gtk"; "Chart-simple" = dontDistribute super."Chart-simple"; "CheatSheet" = dontDistribute super."CheatSheet"; @@ -4226,6 +4227,7 @@ self: super: { "hscassandra" = dontDistribute super."hscassandra"; "hscd" = dontDistribute super."hscd"; "hsclock" = dontDistribute super."hsclock"; + "hscolour" = doDistribute super."hscolour_1_23"; "hscope" = dontDistribute super."hscope"; "hscrtmpl" = dontDistribute super."hscrtmpl"; "hscuid" = dontDistribute super."hscuid"; @@ -4617,6 +4619,7 @@ self: super: { "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; "irc-fun-messages" = dontDistribute super."irc-fun-messages"; + "irc-fun-types" = dontDistribute super."irc-fun-types"; "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; @@ -4693,6 +4696,7 @@ self: super: { "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; + "json-ast" = dontDistribute super."json-ast"; "json-b" = dontDistribute super."json-b"; "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; @@ -6470,6 +6474,7 @@ self: super: { "resource-pool-catchio" = dontDistribute super."resource-pool-catchio"; "resource-pool-monad" = dontDistribute super."resource-pool-monad"; "resource-simple" = dontDistribute super."resource-simple"; + "resourcet" = doDistribute super."resourcet_1_1_7"; "respond" = dontDistribute super."respond"; "rest-client" = doDistribute super."rest-client_0_5_0_4"; "rest-core" = doDistribute super."rest-core_0_36_0_6"; @@ -7162,6 +7167,7 @@ self: super: { "string-qq" = dontDistribute super."string-qq"; "string-quote" = dontDistribute super."string-quote"; "string-similarity" = dontDistribute super."string-similarity"; + "string-typelits" = dontDistribute super."string-typelits"; "stringlike" = dontDistribute super."stringlike"; "stringprep" = dontDistribute super."stringprep"; "strings" = dontDistribute super."strings"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.2.nix b/pkgs/development/haskell-modules/configuration-lts-3.2.nix index 7e32f849b6d..f5f538b76fc 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.2.nix @@ -163,6 +163,7 @@ self: super: { "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; + "ChannelT" = dontDistribute super."ChannelT"; "Chart" = doDistribute super."Chart_1_5_3"; "Chart-cairo" = doDistribute super."Chart-cairo_1_5_1"; "Chart-diagrams" = doDistribute super."Chart-diagrams_1_5_1"; @@ -4308,6 +4309,7 @@ self: super: { "hscassandra" = dontDistribute super."hscassandra"; "hscd" = dontDistribute super."hscd"; "hsclock" = dontDistribute super."hsclock"; + "hscolour" = doDistribute super."hscolour_1_23"; "hscope" = dontDistribute super."hscope"; "hscrtmpl" = dontDistribute super."hscrtmpl"; "hscuid" = dontDistribute super."hscuid"; @@ -4708,6 +4710,7 @@ self: super: { "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; "irc-fun-messages" = dontDistribute super."irc-fun-messages"; + "irc-fun-types" = dontDistribute super."irc-fun-types"; "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; @@ -4784,6 +4787,7 @@ self: super: { "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; + "json-ast" = dontDistribute super."json-ast"; "json-autotype" = doDistribute super."json-autotype_1_0_7"; "json-b" = dontDistribute super."json-b"; "json-encoder" = dontDistribute super."json-encoder"; @@ -7315,6 +7319,7 @@ self: super: { "string-qq" = dontDistribute super."string-qq"; "string-quote" = dontDistribute super."string-quote"; "string-similarity" = dontDistribute super."string-similarity"; + "string-typelits" = dontDistribute super."string-typelits"; "stringlike" = dontDistribute super."stringlike"; "stringprep" = dontDistribute super."stringprep"; "strings" = dontDistribute super."strings"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.20.nix b/pkgs/development/haskell-modules/configuration-lts-3.20.nix index cc1db2819f2..6ebc3598ad0 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.20.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.20.nix @@ -162,6 +162,7 @@ self: super: { "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; + "ChannelT" = dontDistribute super."ChannelT"; "Chart-gtk" = dontDistribute super."Chart-gtk"; "Chart-simple" = dontDistribute super."Chart-simple"; "CheatSheet" = dontDistribute super."CheatSheet"; @@ -4223,6 +4224,7 @@ self: super: { "hscassandra" = dontDistribute super."hscassandra"; "hscd" = dontDistribute super."hscd"; "hsclock" = dontDistribute super."hsclock"; + "hscolour" = doDistribute super."hscolour_1_23"; "hscope" = dontDistribute super."hscope"; "hscrtmpl" = dontDistribute super."hscrtmpl"; "hscuid" = dontDistribute super."hscuid"; @@ -4614,6 +4616,7 @@ self: super: { "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; "irc-fun-messages" = dontDistribute super."irc-fun-messages"; + "irc-fun-types" = dontDistribute super."irc-fun-types"; "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; @@ -4690,6 +4693,7 @@ self: super: { "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; + "json-ast" = dontDistribute super."json-ast"; "json-b" = dontDistribute super."json-b"; "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; @@ -6464,6 +6468,7 @@ self: super: { "resource-pool-catchio" = dontDistribute super."resource-pool-catchio"; "resource-pool-monad" = dontDistribute super."resource-pool-monad"; "resource-simple" = dontDistribute super."resource-simple"; + "resourcet" = doDistribute super."resourcet_1_1_7"; "respond" = dontDistribute super."respond"; "rest-client" = doDistribute super."rest-client_0_5_0_4"; "rest-core" = doDistribute super."rest-core_0_36_0_6"; @@ -7155,6 +7160,7 @@ self: super: { "string-qq" = dontDistribute super."string-qq"; "string-quote" = dontDistribute super."string-quote"; "string-similarity" = dontDistribute super."string-similarity"; + "string-typelits" = dontDistribute super."string-typelits"; "stringlike" = dontDistribute super."stringlike"; "stringprep" = dontDistribute super."stringprep"; "strings" = dontDistribute super."strings"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.21.nix b/pkgs/development/haskell-modules/configuration-lts-3.21.nix index f4798247856..40d9bdc82a1 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.21.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.21.nix @@ -162,6 +162,7 @@ self: super: { "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; + "ChannelT" = dontDistribute super."ChannelT"; "Chart-gtk" = dontDistribute super."Chart-gtk"; "Chart-simple" = dontDistribute super."Chart-simple"; "CheatSheet" = dontDistribute super."CheatSheet"; @@ -1637,6 +1638,7 @@ self: super: { "blaze-html-truncate" = dontDistribute super."blaze-html-truncate"; "blaze-json" = dontDistribute super."blaze-json"; "blaze-shields" = dontDistribute super."blaze-shields"; + "blaze-svg" = doDistribute super."blaze-svg_0_3_5"; "blaze-textual-native" = dontDistribute super."blaze-textual-native"; "blazeMarker" = dontDistribute super."blazeMarker"; "blink1" = dontDistribute super."blink1"; @@ -4216,6 +4218,7 @@ self: super: { "hscassandra" = dontDistribute super."hscassandra"; "hscd" = dontDistribute super."hscd"; "hsclock" = dontDistribute super."hsclock"; + "hscolour" = doDistribute super."hscolour_1_23"; "hscope" = dontDistribute super."hscope"; "hscrtmpl" = dontDistribute super."hscrtmpl"; "hscuid" = dontDistribute super."hscuid"; @@ -4605,6 +4608,7 @@ self: super: { "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; "irc-fun-messages" = dontDistribute super."irc-fun-messages"; + "irc-fun-types" = dontDistribute super."irc-fun-types"; "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; @@ -4681,6 +4685,7 @@ self: super: { "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; + "json-ast" = dontDistribute super."json-ast"; "json-b" = dontDistribute super."json-b"; "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; @@ -6451,6 +6456,7 @@ self: super: { "resource-pool-catchio" = dontDistribute super."resource-pool-catchio"; "resource-pool-monad" = dontDistribute super."resource-pool-monad"; "resource-simple" = dontDistribute super."resource-simple"; + "resourcet" = doDistribute super."resourcet_1_1_7"; "respond" = dontDistribute super."respond"; "rest-core" = doDistribute super."rest-core_0_36_0_6"; "rest-example" = dontDistribute super."rest-example"; @@ -7131,6 +7137,7 @@ self: super: { "string-qq" = dontDistribute super."string-qq"; "string-quote" = dontDistribute super."string-quote"; "string-similarity" = dontDistribute super."string-similarity"; + "string-typelits" = dontDistribute super."string-typelits"; "stringlike" = dontDistribute super."stringlike"; "stringprep" = dontDistribute super."stringprep"; "strings" = dontDistribute super."strings"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.22.nix b/pkgs/development/haskell-modules/configuration-lts-3.22.nix index 5b6cb97c140..a4f288d71cf 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.22.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.22.nix @@ -162,6 +162,7 @@ self: super: { "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; + "ChannelT" = dontDistribute super."ChannelT"; "Chart-gtk" = dontDistribute super."Chart-gtk"; "Chart-simple" = dontDistribute super."Chart-simple"; "CheatSheet" = dontDistribute super."CheatSheet"; @@ -1637,6 +1638,7 @@ self: super: { "blaze-html-truncate" = dontDistribute super."blaze-html-truncate"; "blaze-json" = dontDistribute super."blaze-json"; "blaze-shields" = dontDistribute super."blaze-shields"; + "blaze-svg" = doDistribute super."blaze-svg_0_3_5"; "blaze-textual-native" = dontDistribute super."blaze-textual-native"; "blazeMarker" = dontDistribute super."blazeMarker"; "blink1" = dontDistribute super."blink1"; @@ -4213,6 +4215,7 @@ self: super: { "hscassandra" = dontDistribute super."hscassandra"; "hscd" = dontDistribute super."hscd"; "hsclock" = dontDistribute super."hsclock"; + "hscolour" = doDistribute super."hscolour_1_23"; "hscope" = dontDistribute super."hscope"; "hscrtmpl" = dontDistribute super."hscrtmpl"; "hscuid" = dontDistribute super."hscuid"; @@ -4599,6 +4602,7 @@ self: super: { "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; "irc-fun-messages" = dontDistribute super."irc-fun-messages"; + "irc-fun-types" = dontDistribute super."irc-fun-types"; "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; @@ -4675,6 +4679,7 @@ self: super: { "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; + "json-ast" = dontDistribute super."json-ast"; "json-b" = dontDistribute super."json-b"; "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; @@ -6445,6 +6450,7 @@ self: super: { "resource-pool-catchio" = dontDistribute super."resource-pool-catchio"; "resource-pool-monad" = dontDistribute super."resource-pool-monad"; "resource-simple" = dontDistribute super."resource-simple"; + "resourcet" = doDistribute super."resourcet_1_1_7"; "respond" = dontDistribute super."respond"; "rest-core" = doDistribute super."rest-core_0_36_0_6"; "rest-example" = dontDistribute super."rest-example"; @@ -7125,6 +7131,7 @@ self: super: { "string-qq" = dontDistribute super."string-qq"; "string-quote" = dontDistribute super."string-quote"; "string-similarity" = dontDistribute super."string-similarity"; + "string-typelits" = dontDistribute super."string-typelits"; "stringlike" = dontDistribute super."stringlike"; "stringprep" = dontDistribute super."stringprep"; "strings" = dontDistribute super."strings"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.3.nix b/pkgs/development/haskell-modules/configuration-lts-3.3.nix index fe69a6af07d..7637c65cdad 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.3.nix @@ -163,6 +163,7 @@ self: super: { "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; + "ChannelT" = dontDistribute super."ChannelT"; "Chart" = doDistribute super."Chart_1_5_3"; "Chart-cairo" = doDistribute super."Chart-cairo_1_5_1"; "Chart-diagrams" = doDistribute super."Chart-diagrams_1_5_1"; @@ -4302,6 +4303,7 @@ self: super: { "hscassandra" = dontDistribute super."hscassandra"; "hscd" = dontDistribute super."hscd"; "hsclock" = dontDistribute super."hsclock"; + "hscolour" = doDistribute super."hscolour_1_23"; "hscope" = dontDistribute super."hscope"; "hscrtmpl" = dontDistribute super."hscrtmpl"; "hscuid" = dontDistribute super."hscuid"; @@ -4702,6 +4704,7 @@ self: super: { "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; "irc-fun-messages" = dontDistribute super."irc-fun-messages"; + "irc-fun-types" = dontDistribute super."irc-fun-types"; "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; @@ -4778,6 +4781,7 @@ self: super: { "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; + "json-ast" = dontDistribute super."json-ast"; "json-autotype" = doDistribute super."json-autotype_1_0_7"; "json-b" = dontDistribute super."json-b"; "json-encoder" = dontDistribute super."json-encoder"; @@ -7307,6 +7311,7 @@ self: super: { "string-qq" = dontDistribute super."string-qq"; "string-quote" = dontDistribute super."string-quote"; "string-similarity" = dontDistribute super."string-similarity"; + "string-typelits" = dontDistribute super."string-typelits"; "stringlike" = dontDistribute super."stringlike"; "stringprep" = dontDistribute super."stringprep"; "strings" = dontDistribute super."strings"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.4.nix b/pkgs/development/haskell-modules/configuration-lts-3.4.nix index e204b466274..970d4c2622a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.4.nix @@ -163,6 +163,7 @@ self: super: { "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; + "ChannelT" = dontDistribute super."ChannelT"; "Chart" = doDistribute super."Chart_1_5_3"; "Chart-cairo" = doDistribute super."Chart-cairo_1_5_1"; "Chart-diagrams" = doDistribute super."Chart-diagrams_1_5_1"; @@ -4302,6 +4303,7 @@ self: super: { "hscassandra" = dontDistribute super."hscassandra"; "hscd" = dontDistribute super."hscd"; "hsclock" = dontDistribute super."hsclock"; + "hscolour" = doDistribute super."hscolour_1_23"; "hscope" = dontDistribute super."hscope"; "hscrtmpl" = dontDistribute super."hscrtmpl"; "hscuid" = dontDistribute super."hscuid"; @@ -4702,6 +4704,7 @@ self: super: { "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; "irc-fun-messages" = dontDistribute super."irc-fun-messages"; + "irc-fun-types" = dontDistribute super."irc-fun-types"; "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; @@ -4778,6 +4781,7 @@ self: super: { "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; + "json-ast" = dontDistribute super."json-ast"; "json-autotype" = doDistribute super."json-autotype_1_0_7"; "json-b" = dontDistribute super."json-b"; "json-encoder" = dontDistribute super."json-encoder"; @@ -7305,6 +7309,7 @@ self: super: { "string-qq" = dontDistribute super."string-qq"; "string-quote" = dontDistribute super."string-quote"; "string-similarity" = dontDistribute super."string-similarity"; + "string-typelits" = dontDistribute super."string-typelits"; "stringlike" = dontDistribute super."stringlike"; "stringprep" = dontDistribute super."stringprep"; "strings" = dontDistribute super."strings"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.5.nix b/pkgs/development/haskell-modules/configuration-lts-3.5.nix index c8a7531a27d..3c37a041e32 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.5.nix @@ -163,6 +163,7 @@ self: super: { "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; + "ChannelT" = dontDistribute super."ChannelT"; "Chart" = doDistribute super."Chart_1_5_3"; "Chart-cairo" = doDistribute super."Chart-cairo_1_5_1"; "Chart-diagrams" = doDistribute super."Chart-diagrams_1_5_1"; @@ -4297,6 +4298,7 @@ self: super: { "hscassandra" = dontDistribute super."hscassandra"; "hscd" = dontDistribute super."hscd"; "hsclock" = dontDistribute super."hsclock"; + "hscolour" = doDistribute super."hscolour_1_23"; "hscope" = dontDistribute super."hscope"; "hscrtmpl" = dontDistribute super."hscrtmpl"; "hscuid" = dontDistribute super."hscuid"; @@ -4694,6 +4696,7 @@ self: super: { "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; "irc-fun-messages" = dontDistribute super."irc-fun-messages"; + "irc-fun-types" = dontDistribute super."irc-fun-types"; "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; @@ -4770,6 +4773,7 @@ self: super: { "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; + "json-ast" = dontDistribute super."json-ast"; "json-autotype" = doDistribute super."json-autotype_1_0_7"; "json-b" = dontDistribute super."json-b"; "json-encoder" = dontDistribute super."json-encoder"; @@ -7293,6 +7297,7 @@ self: super: { "string-qq" = dontDistribute super."string-qq"; "string-quote" = dontDistribute super."string-quote"; "string-similarity" = dontDistribute super."string-similarity"; + "string-typelits" = dontDistribute super."string-typelits"; "stringlike" = dontDistribute super."stringlike"; "stringprep" = dontDistribute super."stringprep"; "strings" = dontDistribute super."strings"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.6.nix b/pkgs/development/haskell-modules/configuration-lts-3.6.nix index 5094fac6471..67e398551d1 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.6.nix @@ -163,6 +163,7 @@ self: super: { "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; + "ChannelT" = dontDistribute super."ChannelT"; "Chart" = doDistribute super."Chart_1_5_3"; "Chart-cairo" = doDistribute super."Chart-cairo_1_5_1"; "Chart-diagrams" = doDistribute super."Chart-diagrams_1_5_1"; @@ -4294,6 +4295,7 @@ self: super: { "hscassandra" = dontDistribute super."hscassandra"; "hscd" = dontDistribute super."hscd"; "hsclock" = dontDistribute super."hsclock"; + "hscolour" = doDistribute super."hscolour_1_23"; "hscope" = dontDistribute super."hscope"; "hscrtmpl" = dontDistribute super."hscrtmpl"; "hscuid" = dontDistribute super."hscuid"; @@ -4691,6 +4693,7 @@ self: super: { "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; "irc-fun-messages" = dontDistribute super."irc-fun-messages"; + "irc-fun-types" = dontDistribute super."irc-fun-types"; "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; @@ -4767,6 +4770,7 @@ self: super: { "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; + "json-ast" = dontDistribute super."json-ast"; "json-autotype" = doDistribute super."json-autotype_1_0_7"; "json-b" = dontDistribute super."json-b"; "json-encoder" = dontDistribute super."json-encoder"; @@ -7285,6 +7289,7 @@ self: super: { "string-qq" = dontDistribute super."string-qq"; "string-quote" = dontDistribute super."string-quote"; "string-similarity" = dontDistribute super."string-similarity"; + "string-typelits" = dontDistribute super."string-typelits"; "stringlike" = dontDistribute super."stringlike"; "stringprep" = dontDistribute super."stringprep"; "strings" = dontDistribute super."strings"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.7.nix b/pkgs/development/haskell-modules/configuration-lts-3.7.nix index 89ac31497cc..128ce65ac51 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.7.nix @@ -163,6 +163,7 @@ self: super: { "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; + "ChannelT" = dontDistribute super."ChannelT"; "Chart" = doDistribute super."Chart_1_5_3"; "Chart-cairo" = doDistribute super."Chart-cairo_1_5_1"; "Chart-diagrams" = doDistribute super."Chart-diagrams_1_5_1"; @@ -4288,6 +4289,7 @@ self: super: { "hscassandra" = dontDistribute super."hscassandra"; "hscd" = dontDistribute super."hscd"; "hsclock" = dontDistribute super."hsclock"; + "hscolour" = doDistribute super."hscolour_1_23"; "hscope" = dontDistribute super."hscope"; "hscrtmpl" = dontDistribute super."hscrtmpl"; "hscuid" = dontDistribute super."hscuid"; @@ -4685,6 +4687,7 @@ self: super: { "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; "irc-fun-messages" = dontDistribute super."irc-fun-messages"; + "irc-fun-types" = dontDistribute super."irc-fun-types"; "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; @@ -4761,6 +4764,7 @@ self: super: { "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; + "json-ast" = dontDistribute super."json-ast"; "json-b" = dontDistribute super."json-b"; "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; @@ -7272,6 +7276,7 @@ self: super: { "string-qq" = dontDistribute super."string-qq"; "string-quote" = dontDistribute super."string-quote"; "string-similarity" = dontDistribute super."string-similarity"; + "string-typelits" = dontDistribute super."string-typelits"; "stringlike" = dontDistribute super."stringlike"; "stringprep" = dontDistribute super."stringprep"; "strings" = dontDistribute super."strings"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.8.nix b/pkgs/development/haskell-modules/configuration-lts-3.8.nix index 1a980f58741..40455e3d2f8 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.8.nix @@ -163,6 +163,7 @@ self: super: { "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; + "ChannelT" = dontDistribute super."ChannelT"; "Chart" = doDistribute super."Chart_1_5_3"; "Chart-cairo" = doDistribute super."Chart-cairo_1_5_1"; "Chart-diagrams" = doDistribute super."Chart-diagrams_1_5_1"; @@ -4280,6 +4281,7 @@ self: super: { "hscassandra" = dontDistribute super."hscassandra"; "hscd" = dontDistribute super."hscd"; "hsclock" = dontDistribute super."hsclock"; + "hscolour" = doDistribute super."hscolour_1_23"; "hscope" = dontDistribute super."hscope"; "hscrtmpl" = dontDistribute super."hscrtmpl"; "hscuid" = dontDistribute super."hscuid"; @@ -4677,6 +4679,7 @@ self: super: { "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; "irc-fun-messages" = dontDistribute super."irc-fun-messages"; + "irc-fun-types" = dontDistribute super."irc-fun-types"; "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; @@ -4753,6 +4756,7 @@ self: super: { "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; + "json-ast" = dontDistribute super."json-ast"; "json-b" = dontDistribute super."json-b"; "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; @@ -7259,6 +7263,7 @@ self: super: { "string-qq" = dontDistribute super."string-qq"; "string-quote" = dontDistribute super."string-quote"; "string-similarity" = dontDistribute super."string-similarity"; + "string-typelits" = dontDistribute super."string-typelits"; "stringlike" = dontDistribute super."stringlike"; "stringprep" = dontDistribute super."stringprep"; "strings" = dontDistribute super."strings"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.9.nix b/pkgs/development/haskell-modules/configuration-lts-3.9.nix index 4f5197bb6c6..142bdfbec04 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.9.nix @@ -163,6 +163,7 @@ self: super: { "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; + "ChannelT" = dontDistribute super."ChannelT"; "Chart" = doDistribute super."Chart_1_5_3"; "Chart-cairo" = doDistribute super."Chart-cairo_1_5_1"; "Chart-diagrams" = doDistribute super."Chart-diagrams_1_5_1"; @@ -4275,6 +4276,7 @@ self: super: { "hscassandra" = dontDistribute super."hscassandra"; "hscd" = dontDistribute super."hscd"; "hsclock" = dontDistribute super."hsclock"; + "hscolour" = doDistribute super."hscolour_1_23"; "hscope" = dontDistribute super."hscope"; "hscrtmpl" = dontDistribute super."hscrtmpl"; "hscuid" = dontDistribute super."hscuid"; @@ -4672,6 +4674,7 @@ self: super: { "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; "irc-fun-messages" = dontDistribute super."irc-fun-messages"; + "irc-fun-types" = dontDistribute super."irc-fun-types"; "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; @@ -4748,6 +4751,7 @@ self: super: { "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; + "json-ast" = dontDistribute super."json-ast"; "json-b" = dontDistribute super."json-b"; "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; @@ -7253,6 +7257,7 @@ self: super: { "string-qq" = dontDistribute super."string-qq"; "string-quote" = dontDistribute super."string-quote"; "string-similarity" = dontDistribute super."string-similarity"; + "string-typelits" = dontDistribute super."string-typelits"; "stringlike" = dontDistribute super."stringlike"; "stringprep" = dontDistribute super."stringprep"; "strings" = dontDistribute super."strings"; diff --git a/pkgs/development/haskell-modules/configuration-lts-4.0.nix b/pkgs/development/haskell-modules/configuration-lts-4.0.nix index 41d40d31cee..6076099d269 100644 --- a/pkgs/development/haskell-modules/configuration-lts-4.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-4.0.nix @@ -162,6 +162,7 @@ self: super: { "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; + "ChannelT" = dontDistribute super."ChannelT"; "Chart-diagrams" = dontDistribute super."Chart-diagrams"; "Chart-gtk" = dontDistribute super."Chart-gtk"; "Chart-simple" = dontDistribute super."Chart-simple"; @@ -1083,6 +1084,7 @@ self: super: { "aeson-applicative" = dontDistribute super."aeson-applicative"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-diff" = dontDistribute super."aeson-diff"; + "aeson-extra" = doDistribute super."aeson-extra_0_3_0_0"; "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; @@ -1527,6 +1529,7 @@ self: super: { "blaze-html-truncate" = dontDistribute super."blaze-html-truncate"; "blaze-json" = dontDistribute super."blaze-json"; "blaze-shields" = dontDistribute super."blaze-shields"; + "blaze-svg" = doDistribute super."blaze-svg_0_3_5"; "blaze-textual-native" = dontDistribute super."blaze-textual-native"; "blazeMarker" = dontDistribute super."blazeMarker"; "blink1" = dontDistribute super."blink1"; @@ -4003,6 +4006,7 @@ self: super: { "hscassandra" = dontDistribute super."hscassandra"; "hscd" = dontDistribute super."hscd"; "hsclock" = dontDistribute super."hsclock"; + "hscolour" = doDistribute super."hscolour_1_23"; "hscope" = dontDistribute super."hscope"; "hscrtmpl" = dontDistribute super."hscrtmpl"; "hscuid" = dontDistribute super."hscuid"; @@ -4356,6 +4360,7 @@ self: super: { "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; "irc-fun-messages" = dontDistribute super."irc-fun-messages"; + "irc-fun-types" = dontDistribute super."irc-fun-types"; "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; @@ -4427,6 +4432,7 @@ self: super: { "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; + "json-ast" = dontDistribute super."json-ast"; "json-b" = dontDistribute super."json-b"; "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; @@ -5033,6 +5039,7 @@ self: super: { "modulespection" = dontDistribute super."modulespection"; "modulo" = dontDistribute super."modulo"; "moe" = dontDistribute super."moe"; + "moesocks" = doDistribute super."moesocks_1_0_0_40"; "mohws" = dontDistribute super."mohws"; "monad-abort-fd" = dontDistribute super."monad-abort-fd"; "monad-atom" = dontDistribute super."monad-atom"; @@ -5620,6 +5627,7 @@ self: super: { "piet" = dontDistribute super."piet"; "piki" = dontDistribute super."piki"; "pinboard" = dontDistribute super."pinboard"; + "pinchot" = doDistribute super."pinchot_0_6_0_0"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; "pipes" = doDistribute super."pipes_4_1_7"; @@ -5844,6 +5852,7 @@ self: super: { "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; "pub" = dontDistribute super."pub"; + "publicsuffix" = doDistribute super."publicsuffix_0_20151212"; "publicsuffixlist" = dontDistribute super."publicsuffixlist"; "publicsuffixlistcreate" = dontDistribute super."publicsuffixlistcreate"; "pubnub" = dontDistribute super."pubnub"; @@ -6115,6 +6124,7 @@ self: super: { "resource-pool-catchio" = dontDistribute super."resource-pool-catchio"; "resource-pool-monad" = dontDistribute super."resource-pool-monad"; "resource-simple" = dontDistribute super."resource-simple"; + "resourcet" = doDistribute super."resourcet_1_1_7"; "respond" = dontDistribute super."respond"; "rest-example" = dontDistribute super."rest-example"; "restful-snap" = dontDistribute super."restful-snap"; @@ -6757,6 +6767,7 @@ self: super: { "string-convert" = dontDistribute super."string-convert"; "string-quote" = dontDistribute super."string-quote"; "string-similarity" = dontDistribute super."string-similarity"; + "string-typelits" = dontDistribute super."string-typelits"; "stringlike" = dontDistribute super."stringlike"; "stringprep" = dontDistribute super."stringprep"; "strings" = dontDistribute super."strings"; diff --git a/pkgs/development/haskell-modules/configuration-lts-4.1.nix b/pkgs/development/haskell-modules/configuration-lts-4.1.nix index ec7cbbf490f..516164aa9ee 100644 --- a/pkgs/development/haskell-modules/configuration-lts-4.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-4.1.nix @@ -162,6 +162,7 @@ self: super: { "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; + "ChannelT" = dontDistribute super."ChannelT"; "Chart-diagrams" = dontDistribute super."Chart-diagrams"; "Chart-gtk" = dontDistribute super."Chart-gtk"; "Chart-simple" = dontDistribute super."Chart-simple"; @@ -1082,6 +1083,7 @@ self: super: { "aeson-applicative" = dontDistribute super."aeson-applicative"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-diff" = dontDistribute super."aeson-diff"; + "aeson-extra" = doDistribute super."aeson-extra_0_3_0_0"; "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; @@ -1525,6 +1527,7 @@ self: super: { "blaze-html-truncate" = dontDistribute super."blaze-html-truncate"; "blaze-json" = dontDistribute super."blaze-json"; "blaze-shields" = dontDistribute super."blaze-shields"; + "blaze-svg" = doDistribute super."blaze-svg_0_3_5"; "blaze-textual-native" = dontDistribute super."blaze-textual-native"; "blazeMarker" = dontDistribute super."blazeMarker"; "blink1" = dontDistribute super."blink1"; @@ -3996,6 +3999,7 @@ self: super: { "hscassandra" = dontDistribute super."hscassandra"; "hscd" = dontDistribute super."hscd"; "hsclock" = dontDistribute super."hsclock"; + "hscolour" = doDistribute super."hscolour_1_23"; "hscope" = dontDistribute super."hscope"; "hscrtmpl" = dontDistribute super."hscrtmpl"; "hscuid" = dontDistribute super."hscuid"; @@ -4344,6 +4348,7 @@ self: super: { "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; "irc-fun-messages" = dontDistribute super."irc-fun-messages"; + "irc-fun-types" = dontDistribute super."irc-fun-types"; "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; @@ -4415,6 +4420,7 @@ self: super: { "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; + "json-ast" = dontDistribute super."json-ast"; "json-b" = dontDistribute super."json-b"; "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; @@ -5018,6 +5024,7 @@ self: super: { "modulespection" = dontDistribute super."modulespection"; "modulo" = dontDistribute super."modulo"; "moe" = dontDistribute super."moe"; + "moesocks" = doDistribute super."moesocks_1_0_0_40"; "mohws" = dontDistribute super."mohws"; "monad-abort-fd" = dontDistribute super."monad-abort-fd"; "monad-atom" = dontDistribute super."monad-atom"; @@ -5604,6 +5611,7 @@ self: super: { "piet" = dontDistribute super."piet"; "piki" = dontDistribute super."piki"; "pinboard" = dontDistribute super."pinboard"; + "pinchot" = doDistribute super."pinchot_0_6_0_0"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; "pipes" = doDistribute super."pipes_4_1_7"; @@ -5827,6 +5835,7 @@ self: super: { "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; "pub" = dontDistribute super."pub"; + "publicsuffix" = doDistribute super."publicsuffix_0_20151212"; "publicsuffixlist" = dontDistribute super."publicsuffixlist"; "publicsuffixlistcreate" = dontDistribute super."publicsuffixlistcreate"; "pubnub" = dontDistribute super."pubnub"; @@ -6097,6 +6106,7 @@ self: super: { "resource-pool-catchio" = dontDistribute super."resource-pool-catchio"; "resource-pool-monad" = dontDistribute super."resource-pool-monad"; "resource-simple" = dontDistribute super."resource-simple"; + "resourcet" = doDistribute super."resourcet_1_1_7"; "respond" = dontDistribute super."respond"; "rest-example" = dontDistribute super."rest-example"; "restful-snap" = dontDistribute super."restful-snap"; @@ -6739,6 +6749,7 @@ self: super: { "string-convert" = dontDistribute super."string-convert"; "string-quote" = dontDistribute super."string-quote"; "string-similarity" = dontDistribute super."string-similarity"; + "string-typelits" = dontDistribute super."string-typelits"; "stringlike" = dontDistribute super."stringlike"; "stringprep" = dontDistribute super."stringprep"; "strings" = dontDistribute super."strings"; diff --git a/pkgs/development/haskell-modules/configuration-lts-4.2.nix b/pkgs/development/haskell-modules/configuration-lts-4.2.nix index 9ca6a8a3c8f..fb60f2f5ac5 100644 --- a/pkgs/development/haskell-modules/configuration-lts-4.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-4.2.nix @@ -162,6 +162,7 @@ self: super: { "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; + "ChannelT" = dontDistribute super."ChannelT"; "Chart-diagrams" = dontDistribute super."Chart-diagrams"; "Chart-gtk" = dontDistribute super."Chart-gtk"; "Chart-simple" = dontDistribute super."Chart-simple"; @@ -1078,6 +1079,7 @@ self: super: { "aeson-applicative" = dontDistribute super."aeson-applicative"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-diff" = dontDistribute super."aeson-diff"; + "aeson-extra" = doDistribute super."aeson-extra_0_3_0_0"; "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; @@ -1520,6 +1522,7 @@ self: super: { "blaze-html-truncate" = dontDistribute super."blaze-html-truncate"; "blaze-json" = dontDistribute super."blaze-json"; "blaze-shields" = dontDistribute super."blaze-shields"; + "blaze-svg" = doDistribute super."blaze-svg_0_3_5"; "blaze-textual-native" = dontDistribute super."blaze-textual-native"; "blazeMarker" = dontDistribute super."blazeMarker"; "blink1" = dontDistribute super."blink1"; @@ -3957,6 +3960,7 @@ self: super: { "hscassandra" = dontDistribute super."hscassandra"; "hscd" = dontDistribute super."hscd"; "hsclock" = dontDistribute super."hsclock"; + "hscolour" = doDistribute super."hscolour_1_23"; "hscope" = dontDistribute super."hscope"; "hscrtmpl" = dontDistribute super."hscrtmpl"; "hscuid" = dontDistribute super."hscuid"; @@ -4297,6 +4301,7 @@ self: super: { "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; "irc-fun-messages" = dontDistribute super."irc-fun-messages"; + "irc-fun-types" = dontDistribute super."irc-fun-types"; "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; @@ -4368,6 +4373,7 @@ self: super: { "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; + "json-ast" = dontDistribute super."json-ast"; "json-b" = dontDistribute super."json-b"; "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; @@ -4967,6 +4973,7 @@ self: super: { "modulespection" = dontDistribute super."modulespection"; "modulo" = dontDistribute super."modulo"; "moe" = dontDistribute super."moe"; + "moesocks" = doDistribute super."moesocks_1_0_0_40"; "mohws" = dontDistribute super."mohws"; "monad-abort-fd" = dontDistribute super."monad-abort-fd"; "monad-atom" = dontDistribute super."monad-atom"; @@ -5549,6 +5556,7 @@ self: super: { "piet" = dontDistribute super."piet"; "piki" = dontDistribute super."piki"; "pinboard" = dontDistribute super."pinboard"; + "pinchot" = doDistribute super."pinchot_0_6_0_0"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; "pipes" = doDistribute super."pipes_4_1_7"; @@ -5769,6 +5777,7 @@ self: super: { "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; "pub" = dontDistribute super."pub"; + "publicsuffix" = doDistribute super."publicsuffix_0_20151212"; "publicsuffixlist" = dontDistribute super."publicsuffixlist"; "publicsuffixlistcreate" = dontDistribute super."publicsuffixlistcreate"; "pubnub" = dontDistribute super."pubnub"; @@ -6037,6 +6046,7 @@ self: super: { "resource-pool-catchio" = dontDistribute super."resource-pool-catchio"; "resource-pool-monad" = dontDistribute super."resource-pool-monad"; "resource-simple" = dontDistribute super."resource-simple"; + "resourcet" = doDistribute super."resourcet_1_1_7"; "respond" = dontDistribute super."respond"; "rest-example" = dontDistribute super."rest-example"; "restful-snap" = dontDistribute super."restful-snap"; @@ -6670,6 +6680,7 @@ self: super: { "string-convert" = dontDistribute super."string-convert"; "string-quote" = dontDistribute super."string-quote"; "string-similarity" = dontDistribute super."string-similarity"; + "string-typelits" = dontDistribute super."string-typelits"; "stringlike" = dontDistribute super."stringlike"; "stringprep" = dontDistribute super."stringprep"; "strings" = dontDistribute super."strings"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.0.nix b/pkgs/development/haskell-modules/configuration-lts-5.0.nix index 5a4647fc77f..7941c97d177 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.0.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_4"; "BluePrintCSS" = dontDistribute super."BluePrintCSS"; "Blueprint" = dontDistribute super."Blueprint"; "Bookshelf" = dontDistribute super."Bookshelf"; @@ -160,6 +161,7 @@ self: super: { "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; + "ChannelT" = dontDistribute super."ChannelT"; "Chart-diagrams" = dontDistribute super."Chart-diagrams"; "Chart-gtk" = dontDistribute super."Chart-gtk"; "Chart-simple" = dontDistribute super."Chart-simple"; @@ -1060,6 +1062,7 @@ self: super: { "aeson-applicative" = dontDistribute super."aeson-applicative"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-diff" = dontDistribute super."aeson-diff"; + "aeson-extra" = doDistribute super."aeson-extra_0_3_0_0"; "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; @@ -1489,6 +1492,7 @@ self: super: { "blaze-html-truncate" = dontDistribute super."blaze-html-truncate"; "blaze-json" = dontDistribute super."blaze-json"; "blaze-shields" = dontDistribute super."blaze-shields"; + "blaze-svg" = doDistribute super."blaze-svg_0_3_5"; "blaze-textual-native" = dontDistribute super."blaze-textual-native"; "blazeMarker" = dontDistribute super."blazeMarker"; "blink1" = dontDistribute super."blink1"; @@ -2939,6 +2943,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; + "git-annex" = doDistribute super."git-annex_6_20160114"; "git-checklist" = dontDistribute super."git-checklist"; "git-date" = dontDistribute super."git-date"; "git-embed" = dontDistribute super."git-embed"; @@ -3871,6 +3876,7 @@ self: super: { "hscassandra" = dontDistribute super."hscassandra"; "hscd" = dontDistribute super."hscd"; "hsclock" = dontDistribute super."hsclock"; + "hscolour" = doDistribute super."hscolour_1_23"; "hscope" = dontDistribute super."hscope"; "hscrtmpl" = dontDistribute super."hscrtmpl"; "hscuid" = dontDistribute super."hscuid"; @@ -4204,6 +4210,7 @@ self: super: { "irc-fun-client" = dontDistribute super."irc-fun-client"; "irc-fun-color" = dontDistribute super."irc-fun-color"; "irc-fun-messages" = dontDistribute super."irc-fun-messages"; + "irc-fun-types" = dontDistribute super."irc-fun-types"; "ircbot" = dontDistribute super."ircbot"; "ircbouncer" = dontDistribute super."ircbouncer"; "ireal" = dontDistribute super."ireal"; @@ -4274,6 +4281,7 @@ self: super: { "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; + "json-ast" = dontDistribute super."json-ast"; "json-b" = dontDistribute super."json-b"; "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; @@ -4440,6 +4448,7 @@ self: super: { "language-slice" = dontDistribute super."language-slice"; "language-spelling" = dontDistribute super."language-spelling"; "language-sqlite" = dontDistribute super."language-sqlite"; + "language-thrift" = doDistribute super."language-thrift_0_7_0_0"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; "lat" = dontDistribute super."lat"; @@ -4856,6 +4865,7 @@ self: super: { "modulespection" = dontDistribute super."modulespection"; "modulo" = dontDistribute super."modulo"; "moe" = dontDistribute super."moe"; + "moesocks" = doDistribute super."moesocks_1_0_0_40"; "mohws" = dontDistribute super."mohws"; "monad-abort-fd" = dontDistribute super."monad-abort-fd"; "monad-atom" = dontDistribute super."monad-atom"; @@ -5426,6 +5436,7 @@ self: super: { "piet" = dontDistribute super."piet"; "piki" = dontDistribute super."piki"; "pinboard" = dontDistribute super."pinboard"; + "pinchot" = doDistribute super."pinchot_0_6_0_0"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; "pipes-async" = dontDistribute super."pipes-async"; @@ -5638,6 +5649,7 @@ self: super: { "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; "pub" = dontDistribute super."pub"; + "publicsuffix" = doDistribute super."publicsuffix_0_20151212"; "publicsuffixlist" = dontDistribute super."publicsuffixlist"; "publicsuffixlistcreate" = dontDistribute super."publicsuffixlistcreate"; "pubnub" = dontDistribute super."pubnub"; @@ -5900,6 +5912,7 @@ self: super: { "resource-pool-catchio" = dontDistribute super."resource-pool-catchio"; "resource-pool-monad" = dontDistribute super."resource-pool-monad"; "resource-simple" = dontDistribute super."resource-simple"; + "resourcet" = doDistribute super."resourcet_1_1_7"; "respond" = dontDistribute super."respond"; "rest-example" = dontDistribute super."rest-example"; "restful-snap" = dontDistribute super."restful-snap"; @@ -6520,6 +6533,7 @@ self: super: { "string-convert" = dontDistribute super."string-convert"; "string-quote" = dontDistribute super."string-quote"; "string-similarity" = dontDistribute super."string-similarity"; + "string-typelits" = dontDistribute super."string-typelits"; "stringlike" = dontDistribute super."stringlike"; "stringprep" = dontDistribute super."stringprep"; "strings" = dontDistribute super."strings"; diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix index 8d1090965f8..6112997fc01 100644 --- a/pkgs/development/haskell-modules/hackage-packages.nix +++ b/pkgs/development/haskell-modules/hackage-packages.nix @@ -1829,7 +1829,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "BlogLiterately" = callPackage + "BlogLiterately_0_8_1_4" = callPackage ({ mkDerivation, base, blaze-html, bool-extras, bytestring, cmdargs , containers, data-default, directory, filepath, HaXml, haxr , highlighting-kate, hscolour, lens, mtl, pandoc, pandoc-citeproc @@ -1849,12 +1849,14 @@ 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"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "BlogLiterately_0_8_1_5" = callPackage + "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 @@ -1877,7 +1879,6 @@ self: { homepage = "http://byorgey.wordpress.com/blogliterately/"; description = "A tool for posting Haskelly articles to blogs"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "BlogLiterately-diagrams_0_1_4_3" = callPackage @@ -2772,6 +2773,18 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "ChannelT" = callPackage + ({ mkDerivation, base, free, mmorph, mtl, transformers-base }: + mkDerivation { + pname = "ChannelT"; + version = "0.0.0.2"; + sha256 = "1ca364133211d323a743424a45677e2f61051f704e80223247b8fdc86f8aa7a0"; + libraryHaskellDepends = [ base free mmorph mtl transformers-base ]; + homepage = "https://github.com/pthariensflame/ChannelT"; + description = "Generalized stream processors"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "Chart_1_3_2" = callPackage ({ mkDerivation, array, base, colour, data-default-class, lens, mtl , old-locale, operational, time @@ -5035,8 +5048,8 @@ self: { }: mkDerivation { pname = "EdisonCore"; - version = "1.3.1"; - sha256 = "9d460a8e51e5b6d36e106a49c07a40f49d7ddcd46d1b32978bccd0c8ae9a4ad8"; + version = "1.3.1.1"; + sha256 = "3e0720ee3b179304f563b99dd446c1d6911e31ddc4d0f78d6550b18e59ed501b"; libraryHaskellDepends = [ array base containers EdisonAPI mtl QuickCheck ]; @@ -13217,6 +13230,8 @@ self: { pname = "MissingH"; version = "1.3.0.1"; sha256 = "ba0d60673e70c64c6eebe785fb4da729bcfd3dae37fba721c7318b8df1838db3"; + revision = "1"; + editedCabalFile = "5d7bf9ce1efa6e8c4a9dc43ea0dc03e66aca4c5950a420d811d2701510a038a0"; libraryHaskellDepends = [ array base containers directory filepath hslogger HUnit mtl network old-locale old-time parsec process random regex-compat time unix @@ -13404,8 +13419,8 @@ self: { }: mkDerivation { pname = "MonadCompose"; - version = "0.8.3.1"; - sha256 = "aa5bc8d00caea4fb9bce70e3a98bb7618bf567a1b0f383601a6330cec45f5b5a"; + version = "0.8.4.1"; + sha256 = "16efab2564b74f253d3a6e034adb2afff12e0b8dff45ac0883fff30895815186"; libraryHaskellDepends = [ base data-default ghc-prim mmorph monad-loops monad-products mtl parallel random transformers transformers-compat @@ -22797,7 +22812,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "aeson-extra" = callPackage + "aeson-extra_0_3_0_0" = callPackage ({ mkDerivation, aeson, aeson-compat, base, base-compat, bytestring , containers, exceptions, hashable, parsec, quickcheck-instances , scientific, tasty, tasty-hunit, tasty-quickcheck @@ -22827,7 +22842,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "aeson-extra_0_3_0_1" = callPackage + "aeson-extra" = callPackage ({ mkDerivation, aeson, aeson-compat, base, base-compat, bytestring , containers, exceptions, hashable, parsec, quickcheck-instances , scientific, tasty, tasty-hunit, tasty-quickcheck @@ -22855,6 +22870,35 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "aeson-extra_0_3_1_0" = callPackage + ({ mkDerivation, aeson, aeson-compat, base, base-compat, bytestring + , containers, exceptions, hashable, parsec, quickcheck-instances + , recursion-schemes, scientific, tasty, tasty-hunit + , tasty-quickcheck, template-haskell, text, these, time + , time-parsers, transformers, unordered-containers, vector + }: + mkDerivation { + pname = "aeson-extra"; + version = "0.3.1.0"; + sha256 = "d82c92ea155ee103d8feaaf772c813b4d73182a3e10f8f0739ab845cdfbb8831"; + libraryHaskellDepends = [ + aeson aeson-compat base base-compat bytestring containers + exceptions hashable parsec recursion-schemes scientific + template-haskell text time time-parsers transformers + unordered-containers vector + ]; + testHaskellDepends = [ + aeson aeson-compat base base-compat bytestring containers + exceptions hashable parsec quickcheck-instances scientific tasty + tasty-hunit tasty-quickcheck template-haskell text these time + time-parsers unordered-containers vector + ]; + homepage = "https://github.com/phadej/aeson-extra#readme"; + description = "Extra goodies for aeson"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "aeson-filthy" = callPackage ({ mkDerivation, aeson, base, bytestring, doctest, text , unordered-containers @@ -27889,6 +27933,35 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "amqp_0_13_1" = callPackage + ({ mkDerivation, base, binary, bytestring, clock, connection + , containers, data-binary-ieee754, hspec, hspec-expectations + , monad-control, network, network-uri, split, stm, text, vector + , xml + }: + mkDerivation { + pname = "amqp"; + version = "0.13.1"; + sha256 = "3ea6523228f1c2bf0622d52ebf73c9e3c2e2af637a7ea29908c07ff9fa0dd4ae"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base binary bytestring clock connection containers + data-binary-ieee754 monad-control network network-uri split stm + text vector + ]; + executableHaskellDepends = [ base containers xml ]; + testHaskellDepends = [ + base binary bytestring clock connection containers + data-binary-ieee754 hspec hspec-expectations network network-uri + split stm text vector + ]; + homepage = "https://github.com/hreinhardt/amqp"; + description = "Client library for AMQP servers (currently only RabbitMQ)"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amqp-conduit" = callPackage ({ mkDerivation, amqp, base, bytestring, conduit, exceptions, hspec , HUnit, lifted-base, monad-control, mtl, resourcet, text @@ -31935,6 +32008,34 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "avers_0_0_14" = callPackage + ({ mkDerivation, aeson, attoparsec, base, base16-bytestring + , bytestring, clock, containers, cryptohash, filepath, hspec + , inflections, MonadRandom, mtl, network, network-uri + , resource-pool, rethinkdb-client-driver, safe, scrypt, stm + , template-haskell, text, time, unordered-containers, vector + }: + mkDerivation { + pname = "avers"; + version = "0.0.14"; + sha256 = "44eb3978af5da284cc152237ea5217d5706815bd1c46be1fb63251fb99e58aa1"; + libraryHaskellDepends = [ + aeson attoparsec base base16-bytestring bytestring clock containers + cryptohash filepath inflections MonadRandom mtl network network-uri + resource-pool rethinkdb-client-driver safe scrypt stm + template-haskell text time unordered-containers vector + ]; + testHaskellDepends = [ + aeson attoparsec base base16-bytestring bytestring containers + cryptohash hspec inflections MonadRandom mtl resource-pool + rethinkdb-client-driver scrypt stm text time unordered-containers + vector + ]; + description = "empty"; + license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "avers-api" = callPackage ({ mkDerivation, aeson, avers, base, bytestring, cookie, servant , text, time @@ -31952,6 +32053,23 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "avers-api_0_0_2" = callPackage + ({ mkDerivation, aeson, avers, base, bytestring, cookie, servant + , text, time + }: + mkDerivation { + pname = "avers-api"; + version = "0.0.2"; + sha256 = "c2f61dc6c15dc4976584ab68c086488b8d7a0ab21ff4b50c0236e3ef0f8fe4f8"; + libraryHaskellDepends = [ + aeson avers base bytestring cookie servant text time + ]; + homepage = "http://github.com/wereHamster/avers-api"; + description = "Types describing the core and extended Avers APIs"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "avers-server" = callPackage ({ mkDerivation, aeson, avers, avers-api, base, bytestring , bytestring-conversion, cookie, either, http-types, mtl @@ -31972,6 +32090,29 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "avers-server_0_0_2" = callPackage + ({ mkDerivation, aeson, avers, avers-api, base, base64-bytestring + , bytestring, bytestring-conversion, cookie, cryptohash, either + , http-types, mtl, resource-pool, rethinkdb-client-driver, servant + , servant-server, text, time, transformers, wai, wai-websockets + , websockets + }: + mkDerivation { + pname = "avers-server"; + version = "0.0.2"; + sha256 = "0f02f100dd5ebaf8e3a538ef3075ecb61dbe38c1d9fad9f3e7735708ca96a55f"; + libraryHaskellDepends = [ + aeson avers avers-api base base64-bytestring bytestring + bytestring-conversion cookie cryptohash either http-types mtl + resource-pool rethinkdb-client-driver servant servant-server text + time transformers wai wai-websockets websockets + ]; + homepage = "http://github.com/wereHamster/avers-server"; + description = "Server implementation of the Avers API"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "avl-static" = callPackage ({ mkDerivation, base, QuickCheck, test-framework , test-framework-quickcheck2 @@ -35419,6 +35560,8 @@ self: { pname = "binary-orphans"; version = "0.1.4.0"; sha256 = "0a952a7521747a7aacf4aa1638674130262f2efacb7121727c1932d49017f742"; + revision = "1"; + editedCabalFile = "be6bd79c7ab5ca7f7f4f92479064945b4242dc092f512e10497a3aafd9b625fb"; libraryHaskellDepends = [ aeson base binary hashable scientific semigroups tagged text text-binary time unordered-containers vector @@ -38106,7 +38249,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "blaze-svg" = callPackage + "blaze-svg_0_3_5" = callPackage ({ mkDerivation, base, blaze-markup, mtl }: mkDerivation { pname = "blaze-svg"; @@ -38116,9 +38259,10 @@ self: { homepage = "https://github.com/deepakjois/blaze-svg"; description = "SVG combinator library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "blaze-svg_0_3_6" = callPackage + "blaze-svg" = callPackage ({ mkDerivation, base, blaze-markup, mtl }: mkDerivation { pname = "blaze-svg"; @@ -38128,7 +38272,6 @@ self: { homepage = "https://github.com/deepakjois/blaze-svg"; description = "SVG combinator library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "blaze-textual_0_2_0_9" = callPackage @@ -39870,6 +40013,34 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {system-glib = pkgs.glib;}; + "bustle_0_5_4" = callPackage + ({ mkDerivation, base, bytestring, cairo, containers, dbus + , directory, filepath, gio, glib, gtk3, hgettext, HUnit, mtl, pango + , parsec, pcap, process, QuickCheck, setlocale, system-glib + , test-framework, test-framework-hunit, text, time + }: + mkDerivation { + pname = "bustle"; + version = "0.5.4"; + sha256 = "921c2cbbb957dcb02c3aa8fd1eeff3534cb437fa9eeca1c25206ad1e741a3f14"; + isLibrary = false; + isExecutable = true; + libraryPkgconfigDepends = [ system-glib ]; + executableHaskellDepends = [ + base bytestring cairo containers dbus directory filepath gio glib + gtk3 hgettext mtl pango parsec pcap process setlocale text time + ]; + testHaskellDepends = [ + base bytestring cairo containers dbus directory filepath gtk3 + hgettext HUnit mtl pango pcap QuickCheck setlocale test-framework + test-framework-hunit text + ]; + homepage = "http://www.freedesktop.org/wiki/Software/Bustle/"; + description = "Draw sequence diagrams of D-Bus traffic"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {system-glib = pkgs.glib;}; + "butterflies" = callPackage ({ mkDerivation, base, bytestring, gl-capture, GLUT, OpenGLRaw , OpenGLRaw21, repa, repa-devil @@ -43178,15 +43349,15 @@ self: { "casadi-bindings" = callPackage ({ mkDerivation, base, binary, casadi, casadi-bindings-core , casadi-bindings-internal, cereal, containers, doctest, linear - , vector, vector-binary-instances + , spatial-math, vector, vector-binary-instances }: mkDerivation { pname = "casadi-bindings"; - version = "2.4.1.6"; - sha256 = "cc4e7f894581bf7847733dbffc0c2692c41235822e91459052ffd3b483319a48"; + version = "2.4.1.7"; + sha256 = "beb816ed9978392c3523aca99bf6f3a615e9a39bd67f090455505b21b430dba6"; libraryHaskellDepends = [ base binary casadi-bindings-core casadi-bindings-internal cereal - containers linear vector vector-binary-instances + containers linear spatial-math vector vector-binary-instances ]; libraryPkgconfigDepends = [ casadi ]; testHaskellDepends = [ base doctest ]; @@ -43744,8 +43915,8 @@ self: { }: mkDerivation { pname = "cassava-conduit"; - version = "0.3.0"; - sha256 = "ff78cceac3c0f2af3b12c7931d65def5fcd6cb1e9f3507044bdc3cc9c36572a6"; + version = "0.3.1"; + sha256 = "3f712d0128a0fa02ad66378f6eddb6be3c846ba666cfbb3fff138c516e6cede6"; libraryHaskellDepends = [ array base bifunctors bytestring cassava conduit conduit-extra containers mtl text @@ -67506,8 +67677,8 @@ self: { }: mkDerivation { pname = "elm-init"; - version = "1.0.1.1"; - sha256 = "6e5d8b45552e4629040efa8026d8c756db4e105a25a2f71e6d61a484b4f6e2aa"; + version = "1.0.2"; + sha256 = "a0a3559b0e3abcc2cf11deaf97144fa5fc6b19dda84896cb0fdc90d90c061079"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -77187,27 +77358,28 @@ self: { }) {}; "funbot" = callPackage - ({ mkDerivation, aeson, auto-update, base, bytestring, clock - , containers, data-default-class, 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 + ({ mkDerivation, aeson, auto-update, base, bytestring + , case-insensitive, clock, containers, data-default-class, feed + , feed-collect, formatting, funbot-ext-events, hashable, HTTP + , http-client, http-client-tls, http-listen, irc-fun-bot + , irc-fun-client, irc-fun-color, irc-fun-types, 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.4.0.1"; - sha256 = "444da7bc772b17de0aa329292dbe1a3ad3134990f824d6f88d6355ff28c3537e"; + version = "0.5"; + sha256 = "7efaf158080ee56dec38b141a7856e872eb58703c2f5d5fa501804bdabb053aa"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ - aeson auto-update base bytestring clock containers - data-default-class 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 auto-update base bytestring case-insensitive clock containers + data-default-class feed feed-collect formatting funbot-ext-events + hashable HTTP http-client http-client-tls http-listen irc-fun-bot + irc-fun-client irc-fun-color irc-fun-types 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"; @@ -77238,10 +77410,10 @@ self: { ({ mkDerivation, aeson, base, text }: mkDerivation { pname = "funbot-ext-events"; - version = "0.2.0.0"; - sha256 = "5224fee263e625708cc937356cdb5dfcf55f0cfd26bf61a8fcb9b2392aa37e26"; + version = "0.3.0.0"; + sha256 = "088850454d4b5e0cedd7dd80aab4d5dbfda08b251b9f3d99a0506ea27814b01c"; libraryHaskellDepends = [ aeson base text ]; - homepage = "https://notabug.org/fr33domlover/funbot-ext-events/"; + homepage = "https://notabug.org/fr33domlover/funbot-ext-events"; description = "Interact with FunBot's external events"; license = stdenv.lib.licenses.publicDomain; }) {}; @@ -78262,8 +78434,8 @@ self: { pname = "generic-aeson"; version = "0.2.0.7"; sha256 = "1ff3c270634ba8393ff019d2b2dd47a86d98cc2ec83495324fed6fe3b2fa0c1b"; - revision = "3"; - editedCabalFile = "c360aa4138bfd4325a48f77b2bbebf11117bb8325b76e03d194c971d4f3446d4"; + revision = "4"; + editedCabalFile = "3d30e4aa0f8c020eb282ff899dee145caa151bebac2894a376cd9bc577dd211a"; libraryHaskellDepends = [ aeson attoparsec base generic-deriving mtl tagged text unordered-containers vector @@ -78547,6 +78719,8 @@ self: { pname = "generic-xmlpickler"; version = "0.1.0.4"; sha256 = "3bc18f38bdbd0071f424763172ca1117fac10309546e8eac2a29208ded593404"; + revision = "1"; + editedCabalFile = "89fde0e961736eea86ecca91f2c66e2e315523b48e313a6f2f3bc4ec1fc52144"; libraryHaskellDepends = [ base generic-deriving hxt text ]; testHaskellDepends = [ base hxt hxt-pickle-utils tasty tasty-hunit tasty-th @@ -79412,7 +79586,6 @@ self: { homepage = "https://github.com/carlohamalainen/ghc-imported-from"; description = "Find the Haddock documentation for a symbol"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ghc-make" = callPackage @@ -80995,7 +81168,7 @@ self: { inherit (pkgs) perl; inherit (pkgs) rsync; inherit (pkgs) wget; inherit (pkgs) which;}; - "git-annex" = callPackage + "git-annex_6_20160114" = callPackage ({ mkDerivation, aeson, async, aws, base, blaze-builder , bloomfilter, bup, byteable, bytestring, case-insensitive , clientsession, concurrent-output, conduit, conduit-extra @@ -81054,13 +81227,14 @@ self: { homepage = "http://git-annex.branchable.com/"; description = "manage files with git, without checking their contents into git"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; maintainers = with stdenv.lib.maintainers; [ simons ]; }) {inherit (pkgs) bup; inherit (pkgs) curl; inherit (pkgs) git; inherit (pkgs) gnupg; inherit (pkgs) lsof; inherit (pkgs) openssh; inherit (pkgs) perl; inherit (pkgs) rsync; inherit (pkgs) wget; inherit (pkgs) which;}; - "git-annex_6_20160126" = callPackage + "git-annex" = callPackage ({ mkDerivation, aeson, async, aws, base, blaze-builder , bloomfilter, bup, byteable, bytestring, case-insensitive , clientsession, concurrent-output, conduit, conduit-extra @@ -81119,7 +81293,6 @@ self: { homepage = "http://git-annex.branchable.com/"; description = "manage files with git, without checking their contents into git"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; maintainers = with stdenv.lib.maintainers; [ simons ]; }) {inherit (pkgs) bup; inherit (pkgs) curl; inherit (pkgs) git; inherit (pkgs) gnupg; inherit (pkgs) lsof; inherit (pkgs) openssh; @@ -84979,8 +85152,8 @@ self: { ({ mkDerivation, base, base-unicode-symbols, containers, mtl }: mkDerivation { pname = "graph-rewriting"; - version = "0.7.7"; - sha256 = "2e0be0ffd95d245caa506f73553cf5d3d501b06e27de7188a1f281178ded2eef"; + version = "0.7.8"; + sha256 = "cece8e180698771b872f2ab18cf73eafa4704fcd0e1b0e94a1924d6f9cc2b688"; libraryHaskellDepends = [ base base-unicode-symbols containers mtl ]; @@ -91325,13 +91498,12 @@ self: { }: mkDerivation { pname = "hardware-edsl"; - version = "0.1.0.0"; - sha256 = "13fe072ff4fbad2d16c4e80749db3cfe56a90df8499e86e615c4afda38589143"; + version = "0.1.0.1"; + sha256 = "cb208be2c2db96264ff37bfcc81810e127d9e6faf15ab48cebe7251bd55fc38c"; libraryHaskellDepends = [ array base bytestring constraints containers language-vhdl mtl operational-alacarte pretty syntactic ]; - jailbreak = true; homepage = "https://github.com/markus-git/hardware-edsl"; description = "Deep embedding of hardware descriptions with code generation"; license = stdenv.lib.licenses.bsd3; @@ -94847,6 +95019,38 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "hasql_0_19_4" = callPackage + ({ mkDerivation, aeson, attoparsec, base, base-prelude, bytestring + , contravariant, contravariant-extras, data-default-class, dlist + , either, hashable, hashtables, loch-th, mtl, placeholders + , postgresql-binary, postgresql-libpq, profunctors, QuickCheck + , quickcheck-instances, scientific, tasty, tasty-hunit + , tasty-quickcheck, tasty-smallcheck, text, time, transformers + , uuid, vector + }: + mkDerivation { + pname = "hasql"; + version = "0.19.4"; + sha256 = "392d4fd66779940d072356621037bb75be2383ec2d1e781cf18e9dafa06764ae"; + libraryHaskellDepends = [ + aeson attoparsec base base-prelude bytestring contravariant + contravariant-extras data-default-class dlist either hashable + hashtables loch-th mtl placeholders postgresql-binary + postgresql-libpq profunctors scientific text time transformers uuid + vector + ]; + testHaskellDepends = [ + base base-prelude bytestring contravariant contravariant-extras + data-default-class dlist either hashable profunctors QuickCheck + quickcheck-instances scientific tasty tasty-hunit tasty-quickcheck + tasty-smallcheck text time transformers uuid vector + ]; + homepage = "https://github.com/nikita-volkov/hasql"; + description = "A very efficient PostgreSQL driver and a flexible mapping API"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "hasql-backend_0_2_1" = callPackage ({ mkDerivation, base, base-prelude, bytestring, list-t, text , vector @@ -95383,8 +95587,8 @@ self: { pname = "hastache"; version = "0.6.1"; sha256 = "8c8f89669d6125201d7163385ea9055ab8027a69d1513259f8fbdd53c244b464"; - revision = "3"; - editedCabalFile = "29ee2fa8aa0d428e48e444a4bc6f287ca4e8db25ae04db0a18d72af06129dd51"; + revision = "4"; + editedCabalFile = "10661eb3aea897aae7d81242de0dbba4eb412ee282d3a7343ed88ce626fd6bd8"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -103722,18 +103926,18 @@ self: { }) {}; "hothasktags" = callPackage - ({ mkDerivation, array, base, containers, cpphs, filepath - , haskell-src-exts, optparse-applicative, split + ({ mkDerivation, array, base, containers, cpphs, filemanip + , filepath, Glob, haskell-src-exts, optparse-applicative, split }: mkDerivation { pname = "hothasktags"; - version = "0.3.4"; - sha256 = "be41b5109ba887eeea36c3a2141a0e0f2d7868af728e3ccb4d828a896707d75e"; + version = "0.3.5"; + sha256 = "6f0ed1707e5470aacef8e8ab959f430e356a05a0ed40b4b0a37c176cc3a89426"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ - array base containers cpphs filepath haskell-src-exts - optparse-applicative split + array base containers cpphs filemanip filepath Glob + haskell-src-exts optparse-applicative split ]; homepage = "http://github.com/luqui/hothasktags"; description = "Generates ctags for Haskell, incorporating import lists and qualified imports"; @@ -105961,7 +106165,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "hscolour" = callPackage + "hscolour_1_23" = callPackage ({ mkDerivation, base, containers }: mkDerivation { pname = "hscolour"; @@ -105974,9 +106178,10 @@ self: { homepage = "http://code.haskell.org/~malcolm/hscolour/"; description = "Colourise Haskell code"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "hscolour_1_24" = callPackage + "hscolour" = callPackage ({ mkDerivation, base, containers }: mkDerivation { pname = "hscolour"; @@ -105989,7 +106194,6 @@ self: { homepage = "http://code.haskell.org/~malcolm/hscolour/"; description = "Colourise Haskell code"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hscope" = callPackage @@ -108827,7 +109031,10 @@ self: { pname = "hstats"; version = "0.3"; sha256 = "12266f4e5212f72826281346058c1667f28af8fdb5292aab4f115ca2e01b6013"; + revision = "1"; + editedCabalFile = "0dcd5745170aeea7a6970ad9042c1043cc073f4fe40403af5795af09f9a062bf"; libraryHaskellDepends = [ base haskell98 ]; + jailbreak = true; homepage = "http://github.com/unmarshal/hstats/"; description = "Statistical Computing in Haskell"; license = stdenv.lib.licenses.bsd3; @@ -113501,6 +113708,32 @@ self: { license = stdenv.lib.licenses.gpl2; }) {}; + "hzulip_1_1_1_3" = callPackage + ({ mkDerivation, aeson, async, base, bytestring, conduit + , exceptions, hspec, http-client, http-client-tls, http-types, lens + , lens-aeson, mtl, raw-strings-qq, scotty, stm, stm-conduit, text + , transformers + }: + mkDerivation { + pname = "hzulip"; + version = "1.1.1.3"; + sha256 = "a49c129e665984ebfc013bffdf7f997b76e7362fb66d622e5f43a35ba1468661"; + libraryHaskellDepends = [ + aeson base bytestring conduit exceptions http-client + http-client-tls http-types lens lens-aeson mtl stm stm-conduit text + transformers + ]; + testHaskellDepends = [ + aeson async base bytestring conduit exceptions hspec http-client + http-client-tls http-types lens lens-aeson mtl raw-strings-qq + scotty stm stm-conduit text transformers + ]; + homepage = "https://github.com/yamadapc/hzulip"; + description = "A haskell wrapper for the Zulip API"; + license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "i18n" = callPackage ({ mkDerivation, array, base, containers, directory, filepath, mtl , old-locale, old-time, parsec, utf8-string @@ -117591,35 +117824,38 @@ self: { }) {}; "irc-fun-bot" = callPackage - ({ mkDerivation, aeson, auto-update, base, clock, containers - , fast-logger, irc-fun-client, irc-fun-messages, json-state, time + ({ mkDerivation, aeson, auto-update, base, case-insensitive, clock + , containers, data-default-class, fast-logger, formatting + , irc-fun-client, irc-fun-types, json-state, text, time , time-interval, time-units, transformers, unordered-containers }: mkDerivation { pname = "irc-fun-bot"; - version = "0.5.0.0"; - sha256 = "1104c508068dcfba3f8c60c39d5cc8ccb9b264af57097e8fa2b61e68e3754b51"; + version = "0.6.0.0"; + sha256 = "1284142d5957d8b30975fb9178908cec8414d60cebd5b5e6d04af6c41809cd82"; libraryHaskellDepends = [ - aeson auto-update base clock containers fast-logger irc-fun-client - irc-fun-messages json-state time time-interval time-units + aeson auto-update base case-insensitive clock containers + data-default-class fast-logger formatting irc-fun-client + irc-fun-types json-state text time time-interval time-units transformers unordered-containers ]; - jailbreak = true; homepage = "http://rel4tion.org/projects/irc-fun-bot/"; description = "Library for writing fun IRC bots"; license = stdenv.lib.licenses.publicDomain; }) {}; "irc-fun-client" = callPackage - ({ mkDerivation, auto-update, base, fast-logger, irc-fun-messages - , network, time, time-units, unordered-containers + ({ mkDerivation, auto-update, base, bytestring, connection + , data-default-class, fast-logger, hashable, irc-fun-messages + , irc-fun-types, text, time, time-units, unordered-containers }: mkDerivation { pname = "irc-fun-client"; - version = "0.4.0.0"; - sha256 = "2567be16b259a37a4234a1716bef694d6f1ce6c3b7c9f553d9d0a12a0be65c33"; + version = "0.5.0.0"; + sha256 = "a8a6bb0835fd2ff4b0697306d76d639802ced44dba23b8e661ed8e4aea31525a"; libraryHaskellDepends = [ - auto-update base fast-logger irc-fun-messages network time + auto-update base bytestring connection data-default-class + fast-logger hashable irc-fun-messages irc-fun-types text time time-units unordered-containers ]; homepage = "http://rel4tion.org/projects/irc-fun-client/"; @@ -117628,32 +117864,48 @@ self: { }) {}; "irc-fun-color" = callPackage - ({ mkDerivation, base }: + ({ mkDerivation, base, dlist, formatting, irc-fun-types, text + , text-show + }: mkDerivation { pname = "irc-fun-color"; - version = "0.1.0.1"; - sha256 = "8b87a8c9e6325f6185b42c213bc56aa8bee080f20ef1fdf53c1c8b26031bf088"; - revision = "1"; - editedCabalFile = "91737e98e11349079179790b93588c5c52a6ef31eb96bf4dfc99eb7672b96696"; - libraryHaskellDepends = [ base ]; - testHaskellDepends = [ base ]; + version = "0.2.0.0"; + sha256 = "d08930a2d5b39411515cd1477804416a0d1882cb4af716cfdddffc0bf3e20780"; + libraryHaskellDepends = [ + base dlist formatting irc-fun-types text text-show + ]; + testHaskellDepends = [ base text ]; homepage = "http://rel4tion.org/projects/irc-fun-color/"; description = "Add color and style decorations to IRC messages"; license = stdenv.lib.licenses.publicDomain; }) {}; "irc-fun-messages" = callPackage - ({ mkDerivation, base, regex-applicative }: + ({ mkDerivation, base, irc-fun-types, regex-applicative, text }: mkDerivation { pname = "irc-fun-messages"; - version = "0.2.0.1"; - sha256 = "b54ab9b8a259c49a495f111bc7a56c5cd50334c4708dea6e3f06b66534325198"; - libraryHaskellDepends = [ base regex-applicative ]; + version = "0.3.0.0"; + sha256 = "bfabe5cd9eff9d2e41c7adf0b7729fee4713a133a1f9da6b2b410753c0ecd04f"; + libraryHaskellDepends = [ + base irc-fun-types regex-applicative text + ]; homepage = "http://rel4tion.org/projects/irc-fun-messages/"; description = "Types and functions for working with the IRC protocol"; license = stdenv.lib.licenses.publicDomain; }) {}; + "irc-fun-types" = callPackage + ({ mkDerivation, base, text }: + mkDerivation { + pname = "irc-fun-types"; + version = "0.1.0.0"; + sha256 = "818255949173d1c4fb982f8bef99d9261b1b7ee77ad3183872d4a0fcbfe5341f"; + libraryHaskellDepends = [ base text ]; + homepage = "http://hub.darcs.net/fr33domlover/irc-fun-types"; + description = "Common types for IRC related packages"; + license = stdenv.lib.licenses.publicDomain; + }) {}; + "ircbot" = callPackage ({ mkDerivation, base, bytestring, containers, directory, filepath , irc, mtl, network, parsec, random, SafeSemaphore, stm, time, unix @@ -119330,6 +119582,22 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "json-ast" = callPackage + ({ mkDerivation, base, scientific, text, unordered-containers + , vector + }: + mkDerivation { + pname = "json-ast"; + version = "0.1"; + sha256 = "8f66d6a977794f21cc5a9af8551ed237ff57677b5777f269a1cebd8e05a3141f"; + libraryHaskellDepends = [ + base scientific text unordered-containers vector + ]; + homepage = "https://github.com/nikita-volkov/json-ast"; + description = "Universal JSON AST datastructure"; + license = stdenv.lib.licenses.mit; + }) {}; + "json-autotype_0_2_5_4" = callPackage ({ mkDerivation, aeson, base, bytestring, containers, filepath , GenericPretty, hashable, hflags, lens, mtl, pretty, process @@ -120021,6 +120289,8 @@ self: { pname = "json-schema"; version = "0.7.4.1"; sha256 = "560d6a17d6eab734f43d329e51967e3ed62f8df2a6fea4a92d06359fe77d7c96"; + revision = "1"; + editedCabalFile = "4d1dfd0f92e4a804930e202d9e8078d63dcfec2b002d1e863cbc95f648e004e0"; libraryHaskellDepends = [ aeson base containers generic-aeson generic-deriving mtl scientific text time unordered-containers vector @@ -124227,7 +124497,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "language-thrift" = callPackage + "language-thrift_0_7_0_0" = callPackage ({ mkDerivation, ansi-wl-pprint, base, hspec, hspec-discover, lens , parsers, QuickCheck, template-haskell, text, transformers , trifecta, wl-pprint @@ -124250,6 +124520,28 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "language-thrift" = callPackage + ({ mkDerivation, ansi-wl-pprint, base, hspec, hspec-discover, lens + , parsers, QuickCheck, text, transformers, trifecta, wl-pprint + }: + mkDerivation { + pname = "language-thrift"; + version = "0.7.0.1"; + sha256 = "67d26a72529fe49bb3e9a9cc087dc5ee302ba3cf19b62cda601e9a68adfbbdc5"; + libraryHaskellDepends = [ + ansi-wl-pprint base lens parsers text transformers trifecta + wl-pprint + ]; + testHaskellDepends = [ + ansi-wl-pprint base hspec hspec-discover parsers QuickCheck text + trifecta wl-pprint + ]; + homepage = "https://github.com/abhinav/language-thrift"; + description = "Parser and pretty printer for the Thrift IDL format"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "language-typescript" = callPackage ({ mkDerivation, base, containers, parsec, pretty }: mkDerivation { @@ -124266,8 +124558,8 @@ self: { ({ mkDerivation, base, pretty }: mkDerivation { pname = "language-vhdl"; - version = "0.1.2.4"; - sha256 = "f3a19de12610c6273138467bfc89795e98d7dddc1064f8e1a947b0d8c16fe93b"; + version = "0.1.2.6"; + sha256 = "87d000bdf5872b26329980825c0dd668ae6070f48e32836d13e3817ad10f7ddc"; libraryHaskellDepends = [ base pretty ]; homepage = "https://github.com/markus-git/language-vhdl"; description = "VHDL AST and pretty printer in Haskell"; @@ -127478,8 +127770,8 @@ self: { }: mkDerivation { pname = "link-relations"; - version = "0.1.0.0"; - sha256 = "4944ffa47d4758135c40f776634e1f7b542c8886ef62b61f224a973c143173cb"; + version = "0.1.1.0"; + sha256 = "3d6805c4e0f78239d3aedfa0baf9b488da9163058e5d4c58e4b7440b508cbb2a"; libraryHaskellDepends = [ base bytestring hashable unordered-containers uri-bytestring ]; @@ -132185,14 +132477,14 @@ self: { ({ mkDerivation, base, containers, hspec, parsec, QuickCheck }: mkDerivation { pname = "mappy"; - version = "0.1.0.0"; - sha256 = "5164ba7bc9e920252e00e0e01357b929f16795bf7f032e122c8ddaf85e1e038a"; + version = "0.1.0.2"; + sha256 = "138923424b51cfa0008fa9224af8327f1455c097421c7ec4969a4689790230af"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base containers parsec ]; executableHaskellDepends = [ base parsec ]; testHaskellDepends = [ base containers hspec parsec QuickCheck ]; - homepage = "http://github.com/githubuser/mappy#readme"; + homepage = "https://github.com/PolyglotSymposium/mappy"; description = "A functional programming language focused around maps"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -135749,7 +136041,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "moesocks" = callPackage + "moesocks_1_0_0_40" = callPackage ({ mkDerivation, aeson, async, attoparsec, base, binary, bytestring , containers, cryptohash, hslogger, HsOpenSSL, iproute, lens , lens-aeson, mtl, network, optparse-applicative, random, stm @@ -135770,9 +136062,10 @@ self: { homepage = "https://github.com/nfjinjing/moesocks"; description = "A functional firewall killer"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "moesocks_1_0_0_41" = callPackage + "moesocks" = callPackage ({ mkDerivation, aeson, async, attoparsec, base, binary, bytestring , containers, cryptohash, hslogger, HsOpenSSL, iproute, lens , lens-aeson, mtl, network, optparse-applicative, random, stm @@ -135793,7 +136086,6 @@ self: { homepage = "https://github.com/nfjinjing/moesocks"; description = "A functional firewall killer"; license = stdenv.lib.licenses.asl20; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mohws" = callPackage @@ -135987,6 +136279,23 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "monad-control_1_0_0_5" = callPackage + ({ mkDerivation, base, stm, transformers, transformers-base + , transformers-compat + }: + mkDerivation { + pname = "monad-control"; + version = "1.0.0.5"; + sha256 = "055f715701c82e2c238282e363807d5bd6300e82cb38eaf37283987bfa8943f9"; + libraryHaskellDepends = [ + base stm transformers transformers-base transformers-compat + ]; + homepage = "https://github.com/basvandijk/monad-control"; + description = "Lift control operations, like exception catching, through monad transformers"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "monad-coroutine_0_8" = callPackage ({ mkDerivation, base, monad-parallel, transformers }: mkDerivation { @@ -141124,38 +141433,37 @@ self: { }) {}; "nested-routes" = callPackage - ({ mkDerivation, attoparsec, base, base64-bytestring, blaze-builder - , bytestring, composition-extra, containers, cookie, cryptonite - , data-default, errors, hspec, hspec-wai, http-types, iso8601-time - , lucid, memory, mtl, poly-arity, pred-trie, regex-compat - , semigroups, stm, text, time, transformers, tries, utf8-string - , wai-extra, wai-middleware-content-type, wai-middleware-verbs - , wai-session, wai-transformers, warp + ({ mkDerivation, attoparsec, base, bytestring, composition-extra + , errors, exceptions, hashable, hspec, hspec-wai, http-types, mtl + , poly-arity, pred-trie, regex-compat, semigroups, text + , transformers, tries, unordered-containers + , wai-middleware-content-type, wai-middleware-verbs + , wai-transformers, warp }: mkDerivation { pname = "nested-routes"; - version = "6.1.0"; - sha256 = "9eddbc6ce2fa029a54f27c753bc28c7093f8a351a5ae6d4fec11b6ec6d4fd8b1"; + version = "7.0.0"; + sha256 = "eac01cd730d3cbcafab4a0ac2b6b8c3ca8cdcd31f996379092f2f60bc31c21a2"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - attoparsec base bytestring composition-extra containers mtl - poly-arity pred-trie regex-compat semigroups text transformers - tries wai-middleware-content-type wai-middleware-verbs - wai-transformers + attoparsec base bytestring composition-extra errors exceptions + hashable mtl poly-arity pred-trie regex-compat semigroups text + transformers tries unordered-containers wai-middleware-content-type + wai-middleware-verbs wai-transformers ]; executableHaskellDepends = [ - attoparsec base base64-bytestring blaze-builder bytestring - composition-extra containers cookie cryptonite data-default errors - http-types iso8601-time lucid memory mtl poly-arity pred-trie - regex-compat semigroups stm text time transformers tries - utf8-string wai-extra wai-middleware-content-type - wai-middleware-verbs wai-session wai-transformers warp + attoparsec base bytestring composition-extra errors exceptions + hashable http-types mtl poly-arity pred-trie regex-compat + semigroups text transformers tries unordered-containers + wai-middleware-content-type wai-middleware-verbs wai-transformers + warp ]; testHaskellDepends = [ - attoparsec base bytestring composition-extra containers hspec - hspec-wai http-types mtl poly-arity pred-trie regex-compat - semigroups text transformers tries wai-middleware-content-type + attoparsec base bytestring composition-extra errors exceptions + hashable hspec hspec-wai http-types mtl poly-arity pred-trie + regex-compat semigroups text transformers tries + unordered-containers wai-middleware-content-type wai-middleware-verbs wai-transformers ]; description = "Declarative, compositional Wai responses"; @@ -152767,7 +153075,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "pinchot" = callPackage + "pinchot_0_6_0_0" = callPackage ({ mkDerivation, base, containers, Earley, lens, template-haskell , transformers }: @@ -152783,9 +153091,10 @@ self: { homepage = "http://www.github.com/massysett/pinchot"; description = "Build parsers and ASTs for context-free grammars"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "pinchot_0_8_0_0" = callPackage + "pinchot" = callPackage ({ mkDerivation, base, containers, Earley, lens, template-haskell , transformers }: @@ -152801,6 +153110,24 @@ self: { homepage = "http://www.github.com/massysett/pinchot"; description = "Build parsers and ASTs for context-free grammars"; license = stdenv.lib.licenses.bsd3; + }) {}; + + "pinchot_0_10_0_0" = callPackage + ({ mkDerivation, base, containers, Earley, lens, template-haskell + , transformers + }: + mkDerivation { + pname = "pinchot"; + version = "0.10.0.0"; + sha256 = "59a9e3b5e5eb323b11fba24d90d7f371e22653d46bf7a31b9676220a0e78a797"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base containers Earley lens template-haskell transformers + ]; + homepage = "http://www.github.com/massysett/pinchot"; + description = "Build parsers and ASTs for context-free grammars"; + license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; }) {}; @@ -155796,6 +156123,35 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "postgresql-binary_0_7_6" = callPackage + ({ mkDerivation, aeson, base, base-prelude, binary-parser + , bytestring, conversion, conversion-bytestring, conversion-text + , either, foldl, loch-th, placeholders, postgresql-libpq + , QuickCheck, quickcheck-instances, scientific, tasty, tasty-hunit + , tasty-quickcheck, tasty-smallcheck, text, time, transformers + , uuid, vector + }: + mkDerivation { + pname = "postgresql-binary"; + version = "0.7.6"; + sha256 = "19a2ed82a6f924194b79d6a0759299495f802c00d5b563841decacb8adb30a42"; + libraryHaskellDepends = [ + aeson base base-prelude binary-parser bytestring foldl loch-th + placeholders scientific text time transformers uuid vector + ]; + testHaskellDepends = [ + base base-prelude bytestring conversion conversion-bytestring + conversion-text either loch-th placeholders postgresql-libpq + QuickCheck quickcheck-instances scientific tasty tasty-hunit + tasty-quickcheck tasty-smallcheck text time transformers uuid + vector + ]; + homepage = "https://github.com/nikita-volkov/postgresql-binary"; + description = "Encoders and decoders for the PostgreSQL's binary format"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "postgresql-config" = callPackage ({ mkDerivation, aeson, base, bytestring, monad-control, mtl , postgresql-simple, resource-pool, time @@ -158939,7 +159295,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "publicsuffix" = callPackage + "publicsuffix_0_20151212" = callPackage ({ mkDerivation, base, filepath, hspec, template-haskell }: mkDerivation { pname = "publicsuffix"; @@ -158950,9 +159306,10 @@ self: { homepage = "https://github.com/wereHamster/publicsuffix-haskell/"; description = "The publicsuffix list exposed as proper Haskell types"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "publicsuffix_0_20160126" = callPackage + "publicsuffix" = callPackage ({ mkDerivation, base, filepath, hspec, template-haskell }: mkDerivation { pname = "publicsuffix"; @@ -158963,7 +159320,6 @@ self: { homepage = "https://github.com/wereHamster/publicsuffix-haskell/"; description = "The publicsuffix list exposed as proper Haskell types"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "publicsuffixlist" = callPackage @@ -165495,7 +165851,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "resourcet" = callPackage + "resourcet_1_1_7" = callPackage ({ mkDerivation, base, containers, exceptions, hspec, lifted-base , mmorph, monad-control, mtl, transformers, transformers-base , transformers-compat @@ -165512,9 +165868,10 @@ self: { homepage = "http://github.com/snoyberg/conduit"; description = "Deterministic allocation and freeing of scarce resources"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "resourcet_1_1_7_1" = callPackage + "resourcet" = callPackage ({ mkDerivation, base, containers, exceptions, hspec, lifted-base , mmorph, monad-control, mtl, transformers, transformers-base , transformers-compat @@ -165531,7 +165888,6 @@ self: { homepage = "http://github.com/snoyberg/conduit"; description = "Deterministic allocation and freeing of scarce resources"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "respond" = callPackage @@ -173474,6 +173830,28 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "servant-swagger_0_1_2" = callPackage + ({ mkDerivation, aeson, aeson-qq, base, bytestring, hspec + , http-media, lens, servant, swagger2, text, time + , unordered-containers + }: + mkDerivation { + pname = "servant-swagger"; + version = "0.1.2"; + sha256 = "44b189a3dabe0b2f6dd5fe8366b81df5622bd9435674670a8fe3e67ecf1e9c1b"; + libraryHaskellDepends = [ + aeson base bytestring http-media lens servant swagger2 text + unordered-containers + ]; + testHaskellDepends = [ + aeson aeson-qq base hspec lens servant swagger2 text time + ]; + homepage = "https://github.com/dmjio/servant-swagger"; + description = "Generate Swagger specification for your servant API"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "servant-yaml" = callPackage ({ mkDerivation, aeson, base, base-compat, bytestring, http-media , servant, servant-server, wai, warp, yaml @@ -174003,16 +174381,12 @@ self: { }) {}; "settings" = callPackage - ({ mkDerivation, aeson, aeson-pretty, base, bytestring, time-units - , unordered-containers - }: + ({ mkDerivation, base, text, unordered-containers }: mkDerivation { pname = "settings"; - version = "0.2.2.0"; - sha256 = "8ca39518d7ed4d0575dbb3bce2064aca006c449765c842906d07484fecf0b831"; - libraryHaskellDepends = [ - aeson aeson-pretty base bytestring time-units unordered-containers - ]; + version = "0.3.0.0"; + sha256 = "48e36d5337bcfe077acd4db4d1a2c03b15f0423cf02731a87c4cc494b2c8cbc2"; + libraryHaskellDepends = [ base text unordered-containers ]; homepage = "http://rel4tion.org/projects/settings/"; description = "Runtime-editable program settings"; license = stdenv.lib.licenses.publicDomain; @@ -180635,8 +181009,8 @@ self: { }: mkDerivation { pname = "spatial-math"; - version = "0.2.5.0"; - sha256 = "3fbdac29649d0bba318766e271eab808732acd529667c4a9f064aab2858d3ef8"; + version = "0.2.7.0"; + sha256 = "a40636d9639ebd4f81b6b10a25ffd3f03af7e3a904d80ac00d2c6892d9ad2859"; libraryHaskellDepends = [ base binary cereal ghc-prim lens linear ]; @@ -185484,6 +185858,22 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "string-typelits" = callPackage + ({ mkDerivation, base, template-haskell, type-combinators + , type-combinators-quote + }: + mkDerivation { + pname = "string-typelits"; + version = "0.1.0.0"; + sha256 = "ff35b6eb25b8e7a18f3fd495c8c911acf3e866876cb521c44bae31ef2934abbb"; + libraryHaskellDepends = [ + base template-haskell type-combinators type-combinators-quote + ]; + homepage = "https://github.com/kylcarte/string-typelits"; + description = "Type-level Chars and Strings, with decidable equality"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "stringable" = callPackage ({ mkDerivation, base, bytestring, system-filepath, text }: mkDerivation { @@ -198400,6 +198790,8 @@ self: { pname = "uhttpc"; version = "0.1.1.0"; sha256 = "cbfa7b8d008c766be1055dca52f467cfded9e5577405b96a8bd622fc5146cece"; + revision = "1"; + editedCabalFile = "ff2f7c17cf679f095238229bd36f5438c5f2a6ed2279eee34daf1a3ceef9ba48"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -198409,7 +198801,6 @@ self: { async base bytestring bytestring-lexing deepseq network optparse-applicative ]; - jailbreak = true; homepage = "https://github.com/hvr/uhttpc"; description = "Minimal HTTP client library optimized for benchmarking"; license = stdenv.lib.licenses.gpl3; @@ -201803,10 +202194,8 @@ self: { ({ mkDerivation, aeson, base, bytestring, text }: mkDerivation { pname = "vcs-web-hook-parse"; - version = "0.1.0.0"; - sha256 = "578cceeed56d13410a33663987268c85f3c54693759cb6dc4e008b3953217961"; - revision = "1"; - editedCabalFile = "c43fff776c16fd1de7f9a9c1464de4ed773634ff0ca48a6eb5e008d07f292357"; + version = "0.2.0.0"; + sha256 = "db8293f8edabf50787d0290c15fe1971abdc9104c8e2e561757671993f23950a"; libraryHaskellDepends = [ aeson base bytestring text ]; homepage = "http://rel4tion.org/projects/vcs-web-hook-parse/"; description = "Parse development platform web hook messages"; @@ -205132,8 +205521,8 @@ self: { }: mkDerivation { pname = "wai-middleware-content-type"; - version = "0.3.0"; - sha256 = "2fadb84ee1f8a25d3e3d4f07bb8c92056eccf8bd3c0dabadb0a860653407f7c4"; + version = "0.4.0"; + sha256 = "bccf5fb49c39cde628d8e73b4afff934186cba6824a8b04501bb3fbada4229eb"; libraryHaskellDepends = [ aeson base blaze-builder blaze-html bytestring clay exceptions hashable http-media http-types lucid mmorph monad-control @@ -205147,7 +205536,7 @@ self: { shakespeare tasty tasty-hspec text transformers transformers-base unordered-containers urlpath wai wai-transformers warp ]; - description = "Route to different middlewares based on the incoming Accept header"; + description = "A simple WAI library for responding with content"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -208350,16 +208739,17 @@ self: { "webfinger-client" = callPackage ({ mkDerivation, aeson, base, bytestring, data-default-class - , hashable, http-client, http-client-tls, http-types, text - , unordered-containers, uri-bytestring + , hashable, http-client, http-client-tls, http-types + , link-relations, text, unordered-containers, uri-bytestring }: mkDerivation { pname = "webfinger-client"; - version = "0.1.0.0"; - sha256 = "e3b1a231ebe4bc957eddcf24a19ee5d90134b9a95984a75a945c8dc4b17a56e0"; + version = "0.2.0.0"; + sha256 = "1311f198704ba1dc9439a20427e1d909ceab86dbd196d31ded52835291b85a2a"; libraryHaskellDepends = [ aeson base bytestring data-default-class hashable http-client - http-client-tls http-types text unordered-containers uri-bytestring + http-client-tls http-types link-relations text unordered-containers + uri-bytestring ]; homepage = "http://hub.darcs.net/fr33domlover/webfinger-client"; description = "WebFinger client library"; @@ -217737,14 +218127,13 @@ self: { }: mkDerivation { pname = "yesod-markdown"; - version = "0.10.0"; - sha256 = "f1039ae939be04bdb9480206e5029f73c95f686bdda07f81e43a218ddc653959"; + version = "0.11.0"; + sha256 = "80465e11fc54ee786109f8e2d2d6c4560ee44e5a1de46618c95c56eeb29ea433"; libraryHaskellDepends = [ base blaze-html blaze-markup bytestring directory pandoc persistent shakespeare texmath text xss-sanitize yesod-core yesod-form ]; testHaskellDepends = [ base blaze-html hspec text ]; - jailbreak = true; homepage = "http://github.com/pbrisbin/yesod-markdown"; description = "Tools for using markdown in a yesod application"; license = stdenv.lib.licenses.gpl2; From a9b0bfe3bbf184feac007786119ef4d8b33bcc91 Mon Sep 17 00:00:00 2001 From: Michael Alan Dorman Date: Thu, 28 Jan 2016 08:09:01 -0500 Subject: [PATCH 255/268] ghc-imported-from: builds again --- pkgs/development/haskell-modules/configuration-hackage2nix.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml index eea3adad2f8..6fd1a0471c2 100644 --- a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml +++ b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml @@ -1259,7 +1259,6 @@ dont-distribute-packages: ghc-exactprint: [ x86_64-darwin ] ghci-diagrams: [ i686-linux, x86_64-linux, x86_64-darwin ] ghci-haskeline: [ i686-linux, x86_64-linux, x86_64-darwin ] - ghc-imported-from: [ i686-linux, x86_64-linux, x86_64-darwin ] ghclive: [ i686-linux, x86_64-linux, x86_64-darwin ] ghc-parmake: [ i686-linux, x86_64-linux, x86_64-darwin ] ghc-pkg-autofix: [ i686-linux, x86_64-linux, x86_64-darwin ] From a1cd11aff45bc66d2fecb46b9cf0023822bc4062 Mon Sep 17 00:00:00 2001 From: Sander van der Burg Date: Thu, 28 Jan 2016 16:19:18 +0000 Subject: [PATCH 256/268] titaniumenv: remove obsolete android configuration steps --- pkgs/development/mobile/titaniumenv/build-app.nix | 5 ----- pkgs/development/mobile/titaniumenv/default.nix | 2 +- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/pkgs/development/mobile/titaniumenv/build-app.nix b/pkgs/development/mobile/titaniumenv/build-app.nix index 0de6c58e726..a99ab8d2d79 100644 --- a/pkgs/development/mobile/titaniumenv/build-app.nix +++ b/pkgs/development/mobile/titaniumenv/build-app.nix @@ -51,11 +51,6 @@ stdenv.mkDerivation { '' titanium config --config-file $TMPDIR/config.json --no-colors android.sdk ${androidsdkComposition}/libexec/android-sdk-* titanium config --config-file $TMPDIR/config.json --no-colors android.buildTools.selectedVersion 23.0.1 - titanium config --config-file $TMPDIR/config.json --no-colors android.buildTools.path ${androidsdkComposition}/libexec/android-sdk-*/build-tools/android-* - titanium config --config-file $TMPDIR/config.json android.executables.zipalign ${androidsdkComposition}/libexec/android-sdk-*/build-tools/android-*/zipalign - titanium config --config-file $TMPDIR/config.json android.executables.aapt ${androidsdkComposition}/libexec/android-sdk-*/build-tools/android-*/aapt - titanium config --config-file $TMPDIR/config.json android.executables.aidl ${androidsdkComposition}/libexec/android-sdk-*/build-tools/android-*/aidl - titanium config --config-file $TMPDIR/config.json android.executables.dx ${androidsdkComposition}/libexec/android-sdk-*/build-tools/android-*/dx export PATH=$(echo ${androidsdkComposition}/libexec/android-sdk-*/tools):$(echo ${androidsdkComposition}/libexec/android-sdk-*/build-tools/android-*):$PATH diff --git a/pkgs/development/mobile/titaniumenv/default.nix b/pkgs/development/mobile/titaniumenv/default.nix index f9bb61ef43a..579456188d0 100644 --- a/pkgs/development/mobile/titaniumenv/default.nix +++ b/pkgs/development/mobile/titaniumenv/default.nix @@ -1,4 +1,4 @@ -{pkgs, pkgs_i686, xcodeVersion ? "7.2", xcodeBaseDir ? "/Applications/Xcode.app", tiVersion ? "5.1.1.GA"}: +{pkgs, pkgs_i686, xcodeVersion ? "7.2", xcodeBaseDir ? "/Applications/Xcode.app", tiVersion ? "5.1.2.GA"}: rec { androidenv = pkgs.androidenv; From 7b8cd1dce93ba87aa1a93db1b5bf45eae4704fd4 Mon Sep 17 00:00:00 2001 From: Charles Strahan Date: Thu, 28 Jan 2016 11:58:33 -0500 Subject: [PATCH 257/268] watchman: 4.1.0 -> 4.3.0 * improved handling of case insensitive filenames * improved reliability of symlink change detection on osx --- pkgs/development/tools/watchman/default.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/watchman/default.nix b/pkgs/development/tools/watchman/default.nix index b2029391b74..2f02a7a4a1f 100644 --- a/pkgs/development/tools/watchman/default.nix +++ b/pkgs/development/tools/watchman/default.nix @@ -5,13 +5,13 @@ stdenv.mkDerivation rec { name = "watchman-${version}"; - version = "4.1.0"; + version = "4.3.0"; src = fetchFromGitHub { owner = "facebook"; repo = "watchman"; rev = "v${version}"; - sha256 = "01ak2gsmc76baswpivzz00g22r547mpp8l7xfziwl5804nzszrcg"; + sha256 = "0dcaklw4d42z8hndy9zsdqqv1q8r18wnwldgdgjvp5c9vijvgyrd"; }; buildInputs = [ autoconf automake pcre ]; @@ -20,6 +20,9 @@ stdenv.mkDerivation rec { "--enable-lenient" "--enable-conffile=${if confFile == null then "no" else confFile}" "--with-pcre=yes" + + # For security considerations re: --disable-statedir, see: + # https://github.com/facebook/watchman/issues/178 "--disable-statedir" ]; From 9695e139ecc5a767da0345a3cf18f74640d3e7fd Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Jan 2016 11:15:14 -0600 Subject: [PATCH 258/268] qt55.qtbase: fix path typo in resolv patch --- pkgs/development/libraries/qt-5/5.5/qtbase/dlopen-resolv.patch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/libraries/qt-5/5.5/qtbase/dlopen-resolv.patch b/pkgs/development/libraries/qt-5/5.5/qtbase/dlopen-resolv.patch index a79c806462f..20e56bf3149 100644 --- a/pkgs/development/libraries/qt-5/5.5/qtbase/dlopen-resolv.patch +++ b/pkgs/development/libraries/qt-5/5.5/qtbase/dlopen-resolv.patch @@ -7,7 +7,7 @@ Index: qt-everywhere-opensource-src-5.5.1/qtbase/src/network/kernel/qdnslookup_u #endif { - lib.setFileName(QLatin1String("resolv")); -+ lib.setFileName(QLatin1String("@glibc/lib/resolv")); ++ lib.setFileName(QLatin1String("@glibc@/lib/resolv")); if (!lib.load()) return; } From 9e743fd1519ceb447baa715edea558db1c4d160c Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Jan 2016 11:15:58 -0600 Subject: [PATCH 259/268] qt54.qtbase: fix path typo in resolv patch --- pkgs/development/libraries/qt-5/5.4/qtbase/dlopen-resolv.patch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/libraries/qt-5/5.4/qtbase/dlopen-resolv.patch b/pkgs/development/libraries/qt-5/5.4/qtbase/dlopen-resolv.patch index a79c806462f..20e56bf3149 100644 --- a/pkgs/development/libraries/qt-5/5.4/qtbase/dlopen-resolv.patch +++ b/pkgs/development/libraries/qt-5/5.4/qtbase/dlopen-resolv.patch @@ -7,7 +7,7 @@ Index: qt-everywhere-opensource-src-5.5.1/qtbase/src/network/kernel/qdnslookup_u #endif { - lib.setFileName(QLatin1String("resolv")); -+ lib.setFileName(QLatin1String("@glibc/lib/resolv")); ++ lib.setFileName(QLatin1String("@glibc@/lib/resolv")); if (!lib.load()) return; } From 5583ecf361c839bbe2d0bd9e9ad89f796d596cf1 Mon Sep 17 00:00:00 2001 From: Charles Strahan Date: Tue, 26 Jan 2016 21:48:57 -0500 Subject: [PATCH 260/268] mongodb: 3.0.7 -> 3.2.1 Fixes #12639 --- pkgs/servers/nosql/mongodb/default.nix | 34 ++++++++++++------- .../nosql/mongodb/valgrind-include.patch | 25 ++++++++++++++ 2 files changed, 46 insertions(+), 13 deletions(-) create mode 100644 pkgs/servers/nosql/mongodb/valgrind-include.patch diff --git a/pkgs/servers/nosql/mongodb/default.nix b/pkgs/servers/nosql/mongodb/default.nix index 60a37456b4b..2ea255e4432 100644 --- a/pkgs/servers/nosql/mongodb/default.nix +++ b/pkgs/servers/nosql/mongodb/default.nix @@ -2,17 +2,21 @@ , zlib, libyamlcpp, sasl, openssl, libpcap, wiredtiger }: +# Note: +# The command line tools are written in Go as part of a different package (mongodb-tools) + with stdenv.lib; -let version = "3.0.7"; +let version = "3.2.1"; system-libraries = [ "pcre" + #"asio" -- XXX use package? #"wiredtiger" "boost" "snappy" "zlib" - # "v8" - # "stemmer" -- not nice to package yet (no versioning, no makefile, no shared libs) + #"valgrind" -- mongodb only requires valgrind.h, which is vendored in the source. + #"stemmer" -- not nice to package yet (no versioning, no makefile, no shared libs). "yaml" ] ++ optionals stdenv.isLinux [ "tcmalloc" ]; buildInputs = [ @@ -21,19 +25,17 @@ let version = "3.0.7"; ]; # ++ optional stdenv.is64bit wiredtiger; other-args = concatStringsSep " " ([ - # these are opt-in, lol - "--cc-use-shell-environment" - "--cxx-use-shell-environment" - - "--c++11=on" "--ssl" #"--rocksdb" # Don't have this packaged yet "--wiredtiger=${if stdenv.is64bit then "on" else "off"}" - "--js-engine=v8-3.25" + "--js-engine=mozjs" "--use-sasl-client" "--disable-warnings-as-errors" - "--variant-dir=nixos" # Needed so we don't produce argument lists that are too long for gcc / ld - "--extrapath=${concatStringsSep "," buildInputs}" + "VARIANT_DIR=nixos" # Needed so we don't produce argument lists that are too long for gcc / ld + "CC=$CC" + "CXX=$CXX" + "CCFLAGS=\"${concatStringsSep " " (map (input: "-I${input}/include") buildInputs)}\"" + "LINKFLAGS=\"${concatStringsSep " " (map (input: "-L${input}/lib") buildInputs)}\"" ] ++ map (lib: "--use-system-${lib}") system-libraries); in stdenv.mkDerivation rec { @@ -41,12 +43,18 @@ in stdenv.mkDerivation rec { src = fetchurl { url = "http://downloads.mongodb.org/src/mongodb-src-r${version}.tar.gz"; - sha256 = "1rx7faqsq733vdriavdfmvx75nhjq9nm5bgwd3hw1cxzqgkvl99d"; + sha256 = "059gskly8maj2c9iy46gccx7a9ya522pl5aaxl5vss5bllxilhsh"; }; nativeBuildInputs = [ scons ]; inherit buildInputs; + # When not building with the system valgrind, the build should use the + # vendored header file - regardless of whether or not we're using the system + # tcmalloc - so we need to lift the include path manipulation out of the + # conditional. + patches = [ ./valgrind-include.patch ]; + postPatch = '' # fix environment variable reading substituteInPlace SConstruct \ @@ -76,7 +84,7 @@ in stdenv.mkDerivation rec { homepage = http://www.mongodb.org; license = licenses.agpl3; - maintainers = with maintainers; [ bluescreen303 offline wkennington ]; + maintainers = with maintainers; [ bluescreen303 offline wkennington cstrahan ]; platforms = platforms.unix; }; } diff --git a/pkgs/servers/nosql/mongodb/valgrind-include.patch b/pkgs/servers/nosql/mongodb/valgrind-include.patch new file mode 100644 index 00000000000..6b401525c08 --- /dev/null +++ b/pkgs/servers/nosql/mongodb/valgrind-include.patch @@ -0,0 +1,25 @@ +diff --git a/src/mongo/util/SConscript b/src/mongo/util/SConscript +index 6add602..6e232d8 100644 +--- a/src/mongo/util/SConscript ++++ b/src/mongo/util/SConscript +@@ -241,9 +241,6 @@ if get_option('allocator') == 'tcmalloc': + # Add in the include path for our vendored tcmalloc. + tcmspEnv.InjectThirdPartyIncludePaths('gperftools') + +- # Include valgrind since tcmalloc disables itself while running under valgrind +- tcmspEnv.InjectThirdPartyIncludePaths('valgrind') +- + # If our changes to tcmalloc are ever upstreamed, this should become set based on a top + # level configure check, though its effects should still be scoped just to these files. + tcmspEnv.Append( +@@ -252,6 +249,10 @@ if get_option('allocator') == 'tcmalloc': + ] + ) + ++ # Include valgrind since tcmalloc disables itself while running under valgrind ++ if not use_system_version_of_library('valgrind'): ++ tcmspEnv.InjectThirdPartyIncludePaths('valgrind') ++ + tcmspEnv.Library( + target='tcmalloc_set_parameter', + source=[ From a654e783c65bcdfcfb701ddf168949bc29e884e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Romildo=20Malaquias?= Date: Thu, 28 Jan 2016 17:21:29 -0200 Subject: [PATCH 261/268] eclipse-plugin-cup: init at 1.0.0.201412081321 --- pkgs/applications/editors/eclipse/plugins.nix | 39 +++++++++++++++++++ 1 file changed, 39 insertions(+) diff --git a/pkgs/applications/editors/eclipse/plugins.nix b/pkgs/applications/editors/eclipse/plugins.nix index 7a1643e6d2a..ce078d17edd 100644 --- a/pkgs/applications/editors/eclipse/plugins.nix +++ b/pkgs/applications/editors/eclipse/plugins.nix @@ -212,6 +212,45 @@ rec { }; }; + cup = buildEclipsePluginBase rec { + name = "cup-${version}"; + version = "1.0.0.201412081321"; + + srcFeature = fetchurl { + url = "http://www2.in.tum.de/projects/cup/eclipse/features/CupEclipsePluginFeature_${version}.jar"; + sha256 = "353513445f77ed144687bafc20ab85dc31f2f95ffdc47f102ab773ab0b7afb8b"; + }; + + srcPlugin1 = fetchurl { + url = "http://www2.in.tum.de/projects/cup/eclipse/plugins/CupReferencedLibraries_${version}.jar"; + sha256 = "082b5ed8730ad065efaac6ea2812dae15669ae74a49778911125b171bea41187"; + }; + + srcPlugin2 = fetchurl { + url = "http://www2.in.tum.de/projects/cup/eclipse/plugins/de.tum.in.www2.CupPlugin_${version}.jar"; + sha256 = "6b67937fa11944b0330173a9d8564a19eccd705e76b96291d80077a1d7344939"; + }; + + srcs = [ srcFeature srcPlugin1 srcPlugin2 ]; + + phases = [ "installPhase" ]; + + installPhase = '' + dropinDir="$out/eclipse/dropins/${name}" + mkdir -p $dropinDir/features + unzip ${srcFeature} -d $dropinDir/features/ + mkdir -p $dropinDir/plugins + cp -v ${srcPlugin1} ${srcPlugin2} $dropinDir/plugins/ + ''; + + meta = with stdenv.lib; { + homepage = http://www2.cs.tum.edu/projects/cup/eclipse.php; + description = "IDE for developing CUP based parsers"; + platforms = platforms.all; + maintainers = [ maintainers.romildo ]; + }; + }; + eclemma = buildEclipseUpdateSite rec { name = "eclemma-${version}"; version = "2.3.2.201409141915"; From a92c2cb994788ff362fdf27f72beea32d773affc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Thu, 28 Jan 2016 20:35:00 +0100 Subject: [PATCH 262/268] openssl_1_0_2: high-severity security update e -> f Fixes CVE-2016-0701 and CVE-2015-3197. --- pkgs/development/libraries/openssl/1.0.2.x.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/openssl/1.0.2.x.nix b/pkgs/development/libraries/openssl/1.0.2.x.nix index 0c9c62dfb92..c94033d0fef 100644 --- a/pkgs/development/libraries/openssl/1.0.2.x.nix +++ b/pkgs/development/libraries/openssl/1.0.2.x.nix @@ -8,14 +8,14 @@ let stdenv.cross; in stdenv.mkDerivation rec { - name = "openssl-1.0.2e"; + name = "openssl-1.0.2f"; src = fetchurl { urls = [ "http://www.openssl.org/source/${name}.tar.gz" "http://openssl.linux-mirror.org/source/${name}.tar.gz" ]; - sha256 = "1zqb1rff1wikc62a7vj5qxd1k191m8qif5d05mwdxz2wnzywlg72"; + sha256 = "932b4ee4def2b434f85435d9e3e19ca8ba99ce9a065a61524b429a9d5e9b2e9c"; }; patches = optional stdenv.isCygwin ./1.0.1-cygwin64.patch; From bfebc7342e42ebe7a57c9e21b11ab19579189bfd Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Fri, 29 Jan 2016 02:32:05 +0100 Subject: [PATCH 263/268] Fix some references to deprecated /etc/ssl/certs/ca-bundle.crt --- nixos/modules/programs/venus.nix | 2 +- nixos/modules/security/ca.nix | 10 +++++----- nixos/modules/services/misc/nix-daemon.nix | 2 +- nixos/modules/services/monitoring/dd-agent.nix | 2 +- nixos/modules/services/networking/ddclient.nix | 2 +- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/nixos/modules/programs/venus.nix b/nixos/modules/programs/venus.nix index 8f85b602fe2..c3756b4838c 100644 --- a/nixos/modules/programs/venus.nix +++ b/nixos/modules/programs/venus.nix @@ -165,7 +165,7 @@ in script = "exec venus-planet ${configFile}"; serviceConfig.User = "${cfg.user}"; serviceConfig.Group = "${cfg.group}"; - environment.SSL_CERT_FILE = "/etc/ssl/certs/ca-bundle.crt"; + environment.SSL_CERT_FILE = "/etc/ssl/certs/ca-certificates.crt"; startAt = cfg.dates; }; diff --git a/nixos/modules/security/ca.nix b/nixos/modules/security/ca.nix index ddfad52d42e..98d73ed2542 100644 --- a/nixos/modules/security/ca.nix +++ b/nixos/modules/security/ca.nix @@ -4,7 +4,7 @@ with lib; let - caBundle = pkgs.runCommand "ca-bundle.crt" + caCertificates = pkgs.runCommand "ca-certificates.crt" { files = config.security.pki.certificateFiles ++ [ (builtins.toFile "extra.crt" (concatStringsSep "\n" config.security.pki.certificates)) ]; @@ -26,7 +26,7 @@ in description = '' A list of files containing trusted root certificates in PEM format. These are concatenated to form - /etc/ssl/certs/ca-bundle.crt, which is + /etc/ssl/certs/ca-certificates.crt, which is used by many programs that use OpenSSL, such as curl and git. ''; @@ -56,13 +56,13 @@ in security.pki.certificateFiles = [ "${pkgs.cacert}/etc/ssl/certs/ca-bundle.crt" ]; # NixOS canonical location + Debian/Ubuntu/Arch/Gentoo compatibility. - environment.etc."ssl/certs/ca-certificates.crt".source = caBundle; + environment.etc."ssl/certs/ca-certificates.crt".source = caCertificates; # Old NixOS compatibility. - environment.etc."ssl/certs/ca-bundle.crt".source = caBundle; + environment.etc."ssl/certs/ca-bundle.crt".source = caCertificates; # CentOS/Fedora compatibility. - environment.etc."pki/tls/certs/ca-bundle.crt".source = caBundle; + environment.etc."pki/tls/certs/ca-bundle.crt".source = caCertificates; environment.sessionVariables = { SSL_CERT_FILE = "/etc/ssl/certs/ca-certificates.crt"; diff --git a/nixos/modules/services/misc/nix-daemon.nix b/nixos/modules/services/misc/nix-daemon.nix index da03eb17e30..8e984727a80 100644 --- a/nixos/modules/services/misc/nix-daemon.nix +++ b/nixos/modules/services/misc/nix-daemon.nix @@ -364,7 +364,7 @@ in ++ optionals cfg.distributedBuilds [ pkgs.gzip ]; environment = cfg.envVars - // { CURL_CA_BUNDLE = "/etc/ssl/certs/ca-bundle.crt"; } + // { CURL_CA_BUNDLE = "/etc/ssl/certs/ca-certificates.crt"; } // config.networking.proxy.envVars; serviceConfig = diff --git a/nixos/modules/services/monitoring/dd-agent.nix b/nixos/modules/services/monitoring/dd-agent.nix index 8c847af3bfc..ed9be73ba65 100644 --- a/nixos/modules/services/monitoring/dd-agent.nix +++ b/nixos/modules/services/monitoring/dd-agent.nix @@ -183,7 +183,7 @@ in { Restart = "always"; RestartSec = 2; }; - environment.SSL_CERT_FILE = "/etc/ssl/certs/ca-bundle.crt"; + environment.SSL_CERT_FILE = "/etc/ssl/certs/ca-certificates.crt"; restartTriggers = [ pkgs.dd-agent ddConf diskConfig networkConfig postgresqlConfig nginxConfig mongoConfig ]; }; diff --git a/nixos/modules/services/networking/ddclient.nix b/nixos/modules/services/networking/ddclient.nix index ee06dfbbca3..e60520c742b 100644 --- a/nixos/modules/services/networking/ddclient.nix +++ b/nixos/modules/services/networking/ddclient.nix @@ -127,7 +127,7 @@ in wantedBy = [ "multi-user.target" ]; after = [ "network.target" ]; - environment.SSL_CERT_FILE = "/etc/ssl/certs/ca-bundle.crt"; + environment.SSL_CERT_FILE = "/etc/ssl/certs/ca-certificates.crt"; serviceConfig = { # Uncomment this if too many problems occur: # Type = "forking"; From 5da15c6b766eaebf62d75d83dcd0e387c0df1705 Mon Sep 17 00:00:00 2001 From: Dan Peebles Date: Thu, 28 Jan 2016 21:26:32 -0500 Subject: [PATCH 264/268] botocore/awscli: upgrade to 1.3.23/1.10.1 I'm upgrading both at once because they need to be upgraded in tandem --- pkgs/top-level/python-packages.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 2584604282c..e6b0d1b061f 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -1121,11 +1121,11 @@ in modules // { awscli = buildPythonPackage rec { name = "awscli-${version}"; - version = "1.9.12"; + version = "1.10.1"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/a/awscli/${name}.tar.gz"; - sha256 = "0b50de084c8de70adf45c0e938b6350344d9b6acde8b7cdee02cb32964bc58fd"; + sha256 = "159c8nfcighlkcbdzck102cp06g7rpgbbvxpb73vjymgqrzqywvb"; }; # No tests included @@ -2303,12 +2303,12 @@ in modules // { }; botocore = buildPythonPackage rec { - version = "1.3.12"; # This version is required by awscli + version = "1.3.23"; # This version is required by awscli name = "botocore-${version}"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/b/botocore/${name}.tar.gz"; - sha256 = "6f4f09234aca23db2e66c548b98a4fb14516241b31fb473c9c6f5b21270900c6"; + sha256 = "00iaapmy07zdhm2y23fk9igrskzdkix53j7g45lc5dg9nfyngq6j"; }; propagatedBuildInputs = From 46c31fa675fe0bf22ff313cefa1902afdc14ee2c Mon Sep 17 00:00:00 2001 From: Robin Gloster Date: Fri, 29 Jan 2016 03:38:12 +0000 Subject: [PATCH 265/268] libressl: 2.2.5 -> 2.2.6 --- pkgs/development/libraries/libressl/2.2.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/libressl/2.2.nix b/pkgs/development/libraries/libressl/2.2.nix index 89e7e6507e4..a3389a49fbc 100644 --- a/pkgs/development/libraries/libressl/2.2.nix +++ b/pkgs/development/libraries/libressl/2.2.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "libressl-${version}"; - version = "2.2.5"; + version = "2.2.6"; src = fetchurl { url = "mirror://openbsd/LibreSSL/${name}.tar.gz"; - sha256 = "0jwidi7fafcdh5qml72dx0ad0kfsk94qxzm29i7wd3cx8v8dxjp3"; + sha256 = "0kynb15l5gq1qgp3p4ncn20sc65sbl8lk89vyr07s17xrya9kq8y"; }; enableParallelBuilding = true; From edad608f56ab8cb2d74f2d34e7c0f625e706a5b1 Mon Sep 17 00:00:00 2001 From: Robin Gloster Date: Fri, 29 Jan 2016 03:41:14 +0000 Subject: [PATCH 266/268] libressl_2_3: 2.3.1 -> 2.3.2 --- pkgs/development/libraries/libressl/2.3.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/libraries/libressl/2.3.nix b/pkgs/development/libraries/libressl/2.3.nix index d9981f9b0c5..a87e599cbc0 100644 --- a/pkgs/development/libraries/libressl/2.3.nix +++ b/pkgs/development/libraries/libressl/2.3.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "libressl-${version}"; - version = "2.3.1"; + version = "2.3.2"; src = fetchurl { url = "mirror://openbsd/LibreSSL/${name}.tar.gz"; - sha256 = "410b58db4ebbcab43c3357612e591094f64fb9339269caa2e68728e36f8d589e"; + sha256 = "0sm9cjjqvj581sfd4sh0i467sh8p89nq9b8ck2qn3war92p5zx40"; }; 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 fpletz ]; + maintainers = with maintainers; [ thoughtpolice wkennington fpletz globin ]; }; } From ef8f074604eb696fcc52b2763f8503d2edb75dc2 Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Thu, 28 Jan 2016 23:37:42 +0100 Subject: [PATCH 267/268] smplayer: 15.11.0 -> 16.1.0 --- pkgs/applications/video/smplayer/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/video/smplayer/default.nix b/pkgs/applications/video/smplayer/default.nix index 13c65422227..0aa92c9af71 100644 --- a/pkgs/applications/video/smplayer/default.nix +++ b/pkgs/applications/video/smplayer/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, qtscript }: stdenv.mkDerivation rec { - name = "smplayer-15.11.0"; + name = "smplayer-16.1.0"; src = fetchurl { url = "mirror://sourceforge/smplayer/${name}.tar.bz2"; - sha256 = "1h8r5xjaq7p78raw1v29gsrcv221lzl8m2i2qls3khc65kx032cn"; + sha256 = "1jfqpmbbjrs9lna44dp10zblj7b0cras9sb0nczycpkcsdi9np6j"; }; patches = [ ./basegui.cpp.patch ]; From 4f8f5732fc1a24329cbe5f7eb9dcb7599e282a0c Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Fri, 29 Jan 2016 07:59:54 +0100 Subject: [PATCH 268/268] smtube: 15.11.0 -> 16.1.0 --- pkgs/applications/video/smtube/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/video/smtube/default.nix b/pkgs/applications/video/smtube/default.nix index dd988f79cab..68c0d7f5812 100644 --- a/pkgs/applications/video/smtube/default.nix +++ b/pkgs/applications/video/smtube/default.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, qtscript, qtwebkit }: stdenv.mkDerivation rec { - version = "15.11.0"; + version = "16.1.0"; name = "smtube-${version}"; src = fetchurl { url = "mirror://sourceforge/smtube/SMTube/${version}/${name}.tar.bz2"; - sha256 = "13pkd0462ygsdlmym6y2cfivihmi175y41jq5hjyh926cgfg7pny"; + sha256 = "1yjn7gj5pfw8835gfazk29mhcvfh1dhfjqmbqln1ajxr89imjj4r"; }; makeFlags = [